diff --git a/README.md b/README.md new file mode 100644 index 0000000..b8392d4 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +--- +tags: +- image-classification +library_name: generic +--- + +## Example + +The model is by no means a state-of-the-art model, but nevertheless +produces reasonable image captioning results. It was mainly fine-tuned +as a proof-of-concept for the 🤗 FlaxVisionEncoderDecoder Framework. + +The model can be used as follows: + +```python + +import requests +from PIL import Image +from transformers import ViTFeatureExtractor, AutoTokenizer, FlaxVisionEncoderDecoderModel + +loc = "ydshieh/vit-gpt2-coco-en" + +feature_extractor = ViTFeatureExtractor.from_pretrained(loc) +tokenizer = AutoTokenizer.from_pretrained(loc) +model = FlaxVisionEncoderDecoderModel.from_pretrained(loc) + +# We will verify our results on an image of cute cats +url = "http://images.cocodataset.org/val2017/000000039769.jpg" +with Image.open(requests.get(url, stream=True).raw) as img: + pixel_values = feature_extractor(images=img, return_tensors="np").pixel_values + +def generate_step(pixel_values): + + output_ids = model.generate(pixel_values, max_length=16, num_beams=4).sequences + preds = tokenizer.batch_decode(output_ids, skip_special_tokens=True) + preds = [pred.strip() for pred in preds] + + return preds + +preds = generate_step(pixel_values) +print(preds) + +# should produce +# ['a cat laying on top of a couch next to another cat'] + +``` \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..e683fa4 --- /dev/null +++ b/config.json @@ -0,0 +1,169 @@ +{ + "architectures": [ + "VisionEncoderDecoderModel" + ], + "bos_token_id": 50256, + "decoder": { + "_name_or_path": "", + "activation_function": "gelu_new", + "add_cross_attention": true, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bad_words_ids": null, + "bos_token_id": 50256, + "chunk_size_feed_forward": 0, + "decoder_start_token_id": 50256, + "diversity_penalty": 0.0, + "do_sample": false, + "early_stopping": false, + "embd_pdrop": 0.1, + "encoder_no_repeat_ngram_size": 0, + "eos_token_id": 50256, + "finetuning_task": null, + "forced_bos_token_id": null, + "forced_eos_token_id": null, + "id2label": { + "0": "LABEL_0", + "1": "LABEL_1" + }, + "initializer_range": 0.02, + "is_decoder": true, + "is_encoder_decoder": false, + "label2id": { + "LABEL_0": 0, + "LABEL_1": 1 + }, + "layer_norm_epsilon": 1e-05, + "length_penalty": 1.0, + "max_length": 20, + "min_length": 0, + "model_type": "gpt2", + "n_ctx": 1024, + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 12, + "n_positions": 1024, + "no_repeat_ngram_size": 0, + "num_beam_groups": 1, + "num_beams": 1, + "num_return_sequences": 1, + "output_attentions": false, + "output_hidden_states": false, + "output_scores": false, + "pad_token_id": 50256, + "prefix": null, + "problem_type": null, + "pruned_heads": {}, + "remove_invalid_values": false, + "repetition_penalty": 1.0, + "resid_pdrop": 0.1, + "return_dict": true, + "return_dict_in_generate": false, + "scale_attn_weights": true, + "sep_token_id": null, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "task_specific_params": { + "text-generation": { + "do_sample": true, + "max_length": 50 + } + }, + "temperature": 1.0, + "tie_encoder_decoder": false, + "tie_word_embeddings": true, + "tokenizer_class": null, + "top_k": 50, + "top_p": 1.0, + "torch_dtype": null, + "torchscript": false, + "transformers_version": "4.11.0.dev0", + "use_bfloat16": false, + "use_cache": true, + "vocab_size": 50257 + }, + "decoder_start_token_id": 50256, + "encoder": { + "_name_or_path": "", + "add_cross_attention": false, + "architectures": [ + "ViTModel" + ], + "attention_probs_dropout_prob": 0.0, + "bad_words_ids": null, + "bos_token_id": null, + "chunk_size_feed_forward": 0, + "decoder_start_token_id": null, + "diversity_penalty": 0.0, + "do_sample": false, + "early_stopping": false, + "encoder_no_repeat_ngram_size": 0, + "eos_token_id": null, + "finetuning_task": null, + "forced_bos_token_id": null, + "forced_eos_token_id": null, + "hidden_act": "gelu", + "hidden_dropout_prob": 0.0, + "hidden_size": 768, + "id2label": { + "0": "LABEL_0", + "1": "LABEL_1" + }, + "image_size": 224, + "initializer_range": 0.02, + "intermediate_size": 3072, + "is_decoder": false, + "is_encoder_decoder": false, + "label2id": { + "LABEL_0": 0, + "LABEL_1": 1 + }, + "layer_norm_eps": 1e-12, + "length_penalty": 1.0, + "max_length": 20, + "min_length": 0, + "model_type": "vit", + "no_repeat_ngram_size": 0, + "num_attention_heads": 12, + "num_beam_groups": 1, + "num_beams": 1, + "num_channels": 3, + "num_hidden_layers": 12, + "num_return_sequences": 1, + "output_attentions": false, + "output_hidden_states": false, + "output_scores": false, + "pad_token_id": null, + "patch_size": 16, + "prefix": null, + "problem_type": null, + "pruned_heads": {}, + "remove_invalid_values": false, + "repetition_penalty": 1.0, + "return_dict": true, + "return_dict_in_generate": false, + "sep_token_id": null, + "task_specific_params": null, + "temperature": 1.0, + "tie_encoder_decoder": false, + "tie_word_embeddings": true, + "tokenizer_class": null, + "top_k": 50, + "top_p": 1.0, + "torch_dtype": null, + "torchscript": false, + "transformers_version": "4.11.0.dev0", + "use_bfloat16": false + }, + "eos_token_id": 50256, + "is_encoder_decoder": true, + "model_type": "vision-encoder-decoder", + "pad_token_id": 50256, + "transformers_version": null +} diff --git a/events.out.tfevents.1633443513.t1v-n-bb5dfd23-w-0.8655.0.v2 b/events.out.tfevents.1633443513.t1v-n-bb5dfd23-w-0.8655.0.v2 new file mode 100644 index 0000000..97f2874 --- /dev/null +++ b/events.out.tfevents.1633443513.t1v-n-bb5dfd23-w-0.8655.0.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04007cf6b329171749452c6fd460a130288f72a6679059781ec25c8a7157111a +size 8279933 diff --git a/flax_model.msgpack b/flax_model.msgpack new file mode 100644 index 0000000..5c0b9db --- /dev/null +++ b/flax_model.msgpack @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df01c05234220e7fea4e92598162988c48315bb6fa2475b5d66f002875710be9 +size 956799284 diff --git a/generation_eval.json b/generation_eval.json new file mode 100644 index 0000000..08fac91 --- /dev/null +++ b/generation_eval.json @@ -0,0 +1,99330 @@ +[ + { + "label": "a black honda motorcycle parked in front of a garage", + "pred": "a black motorcycle parked in front of a house" + }, + { + "label": "a honda motorcycle parked in a grass driveway", + "pred": "a black motorcycle parked in front of a house" + }, + { + "label": "an office cubicle with four different types of computers", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a small closed toilet in a cramped space", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "two women waiting at a bench next to a street", + "pred": "two people sitting on a bench in a city" + }, + { + "label": "a black honda motorcycle with a dark burgundy seat", + "pred": "a black motorcycle parked in front of a house" + }, + { + "label": "a tan toilet and sink combination in a small room", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "the home office space seems to be very cluttered", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a beautiful dessert waiting to be shared by two people", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a woman sitting on a bench and a woman standing waiting for the bus", + "pred": "two people sitting on a bench in a city" + }, + { + "label": "a woman sitting on a bench in the middle of the city", + "pred": "two people sitting on a bench in a city" + }, + { + "label": "an advanced toilet with a sink and control panel", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a cat eating a bird it has caught", + "pred": "a cat that is eating some food out of the ground" + }, + { + "label": "a close-up picture of a toilet with a fountain", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a shot of an elderly man inside a kitchen", + "pred": "a man that is sitting in a kitchen" + }, + { + "label": "a cat in between two cars in a parking lot", + "pred": "a cat standing on top of a parked car" + }, + { + "label": "a woman sitting on a bench and a woman standing behind the bench at a bus stop", + "pred": "two people sitting on a bench in a city" + }, + { + "label": "an office cubicle with multiple computers in it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "an old man is wearing an odd hat", + "pred": "a man that is sitting in a kitchen" + }, + { + "label": "a parade of motorcycles is going through a group of tall trees", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a man sleeping with his cat next to him", + "pred": "a man laying in bed with a cat" + }, + { + "label": "an all white kitchen with an electric stovetop", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "an office with desk computer and chair and laptop", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "the telephone has a banana where the receiver should be", + "pred": "a banana sitting on top of a desk next to a cell phone" + }, + { + "label": "off white toilet with a faucet and controls", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a white stove sits between two small counter tops", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "a woman and another woman waiting at a stop", + "pred": "two people sitting on a bench in a city" + }, + { + "label": "office setting with a lot of computer screens", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a white kitchen setup with a coffee maker on counter", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "a desk and chair in an office cubicle", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a white stove and cabinet inside a kitchen", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "a piece of cake on a plate with decorations on it", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a cat stands between two parked cars on a grassy sidewalk", + "pred": "a cat standing on top of a parked car" + }, + { + "label": "creamy cheesecake dessert with whip cream and caramel", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "motorcyclists drive down a tree lined street", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a cat at attention between two parked cars", + "pred": "a cat standing on top of a parked car" + }, + { + "label": "a dog sitting between its masters feet on a footstool watching tv", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "a young man and his cute cat enjoy a nap together", + "pred": "a man laying in bed with a cat" + }, + { + "label": "a dog between the feet of a person looking at a tv", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "an older man is wearing a funny hat in his dining room", + "pred": "a man that is sitting in a kitchen" + }, + { + "label": "man in motorcycle leathers standing in front of a group of bikes", + "pred": "a man standing next to a motorcycle in a parking lot" + }, + { + "label": "bikers, dressed in their gear, standing near their motorcycles", + "pred": "a man standing next to a motorcycle in a parking lot" + }, + { + "label": "a man is sleeping with his head on a pillow", + "pred": "a man laying in bed with a cat" + }, + { + "label": "a banana replacing the phone on an answering machine", + "pred": "a banana sitting on top of a desk next to a cell phone" + }, + { + "label": "ma motorcycle parked on the gravel in front of a garage", + "pred": "a black motorcycle parked in front of a house" + }, + { + "label": "a dog and a person are watching television together", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "a motorcycle with its brake extended standing outside", + "pred": "a black motorcycle parked in front of a house" + }, + { + "label": "motorcycles down a long street filled with trees on either side", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a person is sitting with their dog watching tv", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "an office desk with two flat panel monitors", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a grey and white cat watches from between parked cars", + "pred": "a cat standing on top of a parked car" + }, + { + "label": "men stand next to their bicycles", + "pred": "a man standing next to a motorcycle in a parking lot" + }, + { + "label": "three men standing around their motorcycles in a parking lot", + "pred": "a man standing next to a motorcycle in a parking lot" + }, + { + "label": "man sleeping in his bedroom next to a cat", + "pred": "a man laying in bed with a cat" + }, + { + "label": "set of toy animals sitting in front of a red wooden wagon", + "pred": "animals that are standing in front of a truck" + }, + { + "label": "group of three motorcyclists standing in front of their motorcycles", + "pred": "a man standing next to a motorcycle in a parking lot" + }, + { + "label": "a phone with a banana where the receiver should be", + "pred": "a banana sitting on top of a desk next to a cell phone" + }, + { + "label": "a woman wearing a hat & pink top takes a selfie in front of a bathroom mirror", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a telephone has it receiver replaced with a banana", + "pred": "a banana sitting on top of a desk next to a cell phone" + }, + { + "label": "a white cat caught a bird outside on a patio", + "pred": "a cat that is eating some food out of the ground" + }, + { + "label": "man sleeping next to a cat on a bed", + "pred": "a man laying in bed with a cat" + }, + { + "label": "a small kitchen with white cabinets and appliances", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "a striped plane flying up into the sky as the sun shines behind it", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a dog driving an suv in an open grass covered field", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a customized motorcycle with more", + "pred": "a dog sitting on the hood of a motorcycle" + }, + { + "label": "an airplane is ascending into the white sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a sculpture of two women stting on a bench with their purses on the ground while people standing in a line behind them", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "an american airlines plane is in the sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "grey house cat devours a song bird on a door step", + "pred": "a cat that is eating some food out of the ground" + }, + { + "label": "an extravagant dessert on a plate overlooking the water", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a grey and white cat standing in the grass in a parking lot", + "pred": "a cat standing on top of a parked car" + }, + { + "label": "a metal statue of two women sits on a bench in a city street", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "very little traffic at this city intersection", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "an office desk with two computer screens, books diagrams and a phone on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a motorcycle", + "pred": "a dog sitting on the hood of a motorcycle" + }, + { + "label": "two computer monitors are placed beside each other on a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "an orange reddish rose in a vase filled with water on top of a table", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "a cat pausing as it's picture is taken", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a blue eyed tabby cat crouched on the ground", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a woman in a flowered dress taking a selfie in a bathroom mirror", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a parked motorcycle", + "pred": "a dog sitting on the hood of a motorcycle" + }, + { + "label": "a black trash bag in a restroom next to a sink", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a man in a jacket and hat looks at the camera", + "pred": "a man that is sitting in a kitchen" + }, + { + "label": "toy animals - a bull, giraffe, deer and parakeet", + "pred": "animals that are standing in front of a truck" + }, + { + "label": "an older woman in a flower dress takes a self photo in the mirror", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a dog sits in the front seat of a jeep", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a clean kitchen with the windows white and open", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "toy animals on the ground near a picture", + "pred": "animals that are standing in front of a truck" + }, + { + "label": "an urban intersection with stoplights on a cloudy day", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a man relaxing at home, watching television with his dog", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "children's toy animals are strewn across a floor", + "pred": "animals that are standing in front of a truck" + }, + { + "label": "a glass bowl filled with oranges on a table", + "pred": "a glass bowl filled with oranges and apples" + }, + { + "label": "a red, white, and blue plane is in the sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a young attractive woman sitting on a toilette on the side of a street", + "pred": "a woman is sitting on the side of the road" + }, + { + "label": "a young woman using a laptop computer while sitting on a bunk bed", + "pred": "a woman sitting in a bathroom next to a toilet" + }, + { + "label": "custom made motorcycles on display while riders chat", + "pred": "a dog sitting on the hood of a motorcycle" + }, + { + "label": "a black cat with white stomach takes a pose", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "an old victorian style bed frame in a bedroom", + "pred": "a bed that has a canopy over it" + }, + { + "label": "two computers sitting on top of a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a plane flies through the sky at an angle", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a customized motorcycle with a large rear and skinny front tire", + "pred": "a dog sitting on the hood of a motorcycle" + }, + { + "label": "a bathroom that is clean", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a garbage bag in a white lighted bathroom", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "an old man standing in a kitchen posing for a picture", + "pred": "a man that is sitting in a kitchen" + }, + { + "label": "a long haired cat eating a dead bird", + "pred": "a cat that is eating some food out of the ground" + }, + { + "label": "oranges and apples in a bowl", + "pred": "a glass bowl filled with oranges and apples" + }, + { + "label": "a person sitting on a stool on the street", + "pred": "a woman is sitting on the side of the road" + }, + { + "label": "a desk with two monitors depicting security cameras", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a display of vintage animal toys on the floor", + "pred": "animals that are standing in front of a truck" + }, + { + "label": "a person that is sitting in a bed facing out", + "pred": "a woman sitting in a bathroom next to a toilet" + }, + { + "label": "a cat sitting on a street corner looking at the camera", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a bike brake on a bicycle", + "pred": "a bicycle chained to a pole on a sidewalk" + }, + { + "label": "people riding mopeds through a park", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a statue of two women with purses sitting on a bench", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "a stripped cat sitting near a brick wall", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a city street with multiple bildings and a street light", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a yellow rose in a clear vase filled with water", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "a toddler celebrates his birthday with a cupcake", + "pred": "a baby sitting at a table with a birthday cake" + }, + { + "label": "a young girl sits in the bottom bunk of her bunkbed", + "pred": "a woman sitting in a bathroom next to a toilet" + }, + { + "label": "a bathroom with a vanity, toilet and shower", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a woman in a yellow bathroom is holding a camera", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a glass bowl has oranges and apples in it", + "pred": "a glass bowl filled with oranges and apples" + }, + { + "label": "two yellow flowers inside a vase", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "a giraffe and a zebra checking each other out", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "spacious white kitchen with brown cabinetry, sink and appliances", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a dog is sitting inside a red car", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a woman sitting on a bucket on the side of a street", + "pred": "a woman is sitting on the side of the road" + }, + { + "label": "a red truck has a black dog in the drivers chair", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "the bathroom has a wall sink, medicine cabinet, toothbrush holder, and bare walls", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a bicycle is chained up to a pole at a train station", + "pred": "a bicycle chained to a pole on a sidewalk" + }, + { + "label": "a door is open to a white bathroom that has a black garbage back on the floor", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a dog sitting in the front seat of a truck", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a laptop computer and a desktop computer on a white desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a woman is sitting on a stool on a sidewalk", + "pred": "a woman is sitting on the side of the road" + }, + { + "label": "a giraffe and a zebra are on a grassy field by the water", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a bedroom with bunk beds and the bathroom next door", + "pred": "a woman sitting in a bathroom next to a toilet" + }, + { + "label": "a statue of two people sitting on a bench", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "a yellow and blue train is next to an overhang", + "pred": "a yellow and blue train stopped at a train station" + }, + { + "label": "a glass bowl full of oranges and apples", + "pred": "a glass bowl filled with oranges and apples" + }, + { + "label": "a young boy with a spoon looking at a birthday cupcake", + "pred": "a baby sitting at a table with a birthday cake" + }, + { + "label": "a giraffe and a zebra walking through an african plain", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a desktop with two computers and fruit on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a beautiful yellow rose is seen in a small vase", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "a woman taking a picture of herself in a bathroom", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a vintage photo of a bike eith a lock on it", + "pred": "a bicycle chained to a pole on a sidewalk" + }, + { + "label": "the bathroom door is open with the light on", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a giraffe looks down at a zebra on the field", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a metal statue of two women sitting on a bench", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "scooters rides down a street", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "three people live in one room who share a bathroom", + "pred": "a woman sitting in a bathroom next to a toilet" + }, + { + "label": "one apple and several oranges sit in a bowl", + "pred": "a glass bowl filled with oranges and apples" + }, + { + "label": "two orange roses in a small vase with water", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "a bicycle parked on a train platform", + "pred": "a bicycle chained to a pole on a sidewalk" + }, + { + "label": "an office kitchen with open windows and no food", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a lap top computer next to a computer monitor sitting on top of a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "the bicycle is locked to the metal pole as the young man waits to board the mass transit train", + "pred": "a bicycle chained to a pole on a sidewalk" + }, + { + "label": "a baby holding a spoon looking at a cupcake and candle", + "pred": "a baby sitting at a table with a birthday cake" + }, + { + "label": "a zebra and a giraffe in the wild", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "women operating a car wash", + "pred": "a woman sitting on a motorcycle next to a fire hydrant" + }, + { + "label": "an airplane on the runway either just landed or ready to take off", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an extremely plain, and outdated white colored kitchen", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a child holds a spoon and looks at a cupcake", + "pred": "a baby sitting at a table with a birthday cake" + }, + { + "label": "a kitchen scene is shown with cabinets and appliances", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a car is parked on dry grass with kites overhead", + "pred": "a truck with a kite in the back is parked in a field" + }, + { + "label": "a young child looking at a birthday cupcake", + "pred": "a baby sitting at a table with a birthday cake" + }, + { + "label": "young women washing motor cycles in the middle of a street", + "pred": "a woman sitting on a motorcycle next to a fire hydrant" + }, + { + "label": "a four cross street of a downtown area", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "an egyptian airlines plane landing at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a truck driving through a field with people flying kites", + "pred": "a truck with a kite in the back is parked in a field" + }, + { + "label": "an open field with a truck and some kites being flown", + "pred": "a truck with a kite in the back is parked in a field" + }, + { + "label": "a train sits on the track at a deserted station overlooked by a tower", + "pred": "a yellow and blue train stopped at a train station" + }, + { + "label": "a pickup truck is parked underneath multiple flying kites", + "pred": "a truck with a kite in the back is parked in a field" + }, + { + "label": "a flying plane with smoke trailing behind it", + "pred": "a plane that is flying in the sky" + }, + { + "label": "two young women are washing two motorcycles with hoses", + "pred": "a woman sitting on a motorcycle next to a fire hydrant" + }, + { + "label": "part of train car with a door to the rear connected to the car behind it", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bed in a bedroom with a white covering next to a doorway", + "pred": "a bed that has a canopy over it" + }, + { + "label": "a colorful train stopped at a train station", + "pred": "a yellow and blue train stopped at a train station" + }, + { + "label": "kitchen area with counter top space and dining room table", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a bathroom with a sliding shower door next to a toilet", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "an single passanger in an airplane flying through the sky", + "pred": "a plane that is flying in the sky" + }, + { + "label": "a kitchen with cabinets, a sink and a clothes washer", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "a passenger train stopped near a train station", + "pred": "a yellow and blue train stopped at a train station" + }, + { + "label": "a truck sitting on a field with kites in the air", + "pred": "a truck with a kite in the back is parked in a field" + }, + { + "label": "a canopy bed with white see through curtains", + "pred": "a bed that has a canopy over it" + }, + { + "label": "a commercial plane on the strip to take off", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a counter top in a laundry room with a tile back splash", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "an old airplane is flying through the sky", + "pred": "a plane that is flying in the sky" + }, + { + "label": "the bathroom features a vanity sink and tub/shower combination", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a white bed and a ceiling fan light", + "pred": "a bed that has a canopy over it" + }, + { + "label": "a marine that is looking at his cell phone", + "pred": "a man in a uniform is holding a gun and talking on a cell phone" + }, + { + "label": "a empty laundry room with lot of storage space", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "a wide empty street corner filled with buildings", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a poster bed with canopy in a room", + "pred": "a bed that has a canopy over it" + }, + { + "label": "girls wash a motorcycle while men look on", + "pred": "a woman sitting on a motorcycle next to a fire hydrant" + }, + { + "label": "a train is pulling into the train station", + "pred": "a yellow and blue train stopped at a train station" + }, + { + "label": "a small bathroom is featured in this photo", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "people standing near the motorcycles on the street", + "pred": "a woman sitting on a motorcycle next to a fire hydrant" + }, + { + "label": "a laptop computer a keyboard and two monitors", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a kitchen with wooden cabinets a sink and a dish washer", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "a train with a striped door waiting on a train track", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bathroom with a toilette with it's seat down", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a marine in uniform using a smart phone", + "pred": "a man in a uniform is holding a gun and talking on a cell phone" + }, + { + "label": "a jumbo jet touching down on the runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "this the outside of a train with a slanted striped door", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bathroom with green walls and a toilet and a shower", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a bathroom with two urinals and a sink", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "a cream themed bathroom with a toilet, sink with mirror, and shower", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a fully-stocked kitchen with no one in it", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a light green kitchen some cabinets a dish washer and a sink", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "a newly remodeled bathroom in a home", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "white stalls installed on the walls of a men's room", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "a full dressed marine is looking at his cell phone", + "pred": "a man in a uniform is holding a gun and talking on a cell phone" + }, + { + "label": "men's restroom with toilet and urinals along tiled walls", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "a girl sitting on a bench in front of a stone wall", + "pred": "a woman is standing in front of a stone wall" + }, + { + "label": "a man in uniform is looking at his phone", + "pred": "a man in a uniform is holding a gun and talking on a cell phone" + }, + { + "label": "a bathroom has green walls and a glass shower door", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a train on the tracks has a black and white striped door", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a public bathroom with two urinals on a wall, and sink with a mirror over it on another wall", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "two urinals and a sink in a bathroom", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "a bathroom is very colorful with blue yellow and red", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "an old style kitchen with baby blue cabinets", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a colorful public restroom with striped walls and yellow counter", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "a very clean and cozy looking kitchen that could be in a home magazine", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a service man is looking at his cel phone", + "pred": "a man in a uniform is holding a gun and talking on a cell phone" + }, + { + "label": "a refrigerator next to a red wall in the kitchen", + "pred": "a kitchen with a refrigerator and a stove" + }, + { + "label": "an airplane is flying high in the cloudy sky", + "pred": "a plane that is flying in the sky" + }, + { + "label": "a car driving in an intersection, past a furniture shop", + "pred": "a car that is parked in front of a store" + }, + { + "label": "a woman in black sits on a park bench", + "pred": "a woman is standing in front of a stone wall" + }, + { + "label": "a bathroom with a sink and a toilet", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a car in front of a furniture shop with a cow", + "pred": "a car that is parked in front of a store" + }, + { + "label": "a woman sitting on a bench in a stone alcove", + "pred": "a woman is standing in front of a stone wall" + }, + { + "label": "a bathroom that has been gutted with the shower basin the only thing left", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "a young woman in black spotted tights is sitting on a bench", + "pred": "a woman is standing in front of a stone wall" + }, + { + "label": "a small airplane is flying across the sky", + "pred": "a plane that is flying in the sky" + }, + { + "label": "the side of a passenger rail train with a stripped door", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a deep freezer and refrigerator are displayed together", + "pred": "a kitchen with a refrigerator and a stove" + }, + { + "label": "a bathroom with two sinks near towel and soap dispensers", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "a restroom with two sinks and a red colored stall", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "a beautiful woman sitting on a bench next to a stone building", + "pred": "a woman is standing in front of a stone wall" + }, + { + "label": "a kitchen filled with appliances dishes and a bowl of fruit", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a bathroom that is under construction with a standing shower", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "a small compact car driving past a furniture store", + "pred": "a car that is parked in front of a store" + }, + { + "label": "a colorful public restroom focused on the sinks", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "a street scene with a car passing by", + "pred": "a car that is parked in front of a store" + }, + { + "label": "a bathroom with a bath tub near windows", + "pred": "a bathroom with a tub and a sink" + }, + { + "label": "a bathroom scene is shown with a tub and counter", + "pred": "a bathroom with a tub and a sink" + }, + { + "label": "egyptair airplane standing on the tarmac at airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a baseball player bobble head next to two computer monitors on a desk", + "pred": "a doll sitting on top of a desk next to a computer" + }, + { + "label": "a shop a car traffic lights and buildings", + "pred": "a car that is parked in front of a store" + }, + { + "label": "a close of a bobble head doll with a computer", + "pred": "a doll sitting on top of a desk next to a computer" + }, + { + "label": "a fancy bathroom with a clean toilet and piping", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a kitchen has a refrigerator and ice chest", + "pred": "a kitchen with a refrigerator and a stove" + }, + { + "label": "a bobble head is shown next to computer screens", + "pred": "a doll sitting on top of a desk next to a computer" + }, + { + "label": "a bathroom with a toilet a sink and a shower", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a bathroom with a sink a mirror a toilet and a shower", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a refrigerator and freezer placed next to one another", + "pred": "a kitchen with a refrigerator and a stove" + }, + { + "label": "a bathroom scene with focus on the toilet", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "an unfinished bathroom with a sink and pipes on the floor", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "a brown horse is walking in between two cars", + "pred": "a brown horse standing in the middle of a parking lot" + }, + { + "label": "a fridge with a lot of magnets in a kitchen", + "pred": "a kitchen with a refrigerator and a stove" + }, + { + "label": "a street at night is lit up by streetlights", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a motorcycle is parked on a dirt road in a forest", + "pred": "a person walking down a path in the woods" + }, + { + "label": "a shower base is installed as a bathroom undergoes renovations", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "racers riding four wheelers while a crowd watches", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a rundown bathroom is being stripped and remodeled", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "a bathroom with a bathtub and a sink overlooking a blue ocean", + "pred": "a bathroom with a tub and a sink" + }, + { + "label": "a horse walks between cars in a parking lot", + "pred": "a brown horse standing in the middle of a parking lot" + }, + { + "label": "a bathroom with a big white tub with legs", + "pred": "a bathroom with a tub and a sink" + }, + { + "label": "a horse walking between the parking spaces of two cars", + "pred": "a brown horse standing in the middle of a parking lot" + }, + { + "label": "a loan bike sits by itself on a dirt road on a bend in a wooded area", + "pred": "a person walking down a path in the woods" + }, + { + "label": "a bathroom scene complete with a cast iron style tub", + "pred": "a bathroom with a tub and a sink" + }, + { + "label": "a motion blur street scene with the car lights streaking", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a bobble head baseball figurine on a desk", + "pred": "a doll sitting on top of a desk next to a computer" + }, + { + "label": "an older picture of a large kitchen with white appliances", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a gray cat standing on top of a black car", + "pred": "a cat that is sitting on top of a car" + }, + { + "label": "a man in a tropical print shirt with glasses and long hair is eating a banana", + "pred": "a man standing in a kitchen preparing food" + }, + { + "label": "a motorcycle is parked on a tree lined dirt road", + "pred": "a person walking down a path in the woods" + }, + { + "label": "a cat standing on the hood of a car", + "pred": "a cat that is sitting on top of a car" + }, + { + "label": "a desk with two computer screens and a cecil cooper bobble head", + "pred": "a doll sitting on top of a desk next to a computer" + }, + { + "label": "a horse is standing between two parked cars", + "pred": "a brown horse standing in the middle of a parking lot" + }, + { + "label": "spectators enjoying a show of two men on four-wheelers", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a man wearing a hawaiian shirt eats a banana instead of pastries", + "pred": "a man standing in a kitchen preparing food" + }, + { + "label": "motorcycle on a dirt road by a stream and trees", + "pred": "a person walking down a path in the woods" + }, + { + "label": "a kitchen with a granite counter top and faucet", + "pred": "a kitchen with a refrigerator a sink and a stove" + }, + { + "label": "two men ride on atv's and tilt them to the side", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "grey color cat standing on hood of car in garage", + "pred": "a cat that is sitting on top of a car" + }, + { + "label": "an airplane just landed on the runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a fork rests on a plate next to a piece of cake", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a person dressed as a giraffe carrying a bullhorn", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "a large plane sits on the large runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an empty street at night with bright lights shining from the light poles, and one very bight light reflecting off the pavement", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a piece of chocolate cake sits on a plate with a fork", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "man taking a bite of a half peeled banana", + "pred": "a man standing in a kitchen preparing food" + }, + { + "label": "people collect around a giraffe head", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "a motorcycle is parked on a gravel road in a forest by a stream", + "pred": "a person walking down a path in the woods" + }, + { + "label": "a large white airplane parked upon a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "two men doing a stunt show on four wheeler atv vehicles", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a white and gold fancy toilet and stainless trash can", + "pred": "a white vase sitting on top of a counter top" + }, + { + "label": "a kitchen with a stainless steel fridge and granite counters", + "pred": "a kitchen with a refrigerator a sink and a stove" + }, + { + "label": "from the rear, we see a horse standing between two cars parked in a parking lot", + "pred": "a brown horse standing in the middle of a parking lot" + }, + { + "label": "an airplane sitting on the tarmac with clouds above it", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "beams of light coming off of different objects on a city street", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a piece of chocolate cake and a fork on a plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a motorcycle is parked in a parking lot", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a person eating a banana in a kitchen", + "pred": "a man standing in a kitchen preparing food" + }, + { + "label": "a herd of animals traveling down a country road surrounded by a lush green landscape", + "pred": "a herd of sheep walking across a lush green field" + }, + { + "label": "child laying down with arms extended in the air", + "pred": "a bride and groom are hugging each other" + }, + { + "label": "a fancy toilet bowl with golden scroll work on it", + "pred": "a white vase sitting on top of a counter top" + }, + { + "label": "an all white painted kitchen with a ceiling fan", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a painted white kitchen with a refrigerator and an automatic dish washer next to an oven stove", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a man eating a banana at a kitchen counter", + "pred": "a man standing in a kitchen preparing food" + }, + { + "label": "a gray cat on the hood of a black car", + "pred": "a cat that is sitting on top of a car" + }, + { + "label": "a cat sitting in a bathtub not looking amused", + "pred": "a cat is sitting in a bath tub" + }, + { + "label": "a person in a giraffe costume in a crowd of people", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "somebody wearing a giraffe costume greets people at a park", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "an adult cat is sitting inside of a bathtub", + "pred": "a cat is sitting in a bath tub" + }, + { + "label": "a tiger cat sitting in a white bathtub", + "pred": "a cat is sitting in a bath tub" + }, + { + "label": "the head beams from the vehicle can be seen clearly as the vehicle makes it's way up the street under the street lights", + "pred": "a city street at night with a traffic light" + }, + { + "label": "airplane on the runway and a cloudy sky", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "small white kitchen with a ceiling fan hanging down", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a kitchen with a big fridge and a big sink", + "pred": "a kitchen with a refrigerator a sink and a stove" + }, + { + "label": "a person with a giraffe costume greets people coming through the gate", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "a striped cat sits in a bath tub", + "pred": "a cat is sitting in a bath tub" + }, + { + "label": "this new fridge goes great in this clean kitchen", + "pred": "a kitchen with a refrigerator a sink and a stove" + }, + { + "label": "a well decorated toilet seat with undecorated surroundings", + "pred": "a white vase sitting on top of a counter top" + }, + { + "label": "a cat sitting on the hood of a parked black car in a garage", + "pred": "a cat that is sitting on top of a car" + }, + { + "label": "two people riding a motorcycle to the beach", + "pred": "a man riding on the back of a motorcycle on a beach" + }, + { + "label": "a dirt bike parked near a tent in the woods", + "pred": "a motorcycle parked in the middle of a field" + }, + { + "label": "a bathroom with a decorated toilet near a trash can", + "pred": "a white vase sitting on top of a counter top" + }, + { + "label": "a traffic motorcycle cop waits to give a ticket", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a man riding a motorcycle with a woman on the back", + "pred": "a man riding on the back of a motorcycle on a beach" + }, + { + "label": "a white kitchen with a ceiling fan a stove and refrigerator", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a young man performing a trick on an atv on a field", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a green tent and a parked motorcycle and some trees", + "pred": "a motorcycle parked in the middle of a field" + }, + { + "label": "a flock of goats and some men watching them", + "pred": "a man standing in front of a herd of cattle" + }, + { + "label": "motorcycle parked in front of a tent with the sun going down behind them", + "pred": "a motorcycle parked in the middle of a field" + }, + { + "label": "a very decorated toilet in a bathroom", + "pred": "a white vase sitting on top of a counter top" + }, + { + "label": "a motorcycle parked next to a green tent in a field", + "pred": "a motorcycle parked in the middle of a field" + }, + { + "label": "a man and a large herd of goats in a desert setting", + "pred": "a man standing in front of a herd of cattle" + }, + { + "label": "a parked motorcycle next to a green tent", + "pred": "a motorcycle parked in the middle of a field" + }, + { + "label": "cat messing around in the white bathtub", + "pred": "a cat is sitting in a bath tub" + }, + { + "label": "kitchen sink, stainless refrigerator and breakfast room", + "pred": "a kitchen with a refrigerator a sink and a stove" + }, + { + "label": "the nomadic sheepherd walks behind a large group of livestock in their desert habitat", + "pred": "a man standing in front of a herd of cattle" + }, + { + "label": "chocolate cake has a fork by it", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a man is herding his goats is the desert", + "pred": "a man standing in front of a herd of cattle" + }, + { + "label": "an apartment with a dining table and a couple of couches", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "men keep watch on a herd of goats", + "pred": "a man standing in front of a herd of cattle" + }, + { + "label": "a police officer on a motorcycle sitting at the corner", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a police officer is outside on his bike", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a piece of dutch chocolate cake with a fork on a plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "two people sitting on a motorcycle in the street next to a beach", + "pred": "a man riding on the back of a motorcycle on a beach" + }, + { + "label": "police officer laying a speed trap for the purpose of writing a ticket", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a jeep with a dead bird on the windshield", + "pred": "a black and white cat sitting on the hood of a car" + }, + { + "label": "a cat sleeps on top of a parked jeep", + "pred": "a black and white cat sitting on the hood of a car" + }, + { + "label": "an airplane leaving a trail in the sky", + "pred": "a jet flying through the air with a cloud of smoke behind it" + }, + { + "label": "a living room and dining room have two tables, couches, and multiple chairs", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a car and a public transit vehicle on a road", + "pred": "a white car parked next to a parking meter" + }, + { + "label": "a lone motorcycle parked in parking space at night", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a colorful living area with living room, dining room and a kitchen", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a parked jeep with a cat laying on it's hood", + "pred": "a black and white cat sitting on the hood of a car" + }, + { + "label": "living area with purple couches, looking into the dining area", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a motorcycle in a parking lot with a sky background", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a car in front of a train on train tracks", + "pred": "a white car parked next to a parking meter" + }, + { + "label": "a police man on a motorcycle is idle in front of a bush", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "dozens of people walking around a metro area", + "pred": "a crowd of people walking down a street next to a tall building" + }, + { + "label": "jogger running past a flock of sheep in a rural area", + "pred": "a herd of sheep walking across a lush green field" + }, + { + "label": "two people are riding a motorcycle on the beach", + "pred": "a man riding on the back of a motorcycle on a beach" + }, + { + "label": "people walk down a busy city street, with traffic light", + "pred": "a crowd of people walking down a street next to a tall building" + }, + { + "label": "a tram and a car make their way through town", + "pred": "a white car parked next to a parking meter" + }, + { + "label": "a plane flying straight up and high in the sky leaves a tail of smoke", + "pred": "a jet flying through the air with a cloud of smoke behind it" + }, + { + "label": "an airplane leaves a contrail in the air", + "pred": "a jet flying through the air with a cloud of smoke behind it" + }, + { + "label": "a living room and dining room are in pink and green", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a plane accelerating through the sky leaving a tail", + "pred": "a jet flying through the air with a cloud of smoke behind it" + }, + { + "label": "planes on an air port run way", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an office desk with a row of books and a desktop computer and laptop computer on the desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a couple sit on a motorcycle at the beach", + "pred": "a man riding on the back of a motorcycle on a beach" + }, + { + "label": "a motorcycle in a parking lot at night", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a silver car in the street next to a metal railing", + "pred": "a white car parked next to a parking meter" + }, + { + "label": "a plane flying in the sky with a trail of white smoke behind it", + "pred": "a jet flying through the air with a cloud of smoke behind it" + }, + { + "label": "a desktop computer next to a laptop computer", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a lone motorcycle is parked in the lighted parking lot", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a desk with a laptop some keyboards and some books", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a white car and a white bus parked parallel from one another", + "pred": "a white car parked next to a parking meter" + }, + { + "label": "people crossing the street in a city", + "pred": "a crowd of people walking down a street next to a tall building" + }, + { + "label": "a large jet airplane sitting on a tarmac at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a black and white cat laying on top of a jeep", + "pred": "a black and white cat sitting on the hood of a car" + }, + { + "label": "an airplane parked at the runway is being serviced by workers", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a desktop computer and a laptop sitting on an organize desk in an office", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "an airplane being prepped for flight, as another plane passes by", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a man walking beside sheep on a country road", + "pred": "a herd of sheep walking across a lush green field" + }, + { + "label": "a office desk with a monitor, laptop, and books", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "jogger running past a flock of white sheep", + "pred": "a herd of sheep walking across a lush green field" + }, + { + "label": "a hotel bathroom that is ugly", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a residential bathroom has a modern motel look with upgraded fixtures and accessories", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "an airplane is at an airport with yellow hoses by it", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a runner wearing spandex has come across a large herd traveling down the dirt road", + "pred": "a herd of sheep walking across a lush green field" + }, + { + "label": "the bathroom is small and white and gray", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a small bathroom with a large mirror and single sink vanity", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "people cross the street at the corner of luxury buildings", + "pred": "a crowd of people walking down a street next to a tall building" + }, + { + "label": "a small, white chamber contains various devices and doors", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "cat sleeping on the hood of a convertible jeep", + "pred": "a black and white cat sitting on the hood of a car" + }, + { + "label": "a large airplane museum with old war planes", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "a white bathroom that has been newly cleaned", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a bike in the middle of an empty parking lot next to trees", + "pred": "a bicycle parked in a park next to a tree" + }, + { + "label": "a toilet that is decorated like a pink stuffed animal", + "pred": "a pink teddy bear sitting on top of a toilet" + }, + { + "label": "a pink monster made out of a toilet seat with googley eyes", + "pred": "a pink teddy bear sitting on top of a toilet" + }, + { + "label": "a bathroom with significant modifications made to it", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a small bathroom where the vanity is over the sink and toilet", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "ten porcelain pieces with floral patterns painted on them", + "pred": "a white table topped with bowls and vases on top of a white wall" + }, + { + "label": "three women sitting on a park bench next to each other", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a small bathroom on an airplane with handles on either side", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "people stand around an antique motorcycle in a grassy area", + "pred": "a motorcycle being ridden by a group of people" + }, + { + "label": "women sitting on a full bench", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a bathroom sink next to a white toilet under a large mirror", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "people are walking across the street at an intersection", + "pred": "a crowd of people walking down a street next to a tall building" + }, + { + "label": "a bathroom contains a toilet and sink below a vanity", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a vanity and toilet are in a bathroom under a mirror", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a toilet with an illuminated seat in a restroom", + "pred": "a white toilet sitting inside of a bathroom" + }, + { + "label": "a bathroom with a fancy toilet in it", + "pred": "a white toilet sitting inside of a bathroom" + }, + { + "label": "a black ct with green eyes sitting in the sun", + "pred": "a black cat standing in a grassy field" + }, + { + "label": "an empty parking lot features green trees and a single white bicycle", + "pred": "a bicycle parked in a park next to a tree" + }, + { + "label": "a collection of sinks, and basins are on display", + "pred": "a white table topped with bowls and vases on top of a white wall" + }, + { + "label": "old planes on display in a museum", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "an indoor museum exhibit features several old planes", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "fine china stays on display, not to be touched", + "pred": "a white table topped with bowls and vases on top of a white wall" + }, + { + "label": "a bathroom has an mirror with an overhead light", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "lights shine on a wooden dining room table", + "pred": "a kitchen with a stove a refrigerator and a table" + }, + { + "label": "a pink think with a mop for hair and bulging eyeballs", + "pred": "a pink teddy bear sitting on top of a toilet" + }, + { + "label": "a bathroom with a sink, toilet and tub in front of a large mirror", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "sort of bathroom facility, possibly in an airplane", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "an old with motorcycle with people standing beside it", + "pred": "a motorcycle being ridden by a group of people" + }, + { + "label": "a pink, handmade puppet sits on the floor", + "pred": "a pink teddy bear sitting on top of a toilet" + }, + { + "label": "a pink puppet toy with googly eyes on a hanger", + "pred": "a pink teddy bear sitting on top of a toilet" + }, + { + "label": "a cat that is staring at the camera", + "pred": "a black cat standing in a grassy field" + }, + { + "label": "a bicycle parked in an empty parking lot by itself", + "pred": "a bicycle parked in a park next to a tree" + }, + { + "label": "a motorcycle parked in front of a crowd of people", + "pred": "a motorcycle being ridden by a group of people" + }, + { + "label": "a porcelain tea and bathroom set is on display", + "pred": "a white table topped with bowls and vases on top of a white wall" + }, + { + "label": "a collection of soap dishes, bowls, and small trinkets", + "pred": "a white table topped with bowls and vases on top of a white wall" + }, + { + "label": "an air hanger with two world war two airplanes parked next to each other", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "a street filled with lots of traffic next to tall buildings", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a kitchen with a table and four chairs", + "pred": "a kitchen with a stove a refrigerator and a table" + }, + { + "label": "a commercial bathroom stall with empty toilet paper holders", + "pred": "a bathroom with a toilet and a roll of toilet paper" + }, + { + "label": "an empty toilet stall with two rolls of used toilet paper and one full roll", + "pred": "a bathroom with a toilet and a roll of toilet paper" + }, + { + "label": "a toilet in a restroom next to a busted toilet paper dispenser", + "pred": "a bathroom with a toilet and a roll of toilet paper" + }, + { + "label": "a black cat sitting in a field of grass", + "pred": "a black cat standing in a grassy field" + }, + { + "label": "a modern looking commode in a very tiny bathroom", + "pred": "a white toilet sitting inside of a bathroom" + }, + { + "label": "the toilet paper containers in this public restroom are empty and need to be refilled", + "pred": "a bathroom with a toilet and a roll of toilet paper" + }, + { + "label": "two empty toilet paper roll holders hang in the stall while the empties lay around and a nice roll sets on the bar", + "pred": "a bathroom with a toilet and a roll of toilet paper" + }, + { + "label": "toilet with open lid in the middle of a bathroom", + "pred": "a white toilet sitting inside of a bathroom" + }, + { + "label": "a bathroom scene with a modern toilet and wooden fixtures", + "pred": "a white toilet sitting inside of a bathroom" + }, + { + "label": "people walk around old planes in a hanger", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "a black cat standing in front of a motorcycle", + "pred": "a black dog standing next to a motorcycle" + }, + { + "label": "i black cat with yellow eyes sitting in the grass", + "pred": "a black cat standing in a grassy field" + }, + { + "label": "people standing around a home built motorcycle used for racing", + "pred": "a motorcycle being ridden by a group of people" + }, + { + "label": "a black cat is staring directly into the camera", + "pred": "a black cat standing in a grassy field" + }, + { + "label": "people gathered around an old dirty vintage motorcycle", + "pred": "a motorcycle being ridden by a group of people" + }, + { + "label": "a lone bicycle parked in a parking lot with cars parked on a street", + "pred": "a bicycle parked in a park next to a tree" + }, + { + "label": "3 ladies sitting together on a bench in the park", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "partial picture of a kitchen and a table and chairs under a lamp", + "pred": "a kitchen with a stove a refrigerator and a table" + }, + { + "label": "a motorcycle is parked near a puddle and a van", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a bicycle stands in the middle of an empty parking lot", + "pred": "a bicycle parked in a park next to a tree" + }, + { + "label": "the banana is laying next to an almost empty bowl", + "pred": "a bowl of cereal and a banana on a table" + }, + { + "label": "cars and a bus are stopped at an intersection", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "small table and chairs set in a small kitchen", + "pred": "a kitchen with a stove a refrigerator and a table" + }, + { + "label": "a black cat with arched back walking past a motorcycle", + "pred": "a black dog standing next to a motorcycle" + }, + { + "label": "a wood paneled kitchen with dining table and tiled floor", + "pred": "a kitchen with a stove a refrigerator and a table" + }, + { + "label": "a black cat posing in front of motorcyle", + "pred": "a black dog standing next to a motorcycle" + }, + { + "label": "women sitting on a park bench", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a cat walks next to a motorcycle on a sidewalk", + "pred": "a black dog standing next to a motorcycle" + }, + { + "label": "vehicles stopped on a city street", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a bike is perched on a concrete girder on the road", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a white and black motorcycle sits next to a van in a parking lot", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a pretty young girl standing next to another pretty young girl on a beach", + "pred": "young girls standing on top of a beach" + }, + { + "label": "a large church building with a massive clock tower", + "pred": "a large brick building with a clock tower" + }, + { + "label": "a black cat meanders up the walkway in front of a motorcycle in front of a house", + "pred": "a black dog standing next to a motorcycle" + }, + { + "label": "a bowl of food next to a very close banana", + "pred": "a bowl of cereal and a banana on a table" + }, + { + "label": "people walking onto the beach from the water", + "pred": "young girls standing on top of a beach" + }, + { + "label": "a church building with a tall narrow clock tower", + "pred": "a large brick building with a clock tower" + }, + { + "label": "a banana and a nearly empty bowl of food resting on top of a table", + "pred": "a bowl of cereal and a banana on a table" + }, + { + "label": "a white and black motorcycle sits in a parking spot", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a bowl with something in it with a banana next to it", + "pred": "a bowl of cereal and a banana on a table" + }, + { + "label": "the bench's maximum weight capacity may be strained", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a white motorcycle sitting in front of a van", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a number of vehicles waiting at an intersection", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a white motorcycle parked next to a sidewalk", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "in the desert, two people are sitting next to a small propeller plane next to a tent with other planes", + "pred": "a small plane sitting on top of a dirt field" + }, + { + "label": "a gray and white kitten sitting in a bathroom sink", + "pred": "a cat that is sitting in a sink" + }, + { + "label": "cars waiting at an intersection for the light to change", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a bowl filled with leftover food sitting next to a banana", + "pred": "a bowl of cereal and a banana on a table" + }, + { + "label": "two almost identical photos with some minor cropping show two young girls standing on the coast with people in the water in the background as a plane flies overhead", + "pred": "young girls standing on top of a beach" + }, + { + "label": "a church with a clock stands behind a fence", + "pred": "a large brick building with a clock tower" + }, + { + "label": "a bike parked on the side walk and a car on the street", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a small plane is preparing to land on the strip", + "pred": "a small plane on a runway with trees" + }, + { + "label": "bicycle parked by the side of busy highway on a concrete slab", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "girls playing on a beach with an airplane flying above them", + "pred": "young girls standing on top of a beach" + }, + { + "label": "large brick building with a clock tower at its height", + "pred": "a large brick building with a clock tower" + }, + { + "label": "people sitting in chairs behind an airplane", + "pred": "a small plane sitting on top of a dirt field" + }, + { + "label": "people on the beach really close to the water", + "pred": "young girls standing on top of a beach" + }, + { + "label": "a tall tower with a clock on top", + "pred": "a large brick building with a clock tower" + }, + { + "label": "a flat screen tv embedded in a restroom mirror", + "pred": "a bathroom with a urinal and a large mirror" + }, + { + "label": "a metallic toilet sitting in a small bathroom", + "pred": "a man is cleaning a toilet in a public restroom" + }, + { + "label": "a small airplane coming in for a landing", + "pred": "a small plane on a runway with trees" + }, + { + "label": "a man and woman who have set up camp on a sandy beach", + "pred": "a small plane sitting on top of a dirt field" + }, + { + "label": "an overhead of a stainless steel open toilet with a man's feet stradling", + "pred": "a man is cleaning a toilet in a public restroom" + }, + { + "label": "a small airplane is in the air on a runway", + "pred": "a small plane on a runway with trees" + }, + { + "label": "a plane on runway taking off above ground", + "pred": "a small plane on a runway with trees" + }, + { + "label": "the tiny kitten looks sad sitting in the bathroom sink with a scrub brush on the rim", + "pred": "a cat that is sitting in a sink" + }, + { + "label": "a bicycle parked near a curb on the highway", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "two people outside sitting on chairs with planes around them", + "pred": "a small plane sitting on top of a dirt field" + }, + { + "label": "a gray and white kitten in a white bathroom sink", + "pred": "a cat that is sitting in a sink" + }, + { + "label": "the reflection of a man taking a picture in a mirror", + "pred": "a man in a dress shirt and tie standing in a bathroom mirror" + }, + { + "label": "a television screen is displayed in an empty bus", + "pred": "a train that is sitting on a train track" + }, + { + "label": "a bathroom that has magazine rack and small cabinet", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a kitten sitting in a skin with a green brush with green bristles", + "pred": "a cat that is sitting in a sink" + }, + { + "label": "a vacant bus has seats facing in multiple directions", + "pred": "a train that is sitting on a train track" + }, + { + "label": "a small plane taking off from a run way in mid air", + "pred": "a small plane on a runway with trees" + }, + { + "label": "a tv in a bathroom mirror next to sinks", + "pred": "a bathroom with a urinal and a large mirror" + }, + { + "label": "compact bathroom area, tub, toilet, magazine area and sink", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a bicycle sits parked along a busy roadside", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a man takes his picture using the bathroom mirror", + "pred": "a man in a dress shirt and tie standing in a bathroom mirror" + }, + { + "label": "kitten looking puzzled sitting in a bathroom sink", + "pred": "a cat that is sitting in a sink" + }, + { + "label": "small residential bath room decorated in wood tones", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "the inside of a commuter city bus with palide seats", + "pred": "a train that is sitting on a train track" + }, + { + "label": "a man wearing a hat while standing in front of a bathroom mirror", + "pred": "a man in a dress shirt and tie standing in a bathroom mirror" + }, + { + "label": "an empty bus with brown cloth covered seats", + "pred": "a train that is sitting on a train track" + }, + { + "label": "bananas sitting on top of a wooden table", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a man taking a picture of himself in a mirror", + "pred": "a man in a dress shirt and tie standing in a bathroom mirror" + }, + { + "label": "a man standing over a shiny metal toilet", + "pred": "a man is cleaning a toilet in a public restroom" + }, + { + "label": "an aerial view of an open toilet seat that someone is standing in front of", + "pred": "a man is cleaning a toilet in a public restroom" + }, + { + "label": "a football game on tv reflects in a bathroom mirror", + "pred": "a bathroom with a urinal and a large mirror" + }, + { + "label": "a woman walking while carrying bananas on her hat", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "an empty bus has tartan seats, and a wooden floor", + "pred": "a train that is sitting on a train track" + }, + { + "label": "a person is holding a spatula near slices of bread on a stove", + "pred": "a person holding a knife and fork in front of a stove" + }, + { + "label": "two people are camping out in the desert", + "pred": "a small plane sitting on top of a dirt field" + }, + { + "label": "a cluttered room filled with a tv and a kitchen", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a tissue box on top of a toilet in a bathroom", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a woman carrying a bunch of bananas on her head walking down a street", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "a clean full bathroom", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a room with a television set a stool and some pictures", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "woman carrying a bunch of bananas on top of her hat", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "metal commode from above, photographer's shoes visible", + "pred": "a man is cleaning a toilet in a public restroom" + }, + { + "label": "two motocross racers in the middle of a race", + "pred": "a person riding a dirt bike on a race track" + }, + { + "label": "a flat screen tv adorns a bathroom mirror", + "pred": "a bathroom with a urinal and a large mirror" + }, + { + "label": "a small apartment has many belongings in it", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a calico cat drinking from a sink faucet", + "pred": "a black and white cat sitting in a bathroom sink" + }, + { + "label": "a video game in the middle of a large mirror in a bathroom", + "pred": "a bathroom with a urinal and a large mirror" + }, + { + "label": "man on a contraption, surrounded by a bicycle and another person", + "pred": "a man riding on the back of a dirt bike" + }, + { + "label": "a person bundled in winter clothing and scarf cooking", + "pred": "a person holding a knife and fork in front of a stove" + }, + { + "label": "a woman walks down the street with bananas on her hat", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "cat attempting to get a drink out of a faucet", + "pred": "a black and white cat sitting in a bathroom sink" + }, + { + "label": "two competitors skidding during a dirt bike competition", + "pred": "a person riding a dirt bike on a race track" + }, + { + "label": "the front room of an apartment with the basics", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a plane is flying away from the airport", + "pred": "a man standing in front of an airplane window" + }, + { + "label": "bananas on a table", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a lady walks down the street with bananas on her head", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "two motorcross people skidding in the dirtroad", + "pred": "a person riding a dirt bike on a race track" + }, + { + "label": "a cat crouched over sitting by a brick wall", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a cat drinking out of the faucet of a sink", + "pred": "a black and white cat sitting in a bathroom sink" + }, + { + "label": "a calico cat drinks water from a faucet", + "pred": "a black and white cat sitting in a bathroom sink" + }, + { + "label": "chairs sit at an island near an open door", + "pred": "a kitchen with a table and a refrigerator" + }, + { + "label": "a tv sits in a room with many other things", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a white truck parked next to a white trailer", + "pred": "a white truck parked next to a wooden bench" + }, + { + "label": "a walk in shower next to a toilet with a wooden seat", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a colorful fighter jet flying through a blue sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a city made out of stone brick with large arches", + "pred": "two people are walking down a stone walkway" + }, + { + "label": "a man wearing a helmet while holding a banana next to a woman wearing a helmet", + "pred": "a man wearing a hat and holding a banana" + }, + { + "label": "a man on a piece of equipment resembling a bicycle that has very large wheels", + "pred": "a man riding on the back of a dirt bike" + }, + { + "label": "an orange cat sitting in front of a door to a house", + "pred": "a cat sitting on a ledge next to a door" + }, + { + "label": "a person at an airport terminal with planed in view outside of the windows", + "pred": "a man standing in front of an airplane window" + }, + { + "label": "a bathroom sink with a marble counter top under a large mirror", + "pred": "a bathroom sink with a toothbrush holder next to it" + }, + { + "label": "a person with a shopping cart on a city street", + "pred": "a man standing next to a woman talking on a cell phone" + }, + { + "label": "two people on dirt bikes making turns on a track", + "pred": "a person riding a dirt bike on a race track" + }, + { + "label": "a purple and white bus driving down a street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a kitchen in a house under construction and painting", + "pred": "a kitchen with a table and a refrigerator" + }, + { + "label": "a large passenger jet sitting on top of an airport runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "city dwellers walk by as a homeless man begs for cash", + "pred": "a man standing next to a woman talking on a cell phone" + }, + { + "label": "a bathroom sink under a mirror next to a plant", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a herd of cattle sitting in front of a church with a steeple", + "pred": "cows standing in front of a church" + }, + { + "label": "dirt bikers in a race", + "pred": "a person riding a dirt bike on a race track" + }, + { + "label": "a gray and white tiger striped cat sitting in front of a brickwall", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a doorway into a clean wood floored kitchen", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a large terminal in a quiet airport hall", + "pred": "a man standing in front of an airplane window" + }, + { + "label": "a cat perched near a brick wall looking to he right", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a black and silver kitchen with wood floors", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "the view of four cows standing in a row from behind", + "pred": "cows standing in front of a church" + }, + { + "label": "people walking past a homeless man begging on a city street", + "pred": "a man standing next to a woman talking on a cell phone" + }, + { + "label": "a man is cooking while wearing a jacket and scarf", + "pred": "a person holding a knife and fork in front of a stove" + }, + { + "label": "a large commercial airplane sitting on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a man on a beech vehicle making his way thru the sand", + "pred": "a man riding on the back of a dirt bike" + }, + { + "label": "a kitchen featuring an open island for seating with high back stools", + "pred": "a kitchen with a table and a refrigerator" + }, + { + "label": "the large living room has been decorated in modern furnishings", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a tiled bathroom with toilet and open shower", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a jet with lots of colors leaving a trail in the sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a young man takes a picture of himself in the mirror", + "pred": "a man in a dress shirt and tie standing in a bathroom mirror" + }, + { + "label": "a black cat sits in a bathroom sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "a cat crouched on the edge of a porch", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "an orange bucket sitting on a stool in a bathroom", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a contemporary kitchen featuring wood floors and a stainless steel oven", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a cat sitting in a pouncing position next to a brick wall", + "pred": "a gray and white cat sitting on a brick wall" + }, + { + "label": "a homeless man holding a cup and standing next to a shopping cart on a street", + "pred": "a man standing next to a woman talking on a cell phone" + }, + { + "label": "a purple and white city bus pulling up to the curb", + "pred": "a double decker bus driving down a street" + }, + { + "label": "people are walking on the street by a homeless person", + "pred": "a man standing next to a woman talking on a cell phone" + }, + { + "label": "a bathroom with a round sink and red tile backsplash", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "the neat bathroom has green trim on the tile", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a black cat looking intently at the camera", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "a person that is cooking some food in a kitchen", + "pred": "a person holding a knife and fork in front of a stove" + }, + { + "label": "four cows stand in the parking lot of a church", + "pred": "cows standing in front of a church" + }, + { + "label": "a jet plane that is painted multi color", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a red bucket is on a stool in the bathroom", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a kitchen with a bright window and house plants", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "a large truck is parked beside an old, wooden bench", + "pred": "a white truck parked next to a wooden bench" + }, + { + "label": "in an unfinished room a counter sits with three chairs while a stove and cabinets sit in the distance", + "pred": "a kitchen with a table and a refrigerator" + }, + { + "label": "a bathroom with a toilet and a small bucket on a small stool", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "two planes flying in the sky over a bridge", + "pred": "a plane flying over a bridge over a body of water" + }, + { + "label": "a truck and trailer sit behind a long bench", + "pred": "a white truck parked next to a wooden bench" + }, + { + "label": "the four huge bananas are still connected together", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a small black cat sits outside on an open window sill", + "pred": "a cat sitting on a ledge next to a door" + }, + { + "label": "a sky photo to jumbo jet airplanes over a bridge", + "pred": "a plane flying over a bridge over a body of water" + }, + { + "label": "a cat drinking water from a bathroom faucet", + "pred": "a black and white cat sitting in a bathroom sink" + }, + { + "label": "a person bundled up while frying something on the stove indoors", + "pred": "a person holding a knife and fork in front of a stove" + }, + { + "label": "a large plant is in the corner of a small bathroom", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a man waits in an airport terminal as planes take-off", + "pred": "a man standing in front of an airplane window" + }, + { + "label": "people in an air port waiting area", + "pred": "a man standing in front of an airplane window" + }, + { + "label": "a large clock tower is yellow and white", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a person riding a two thick wheeled bike on sand", + "pred": "a man riding on the back of a dirt bike" + }, + { + "label": "a very nice kitchen with the light on", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "two planes fly over a bridge in sydney, australia, with the sydney opera house", + "pred": "a plane flying over a bridge over a body of water" + }, + { + "label": "an airplane makes its way down a snowy runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a man standing on a vehicle with two large wheels", + "pred": "a man riding on the back of a dirt bike" + }, + { + "label": "bananas on a wooden counter", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a small bathroom with a white toilet next to a shower curtain covered bath tub", + "pred": "a white toilet sitting next to a shower curtain" + }, + { + "label": "bananas very close up on a table", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a black cat sitting on top of a bathroom sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "the white and yellow clock with a red roof reads 11:44", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a small bathroom with two containers catching plumbing drips", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a kitchen with hardwood floors and a sink and oven", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a tower white with yellow trim tower features a large clock", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "two people posing in funny hats for a camera", + "pred": "a man wearing a hat and holding a banana" + }, + { + "label": "a kitchen with a stove a table some chairs and a sink", + "pred": "a kitchen with a table and a refrigerator" + }, + { + "label": "a flat screen mounted to a wall in a living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a toilet with a wood seat and a tiled floor", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a bathroom has a circular sink with red tiles", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "this bathroom has a pattern of blue tiles on the floor", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a park bench surrounded by floral arrangements on either side", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a kitchen with wooden furniture and a vase filled with red flowers", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "two jets are flying over a bridge and some water", + "pred": "a plane flying over a bridge over a body of water" + }, + { + "label": "two airplanes flying in the sky above a black bridge", + "pred": "a plane flying over a bridge over a body of water" + }, + { + "label": "a yellow and white clock tower against a blue sky", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a man blowing out candles on a cake", + "pred": "a man cutting a cake on top of a table" + }, + { + "label": "a man and woman at a party dressed in costumes", + "pred": "a man wearing a hat and holding a banana" + }, + { + "label": "a man blowing out a birthday cake with many candles", + "pred": "a man cutting a cake on top of a table" + }, + { + "label": "an open door showing a shower with the curtain closed", + "pred": "a white toilet sitting next to a shower curtain" + }, + { + "label": "a bathroom being renovated with pipes in the wall", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "two clocks on perpendicular facades of a church bell tower", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a truck with a side trailer", + "pred": "a white truck parked next to a wooden bench" + }, + { + "label": "an orange cat sits on a stoop in front of a door", + "pred": "a cat sitting on a ledge next to a door" + }, + { + "label": "blue motorcycle on display, surrounded by other vehicles", + "pred": "a blue motorcycle sitting on top of a table" + }, + { + "label": "a man rides a large motorcycle on a freeway", + "pred": "a man riding on the back of a yellow scooter" + }, + { + "label": "a man riding a motorcycle in overcast weather", + "pred": "a man riding on the back of a yellow scooter" + }, + { + "label": "a toilet with a pink seat and lid", + "pred": "a pink toilet sitting on top of a wooden floor" + }, + { + "label": "a man and a woman posing together for a picture", + "pred": "a man wearing a hat and holding a banana" + }, + { + "label": "a person brushing her teeth in the bathroom", + "pred": "a woman brushing her teeth in a bathroom" + }, + { + "label": "a black cat sitting inside a bathroom sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "a plane siting on a showy tarmac at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a woman is brushing her teeth and posing for a picture", + "pred": "a woman brushing her teeth in a bathroom" + }, + { + "label": "a man rides a yellow motorcycle down a street", + "pred": "a man riding on the back of a yellow scooter" + }, + { + "label": "a jet is towed down the tarmac on a dreary gray day", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a man standing in front of a fruit stand containing several bunches of bananas", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "a comment that is open", + "pred": "a pink toilet sitting on top of a wooden floor" + }, + { + "label": "a wooden bench with an old tire sitting on it", + "pred": "a white truck parked next to a wooden bench" + }, + { + "label": "a bright pink toilet seat in a bathroom", + "pred": "a pink toilet sitting on top of a wooden floor" + }, + { + "label": "a red car next to a gas station sign and parked blue and silver motorcycles", + "pred": "a street scene with a car and a street sign" + }, + { + "label": "a black dog standing between people in line", + "pred": "a person walking a dog next to a group of people" + }, + { + "label": "woman dressed in black, smiling and brushing her teeth", + "pred": "a woman brushing her teeth in a bathroom" + }, + { + "label": "two men are riding motorcycles through some ruins", + "pred": "two people are walking down a stone walkway" + }, + { + "label": "a toilet, counter and shower in a bathroom", + "pred": "a white toilet sitting next to a shower curtain" + }, + { + "label": "a blue motorcycle is displayed in a showroom", + "pred": "a blue motorcycle sitting on top of a table" + }, + { + "label": "a small black dog standing behind a crowd of people", + "pred": "a person walking a dog next to a group of people" + }, + { + "label": "a purple and white bus in a parking lot", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a bathroom with blue tile outline around the floor", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a man blowing out candles on a cake", + "pred": "a man cutting a cake on top of a table" + }, + { + "label": "a photo taken from a vehicle at a man on a yellow motorcycle", + "pred": "a man riding on the back of a yellow scooter" + }, + { + "label": "a man looks at a cart full of bananas", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "person on motorcycle in a very scenic rock area", + "pred": "two people are walking down a stone walkway" + }, + { + "label": "man with yellow helmet riding a yellow motorcycle", + "pred": "a man riding on the back of a yellow scooter" + }, + { + "label": "a person riding a motorcycle in an abandoned stone building", + "pred": "two people are walking down a stone walkway" + }, + { + "label": "an all white living room with stone flooring", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a red ferrari at a gas station showing the gas prices and three mopeds", + "pred": "a street scene with a car and a street sign" + }, + { + "label": "a white bathroom with a large, circular sink", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a bathroom with matching shower curtain and rug", + "pred": "a white toilet sitting next to a shower curtain" + }, + { + "label": "a man blowing out candles on a cake", + "pred": "a man cutting a cake on top of a table" + }, + { + "label": "two people skateboarding down a roadway in a downhill descent", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a motorcycle is on esplanade at the car show", + "pred": "a blue motorcycle sitting on top of a table" + }, + { + "label": "the woman brushes her teeth in the bathroom", + "pred": "a woman brushing her teeth in a bathroom" + }, + { + "label": "a beautiful young woman brushing her teeth in a bathroom", + "pred": "a woman brushing her teeth in a bathroom" + }, + { + "label": "a blue motorcycle parked on display next to other vehicles", + "pred": "a blue motorcycle sitting on top of a table" + }, + { + "label": "a show floor with a shiny blue motorcycle surrounded by bars", + "pred": "a blue motorcycle sitting on top of a table" + }, + { + "label": "a photograph where the only color is coming from the bananas on a stand", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "man blowing out white candles on top of a brown cake", + "pred": "a man cutting a cake on top of a table" + }, + { + "label": "black cat with green eyes sitting in a bathroom sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "four cow rears stand in front of a building with a steeple", + "pred": "cows standing in front of a church" + }, + { + "label": "two male skateboarders rolling down a paved slope", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "bananas being sold and a man looking at them", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "two people outside of a stone building near a red fire hydrant", + "pred": "a man standing next to a fire hydrant in front of a building" + }, + { + "label": "two longboarders coasting, crouched, across a downhill road", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "two people posing and one man is holding a banana", + "pred": "a man wearing a hat and holding a banana" + }, + { + "label": "a bathroom with a sink and mirror", + "pred": "a bathroom sink with a toothbrush holder next to it" + }, + { + "label": "two people riding skate boards on a hilly road", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a calico cat laying on the hood of a mercedes", + "pred": "a cat that is standing on top of a car" + }, + { + "label": "a bathroom with a mirror and a sink", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a purple bus with a person on the side driving around a curb", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a room where all the furniture and the walls are white", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a cat is sitting on the hood of a car", + "pred": "a cat that is standing on top of a car" + }, + { + "label": "boy standing on a skate board as seen from under the board", + "pred": "a woman standing on top of a metal rail holding a skateboard" + }, + { + "label": "a cat is sleeping on the hood of a car", + "pred": "a cat that is standing on top of a car" + }, + { + "label": "two people on skateboards riding down a slanted road", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a calico cat sits on the hood of a black car", + "pred": "a cat that is standing on top of a car" + }, + { + "label": "a bus sits diagonal from the curb next to a building and people", + "pred": "a double decker bus driving down a street" + }, + { + "label": "unfinished bathroom with only a shower base installed", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "two people standing on the side of a street", + "pred": "a man standing next to a fire hydrant in front of a building" + }, + { + "label": "a young man standing on a skate board", + "pred": "a woman standing on top of a metal rail holding a skateboard" + }, + { + "label": "a woman is pulling luggage on to a sidewalk near a fire hydrant", + "pred": "a man standing next to a fire hydrant in front of a building" + }, + { + "label": "an orange tabby cat lies down outside a door on a house porch", + "pred": "a cat sitting on a ledge next to a door" + }, + { + "label": "a calico cat with eyes closed is perched upon a mercedes", + "pred": "a cat that is standing on top of a car" + }, + { + "label": "man and woman with luggage near a doorway on a city street", + "pred": "a man standing next to a fire hydrant in front of a building" + }, + { + "label": "a city scene of a sidewalk with a red fire hydrant on a sidewalk next to an atm", + "pred": "a man standing next to a fire hydrant in front of a building" + }, + { + "label": "small wooden and white kitchen sink with a small mirror", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a bright pink toilet seat with the lid open", + "pred": "a pink toilet sitting on top of a wooden floor" + }, + { + "label": "a bathroom with a bath tub a sink and a mirror", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a white room with not that much in it", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a colorful plane leaves a trail of smoke on a clear blue sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "soap and a water bottle are on top of a vanity in a teal bathroom", + "pred": "a bathroom sink with a toothbrush holder next to it" + }, + { + "label": "a kitchen table and chairs with greenery and tulips", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "a man taking a picture of a narrow walkway", + "pred": "two people are walking down a stone walkway" + }, + { + "label": "a man with graying hair looks down at a stand full of yellow bananas", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "a row of scooters", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "this black and white photo shows many motorcycles parked next to each other", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a clean bathroom with a sink and a checkered linoleum floor", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a fat orange cat sitting on a deck", + "pred": "a cat sitting on a ledge next to a door" + }, + { + "label": "a walk in shower in a dilapidated bathroom", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a person standing by a bicycle", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "a man in a parking lot stand next to bike and motorcycle", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "people that are looking at a pool", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "the neon purple toilet with lid lifted is in the bathroom with brown tile", + "pred": "a pink toilet sitting on top of a wooden floor" + }, + { + "label": "the front edge of a well used skateboard", + "pred": "a woman standing on top of a metal rail holding a skateboard" + }, + { + "label": "a kitchen with a stove top oven next to a white fridge", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a dog is standing next to a toilet playing with tissue", + "pred": "a dog sitting on a toilet in a bathroom" + }, + { + "label": "man laughing standing next to his motorcycle with his bicycle attached to it", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "a man smiles while he stands beside a bike with a bike on it", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "a black cat sits in a car and looks out", + "pred": "a cat looking out the window of a car" + }, + { + "label": "a black cat looking out the windshield of a car", + "pred": "a cat looking out the window of a car" + }, + { + "label": "a man sitting at a computer desk in front of a monitor", + "pred": "a dog sitting on the floor in a room" + }, + { + "label": "a cat inside of a car during the day", + "pred": "a cat looking out the window of a car" + }, + { + "label": "cars parked on a city street with tall buildings", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a bathroom with a tub on the side and a large bowl sink under a large bathroom mirror", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "this floor has a pattern of black and white tiles the sink is the same pattern", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a bathroom with a toilet and a blue striped shower curtain", + "pred": "a white toilet sitting next to a shower curtain" + }, + { + "label": "a street scene with a person on a motorcycle", + "pred": "a man on a motor scooter with a woman on a motor scooter" + }, + { + "label": "the shower room has a light green tint", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a bicycle is mounted on the back of a motorcycle", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "a bathroom with a sink that is elevated", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "long line of motorcycles near the edge of a building", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a person on a motorcycle along a farmers market", + "pred": "a man on a motor scooter with a woman on a motor scooter" + }, + { + "label": "a person that is on top of a skateboard", + "pred": "a woman standing on top of a metal rail holding a skateboard" + }, + { + "label": "a mulitcolored plane is flying in the sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a woman is showing a watermelon slice to a woman on a scooter", + "pred": "a man on a motor scooter with a woman on a motor scooter" + }, + { + "label": "a small glider flying through the sky with a pilot", + "pred": "a small propeller plane flying through a cloudy sky" + }, + { + "label": "a person on a motorcycle talking to a person with a watermelon", + "pred": "a man on a motor scooter with a woman on a motor scooter" + }, + { + "label": "a cluster of traffic driving towards a capital building", + "pred": "cars driving down a street next to tall buildings" + }, + { + "label": "a car with some gas prices and motorcycle lined up", + "pred": "a street scene with a car and a street sign" + }, + { + "label": "a sink with soap next to it", + "pred": "a bathroom sink with a toothbrush holder next to it" + }, + { + "label": "a man riding a skateboard on a ramp", + "pred": "a woman standing on top of a metal rail holding a skateboard" + }, + { + "label": "a room with all white furniture in front of a flat screen t.v", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a dog jumping through the air into a pool", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "a white sink with a black cabinet underneath it", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "people near a lot holding a huge quantity of motorcycles", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a dog in the bathroom reaching for the toilet paper", + "pred": "a dog sitting on a toilet in a bathroom" + }, + { + "label": "people at a veggie and fruit market looking at the merchandise", + "pred": "a man on a motor scooter with a woman on a motor scooter" + }, + { + "label": "a person with an orange blanket covering them, sleeping on a wooden park bench", + "pred": "a park bench sitting next to a parking meter" + }, + { + "label": "people standing around and a black dog with a collar walking around", + "pred": "a person walking a dog next to a group of people" + }, + { + "label": "a cat is sitting in a car near the dash", + "pred": "a cat looking out the window of a car" + }, + { + "label": "a tile bathroom contains a tub and large sink", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a black cat looks out from the inside of a car", + "pred": "a cat looking out the window of a car" + }, + { + "label": "a bathroom is outfitted with brown and white", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "person sleeping on bench in sleeping bag near parking meters", + "pred": "a park bench sitting next to a parking meter" + }, + { + "label": "a huge group of motor cycles sitting on the street", + "pred": "a street filled with lots of parked motorcycles" + }, + { + "label": "a dog jumping through the air above a pool of water that has been marked for distance, with people watching in the distance", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "a person is sleeping on a bench in a sleeping bag", + "pred": "a park bench sitting next to a parking meter" + }, + { + "label": "a yellow dog smelling the toilet paper in a bathroom", + "pred": "a dog sitting on a toilet in a bathroom" + }, + { + "label": "a dog uses its mouth to grab toilet paper off of the roll", + "pred": "a dog sitting on a toilet in a bathroom" + }, + { + "label": "four cows standing on the side of a road", + "pred": "cows standing in front of a church" + }, + { + "label": "a dog eating toilet paper from the toilet paper holder", + "pred": "a dog sitting on a toilet in a bathroom" + }, + { + "label": "the young man is holding a clear frisbee", + "pred": "a man holding a frisbee on top of a beach" + }, + { + "label": "the person is sleeping on a park bench", + "pred": "a park bench sitting next to a parking meter" + }, + { + "label": "a person walking across the street with a traffic light above", + "pred": "a person on a skateboard in the middle of a street" + }, + { + "label": "a city street in the 1950s or early 1960s", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "person standing near the water with a red disc in hand", + "pred": "a man holding a frisbee on top of a beach" + }, + { + "label": "we are looking at an old photo of a city street", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a old photo in black and white of a city street", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a person that is walking on the street", + "pred": "a person on a skateboard in the middle of a street" + }, + { + "label": "historic buildings cover an area with architectural elements alongside the street", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a black toilet in a tiled public bathroom stall", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a stoplight by a street", + "pred": "a traffic light sitting next to a street light" + }, + { + "label": "a person covered with an orange sleeping bag rests his head on a blue back pack as he sleeps on a park bench", + "pred": "a park bench sitting next to a parking meter" + }, + { + "label": "a collage shows a car, a gas station sign, and motor scooters", + "pred": "a street scene with a car and a street sign" + }, + { + "label": "a traffic light attached to a pole with a sky", + "pred": "a traffic light sitting next to a street light" + }, + { + "label": "a traffic signal next to two other traffic signals", + "pred": "a traffic light sitting next to a street light" + }, + { + "label": "a bathroom sink with a bottle of hand soap", + "pred": "a bathroom sink with a toothbrush holder next to it" + }, + { + "label": "a public transit train with its doors open", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a person standing holding a frisbee", + "pred": "a man holding a frisbee on top of a beach" + }, + { + "label": "traffic lights on a nice day", + "pred": "a traffic light sitting next to a street light" + }, + { + "label": "a man standing on a hillside next to a lake holding frisbee", + "pred": "a man holding a frisbee on top of a beach" + }, + { + "label": "a subway car with an open door parked next to a platform", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "yellow street lights on some poles in the middle of a street", + "pred": "a traffic light sitting next to a street light" + }, + { + "label": "bouquets of flower sit on either side of a memorial bench", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a laptop computer sitting on a desk next to a desktop monitor", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a kitchen with old wooden cabinets and a stove top oven", + "pred": "a kitchen that has a table and a mixer in it" + }, + { + "label": "an elderly person in a kitchen cooking food", + "pred": "a man preparing food on a stove top in a kitchen" + }, + { + "label": "a woman bending over in a living room to pet her dog", + "pred": "a dog that is standing in front of a tv" + }, + { + "label": "lady in her living room playing with the dog", + "pred": "a dog that is standing in front of a tv" + }, + { + "label": "vespas, a car and gas signs", + "pred": "a street scene with a car and a street sign" + }, + { + "label": "a computer desk with multiple computers and screens", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a husky jumping jumping above the water of a pool", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "a black dog on a leash and people's legs", + "pred": "a person walking a dog next to a group of people" + }, + { + "label": "a person that is cooking some food in a kitchen", + "pred": "a man preparing food on a stove top in a kitchen" + }, + { + "label": "an open door of a blue passenger rail line", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "the pedestrian crosses the lit city street at nightitme", + "pred": "a person on a skateboard in the middle of a street" + }, + { + "label": "a country-style kitchen with red tile and white cabinets", + "pred": "a kitchen that has a table and a mixer in it" + }, + { + "label": "a black and white cat standing in a white bathroom sink", + "pred": "a black and white cat sitting on top of a white sink" + }, + { + "label": "a female plays with her dog in the living room", + "pred": "a dog that is standing in front of a tv" + }, + { + "label": "a desk with two computer monitors and a laptop", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a man stirring something in a foil roasting pan", + "pred": "a man preparing food on a stove top in a kitchen" + }, + { + "label": "a man standing by the ocean with something in his hand", + "pred": "a man holding a frisbee on top of a beach" + }, + { + "label": "wooden central counter-top in a tiled kitchen", + "pred": "a kitchen that has a table and a mixer in it" + }, + { + "label": "a computer desk that has three monitors on top of it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a man prepares food in a restaurant kitchen", + "pred": "a man preparing food on a stove top in a kitchen" + }, + { + "label": "a person standing on top of a ski covered slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "people standing around at a rodeo", + "pred": "a dog jumping over a fence to catch a frisbee" + }, + { + "label": "a kitchen filled with metal appliances and a window", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a person crossing a street next to a crosswalk", + "pred": "a person on a skateboard in the middle of a street" + }, + { + "label": "a small tiled bethroom stall with a black toilet seat", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a man sitting on one of a group of motorcycles", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a passenger train's door is open at the station platform", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a row of parked motorcycles sitting in front of a tall building", + "pred": "a city street filled with lots of cars and people" + }, + { + "label": "the open door of a train", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a kitchen scene complete with an oven, range and a refrigerator", + "pred": "a kitchen that has a table and a mixer in it" + }, + { + "label": "a full sized mirror reflecting a man sitting at a desk", + "pred": "a dog sitting on the floor in a room" + }, + { + "label": "a calico cat standing upon a bathroom sink", + "pred": "a black and white cat sitting on top of a white sink" + }, + { + "label": "two men sitting next to each other on a wooden bench", + "pred": "a man sitting on a bench next to a woman" + }, + { + "label": "a young man riding a bike on top of a beach", + "pred": "a person riding a bike on top of a rock" + }, + { + "label": "a church with a stain glassed window of the virgin mary", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "here are motorcyclists parked outside a polish gathering spot for women", + "pred": "a crowd of people sitting around a motorcycle" + }, + { + "label": "a bicyclist performs a wheelie near a rocky shore", + "pred": "a person riding a bike on top of a rock" + }, + { + "label": "a cat idly looks by on top of a sink", + "pred": "a black and white cat sitting on top of a white sink" + }, + { + "label": "a kitchen with a sink and table in it", + "pred": "a kitchen that has a table and a mixer in it" + }, + { + "label": "a toilet bowl with a black toilet seat cover", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a young boy cuts into a cake shaped like a skateboard", + "pred": "a boy cutting a cake with a knife" + }, + { + "label": "a bright kitchen with tulips on the table and plants by the window", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "a cat that is in the sink", + "pred": "a black and white cat sitting on top of a white sink" + }, + { + "label": "the people sit at the bar next to the motorcycles", + "pred": "a crowd of people sitting around a motorcycle" + }, + { + "label": "the small bathroom has a toilet with a black seat", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a man is smiling sitting on a motor bike", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a dog sitting on a sitting", + "pred": "a dog sitting on the floor in a room" + }, + { + "label": "a park bench with flowers next to it", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "the giraffe is standing in the shade of the tree", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a toilet with writing under the lid", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a man balances his bicycle on one wheel", + "pred": "a person riding a bike on top of a rock" + }, + { + "label": "a room with a mirrored closet, keyboard and a dog on a bed", + "pred": "a dog sitting on the floor in a room" + }, + { + "label": "a cat stands in a white bathroom sink", + "pred": "a black and white cat sitting on top of a white sink" + }, + { + "label": "a rodeo area with men in cowboy hats, rodeo clowns and an audience in the stands", + "pred": "a dog jumping over a fence to catch a frisbee" + }, + { + "label": "a bathroom with a shower curtain that has four palm trees on it and a white tile floor", + "pred": "a bathroom with a shower, toilet, and sink" + }, + { + "label": "a stone street with bicycles and motor bikes parked on the side and people standing on the sidewalks in front of buildings", + "pred": "a city street filled with lots of cars and people" + }, + { + "label": "guy with helmet on bicycle at beach", + "pred": "a person riding a bike on top of a rock" + }, + { + "label": "a person on skis and with poles in the snow and facing the blue sky", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a person crosses a street under a streetlight at dusk", + "pred": "a person on a skateboard in the middle of a street" + }, + { + "label": "a bathroom with a toilet, counter and shower", + "pred": "a bathroom with a shower, toilet, and sink" + }, + { + "label": "a middle-aged man leans on a sports bike, smiling", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a computer workstation with a laptop and two additional monitors", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a home kitchen with white cabinets and silver appliances", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a bathroom with a white shower curtain that has four trees on it", + "pred": "a bathroom with a shower, toilet, and sink" + }, + { + "label": "the black terrier stands about knee high to the group of people near him", + "pred": "a person walking a dog next to a group of people" + }, + { + "label": "a giraffe stares into the camera while standing on green grass in front of a shade tree", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a dog competing in a long jump in to water contest", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "a person sits on top of a motorcycle with others", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a person standing on skiis on the snowy slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a toilet sitting underneath a medicine cabinet in a bathroom", + "pred": "a white toilet sitting in a bathroom next to a shelf" + }, + { + "label": "a skier stands on skis at the top of a snowy plateau", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "cityscape of pedestrians enjoying an old european city", + "pred": "a city street filled with lots of cars and people" + }, + { + "label": "a giraffe stands underneath a tree on grass", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a bedroom with a man at a computer in the reflection", + "pred": "a dog sitting on the floor in a room" + }, + { + "label": "a woman riding on the back of a motorcycle", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a woman digging through the storage compartment on her moped", + "pred": "a man working on a motor scooter on a street" + }, + { + "label": "a woman digs under the seat of a moped", + "pred": "a man working on a motor scooter on a street" + }, + { + "label": "a white kitchen", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "people sitting on a wooden bench next to a field", + "pred": "people sitting on top of a bench" + }, + { + "label": "a man with his hair tied back prepares food", + "pred": "a man preparing food on a stove top in a kitchen" + }, + { + "label": "a man riding a motorcycle while eating food", + "pred": "a person riding a motorcycle on a street" + }, + { + "label": "a clean bathroom has a shower curtain with palm trees on it", + "pred": "a bathroom with a shower, toilet, and sink" + }, + { + "label": "a row of bikes and mopeds is parked along the street", + "pred": "a city street filled with lots of cars and people" + }, + { + "label": "a bath tub in a small bathroom with towels hanging over it", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "a contestant has caught a sheep during a rodeo event", + "pred": "a dog jumping over a fence to catch a frisbee" + }, + { + "label": "a man riding his bike of rock cliffs", + "pred": "a person riding a bike on top of a rock" + }, + { + "label": "a young boy cutting a skate board shaped cake", + "pred": "a boy cutting a cake with a knife" + }, + { + "label": "a man riding a horse drawn carriage on a race track", + "pred": "a person riding a horse drawn carriage on a track" + }, + { + "label": "a palm tree shower curtain is shown in a small bathroom", + "pred": "a bathroom with a shower, toilet, and sink" + }, + { + "label": "man wearing a helmet sitting on a motor scooter in traffic", + "pred": "a person riding a motorcycle on a street" + }, + { + "label": "a kitchen with white appliances and brown cupboards", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a small giraffe stands in the grass near a road", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a man leans forward on his motor bike as he sits in traffic", + "pred": "a person riding a motorcycle on a street" + }, + { + "label": "tomatoes sit in a black bowl next to a flower", + "pred": "a bowl of tomatoes next to a bowl of tomatoes on a table" + }, + { + "label": "a person is skiing on a snowy hill top", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a small bathroom with a toilet and medicine cabinet", + "pred": "a white toilet sitting in a bathroom next to a shelf" + }, + { + "label": "a small red and white plane flying in the sky", + "pred": "a small propeller plane flying through a cloudy sky" + }, + { + "label": "a counter with a flower, tomatoes in a bowl and silver canister", + "pred": "a bowl of tomatoes next to a bowl of tomatoes on a table" + }, + { + "label": "a bathroom is shown with a stainless steel shelf, toilet and wall phone", + "pred": "a white toilet sitting in a bathroom next to a shelf" + }, + { + "label": "a brightly lit kitchen with lots of natural light", + "pred": "a living room with a kitchen and a dining room" + }, + { + "label": "a person on a motor scooter with a helmet on", + "pred": "a person riding a motorcycle on a street" + }, + { + "label": "old people sitting on a bench talking", + "pred": "people sitting on top of a bench" + }, + { + "label": "four older men sitting on a wooden bench", + "pred": "people sitting on top of a bench" + }, + { + "label": "two elder people sit on a bench on a bus street", + "pred": "a man sitting on a bench next to a woman" + }, + { + "label": "a modern kitchen in white with stainless steel lights", + "pred": "a living room with a kitchen and a dining room" + }, + { + "label": "motorcycles and mopeds line a side street during the day in a city", + "pred": "a city street filled with lots of cars and people" + }, + { + "label": "a golden cross ornament sits in the middle of an empty church", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "we are looking through the bars of a fence into a rodeo arena", + "pred": "a dog jumping over a fence to catch a frisbee" + }, + { + "label": "four elderly people sitting in a bench overlooking the ocean", + "pred": "people sitting on top of a bench" + }, + { + "label": "a woman and dog in a living room with the tv on", + "pred": "a dog that is standing in front of a tv" + }, + { + "label": "a motorcycle parked near a fence by a beach", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a variety of bottles and two towels over the toilet", + "pred": "a white toilet sitting in a bathroom next to a shelf" + }, + { + "label": "a plastic dish with the food sectioned off", + "pred": "a lunch box filled with a sandwich, fruit, and vegetables" + }, + { + "label": "a woman looking in the compartment of a moped", + "pred": "a man working on a motor scooter on a street" + }, + { + "label": "a young child mutton busting at a rodeo event", + "pred": "a dog jumping over a fence to catch a frisbee" + }, + { + "label": "an elderly man and woman sit on a bench on a busy sidewalk", + "pred": "a man sitting on a bench next to a woman" + }, + { + "label": "a kitchen filled with a wooden cabinet and a large window", + "pred": "a kitchen filled with lots of clutter and a window" + }, + { + "label": "a white toilet sitting in a corner of a room", + "pred": "a white toilet sitting in a bathroom next to a shower curtain" + }, + { + "label": "a kitchen filled with lots of white counter space", + "pred": "a living room with a kitchen and a dining room" + }, + { + "label": "a woman puts her market shopping in her motor scooter seat", + "pred": "a man working on a motor scooter on a street" + }, + { + "label": "a kitchen in the room with white appliances", + "pred": "a living room with a kitchen and a dining room" + }, + { + "label": "three computers without screens sit on a desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a golden obelisk stands in the middle of an ornate building", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "a motorcycle parked on the road in a desert", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a woman in a living room with a dog", + "pred": "a dog that is standing in front of a tv" + }, + { + "label": "an empty clean kitchen with cabinetry, stove and dishwasher", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "four elders sit on a park bench in front of the ocean", + "pred": "people sitting on top of a bench" + }, + { + "label": "a bath scene with a toilet and a wallpaper with a woman on it", + "pred": "a white toilet sitting in a bathroom next to a shower curtain" + }, + { + "label": "a street scene with motorcycles parked along the side of the road with people dining outside", + "pred": "a crowd of people sitting around a motorcycle" + }, + { + "label": "people sitting behind a line of motorcycles", + "pred": "a crowd of people sitting around a motorcycle" + }, + { + "label": "two men wearing suits and hats are walking together", + "pred": "two men standing next to each other on a dirt road" + }, + { + "label": "a kitchen with a sink and appliances", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "someone is driving a cart near a single engine airplane", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "person driving a plated motorcycle on a track with people watching", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a huge room with desks and places to sit", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "a boy cutting a cake in the shape of a skateboard", + "pred": "a boy cutting a cake with a knife" + }, + { + "label": "a small propeller plane sitting on top of an airport tarmac", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "a modern home kitchen and sitting area looking out towards the back yard", + "pred": "a living room with a kitchen and a dining room" + }, + { + "label": "a toilet area features some shelving with silver accents and towels and a white toilet", + "pred": "a white toilet sitting in a bathroom next to a shelf" + }, + { + "label": "a woman checks out a motorcycle in a parking lot", + "pred": "a man working on a motor scooter on a street" + }, + { + "label": "a patterned wallpaper is on the walls of a bathroom", + "pred": "a white toilet sitting in a bathroom next to a shower curtain" + }, + { + "label": "a man on a motor scooter waiting in a group of motor scooters", + "pred": "a person riding a motorcycle on a street" + }, + { + "label": "cars are waiting in traffic at a stop light", + "pred": "cars driving down a street next to tall buildings" + }, + { + "label": "a man walking down a street smoking a cigarette", + "pred": "a man in a suit is walking down the street" + }, + { + "label": "a giraffe stands under a tree in a grassy place", + "pred": "a giraffe standing next to a zebra in a field" + }, + { + "label": "a small air plane on a small run way", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "two airplanes are parked on the landing strip", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "a motorcycle is sitting next to a beach", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "an older couple sitting on a bench talking", + "pred": "a man sitting on a bench next to a woman" + }, + { + "label": "a bathroom scene with focus on the toilet", + "pred": "a bathroom with a toilet and a blue wall" + }, + { + "label": "a parked red motorcycle a fence and some trees", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "an older couple sitting on a public bench in a city", + "pred": "a man sitting on a bench next to a woman" + }, + { + "label": "a fighter het flying up in the air", + "pred": "a fighter jet flying through the air" + }, + { + "label": "a man walking down a street smoking a cigarette", + "pred": "a man in a suit is walking down the street" + }, + { + "label": "a line of neon colored motorcycles parked in front of a bar", + "pred": "a crowd of people sitting around a motorcycle" + }, + { + "label": "cars on a road with some buildings to the side", + "pred": "cars driving down a street next to tall buildings" + }, + { + "label": "handicapped restroom with open toilet and black and white spotted floor", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a motor bike is parked next to a sandy area", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a man is on the motor bike with a helemt", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a boy sitting in front of cake fashioned to look like a skateboard", + "pred": "a boy cutting a cake with a knife" + }, + { + "label": "a memorial park bench with two pots of cut flowers", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a toilet in the coner iwth wall paper", + "pred": "a white toilet sitting in a bathroom next to a shower curtain" + }, + { + "label": "a white toilet with a black seat sitting in a small stall", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a bathroom with a soap dispenser, toilet and rolls of toilet paper", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "people sitting by a busy street", + "pred": "a man riding a bike down a street next to a fire hydrant" + }, + { + "label": "a kitchen with some plants and a window", + "pred": "a kitchen filled with lots of clutter and a window" + }, + { + "label": "fighter jet with afterburners on flying almost vertically", + "pred": "a fighter jet flying through the air" + }, + { + "label": "the inside view of a large decorated church", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "a bench with a memorial plaque and flowers on each side", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "two rolls of toilet paper and a hand dispenser on the bathroom wall", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a small bathroom is in the middle of a renovation", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "a young man riding in a cart attached to a horse", + "pred": "a person riding a horse drawn carriage on a track" + }, + { + "label": "two men in blazers and fedoras with a moped", + "pred": "two men standing next to each other on a dirt road" + }, + { + "label": "a young boy cuts a cake designed to look like a skateboard", + "pred": "a boy cutting a cake with a knife" + }, + { + "label": "a horse and horserace holing a person on a cart", + "pred": "a person riding a horse drawn carriage on a track" + }, + { + "label": "small motorcycle with several bicycles tied to the back of it", + "pred": "a motorcycle with a basket of bananas on the back" + }, + { + "label": "cars on a street with a domed building", + "pred": "cars driving down a street next to tall buildings" + }, + { + "label": "a space has been made to install a bath tub", + "pred": "a bathroom with a sink and a toilet in it" + }, + { + "label": "a red light is a wonderful contrast to the pink leaves on trees", + "pred": "a red traffic light hanging from the side of a tree" + }, + { + "label": "a man races a horse on a dirt track", + "pred": "a person riding a horse drawn carriage on a track" + }, + { + "label": "a jet with smoke pouring from its wings", + "pred": "a fighter jet flying through the air" + }, + { + "label": "a man in a jean jacket riding a motorcycle on a road", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a scooter carrying numerous bikes", + "pred": "a motorcycle with a basket of bananas on the back" + }, + { + "label": "a simple blue bathroom with only one toilet", + "pred": "a bathroom with a toilet and a blue wall" + }, + { + "label": "a man holding matches and a cigarette in his mouth", + "pred": "a man in a suit is walking down the street" + }, + { + "label": "a person driving a motorcycle on a road", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a small airplane is flying through the empty sky", + "pred": "a small propeller plane flying through a cloudy sky" + }, + { + "label": "man in tan suit walking down a city street lighting a cigarette", + "pred": "a man in a suit is walking down the street" + }, + { + "label": "a woman standing in a kitchen next to a table", + "pred": "a man sitting on a couch in a kitchen" + }, + { + "label": "a white toilet in a trendy wall papered bathroom", + "pred": "a white toilet sitting in a bathroom next to a shower curtain" + }, + { + "label": "a lunch box with a sandwich, carrots, salad and a muffin", + "pred": "a lunch box filled with a sandwich, fruit, and vegetables" + }, + { + "label": "the top window in a kitchen is open", + "pred": "a kitchen filled with lots of clutter and a window" + }, + { + "label": "a motorcycle parked outside of a building with bird cages", + "pred": "a motorcycle with a basket of bananas on the back" + }, + { + "label": "a desktop containing various computers missing their screens", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "people standing around a blue building", + "pred": "a man standing next to a woman on a sidewalk" + }, + { + "label": "a bathroom filled with fixtures and a shower", + "pred": "a bathroom with a toilet, sink, and bathtub" + }, + { + "label": "a bathroom with a white toilet and a sink net to a shower", + "pred": "a bathroom with a toilet a sink and a shower curtain" + }, + { + "label": "a person in a buggy drawn by a horse", + "pred": "a person riding a horse drawn carriage on a track" + }, + { + "label": "a smoking jet going straight up in the sky", + "pred": "a fighter jet flying through the air" + }, + { + "label": "a man lighting a cigarette as he walks on a city street", + "pred": "a man in a suit is walking down the street" + }, + { + "label": "a man riding a motorcycle down a city street", + "pred": "a man riding a bicycle on a city street" + }, + { + "label": "a bathroom with a sink and television inside of the mirror", + "pred": "a bathroom with a tub, sink and mirror" + }, + { + "label": "two gray jets are flying next to each other", + "pred": "a fighter jet flying through the air" + }, + { + "label": "two men who are wearing suits and hats standing next to each other", + "pred": "two men standing next to each other on a dirt road" + }, + { + "label": "a blue toilet sitting in a corner of a bathroom", + "pred": "a bathroom with a toilet and a blue wall" + }, + { + "label": "a motorbike parked, with several bicycles stacked on on the back of it", + "pred": "a motorcycle with a basket of bananas on the back" + }, + { + "label": "a stoplight that has turned red on a road lined with trees that are in bloom", + "pred": "a red traffic light hanging from the side of a tree" + }, + { + "label": "a kitchen filled with wooden cabinets and a microwave oven", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "two men wearing hats standing next to each other", + "pred": "two men standing next to each other" + }, + { + "label": "a large passenger jet flying through a gray sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a counter in a kitchen line with black metal stools", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a small black and brown dog sitting next to a motorcycle", + "pred": "a dog laying on top of a motorcycle" + }, + { + "label": "a people is sitting next to bikes on a cell phone", + "pred": "a young boy riding a bike down a street" + }, + { + "label": "a woman standing on a city street", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "a motorcycle is sitting outside near some plants", + "pred": "a motorcycle with a basket of bananas on it" + }, + { + "label": "an apartment room with a stove, spices, and bookcase", + "pred": "a kitchen filled with lots of clutter and clutter" + }, + { + "label": "a pair of planes sitting on an airstrip next to cones", + "pred": "a small propeller plane parked on a runway" + }, + { + "label": "a bowl full of tomatoes sitting next to a flower", + "pred": "a white bowl filled with tomatoes and peppers" + }, + { + "label": "a man who is riding a silver motorcycle with the number 120 on it", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "two men are dressed in blazers and hats in a rural village area", + "pred": "two men standing next to each other" + }, + { + "label": "a blue toilet is sitting in a blue bathroom", + "pred": "a bathroom with a toilet and a blue wall" + }, + { + "label": "a small airplane that is parked near a run way", + "pred": "a small airplane sitting on top of a runway" + }, + { + "label": "a small kitchen area features a foggy glass window", + "pred": "a kitchen filled with lots of clutter and clutter" + }, + { + "label": "a small airplane sitting next to an airport runway", + "pred": "a small airplane sitting on top of a runway" + }, + { + "label": "a person talking on a mobile phone helping an injured bicyclist", + "pred": "a young boy riding a bike down a street" + }, + { + "label": "a jet on three pillars in front of a building", + "pred": "a small propeller plane on a runway" + }, + { + "label": "people standing behind bales of straw as a protection from motorcycles on a track", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a desk with two laptops and a monitor", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a p-51 mustang and b-25 mitchell on the airport tarmac", + "pred": "a small propeller plane parked on a runway" + }, + { + "label": "a fighter jet sitting on top of a set of three cement blocks", + "pred": "a small propeller plane on a runway" + }, + { + "label": "a person is riding a motorcycle on a city street", + "pred": "a man riding a bicycle on a city street" + }, + { + "label": "a bathroom has red walls with yellow accents", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a bathroom with red walls a shower a sink mirror and toilet", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "person wearing grey clothing on a motorcycle on a city street", + "pred": "a man riding a bicycle on a city street" + }, + { + "label": "a silver lined tub in a small bathroom", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a young girl speaking on a cell phone near a produce vendor", + "pred": "people standing around a street corner" + }, + { + "label": "a roadside vendor sells food to passersby on the street", + "pred": "people standing around a street corner" + }, + { + "label": "a white table topped with cakes and nuts", + "pred": "a teddy bear sitting on top of a counter next" + }, + { + "label": "man sitting on a sidewalk next to a bicycle talking on his cell phone", + "pred": "a young boy riding a bike down a street" + }, + { + "label": "a person is riding a motorcycle around a corner", + "pred": "a man riding a bicycle on a city street" + }, + { + "label": "drawing of a large bathroom that appears to be vintage", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a crop dusting plane next to grassy field and tree", + "pred": "a small airplane sitting on top of a runway" + }, + { + "label": "one white and red plane and one grey plane on the ground", + "pred": "a small propeller plane parked on a runway" + }, + { + "label": "the woman is working at the kitchen counter", + "pred": "a man sitting on a couch in a kitchen" + }, + { + "label": "a traffic light in front of trees with white blossoms", + "pred": "a red traffic light sitting next to a tree" + }, + { + "label": "a tub, a toilet, and a sink in the bathroom", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "children stand in a street looking at a market stand", + "pred": "people standing around a street corner" + }, + { + "label": "a plane is flying in a clear sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a women is standing on the sidewalk under a sign", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "an old airplane is mounted on cement posts", + "pred": "a small propeller plane on a runway" + }, + { + "label": "a couple is preparing food in their white kitchen", + "pred": "a man sitting on a couch in a kitchen" + }, + { + "label": "a bathtub with two towels placed on a rack at the far end of the tub", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "small bathroom with a shower, sink, and toilet", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a woman walking down the sidewalk in the city", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "a red and white airplane in the sky", + "pred": "a small plane flying through a cloudy sky" + }, + { + "label": "a kitchen looks very clean with corner cabinets", + "pred": "a kitchen with white cabinets and white appliances" + }, + { + "label": "a template example of a bathroom is shown in bright colors", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a girl on a bed", + "pred": "a bride and groom are hugging each other" + }, + { + "label": "a woman is leaving a building in a city", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "a white bathroom with an orange shower curtain", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a man is talking on his phone next to a fallen bicycle", + "pred": "a young boy riding a bike down a street" + }, + { + "label": "large passenger jets parked in front of an airport", + "pred": "airplanes are parked on the tarmac" + }, + { + "label": "a woman is selling fruit in a poor neighborhood", + "pred": "people standing around a street corner" + }, + { + "label": "a modern jet airplane flying up in the sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a small bowl that has tomatoes in it", + "pred": "a white bowl filled with tomatoes and peppers" + }, + { + "label": "two men talking to each other on a street corner", + "pred": "two men standing next to a parked motorcycle" + }, + { + "label": "a chinese street showing business signs hanging over the store fronts", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "the jet fighter sits on a pedestal across the street from a building", + "pred": "a small propeller plane on a runway" + }, + { + "label": "two people are sitting on chairs talking on at a corner", + "pred": "two men standing next to a parked motorcycle" + }, + { + "label": "a kitchen with a counter and a table with chairs", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a large dining room features wooden cabinets and a marble counter top", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "two men sitting on the street in front of a building", + "pred": "two men standing next to a parked motorcycle" + }, + { + "label": "a gray airplane is flying high in the sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a woman in a blue dress some black chairs and another person looking in an oven", + "pred": "a man sitting on a couch in a kitchen" + }, + { + "label": "a black counter a sink and a table and two chairs", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "an airplane flying high in the sky on a partly cloudy day", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a man flying a small plane in the clear weather", + "pred": "a small propeller plane flying through a cloudy sky" + }, + { + "label": "a beautiful red bud tree full of flowers under a stop light", + "pred": "a red traffic light hanging from the side of a tree" + }, + { + "label": "bathroom with orange shower and mirror/cabinet curtains", + "pred": "a bathroom with a toilet a sink and a shower curtain" + }, + { + "label": "a brown black and white dog wearing a helmet and a black scooter", + "pred": "a dog laying on the floor next to a motorcycle" + }, + { + "label": "person cooking an eggs on a black pot on a stove", + "pred": "a woman cooking food on a stove top in a kitchen" + }, + { + "label": "the bathroom is white and looks very clean", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a computer desk is filled with laptop computers", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a cat standing next to a bike parked against a wall", + "pred": "a cat standing next to a bicycle on a floor" + }, + { + "label": "man and woman in the kitchen of a white house", + "pred": "a man sitting on a couch in a kitchen" + }, + { + "label": "a kitchen filled with appliances and wooden cabinets", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a bathroom has some blue walls and toilet", + "pred": "a bathroom with a toilet and a blue wall" + }, + { + "label": "a yellow and blue plant flying in a gray sky", + "pred": "a small red and white plane flying in the sky" + }, + { + "label": "three computers sit opened on top of the desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a traffic light hanging in front of blossoming trees", + "pred": "a red traffic light hanging from the side of a tree" + }, + { + "label": "an open kitchen is shown with light brown cabinets", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a woman is wearing a wetsuit while holding a surfboard", + "pred": "a person holding a surfboard on a beach" + }, + { + "label": "a beautiful woman cooking food in a kitchen", + "pred": "a woman cooking food on a stove top in a kitchen" + }, + { + "label": "a kitchen island has a farmhouse sink on it", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a young person on a scooter in an urban area", + "pred": "a man riding a bicycle on a city street" + }, + { + "label": "a plane floating on top of a lake surrounded by mountains", + "pred": "a small plane is on the water by a body of water" + }, + { + "label": "a container that has a packed lunch in it", + "pred": "a lunch box filled with a sandwich, fruit, and vegetables" + }, + { + "label": "a man standing next to a kitchen counter preparing food", + "pred": "a man in a kitchen preparing food on a cutting board" + }, + { + "label": "a man wearing a tie, jacket and white shirt", + "pred": "a man wearing a suit and tie" + }, + { + "label": "wood cabinets in a large home kitchen", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a bathroom with gray painted walls and white tile near the bathtub", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "men standing on the side of a street", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a bare white bathroom with a bathtub, window, a sink and a toilet", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a kitchen with a sink, dishwasher and microwave ovee", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "stools are in front of a kitchen bar", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a sink in a peninsula in a kitchen", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a woman in a wet suite carrying a surf board", + "pred": "a person holding a surfboard on a beach" + }, + { + "label": "a woman makes eggs on the stove top", + "pred": "a woman cooking food on a stove top in a kitchen" + }, + { + "label": "a woman sitting on top of a wooden bench near a park", + "pred": "a woman sitting on top of a wooden bench" + }, + { + "label": "traffic stopped at an intersection waiting for the light to turn green", + "pred": "cars driving down a street next to tall buildings" + }, + { + "label": "a man holding holding a giant remote control", + "pred": "a person holding a remote control in front of a white toilet" + }, + { + "label": "a person riding a motorcycle around a curve in the road", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "motorcycles parked next to each other", + "pred": "a man sitting on a motorcycle in a field" + }, + { + "label": "a man riding a motorcycle with a woman on back of it", + "pred": "a city street filled with cars and motorcycles" + }, + { + "label": "a black and stainless steel kitchen with a snack bar and bar stools", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a modern kitchen and with snacks set on the table", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a man standing next to a bikes and a motorcycle", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a clean kitchen with 4 stools in it", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a bowl of tomatoes and a flower", + "pred": "a bowl of tomatoes next to a bowl of tomatoes on a table" + }, + { + "label": "an air force jet flying in a deep blue sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a person frying some kind of food on a stove", + "pred": "a woman cooking food on a stove top in a kitchen" + }, + { + "label": "a tray of food on a wooden table with bread, carrots, sauce, nuts and a muffin", + "pred": "a lunch box filled with a sandwich, fruit, and vegetables" + }, + { + "label": "a lady is preparing pancakes in a charming white kitchen", + "pred": "a woman cooking food on a stove top in a kitchen" + }, + { + "label": "a person riding a motorcycle down a street", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "an angled shot of a fully stocked kitchen with wooden cabinets", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a woman walking on the beach holding a surfboard", + "pred": "a person holding a surfboard on a beach" + }, + { + "label": "a school approved lunch in a tray", + "pred": "a lunch box filled with a sandwich, fruit, and vegetables" + }, + { + "label": "a box of donuts and a bag of nuts sitting on a table", + "pred": "a teddy bear sitting on top of a counter top" + }, + { + "label": "street cleaners are taking a rest from work", + "pred": "a man and a woman standing next to a motorcycle" + }, + { + "label": "a girl playing with a doll", + "pred": "a bride and groom are hugging each other" + }, + { + "label": "a bred and silver plane resting on stands outside", + "pred": "a small propeller plane sitting on top of a tarmac" + }, + { + "label": "a table with a bag of beans and donuts box on it", + "pred": "a teddy bear sitting on top of a counter top" + }, + { + "label": "donuts and a bag of beans on a table with remote", + "pred": "a teddy bear sitting on top of a counter top" + }, + { + "label": "a junky garage with trash everywhere", + "pred": "a kitchen with a stove, microwave, and other items" + }, + { + "label": "a german shepherd dog wearing a helmet sitting by a motor cycle", + "pred": "a dog laying on the floor next to a motorcycle" + }, + { + "label": "a door opens to a plain, white bathroom", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a blurry black an white image of a girl laying down", + "pred": "a bride and groom are hugging each other" + }, + { + "label": "various foreign snack foods are on a white table", + "pred": "a teddy bear sitting on top of a counter top" + }, + { + "label": "a dog is wearing a helmet and sitting by a motor bike", + "pred": "a dog laying on the floor next to a motorcycle" + }, + { + "label": "three finnair planes are parked at the gates on this side of the terminal", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "motorcyclist on chromed motorcycle rounding a curve roadway", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "female surfer walking carrying surfboard on her side", + "pred": "a person holding a surfboard on a beach" + }, + { + "label": "a bus, old cabin cars, and motor cycles with people", + "pred": "motorcycles parked on the side of a road" + }, + { + "label": "two cars facing towards a variety of motorcycles", + "pred": "motorcycles parked on the side of a road" + }, + { + "label": "motorcycles parked on the side of a road", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a woman carrying a surfboard on the shore of the beach", + "pred": "a person holding a surfboard on a beach" + }, + { + "label": "the counters in this kitchen are covered with stuff", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a living area with a microwave, counter and lights", + "pred": "a kitchen with a stove, microwave, and other items" + }, + { + "label": "a dog watching a man cut a piece of food", + "pred": "a man in a kitchen preparing food on a cutting board" + }, + { + "label": "two men setting next to each other on the street", + "pred": "a man and a woman standing next to a motorcycle" + }, + { + "label": "two very old time cars in front of a group of motorcycles", + "pred": "motorcycles parked on the side of a road" + }, + { + "label": "a ca walking with its tail straight up", + "pred": "a cat standing next to a bicycle on a floor" + }, + { + "label": "a girl lying down and smiling and feeling happy", + "pred": "a bride and groom are hugging each other" + }, + { + "label": "he is working on the meal while the dog is patiently waiting", + "pred": "a man in a kitchen preparing food on a cutting board" + }, + { + "label": "commercial planes sit on a runway next to an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a man slices meat in his kitchen while his dog begs from the floor", + "pred": "a man in a kitchen preparing food on a cutting board" + }, + { + "label": "a small airplane is flying in the sky", + "pred": "a small red and white plane flying in the sky" + }, + { + "label": "a kitchen with a toilet, sink and a bathtub", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a night scene with a cat on top of a car", + "pred": "an overhead view of a car at night" + }, + { + "label": "a large bus is making a turn in traffic", + "pred": "a city street filled with cars and motorcycles" + }, + { + "label": "a large group of motorcyclists have parked on the side of a road", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "an old bus makes its way through an intersection of traffic", + "pred": "a city street filled with cars and motorcycles" + }, + { + "label": "a kitchen area with a stove, sink and microwave", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a hand spraying water into a white toilet bowl", + "pred": "a person is cleaning a toilet with a hose" + }, + { + "label": "the washroom having a toilet,wash basin and a bath tub", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "bathroom with a white tiled floor and sink", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a brightly colored single engine plane is high in the clear sky", + "pred": "a small red and white plane flying in the sky" + }, + { + "label": "a biker chic in high heel boots is talking to a man at a gas pump", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a kitchen setting with white appliances", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a field with various wildlife and trees", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "motorcyclists are stopped at the side of the road", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a person wearing a suit and tie next to a couch", + "pred": "a man in a red shirt and tie standing next to a red couch" + }, + { + "label": "a kitten is walking next to a parked bike inside", + "pred": "a cat standing next to a bicycle on a floor" + }, + { + "label": "a small cat is walking behind a bike", + "pred": "a cat standing next to a bicycle on a floor" + }, + { + "label": "a crowded city street with cars a bus and a couple riding on a motorcycle", + "pred": "a city street filled with cars and motorcycles" + }, + { + "label": "two adults with helmets beside a motorcycle on pavement", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "multiple commercial passenger airplanes at their gate at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a baby tabby cat walking behind a bicycle leaning against a wall", + "pred": "a cat standing next to a bicycle on a floor" + }, + { + "label": "a large bus and other vehicles on a busy street", + "pred": "a city street filled with cars and motorcycles" + }, + { + "label": "a room in a dusty building with cleaning supplies in it", + "pred": "a kitchen with a stove, microwave, and other items" + }, + { + "label": "a motorcycle club stopping along the highway to take a break and talk", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a street filled with older cars, buses and motorcycles", + "pred": "motorcycles parked on the side of a road" + }, + { + "label": "two parked bikes on a sidewalk with a person riding a motor bike", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a person riding a motorcycle down a road", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "motorcyclists gather and socialize at the side of the road", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a person standing by a bicycle as a motorcycle drives by", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a man in shirt and tie standing by a photograph", + "pred": "a man in a red shirt and tie standing next to a red couch" + }, + { + "label": "a bare kitchen has wood cabinets and white appliances", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "planes near control tower in an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a dog in a helmet sitting next to a motorcycle", + "pred": "a dog laying on the floor next to a motorcycle" + }, + { + "label": "a woman observing something on a kitchen stove", + "pred": "a woman standing in a kitchen with a pot on the stove" + }, + { + "label": "a dog sits waiting while his owner cuts some meat", + "pred": "a man in a kitchen preparing food on a cutting board" + }, + { + "label": "a kitchen containing a stove and refrigerator and sink", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a kitchen with white appliances, countertop and oak cabinets", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "i am unable to see an image above", + "pred": "a small red and white plane flying in the sky" + }, + { + "label": "lake or river beach with plane in shallow water", + "pred": "a small plane is on the water by a body of water" + }, + { + "label": "parked bikes on a beautiful, picture perfect, sunny day", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a woman is cooking on a large black stove", + "pred": "a woman standing in a kitchen with a pot on the stove" + }, + { + "label": "parked cars, motorcycles and buses on a cobblestone parking lot next to a street", + "pred": "motorcycles parked on the side of a road" + }, + { + "label": "a stove, microwave, sink and dishwasher in a kitchen", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a person spraying water into a toilet bowl in a tiled room", + "pred": "a person is cleaning a toilet with a hose" + }, + { + "label": "night picture of a car parked and some parking lights in the distance", + "pred": "an overhead view of a car at night" + }, + { + "label": "a bathroom with the sink and medicine cabinet visible", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a man wearing a bike helmet standing next to a bicycle", + "pred": "a man standing next to a bicycle on a dirt road" + }, + { + "label": "an unadorned kitchen with oven, sink, cabinets, microwave, wood floor, and a window", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a hand holding a spraying hose to a toilet bowl in a small toilet stall", + "pred": "a person is cleaning a toilet with a hose" + }, + { + "label": "various items sit on top of tables and counters", + "pred": "a kitchen with a stove, microwave, and other items" + }, + { + "label": "an old man in a suit and tie is staring", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a seaplane parked on the shallow end of the sea as a man approaches", + "pred": "a small plane is on the water by a body of water" + }, + { + "label": "a sink in a bathroom is shown with other items", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a biplane and a small boat out on the water", + "pred": "a small plane is on the water by a body of water" + }, + { + "label": "a kitchen is shown with cabinets and appliances", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a person sprays the inside of a toilet", + "pred": "a person is cleaning a toilet with a hose" + }, + { + "label": "a car sitting on a car with a wall", + "pred": "an overhead view of a car at night" + }, + { + "label": "a bathroom sink, toilet and shower with the curtain half open", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a bicyclist stopping on the road to take a picture", + "pred": "a man standing next to a bicycle on a dirt road" + }, + { + "label": "a man stands in between a gas pump and a motorcycle while a woman in heels stands next to them", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a bathroom mirror with the middle cut out and exposed", + "pred": "a bathroom with a tub, sink and mirror" + }, + { + "label": "zebras in a field by some trees", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a military jet flying through the air, overhead", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a man and a woman in helmets standing at a motorcycle", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a full view of some items in a living huts made of straws", + "pred": "a kitchen with a stove, microwave, and other items" + }, + { + "label": "a bathroom with a tub, sinks, lights and a television", + "pred": "a bathroom with a tub, sink, mirror and bathtub" + }, + { + "label": "a young man in a helmet standing by a bicycle", + "pred": "a man standing next to a bicycle on a dirt road" + }, + { + "label": "a man sitting on a motorcycle near several bicycles with a partially visible person standing nearby", + "pred": "motorcycles parked next to each other" + }, + { + "label": "an old yellow plane is flying in the sky", + "pred": "a small red and white plane flying in the sky" + }, + { + "label": "a woman cooking on an old fashioned stove", + "pred": "a woman standing in a kitchen with a pot on the stove" + }, + { + "label": "a sink, mirror and toiletries in a bathroom", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a cat sitting on top of a car at night time", + "pred": "an overhead view of a car at night" + }, + { + "label": "a large white bathroom with two vanity sinks and a bathtub", + "pred": "a bathroom with a tub, sink, mirror and bathtub" + }, + { + "label": "two people stand in front of a motorcycle", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a cat sitting on a car parked outside a building at night", + "pred": "an overhead view of a car at night" + }, + { + "label": "a person sits on a wooden bench facing blooming trees", + "pred": "a woman sitting on top of a wooden bench" + }, + { + "label": "a kitchen with an oven with a green rag and an orange rag", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a man preparing food on a large old oven", + "pred": "a woman standing in a kitchen with a pot on the stove" + }, + { + "label": "the bottom view of an airplane flying in the air", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "people in cars, on bikes, and walking near city buildings", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a bathroom mirror with a black box on it", + "pred": "a bathroom with a tub, sink and mirror" + }, + { + "label": "a small boat in water beside a sea airplane", + "pred": "a small plane is on the water by a body of water" + }, + { + "label": "the bottom of a jumbo jet is flying through the air", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a large airplane flying in the blue sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "the bathroom with the white tile has been cleaned", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "the man is riding his motorcycle around the bend", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a man stands next to a copier machine", + "pred": "a person holding a remote control in front of a white toilet" + }, + { + "label": "a person standing next to a bike on top of a road", + "pred": "a man standing next to a bicycle on a dirt road" + }, + { + "label": "urban downtown city center with a bicyclist. and pedestrians", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a city view with buildings, bikers and walkers", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a person wearing a red biker shirt stands next to his bike", + "pred": "a man standing next to a bicycle on a dirt road" + }, + { + "label": "a woman wearing shorts bends over a frying pan on a stove", + "pred": "a woman standing in a kitchen with a pot on the stove" + }, + { + "label": "a bathroom with a white tub and white cabinets has a black pattern on the floor", + "pred": "a bathroom with a tub, sink, mirror and bathtub" + }, + { + "label": "brick paved street with a very unique design", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a woman sitting on a wooden bench viewing some beautiful trees", + "pred": "a woman sitting on top of a wooden bench" + }, + { + "label": "the small kitchen with the spacious counters is clean", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "the man is spraying down the toilet to clean it", + "pred": "a person is cleaning a toilet with a hose" + }, + { + "label": "a man looking at motorcycles in a field", + "pred": "a man sitting on a motorcycle in a field" + }, + { + "label": "a small yellow cessna plane flying on a clear day", + "pred": "a small plane flying through a blue sky" + }, + { + "label": "rear view mirror reflection showing a dog in the back seat", + "pred": "a rear view mirror of a car in a parking lot" + }, + { + "label": "motorcycles are parked in the ground.a middle aged person standing near a bike", + "pred": "a man sitting on a motorcycle in a field" + }, + { + "label": "a white porcelain pedestal sink in a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a fairly curmudgeonly looking old gentleman grimaces for the camera", + "pred": "a man wearing a suit and tie" + }, + { + "label": "electronic wand displayed for modern type of toilet", + "pred": "a person holding a remote control in front of a white toilet" + }, + { + "label": "a shower stall, a sink and a toilet in a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "large white bathroom showing sink, tub, tv, and countertops", + "pred": "a bathroom with a tub, sink, mirror and bathtub" + }, + { + "label": "a blue motorcycle is parked in a corner covered in graffiti", + "pred": "a motorcycle parked in front of a graffiti covered wall" + }, + { + "label": "blue motorcycle parked in small area with wall marked with lots of graffiti", + "pred": "a motorcycle parked in front of a graffiti covered wall" + }, + { + "label": "a man talking in front of a photo of an orange sofa with black and white fence behind it", + "pred": "a man in a red shirt and tie standing next to a red couch" + }, + { + "label": "a motorcycle is displayed in an entryway which is covered in graffiti", + "pred": "a motorcycle parked in front of a graffiti covered wall" + }, + { + "label": "deep bathtub displayed in area of large tiled bathroom", + "pred": "a bathroom with a tub, sink, mirror and bathtub" + }, + { + "label": "adult sitting on wooden park bench in large open space", + "pred": "a woman sitting on top of a wooden bench" + }, + { + "label": "a bathroom with a sink a monitor in the mirror and a tub", + "pred": "a bathroom with a tub, sink and mirror" + }, + { + "label": "banana and plastic drink container sitting on a table", + "pred": "a banana sitting next to a bowl of fruit" + }, + { + "label": "a large mirror reflecting a bathroom sing counter", + "pred": "a bathroom with a tub, sink and mirror" + }, + { + "label": "man with a skateboard on a motorcycle in traffic", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "three look alike dogs are herding sheep into a pile", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a man is standing talking in front of a picture", + "pred": "a man in a red shirt and tie standing next to a red couch" + }, + { + "label": "a woman sits on a bench watching the park", + "pred": "a woman sitting on top of a wooden bench" + }, + { + "label": "the group of zebras are in the field", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a woman holding a smart phone next to a group of people", + "pred": "a woman sitting on the ground holding a cell phone" + }, + { + "label": "zebras and wort hogs living together on the plains", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a man looks at a motorcycle amongst others in a field", + "pred": "a man sitting on a motorcycle in a field" + }, + { + "label": "animals in a field with trees and bushes", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a bath room with a sink a toilet and a mirror", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "small group of sheep being herded by three border collies", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a women wearing a scarf using her cell phone", + "pred": "a woman sitting on the ground holding a cell phone" + }, + { + "label": "motorcycles parked on a grassy field", + "pred": "a man sitting on a motorcycle in a field" + }, + { + "label": "a toy plane flies through a cloudless sky", + "pred": "a small plane flying through a blue sky" + }, + { + "label": "a dog sticks its head out of the car and is reflected in the side mirror", + "pred": "a rear view mirror of a car in a parking lot" + }, + { + "label": "a man in a black tie and white shirt has a stern look on his face", + "pred": "a man wearing a suit and tie" + }, + { + "label": "cat wedged between two large oak doors trying to get out", + "pred": "a black and white cat sitting inside of a wooden door" + }, + { + "label": "elderly gray haired man in a suit scowling into the camera", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a woman holding a cell phone and standing in a littered field with others", + "pred": "a woman sitting on the ground holding a cell phone" + }, + { + "label": "a blue motorcycle sitting beside a wall covered with tagging", + "pred": "a motorcycle parked in front of a graffiti covered wall" + }, + { + "label": "a giraffe standing in a field next to a fence", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "someone demonstrating how a remote control toilet works", + "pred": "a person holding a remote control in front of a white toilet" + }, + { + "label": "a man on a motor bike riding in the high way", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "these sheep are being watched by three dogs", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a banana is sitting beside a large bowl storage container", + "pred": "a banana sitting next to a bowl of fruit" + }, + { + "label": "a motorcyclist is driving down the road next to the road barrier", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "these two cats are playing in a room that has a large tv and a laptop computer", + "pred": "a black and white cat sitting on the floor next to a television" + }, + { + "label": "a banana sitting on a counter next to a pitcher", + "pred": "a banana sitting next to a bowl of fruit" + }, + { + "label": "a large passenger jet sitting on top of an airport tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a pizza sitting on top of a pan in the oven", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a small plane flying through a blue sky", + "pred": "a small plane flying through a blue sky" + }, + { + "label": "red cars parked in front of a house", + "pred": "a rear view mirror of a car in a parking lot" + }, + { + "label": "a woman in yellow scarf holding a cellphone", + "pred": "a woman sitting on the ground holding a cell phone" + }, + { + "label": "a bathroom with two sinks sitting under mirrors", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a cat looking out from an open doorway", + "pred": "a black and white cat sitting inside of a wooden door" + }, + { + "label": "a banana and a container with a lid on a counter", + "pred": "a banana sitting next to a bowl of fruit" + }, + { + "label": "someone holding up a remote with six buttons", + "pred": "a person holding a remote control in front of a white toilet" + }, + { + "label": "a parked blue motorcycle sitting in the corner", + "pred": "a motorcycle parked in front of a graffiti covered wall" + }, + { + "label": "a cat stares through an opening between two doors", + "pred": "a black and white cat sitting inside of a wooden door" + }, + { + "label": "a bathroom filled with toilets and a tub next to a sink", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "two cats playing in a room with a laptop and television", + "pred": "a black and white cat sitting on the floor next to a television" + }, + { + "label": "sheep in a field with three dogs close by", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a banana laying next to a plastic container with lid", + "pred": "a banana sitting next to a bowl of fruit" + }, + { + "label": "a prop plane flies in a clear sky", + "pred": "a small plane flying through a blue sky" + }, + { + "label": "a side mirror shows a dog sticking its head out of a car window", + "pred": "a rear view mirror of a car in a parking lot" + }, + { + "label": "a yellow airplane flying in the clear sky", + "pred": "a small plane flying through a blue sky" + }, + { + "label": "a mirror shot of a dog sitting in a car", + "pred": "a rear view mirror of a car in a parking lot" + }, + { + "label": "two men work in the kitchen of a restaurant", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "a cat being lazy and a cat being nozy in a living room with tv and a laptop displaying the same things", + "pred": "a black and white cat sitting on the floor next to a television" + }, + { + "label": "a cat peeking out from behind a door", + "pred": "a black and white cat sitting inside of a wooden door" + }, + { + "label": "a cheese pizza on a gray tray and an orange pizza cutter", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a cat is trying to squeeze through a door", + "pred": "a black and white cat sitting inside of a wooden door" + }, + { + "label": "people are cooking on grills in a commercial kitchen", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "two men cooking in a stainless steel restaurant kitchen", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "two men cooking and packaging food in a kitchen", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "a parked motorcycle sitting on a dirty road", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a giraffe standing in a field with a bird", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a person on a motorcycle driving on the break down lane", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a motorcycle parked on a gravel road near a park", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "an airplane pulled up to a gate on the tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "sheep surrounded by three dogs", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a man in a kitchen pouring something from a pot", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "double sinks in a bathroom", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a small wheeled airplane on an open runway", + "pred": "a small plane is parked on the runway" + }, + { + "label": "a kitchen with its light's off, with light coming from an open door", + "pred": "a kitchen with a stove and a window" + }, + { + "label": "a bathroom with a toilet, sink, bath tub, and a small cabinet", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a small airplane is about to take off on the runway", + "pred": "a small plane is parked on the runway" + }, + { + "label": "a kitchen has an oven, refrigerator, and a door with a window in it", + "pred": "a kitchen with a stove and a window" + }, + { + "label": "a person is sitting at a keyboard near a microphone", + "pred": "a man that is standing in front of a microphone" + }, + { + "label": "a motorcycle is parked on a gravel road", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "an airplane sits outside, ready at the airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a dark kitchen with a window letting in daylight", + "pred": "a kitchen with a stove and a window" + }, + { + "label": "a man with a beard playing a keyboard on stage", + "pred": "a man that is standing in front of a microphone" + }, + { + "label": "a bathroom with two sinks with a light on above them", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a motorcycle parked in gravel near a post", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a panned sliced pizza and a bike shaped cutter", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a toilet with two sinks and mirrors with lights on", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a small, single person aircraft sits on the runway", + "pred": "a small plane is parked on the runway" + }, + { + "label": "a black plane taking off from an airport runway", + "pred": "a small plane is parked on the runway" + }, + { + "label": "the homemade pizza just came out of the oven", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a restaurant with red stools next to a bar and a blue table", + "pred": "a kitchen that has a table and chairs in it" + }, + { + "label": "a tabby cat and a black and white cat looking for trouble", + "pred": "a black and white cat sitting on the floor next to a television" + }, + { + "label": "a grey and black plane on a runway with trees", + "pred": "a small plane is parked on the runway" + }, + { + "label": "a kitchen with a stove, sink and coffee maker", + "pred": "a kitchen with a stove and a window" + }, + { + "label": "a busy kitchen next to a dining table and counters with chairs and tables", + "pred": "a kitchen that has a table and chairs in it" + }, + { + "label": "a giraffe and bird in a grassy area with a fence", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a narrow kitchen with the only light coming from a glass door", + "pred": "a kitchen with a stove and a window" + }, + { + "label": "one cat lying on the floor, and another with its front paws up on a stool", + "pred": "a black and white cat sitting on the floor next to a television" + }, + { + "label": "a person on her cell phone in a large crowd of people", + "pred": "a woman sitting on the ground holding a cell phone" + }, + { + "label": "a large jet is in the loading area", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "workers are at the stoves in a restaurant", + "pred": "a kitchen that has a table and chairs in it" + }, + { + "label": "a man with a beard at sound board in front of microphone", + "pred": "a man that is standing in front of a microphone" + }, + { + "label": "a dirty bathroom with two toilets and a sink", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "frizzy haired guy standing at a keyboard listening to the music", + "pred": "a man that is standing in front of a microphone" + }, + { + "label": "an empty restaurant with two employees working behind the counter", + "pred": "a kitchen that has a table and chairs in it" + }, + { + "label": "a bearded man onstage playing an electronic keyboard", + "pred": "a man that is standing in front of a microphone" + }, + { + "label": "a motorcycle shaped pizza cutter near a cheesy pizza", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "pink bathroom sink and a mirror", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a clean bathroom with mirrors, sinks, and a toilet", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a giraffe and a goose stand in a fenced area", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "an adult giraffe standing near a white duck in a field of grass", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a kitchen with tables chairs stools and counters", + "pred": "a kitchen that has a table and chairs in it" + }, + { + "label": "a bath room with a bath tub a toilet and a sink", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a small very dark and dingy looking rest room with old equipment", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "an airplane and a person on the tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "this bathroom which includes a bidet is very dirty", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "a banana in a little chair near a window", + "pred": "a banana sitting on top of a table next to a window" + }, + { + "label": "a bathroom with lighting and a toilet and other things", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a man sitting on a bench with a tall building behind him", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a sink with a cabinet on legs in a bathroom", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a giant banana is sitting in beach chair which is overlooking turquoise water", + "pred": "a banana sitting on top of a table next to a window" + }, + { + "label": "a large whirlpool tub in the corner of a tiled bathroom", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "motorcycles on display for a crowd", + "pred": "a red motorcycle parked in front of a crowd of people" + }, + { + "label": "motorcycles in front of sign, with people standing around", + "pred": "a red motorcycle parked in front of a crowd of people" + }, + { + "label": "a kitchen under construction with a trashcan and stove", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "this bathroom seems to be very dirty and old", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "a public men's' room with a cot on the side", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a banana that has been placed in a tiny lounge chair", + "pred": "a banana sitting on top of a table next to a window" + }, + { + "label": "a banana sitting on a yellow beach chair next to a small umbrella looking out a window at the blue water", + "pred": "a banana sitting on top of a table next to a window" + }, + { + "label": "a bathroom has the blue toilet seat off", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a row of parked motorcycles on the side of a street", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "two covered motorcycles in a row of motorcycles parked on the street", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a kitchen with a fridge, a trash can and an oven", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "a kitchen under remodel with wires hanging and a large trash barrel", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "a sink and mirror in a very small bathroom", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a gathering of people and several motor bikes", + "pred": "a red motorcycle parked in front of a crowd of people" + }, + { + "label": "motorcycles parked near each other on a city street", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "crowd standing outside of a bike show event", + "pred": "a red motorcycle parked in front of a crowd of people" + }, + { + "label": "a banana on a beach chair with a small umbrella", + "pred": "a banana sitting on top of a table next to a window" + }, + { + "label": "a black and white cat sitting on top of leaves", + "pred": "a black and white cat sitting in the bushes" + }, + { + "label": "a kitchen in the process of being remodeled with wiring hanging from the ceiling", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "black and white cat laying down in dead leaves", + "pred": "a black and white cat sitting in the bushes" + }, + { + "label": "a man sitting on a bench with a church behind him", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "i am unable to see an image above", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "an old fashion sink with the cover painted pink near the mirror", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a kitchen being built and appliances being put in", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "large group of people outdoors with their motorcycles", + "pred": "a red motorcycle parked in front of a crowd of people" + }, + { + "label": "a toilet in a bathroom next to a sink", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a blue toilet sitting next to a bathroom sink in a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "black and white cat sitting in leaves outside a window", + "pred": "a black and white cat sitting in the bushes" + }, + { + "label": "a man sits on a bench with a church", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a wow of motorcycles pared along a street some with covers", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a woman is taking a photo of herself in the mirror of a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a young asian women takes a picture of a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a man standing in the street with a umbrella", + "pred": "a man holding an umbrella while standing in the rain" + }, + { + "label": "a smiling man holds a bunch of freshly picked bananas", + "pred": "a man holding a bunch of bananas" + }, + { + "label": "a black and white cat relaxes atop a bunch of leaves", + "pred": "a black and white cat sitting in the bushes" + }, + { + "label": "a man standing holding a bunch of bananas", + "pred": "a man holding a bunch of bananas" + }, + { + "label": "people watching a woman cutting a cake", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a small bathroom with a mirror and sinks", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "an airplane flying in the air during the day", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a man standing with his motorcycle outside of a repair shop", + "pred": "a man standing next to a police officer on a motorcycle" + }, + { + "label": "a street that has all the traffic stopped at a traffic light", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "an old motorcycle rests near a rundown building", + "pred": "a motorcycle parked in front of a building" + }, + { + "label": "a man standing next to a motorcycle talking to several other men wearing yellow vests", + "pred": "a man standing next to a police officer on a motorcycle" + }, + { + "label": "a large white bowl of many green apples", + "pred": "a bowl of apples sitting on top of a table" + }, + { + "label": "a traffic light with a sad face on the red light", + "pred": "a fire hydrant on the side of a street" + }, + { + "label": "a red toilet in a very small bathroom", + "pred": "a fire hydrant sitting in the middle of a pile of garbage" + }, + { + "label": "an old toilet painted red with a wooden lid", + "pred": "a fire hydrant sitting in the middle of a pile of garbage" + }, + { + "label": "a family kitchen cluttered with items on the counters", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a snowy ladnscape with a car crashed into a pole", + "pred": "a car is stopped at a red light on a snowy street" + }, + { + "label": "men stand outside around a motorcycle", + "pred": "a man standing next to a police officer on a motorcycle" + }, + { + "label": "a large aircraft is shown in the air", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a white bowl of green granny smith apples", + "pred": "a bowl of apples sitting on top of a table" + }, + { + "label": "a traffic light with an orange and a red having faces drawn on them", + "pred": "a fire hydrant on the side of a street" + }, + { + "label": "a yellow sign sitting in the middle of a road", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a traffic light has sad faces on the lights", + "pred": "a fire hydrant on the side of a street" + }, + { + "label": "a car that has slid into a light pole on a snow covered road", + "pred": "a car is stopped at a red light on a snowy street" + }, + { + "label": "a blue corner sink with a man reflected in the above mirrors", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a kitchen filled with a stove top oven and a dishwasher", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a man standing next to a parked motorcycle", + "pred": "a man standing next to a police officer on a motorcycle" + }, + { + "label": "a car crashed against a light pole in the snow", + "pred": "a car is stopped at a red light on a snowy street" + }, + { + "label": "a tilted traffic pole on the island of the street with broken concrete", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a red motorcycle parked by paint chipped doors", + "pred": "a motorcycle parked in front of a building" + }, + { + "label": "men in neon vests are in a parking lot with a motorcycle", + "pred": "a man standing next to a police officer on a motorcycle" + }, + { + "label": "an old, dusty motorcycle parked in front of a run down shop", + "pred": "a motorcycle parked in front of a building" + }, + { + "label": "a motorcycle just outside a building with green, peeling paint", + "pred": "a motorcycle parked in front of a building" + }, + { + "label": "a bathroom with a sink and a mirror", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "cars, truck and a bus stopped at a red light", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a person taking a picture inside a bathroom with a blue sink and a brown door", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a car in the snow that hit a pole", + "pred": "a car is stopped at a red light on a snowy street" + }, + { + "label": "a red toilet with many pipes and wires behind it", + "pred": "a fire hydrant sitting in the middle of a pile of garbage" + }, + { + "label": "a rest room with three sinks and a well lighted mirror", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "a white bowl filled with green granny smith apples", + "pred": "a bowl of apples sitting on top of a table" + }, + { + "label": "an extremely nasty toilet in front of pipes and cable", + "pred": "a fire hydrant sitting in the middle of a pile of garbage" + }, + { + "label": "a kitchen area features a white refrigerator a stove and other appliances and brown cabinets", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a nice lighted bathroom has three fancy sinks", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "a kitchen counter is cluttered with cooking supplies", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a kitchen has a lot of brown cabinets", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a dirty old red toilet next to many wires", + "pred": "a fire hydrant sitting in the middle of a pile of garbage" + }, + { + "label": "night time view of empty streets in commercial district", + "pred": "people standing on the side of a street at night" + }, + { + "label": "car hit on a traffic signal in a road full of snow", + "pred": "a car is stopped at a red light on a snowy street" + }, + { + "label": "a row of motorcycles parked together on a grass yard area with a house", + "pred": "a person sitting on a motorcycle in a field" + }, + { + "label": "a street corner in a town all bright from lights", + "pred": "people standing on the side of a street at night" + }, + { + "label": "decorated coffee cup and knife sitting on a patterned surface", + "pred": "a knife sitting on top of a kitchen counter" + }, + { + "label": "a bowl filled with many shiny green apples", + "pred": "a bowl of apples sitting on top of a table" + }, + { + "label": "motorcycles are parked on the green grass", + "pred": "a person sitting on a motorcycle in a field" + }, + { + "label": "motorcycles lined-up in an empty, grassy field, all in front of a house", + "pred": "a person sitting on a motorcycle in a field" + }, + { + "label": "a bowl full of fresh green apples are kept", + "pred": "a bowl of apples sitting on top of a table" + }, + { + "label": "a large knife is sitting in front of a mug has a skull and crossbones", + "pred": "a knife sitting on top of a kitchen counter" + }, + { + "label": "the large jumbo jet has it's landing gear lowered", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a traffic light with a frowning face on the red light and a city street and buildings behind it", + "pred": "a fire hydrant on the side of a street" + }, + { + "label": "a traffic light with little faces to help people know what to do", + "pred": "a fire hydrant on the side of a street" + }, + { + "label": "a white mug showing pirate skull and bones and a large knife on a counter top", + "pred": "a knife sitting on top of a kitchen counter" + }, + { + "label": "a bathroom with mirror, hand dryers, and multiple sinks", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "a motorcycle parked in front of green doors", + "pred": "a motorcycle parked in front of a building" + }, + { + "label": "streetlights and traffic lights light up the night on an empty street", + "pred": "people standing on the side of a street at night" + }, + { + "label": "a purple bathroom with three sinks and a purple countertop with a mirror surrounded with light bulbs", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "a white coffee cup with a skull and bones on it next to a knife", + "pred": "a knife sitting on top of a kitchen counter" + }, + { + "label": "a large white airplane flies in the gray sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "compact hotel bathroom with corner basin and mirrors", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a large passenger airplane flying through a cloudy sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a yellow oblong upside down triangular street sign stands in the middle of the street", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a airplane is flying through a cloudy blue sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "an airplane in route with a cloudy sky behind it", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "various sink cabinets lined up in a warehouse", + "pred": "a white sink sitting inside of a kitchen" + }, + { + "label": "a man stands beside his black and red motorcycle near a park", + "pred": "a man riding on the back of a red motorcycle" + }, + { + "label": "altered photograph of very shiny motor cycles in a field", + "pred": "a person sitting on a motorcycle in a field" + }, + { + "label": "a large white, red and blue plane flying high in the sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "downtown seems is really quiet for the night night", + "pred": "people standing on the side of a street at night" + }, + { + "label": "a jet airplane coming in to land in a cloudy blue sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a motorcycle is parked in a grassy field", + "pred": "a person sitting on a motorcycle in a field" + }, + { + "label": "a man riding on the side of a red motorcycle", + "pred": "a man riding on the back of a red motorcycle" + }, + { + "label": "a man holding a camera reflected in a bathroom mirror that sits above a sink and next to a door", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a orange calico cat on top of a vehicle", + "pred": "a brown and white cat sitting on top of a truck" + }, + { + "label": "a traffic light on a open city street", + "pred": "people standing on the side of a street at night" + }, + { + "label": "a cat on top of a car", + "pred": "a brown and white cat sitting on top of a truck" + }, + { + "label": "a calico cat is sitting on the roof of a car at night", + "pred": "a brown and white cat sitting on top of a truck" + }, + { + "label": "a large propeller plane mounted to the ceiling of a building", + "pred": "a large propeller plane sitting on top of a hangar" + }, + { + "label": "different sinks of all different colors", + "pred": "a white sink sitting inside of a kitchen" + }, + { + "label": "a knife and a cup on a surface", + "pred": "a knife sitting on top of a kitchen counter" + }, + { + "label": "an older man is standing beside a red motorcycle", + "pred": "a man riding on the back of a red motorcycle" + }, + { + "label": "a green traffic light a street some buildings and some other lights", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a white sink placed in the middle of a constructed kitchen", + "pred": "a white sink sitting inside of a kitchen" + }, + { + "label": "a man standing in front of a toilet taking a piss", + "pred": "a person is cleaning a toilet in a bathroom" + }, + { + "label": "the airplane is store in the hangar for people to take a look at it", + "pred": "a large propeller plane sitting on top of a hangar" + }, + { + "label": "the kitchen is in the process of being remodeled", + "pred": "a white sink sitting inside of a kitchen" + }, + { + "label": "the plane is flying high in the sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "an orange, black and white cat on top of a car", + "pred": "a brown and white cat sitting on top of a truck" + }, + { + "label": "a man standing by a motor cycle on a street", + "pred": "a man riding on the back of a red motorcycle" + }, + { + "label": "the little girl is eating a banana", + "pred": "a little girl holding a banana in her mouth" + }, + { + "label": "a dirty public bathroom with a handicap sign located above the toilet", + "pred": "a toilet with a picture of a man on it" + }, + { + "label": "a young girl eating a ripe yellow banana", + "pred": "a little girl holding a banana in her mouth" + }, + { + "label": "a cat is on top of a car in the dark", + "pred": "a brown and white cat sitting on top of a truck" + }, + { + "label": "toilet with a black lid and rolls of toilet tissue in a bathroom", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "sinks in the process of being completed", + "pred": "a white sink sitting inside of a kitchen" + }, + { + "label": "a girl holding a half eaten banana in her hands", + "pred": "a little girl holding a banana in her mouth" + }, + { + "label": "two planes in runway and another plane in the sky", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a man in black jacket next to a red motorcycle", + "pred": "a man riding on the back of a red motorcycle" + }, + { + "label": "a military plane parked in a hanger with a person sitting nearby", + "pred": "a large propeller plane sitting on top of a hangar" + }, + { + "label": "young men are riding their motocycles down the street", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a little child offering a bite of a banana", + "pred": "a little girl holding a banana in her mouth" + }, + { + "label": "a dirty public bathroom with a toilet seat lid open", + "pred": "a toilet with a picture of a man on it" + }, + { + "label": "a painting of a man and woman riding together on a motorcycle", + "pred": "a man sitting on a motorcycle next to a woman" + }, + { + "label": "five men riding their motor cycles on the street", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "motorcyclists are riding down the street with each other", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a child eating a banana", + "pred": "a little girl holding a banana in her mouth" + }, + { + "label": "a gold clock with ornate iron hands keeps time on a large clock with roman numerals", + "pred": "a clock that is on top of a table" + }, + { + "label": "a plane is in the sky as several are parked on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "type of vehicle with a number on its side is pared inside a garage", + "pred": "a large propeller plane sitting on top of a hangar" + }, + { + "label": "the computer monitor has a framed picture near it", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "two jumbo jets are driving on the runway of an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a bathroom with black and white toilet and a tiled floor", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a person relieving themselves in a white toilet", + "pred": "a person is cleaning a toilet in a bathroom" + }, + { + "label": "planes flying and landing on a runway at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a person on dirt bike riding down a hill with mountains", + "pred": "a person riding a motorcycle on a dirt road" + }, + { + "label": "a horrible public toilet that looks like it could use a good cleaning", + "pred": "a toilet with a picture of a man on it" + }, + { + "label": "a handicap toilet with a foreign language written above it", + "pred": "a toilet with a picture of a man on it" + }, + { + "label": "parked airplanes and one airplane in the sky", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a bicycle parked on top of a baby dolls head", + "pred": "a man standing next to a bicycle on the street" + }, + { + "label": "a person riding a motorcycle with mountains", + "pred": "a person riding a motorcycle on a dirt road" + }, + { + "label": "a painting of men riding on motorcycles next to a gas station", + "pred": "a man sitting on a motorcycle next to a woman" + }, + { + "label": "five people riding some motorbikes on the road", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a toilet and a handicap sign with red pipe", + "pred": "a toilet with a picture of a man on it" + }, + { + "label": "a vintage, colored drawing of people on motorcycles pulled into a gas station", + "pred": "a man sitting on a motorcycle next to a woman" + }, + { + "label": "the clock face of a grandfather clock", + "pred": "a clock that is on top of a table" + }, + { + "label": "a street scene photo taken under an overpass with a traffic light", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a man on a motorcycle is waving at two men", + "pred": "a man sitting on a motorcycle next to a woman" + }, + { + "label": "a red and green stop light under a bridge", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a green traffic light under a bridge on a street", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "an analog clock with roman numerals", + "pred": "a clock that is on top of a table" + }, + { + "label": "the clock inside the house has a large face", + "pred": "a clock that is on top of a table" + }, + { + "label": "the city street is quiet during this time of night", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a large wall clock with an upscale design and roman numerals", + "pred": "a clock that is on top of a table" + }, + { + "label": "blue bathroom with two white towels hanging by the shower", + "pred": "a bathroom with a shower and a towel rack" + }, + { + "label": "a shower stall with bath robes hanging on the wall", + "pred": "a bathroom with a shower and a towel rack" + }, + { + "label": "a computer desktop with other office supplies and papers", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a painted picture of a man and a woman on a motorcycle", + "pred": "a man sitting on a motorcycle next to a woman" + }, + { + "label": "point of view of a man peeing in an airplane restroom", + "pred": "a person is cleaning a toilet in a bathroom" + }, + { + "label": "two towels are hanging on the wall beside a shower door", + "pred": "a bathroom with a shower and a towel rack" + }, + { + "label": "an air hanger with an old fighter plane inside", + "pred": "a large propeller plane sitting on top of a hangar" + }, + { + "label": "a duvet style toilet shooting water", + "pred": "a person is cleaning a toilet in a bathroom" + }, + { + "label": "a desk with a pc, including keyboard and mouse", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a formation of airplanes flying through a blue sky", + "pred": "airplanes that are flying in the sky" + }, + { + "label": "a white toilet with a black colored seat", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a person on a motorcycle riding on a mountain", + "pred": "a person riding a motorcycle on a dirt road" + }, + { + "label": "jet planes flying in unison in a v formation", + "pred": "airplanes that are flying in the sky" + }, + { + "label": "a single parking meter sitting next to some plants and a tree", + "pred": "a parking meter on the side of a street" + }, + { + "label": "parking meter street side looking into a fenced parking lot", + "pred": "a parking meter on the side of a street" + }, + { + "label": "a white toilet with a black seat on top of a tiled floor", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "jets that are flying in the air performing tricks", + "pred": "airplanes that are flying in the sky" + }, + { + "label": "people are riding on motorcycles together down a street", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "the lid is up on the toilet bowl", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "men as one points to the right next to a bicycle", + "pred": "a man standing next to a bicycle on the street" + }, + { + "label": "seven jets fly in formation leaving trails of smoke behind them", + "pred": "airplanes that are flying in the sky" + }, + { + "label": "different pieces of electronic equipment and computers on a desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a sky view of several planes flying in formation in the sky", + "pred": "airplanes that are flying in the sky" + }, + { + "label": "a keyboard and a monitor a mouse and a picture", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a desk with two laptops and a monitor", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a person riding a motorcycle on a gravel road on a hill", + "pred": "a person riding a motorcycle on a dirt road" + }, + { + "label": "a bathroom sink with two toothbrushes facing each other", + "pred": "a bathroom sink with a toothbrush in it" + }, + { + "label": "airplanes floating over the ocean", + "pred": "a large building with a bunch of airplanes in it" + }, + { + "label": "women in military outfits helping other women in a kitchen", + "pred": "people in a kitchen preparing food" + }, + { + "label": "two laptops,computer,keyboard and other electrical gadgets are on the table", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "two laptops a mouse cords wires and a monitor", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "two woman soldiers talking to other women in a kitchen", + "pred": "people in a kitchen preparing food" + }, + { + "label": "a parking meter sitting next to an iron fence", + "pred": "a parking meter on the side of a street" + }, + { + "label": "a sink surrounded by lots of tooth brushes and glasses", + "pred": "a bathroom sink with a toothbrush in it" + }, + { + "label": "a person standing over a toilet using the restroom", + "pred": "a person is cleaning a toilet in a bathroom" + }, + { + "label": "a wooden table with two chairs next to a sink", + "pred": "a wooden table topped with a wooden table cloth" + }, + { + "label": "a traffic light sitting on the side of a road", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "people in chef outfits at a kitchen counter", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "people in chefs uniforms standing around a counter", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "a table and chairs in a small kitchen", + "pred": "a wooden table topped with a wooden table cloth" + }, + { + "label": "a parking meter in front of a fence and parking lot", + "pred": "a parking meter on the side of a street" + }, + { + "label": "two toothbrushes sits on the opposite side of each other on the double faucet sink", + "pred": "a bathroom sink with a toothbrush in it" + }, + { + "label": "a child next to a standing shower in a blue bathroom", + "pred": "a bathroom with a shower and a towel rack" + }, + { + "label": "a sink with some toothbrushes and a mirror", + "pred": "a bathroom sink with a toothbrush in it" + }, + { + "label": "female soldiers helping out citizens in the kitchen", + "pred": "people in a kitchen preparing food" + }, + { + "label": "people standing in a kitchen", + "pred": "people in a kitchen preparing food" + }, + { + "label": "a wooden dinette table and two chairs with place settings", + "pred": "a wooden table topped with a wooden table cloth" + }, + { + "label": "a desktop computer that is online", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "laptop computers and electronic devices on a desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "two toothbrushes each in a glass on the sink", + "pred": "a bathroom sink with a toothbrush in it" + }, + { + "label": "a woman teaches a class of aspiring chefs", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "a big fancy glass chandelier hanging in a small kitchen", + "pred": "a kitchen with a sink and a clock on the wall" + }, + { + "label": "old and new airplane models handing inside a building", + "pred": "a large building with a bunch of airplanes in it" + }, + { + "label": "planes near a large wall of windows", + "pred": "a large building with a bunch of airplanes in it" + }, + { + "label": "a very pretty kitchen with a small wooden dining table", + "pred": "a wooden table topped with a wooden table cloth" + }, + { + "label": "a man standing next to a dog on the ground", + "pred": "a man standing in a kitchen with a dog" + }, + { + "label": "two men standing next to a bike parked on a street corner", + "pred": "a man standing next to a bicycle on the street" + }, + { + "label": "a kitchen area with a counter, shelves and a television", + "pred": "a kitchen with a sink and a clock on the wall" + }, + { + "label": "a table sitting in a kitchen area with a fridge", + "pred": "a wooden table topped with a wooden table cloth" + }, + { + "label": "people in a kitchen with cooking attire on", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "people dressed in black preparing food", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "two motorcycle riders are on a dirt path", + "pred": "a person riding a motorcycle on a dirt road" + }, + { + "label": "multiple planes hanging on top of a ceiling", + "pred": "a large building with a bunch of airplanes in it" + }, + { + "label": "a person riding a motorcycle on a city road with a sky background", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "people standing next to a bike", + "pred": "a man standing next to a bicycle on the street" + }, + { + "label": "a country kitchen has a blue, wooden table, open shelves and white counters and a white sink", + "pred": "a kitchen with a sink and a clock on the wall" + }, + { + "label": "people are in a kitchen with a big pot on the stove", + "pred": "people in a kitchen preparing food" + }, + { + "label": "a nice kitchen has a large crystal chandelier", + "pred": "a kitchen with a sink and a clock on the wall" + }, + { + "label": "two men standing next to a bike and a doll", + "pred": "a man standing next to a bicycle on the street" + }, + { + "label": "a shower in a person's bathroom in their home", + "pred": "a bathroom with a shower and a towel rack" + }, + { + "label": "a man is at a kitchen counter by a dog", + "pred": "a man standing in a kitchen with a dog" + }, + { + "label": "multiple aircraft suspended from the ceiling of a museum", + "pred": "a large building with a bunch of airplanes in it" + }, + { + "label": "an man standing in a kitchen with a small puppy", + "pred": "a man standing in a kitchen with a dog" + }, + { + "label": "a man on a motor bike riding down the street", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a traffic light and sign on a street corner", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "the old kitchen and the table in it are furnished from wood", + "pred": "a kitchen with a sink and a clock on the wall" + }, + { + "label": "a parking meter in front of a fenced in car park", + "pred": "a parking meter on the side of a street" + }, + { + "label": "a small puppy on the kitchen floor", + "pred": "a man standing in a kitchen with a dog" + }, + { + "label": "traffic lights on a corner of a road with vehicles", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "people that are riding their motorcycle", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a man riding a motorcycle down a small paved road", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "school buses, cars and trucks sit at a red light at a busy corner", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "an intersection with traffic signals and several street signs", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a person on a motorcycle traveling on a street near a group", + "pred": "motorcycles are parked on the side of the road" + }, + { + "label": "a yellow and a green motorcycle in the back of an auditorium", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a man in the kitchen standing with his dog", + "pred": "a man standing in a kitchen with a dog" + }, + { + "label": "two motorcycles that are parked behind seats", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a pair of yellow and green motorcylces with flame designs running down them", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "people are purchasing tickets at a bus station", + "pred": "a crowd of people standing in front of a vending machine" + }, + { + "label": "a man making his plate with a table full of food", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "people serving themselves food from a buffet table in a private home", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "grey plane taking off above some green vegetation", + "pred": "an airplane flying in the sky over a tree" + }, + { + "label": "people are checking in at the ticket counter somewhere in asia", + "pred": "a crowd of people standing in front of a vending machine" + }, + { + "label": "elderly man sitting on a bench facing the beach", + "pred": "a man sitting on a bench next to a body of water" + }, + { + "label": "jet airliner taking off over tree top", + "pred": "an airplane flying in the sky over a tree" + }, + { + "label": "two people with lots of food on a table and each has a plate", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "people waiting in line with luggage at a ticket counter", + "pred": "a crowd of people standing in front of a vending machine" + }, + { + "label": "a man is sitting in a bench overlooking a lake", + "pred": "a man sitting on a bench next to a body of water" + }, + { + "label": "two motorcycles line up as they lean against some seats", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a white toilet that does not have it's seat down", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a large bunch of food is on a kitchen table", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "a toilet sits in a small bathroom with a tile floor", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a nman with tattos picks up food from a table", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "a yellow motorcycle and a green motorcycle behind some chairs", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a man sitting on a bench with a view of the ocean behind him", + "pred": "a man sitting on a bench next to a body of water" + }, + { + "label": "people are standing near an airport ticket kiosk", + "pred": "a crowd of people standing in front of a vending machine" + }, + { + "label": "customers stand at a kiosk waiting for tickets", + "pred": "a crowd of people standing in front of a vending machine" + }, + { + "label": "a man lounges on a bench watching the ocean", + "pred": "a man sitting on a bench next to a body of water" + }, + { + "label": "a toilet with some toilet paper and a plunger", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a white toilet bowl with the lid up and seat down", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a person sitting on a bench with a view of a body of water", + "pred": "a man sitting on a bench next to a body of water" + }, + { + "label": "a passenger jet is flying over some trees", + "pred": "an airplane flying in the sky over a tree" + }, + { + "label": "aerial view of an airplane ascending in to the sky", + "pred": "an airplane flying in the sky over a tree" + }, + { + "label": "an interesting kitchen renovation with brick and wood", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "a toilet with its lid open", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a small steel fridge in this kitchen with wood tiles", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "an airplane flying in the sky over some trees", + "pred": "an airplane flying in the sky over a tree" + }, + { + "label": "a kitchen that has a tile floor, a refrigerator, a microwave, and a toaster", + "pred": "a kitchen with a refrigerator, microwave, sink and dishwasher" + }, + { + "label": "large mustard yellow commercial airplane parked in the airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a kitchen that has carpeted floors and wooden cabinets", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a kitchen with a refrigerator a microwave and a toaster", + "pred": "a kitchen with a refrigerator, microwave, sink and dishwasher" + }, + { + "label": "already peeled oranges grouped together", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "a man riding a snowboard down a snow covered slope", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a brown jetliner sitting on top of an airport runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "people are riding on motorcycles on a scenic road", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a whimsical artistic toaster has eyes, a mouth, a nose, spoon feet, spoon ears, and a mixing beater tail", + "pred": "a kitchen counter with a microwave and a bowl on top of it" + }, + { + "label": "a bowl full of oranges that have been peeled", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "a toaster has been decorated with other kitchen items and googly eyes to look like a person", + "pred": "a kitchen counter with a microwave and a bowl on top of it" + }, + { + "label": "a metallic refrigerator freezer next to a wooden counter", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "a brown lot airliner sitting on the tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a motorcycle of some sort parked somewhere during the day", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a workplace break room kitchenette, with refrigerator, two microwave ovens, a toaster and sink", + "pred": "a kitchen with a refrigerator, microwave, sink and dishwasher" + }, + { + "label": "a toaster with a face on it with spoons", + "pred": "a kitchen counter with a microwave and a bowl on top of it" + }, + { + "label": "a black motorcycle on street in front of a grey sports car", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a bottle a glass and utensils behind a stove", + "pred": "a kitchen sink with a bottle of soap next to it" + }, + { + "label": "a motor bike going down a city road", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "the motorcycle riders travel on the mountain highway", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a motorcycle and a vintage mustang car parked at a curb", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a counter and some chairs in a small room", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a kitchen with lots of cupboard space and a microwave oven", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "the kitchen has a refrigerator, toaster, and microwaves", + "pred": "a kitchen with a refrigerator, microwave, sink and dishwasher" + }, + { + "label": "peeled and whole oranges in a bowl", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "the group paddles the boat down on the water", + "pred": "a number of people in a row on a boat in the water" + }, + { + "label": "a back end of a vehicle with a metal rack and an antennae", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a motorcycle sitting in front of a classic ford mustang car", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "the boat is full of many rowers as one person stands steering", + "pred": "a number of people in a row on a boat in the water" + }, + { + "label": "a break room kitchen is shown with two microwaves", + "pred": "a kitchen with a refrigerator, microwave, sink and dishwasher" + }, + { + "label": "a black motorcycle parked on the road in front of a car", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a toaster is decorated with kitchen utensils to have a sad expression", + "pred": "a kitchen counter with a microwave and a bowl on top of it" + }, + { + "label": "the view of a motorcycle going down a road", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "cooking utensils are on the backdrop of a stove", + "pred": "a kitchen sink with a bottle of soap next to it" + }, + { + "label": "a river.a group of people with life jacket rowing a long boat in", + "pred": "a number of people in a row on a boat in the water" + }, + { + "label": "a bottle of water that is ornately placed on the back of a stove", + "pred": "a kitchen sink with a bottle of soap next to it" + }, + { + "label": "a person riding a snowboard down a snowy slope", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a crowd of people standing around a bus next to a parked jetliner", + "pred": "people getting off a plane at an airport" + }, + { + "label": "peeled citrus fruit stacked in a striped bowl", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "look in the kitchen shows refrigerator, sink, tv and a microwave", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "giraffe standing next to each other", + "pred": "giraffes standing next to each other" + }, + { + "label": "the airplane in the sky is doing tricks while spitting out smoke", + "pred": "a plane flying in the air with smoke coming out of it" + }, + { + "label": "a toaster surrounded by spoons, some protruding from the inside", + "pred": "a kitchen counter with a microwave and a bowl on top of it" + }, + { + "label": "family of giraffes standing out in the open", + "pred": "giraffes standing next to each other" + }, + { + "label": "a brick building with a tall clock tower beside it", + "pred": "a tall brick building with a clock on the front of it" + }, + { + "label": "a man on skis is going down a slope", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "an airplane is letting off white smoke against a blue sky", + "pred": "a plane flying in the air with smoke coming out of it" + }, + { + "label": "kitchen view with brick framework around the sink and by the oven", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "people standing next to a bus under an airplane", + "pred": "people getting off a plane at an airport" + }, + { + "label": "giraffes standing around by some trees", + "pred": "giraffes standing next to each other" + }, + { + "label": "a biplane leaves a smoke trail while doing a trick", + "pred": "a plane flying in the air with smoke coming out of it" + }, + { + "label": "a biplane flying upside down leaving a large vapor trail", + "pred": "a plane flying in the air with smoke coming out of it" + }, + { + "label": "peeled tangerines sitting in a bowl in a kitchen", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "a gold colored, polish airplane sitting on the runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a small bathroom has an open toilet seat", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "the view of a restroom toilet and sink through an open door", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "smal and large giraffes are standing on the dirt", + "pred": "giraffes standing next to each other" + }, + { + "label": "people getting on to a bus from an airplane on the tarmac", + "pred": "people getting off a plane at an airport" + }, + { + "label": "the decor in this house is out of date", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "white toilet and sink in white tiled walled bathroom", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "doorway view into a bathroom with a sink and toilet", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "giraffes standing in dirt field with trees", + "pred": "giraffes standing next to each other" + }, + { + "label": "something missing under that wooden shelf", + "pred": "a kitchen with a stove and a refrigerator" + }, + { + "label": "men in red vests rowing a dragon boat", + "pred": "a number of people in a row on a boat in the water" + }, + { + "label": "a large golden airplane is on the runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a person on a snowy slope on a snowboard", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "an upper shot of several people standing near a plane", + "pred": "people getting off a plane at an airport" + }, + { + "label": "a smaller kitchen with a very decorated fridge", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "a couple skiers going down the snowy hill", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a bus loads and unloads passengers next to a plane", + "pred": "people getting off a plane at an airport" + }, + { + "label": "small family kitchen with picture covered refrigerator next to dining room", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "a very small bathroom with only the essentials", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a long canoe paddled along by a large group of people", + "pred": "a number of people in a row on a boat in the water" + }, + { + "label": "utensils and containers line the sink in a kitchen", + "pred": "a kitchen sink with a bottle of soap next to it" + }, + { + "label": "women in kitchen next to pot", + "pred": "two women standing in a kitchen preparing food" + }, + { + "label": "people standing in a room", + "pred": "a large group of people sitting in front of a computer" + }, + { + "label": "a row of motorcycles parked on a city street", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a medium sized home kitchen with wood cabinets", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "motorcycles that are on the road", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a plane flies through the air with fumes coming out the back", + "pred": "a plane flying in the air with smoke coming out of it" + }, + { + "label": "people that are in a room together", + "pred": "a large group of people sitting in front of a computer" + }, + { + "label": "a kitchen with a stove a sink and a refrigerator", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "toaster and blender plugged in on a kitchen counter", + "pred": "a microwave sitting on top of a counter in a kitchen" + }, + { + "label": "the exterior of a building with a clock", + "pred": "a tall brick building with a clock on the front of it" + }, + { + "label": "a person on a motorcycle in the dirt doing tricks", + "pred": "a man riding a dirt bike on top of a dirt field" + }, + { + "label": "a bathroom sink and its reflection in the mirror", + "pred": "a bathroom sink with toothbrushes and toothpaste" + }, + { + "label": "the kitchen is filled with various cooking appliances", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a clock on the very top of a building", + "pred": "a tall brick building with a clock on the front of it" + }, + { + "label": "a small-sized kitchen with wood cabinets", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a number of motorcycles parked near each other", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a clear bottle and a glass set behind a burner on a stove", + "pred": "a kitchen sink with a bottle of soap next to it" + }, + { + "label": "a streamlined modern toaster on a kitchen counter top", + "pred": "a microwave sitting on top of a counter in a kitchen" + }, + { + "label": "three women cooking in a professional kitchen together", + "pred": "two women standing in a kitchen preparing food" + }, + { + "label": "a boy on a motocross motorcycle flying through the air", + "pred": "a man riding a dirt bike on top of a dirt field" + }, + { + "label": "kid jumps a hill while riding on dirt bike", + "pred": "a man riding a dirt bike on top of a dirt field" + }, + { + "label": "a toaster sits on a kitchen shelf in front of a blender", + "pred": "a microwave sitting on top of a counter in a kitchen" + }, + { + "label": "the kitchen is coral with wooden cabinets and colorful decorations", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "a kitchen area with a stove, cabinets and a refrigerator", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a brick structure with a clock tower", + "pred": "a tall brick building with a clock on the front of it" + }, + { + "label": "a clean kitchen with all the necessary appliances", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a row of parked motorcycle sitting on the side of a road", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a professional photograph of a motorcycle rider in the air", + "pred": "a man riding a dirt bike on top of a dirt field" + }, + { + "label": "they are all working in the kitchen together", + "pred": "two women standing in a kitchen preparing food" + }, + { + "label": "two women are laughing in the kitchen while they cook", + "pred": "two women standing in a kitchen preparing food" + }, + { + "label": "small gathering of people at a friends house for drinks", + "pred": "a large group of people sitting in front of a computer" + }, + { + "label": "people are socializing with each other", + "pred": "a large group of people sitting in front of a computer" + }, + { + "label": "bathroom sink with oral care devices and a coffee mug", + "pred": "a bathroom sink with toothbrushes and toothpaste" + }, + { + "label": "two women are talking while they cook in a kitchen", + "pred": "two women standing in a kitchen preparing food" + }, + { + "label": "a cat sits on the edge of a toilet", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a toaster and blender are sitting on a tile kitchen counter", + "pred": "a microwave sitting on top of a counter in a kitchen" + }, + { + "label": "a clock tower on top of a church with a weather vein", + "pred": "a tall brick building with a clock on the front of it" + }, + { + "label": "a sink with toiletry items setting on the edge", + "pred": "a bathroom sink with toothbrushes and toothpaste" + }, + { + "label": "group of people standing around computer monitors", + "pred": "a large group of people sitting in front of a computer" + }, + { + "label": "the shiny motorcycle has been put on display", + "pred": "a motorcycle that is on display in a store" + }, + { + "label": "a scooter and tiny truck at a beach dry dock", + "pred": "a person sitting on a bench next to a beach" + }, + { + "label": "a cat sitting on the edge of the toilet looking toward the open bathroom door", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a line of motorcycles backed in and parked in a line at the edge of a sidewalk", + "pred": "a row of motorcycles parked next to each other" + }, + { + "label": "a lady is standing in pastel colored bathroom in front of the bathtub and there are christmas lights hanging up outside of the doorway", + "pred": "a woman standing in front of a bathroom door" + }, + { + "label": "a boy is jumping in the air on his dirt bike", + "pred": "a man riding a dirt bike on top of a dirt field" + }, + { + "label": "a kitchen with a refrigerator a counter with chairs", + "pred": "a kitchen with a table and chairs and a refrigerator" + }, + { + "label": "a toaster and blender sitting on a counter top", + "pred": "a microwave sitting on top of a counter in a kitchen" + }, + { + "label": "an orange kitchen with a white refrigerator stove oven and dishwasher", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "a man is in a kitchen making pizzas", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "man in apron standing on front of oven with pans and bakeware", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a black and gray cat is sitting on a toilet", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a cat laying on a toilet seat with its paws inside", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a bathroom sink with a cup and toothbrushes", + "pred": "a bathroom sink with toothbrushes and toothpaste" + }, + { + "label": "a beach dock area lined with boats, and a small shack with a scooter and small cart near it", + "pred": "a person sitting on a bench next to a beach" + }, + { + "label": "a doll standing in the middle of a toy bathroom", + "pred": "a woman standing in front of a bathroom door" + }, + { + "label": "bar stools at a bar separating a dining area from a kitchen", + "pred": "a kitchen with a table and chairs and a refrigerator" + }, + { + "label": "a baker is working in the kitchen rolling dough", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "the small kitchen has large cabinets and two stoves", + "pred": "a kitchen with a table and chairs and a refrigerator" + }, + { + "label": "a moped and utility truck next to a small building", + "pred": "a person sitting on a bench next to a beach" + }, + { + "label": "a person standing by a stove in a kitchen", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "the new motorcycle on display is very shiny", + "pred": "a motorcycle that is on display in a store" + }, + { + "label": "young girl with helmet on hold on tight to her father driving the motorcycle", + "pred": "a man and a child riding on a motorcycle" + }, + { + "label": "a person and a toilet standing in a room", + "pred": "a woman standing in front of a bathroom door" + }, + { + "label": "a lady dressed in khakis standing in a bathroom next to the sink", + "pred": "a woman standing in front of a bathroom door" + }, + { + "label": "a street area with a building and cars", + "pred": "a city street with cars parked on the side of the street" + }, + { + "label": "a grey and white dog sitting in the passenger side of a car", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a cup, toothbrushes, and other items sit on the side of a small sink", + "pred": "a bathroom sink with toothbrushes and toothpaste" + }, + { + "label": "a cat is laying on a toilet seat", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a street corner with a store that shows open for 24 hour", + "pred": "a city street with cars parked on the side of the street" + }, + { + "label": "a motorcycle is parked inside of a building", + "pred": "a motorcycle that is on display in a store" + }, + { + "label": "suitcases on top of a carrier onto of a vehicle", + "pred": "a pile of luggage stacked on top of each other" + }, + { + "label": "girl holding onto dad on the back of a motorcycle in traffic", + "pred": "a man and a child riding on a motorcycle" + }, + { + "label": "beautiful husky sitting up in the front passenger seat", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a propellor airplane is on a grassy runway", + "pred": "a small propeller plane sitting on top of an airport runway" + }, + { + "label": "a business on the corner of a big busy city street", + "pred": "a city street with cars parked on the side of the street" + }, + { + "label": "two planes are close together in the sky", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "lady standing in a retro pink and turquoise bathroom", + "pred": "a woman standing in front of a bathroom door" + }, + { + "label": "there so many boats, car and scooter at the beach", + "pred": "a person sitting on a bench next to a beach" + }, + { + "label": "a vehicle and a motor bike on the beach", + "pred": "a person sitting on a bench next to a beach" + }, + { + "label": "a table with pies being made and a person standing near a wall with pots and pans hanging on the wall", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a bathroom area with a toilet, trashcan and dresser", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "the older airplane is about ready to take off from the runway", + "pred": "a small propeller plane sitting on top of an airport runway" + }, + { + "label": "a plan is shown sitting on the pavement", + "pred": "a small propeller plane sitting on top of an airport runway" + }, + { + "label": "a man sitting on a toilet that isn't connected to anything", + "pred": "a man sitting on top of a toilet in a bathroom" + }, + { + "label": "two planes fly in the air near each other", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a kitchen is shown with chairs and an oven", + "pred": "a kitchen with a table and chairs and a refrigerator" + }, + { + "label": "a hand is reaching out to the top if a toilet", + "pred": "a person standing in a bathroom next to a toilet" + }, + { + "label": "a bathroom toilet seat lid is highly decorated", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "poplewalk on the sidewalk near the colorfully striped building", + "pred": "a city street with cars parked on the side of the street" + }, + { + "label": "a husky riding in the front seat of the car", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a crate on top of a car holding various luggage", + "pred": "a pile of luggage stacked on top of each other" + }, + { + "label": "two airplanes having a close call in the sky", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a run down waiting room at a transit station", + "pred": "a room that has a lot of furniture in it" + }, + { + "label": "a luggage rack that has various pieces of luggage and containers on it", + "pred": "a pile of luggage stacked on top of each other" + }, + { + "label": "two women sitting on a park bench, one looking over her shoulder", + "pred": "a woman sitting on a park bench next to a man" + }, + { + "label": "a brand new motorcycle on display at a show", + "pred": "a motorcycle that is on display in a store" + }, + { + "label": "a person flushing a toilet with a motion sensor", + "pred": "a person standing in a bathroom next to a toilet" + }, + { + "label": "two women sit next to each other on a park bench", + "pred": "a woman sitting on a park bench next to a man" + }, + { + "label": "the inside of a warehouse building with brown couches", + "pred": "a room that has a lot of furniture in it" + }, + { + "label": "a prop airplane parked along the side of a runway", + "pred": "a small propeller plane sitting on top of an airport runway" + }, + { + "label": "two people sitting on a bench near trees", + "pred": "a woman sitting on a park bench next to a man" + }, + { + "label": "a husky dog sitting on the front seat of a car", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a collection of luggage that has been placed on a wooden carrier", + "pred": "a pile of luggage stacked on top of each other" + }, + { + "label": "a pro plane and a jet play flying close to each other in the sky", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "the toilet seat cover is made up of many colors", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "a pair of girls sit on a bench outside", + "pred": "a woman sitting on a park bench next to a man" + }, + { + "label": "a man and woman in attic with vacuums and a toilet seat", + "pred": "a man sitting on top of a toilet in a bathroom" + }, + { + "label": "a man sits on top of a toilet", + "pred": "a man sitting on top of a toilet in a bathroom" + }, + { + "label": "a person's hand flushing a toilet with a button on top of the tank", + "pred": "a person standing in a bathroom next to a toilet" + }, + { + "label": "a street corner with traffic lights and cars", + "pred": "a city street with cars parked on the side of the street" + }, + { + "label": "a persons hand reaching for the top of a toilet", + "pred": "a person standing in a bathroom next to a toilet" + }, + { + "label": "a very nice large modern style kitchen with a bar", + "pred": "a kitchen with a table and chairs and a refrigerator" + }, + { + "label": "a busy city intersection clogged with bike traffic", + "pred": "a large group of people on a city street" + }, + { + "label": "the front end of a red motorcycle that is on display", + "pred": "a motorcycle that is on display in a store" + }, + { + "label": "a man an a girl riding a motorcycle on a city street", + "pred": "a man and a child riding on a motorcycle" + }, + { + "label": "a rack filled with lots of different bags of luggage", + "pred": "a pile of luggage stacked on top of each other" + }, + { + "label": "a dog looks interested as he sits in the front seat of a car", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a man riding on the back of a motorcycle", + "pred": "a man and a child riding on a motorcycle" + }, + { + "label": "an old plane sitting on the grass beside the runway", + "pred": "a small propeller plane sitting on top of an airport runway" + }, + { + "label": "two people riding a motorcycle", + "pred": "a man and a child riding on a motorcycle" + }, + { + "label": "a large white kitchen range with gold towels on the front", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "an indoor station has a television on the wall", + "pred": "a room that has a lot of furniture in it" + }, + { + "label": "a large group of people on some bikes on a street", + "pred": "a large group of people on a city street" + }, + { + "label": "lot of two wheelers crossing across the road at a signal", + "pred": "a large group of people on a city street" + }, + { + "label": "a toilet decorated with a colorful quilted top", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "a hand is reaching over a white toilet", + "pred": "a person standing in a bathroom next to a toilet" + }, + { + "label": "a leather sitting bench is in a dimly lit room", + "pred": "a room that has a lot of furniture in it" + }, + { + "label": "a man sits on a broken toilet as people walk by", + "pred": "a man sitting on top of a toilet in a bathroom" + }, + { + "label": "a television is on a tv stand next to a bureau", + "pred": "a dog sitting on the floor watching tv" + }, + { + "label": "a colorful toilet seat open in a toilet stall", + "pred": "a bathroom with a toilet and a painting on the wall" + }, + { + "label": "a man sitting on a toilet in someone's house", + "pred": "a man sitting on top of a toilet in a bathroom" + }, + { + "label": "women on an old park bench", + "pred": "a woman sitting on a park bench next to a man" + }, + { + "label": "a window sitting above a seating area with a tv", + "pred": "a room that has a lot of furniture in it" + }, + { + "label": "someone watching tv with their dog", + "pred": "a dog sitting on the floor watching tv" + }, + { + "label": "two large airplanes flying through a blue sky", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "an ordinary bathroom with a toilet and trash bin", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "a toilet that has a novelty toilet seat and lid", + "pred": "a bathroom with a toilet and a painting on the wall" + }, + { + "label": "a dog laying on a bed with a television", + "pred": "a dog sitting on the floor watching tv" + }, + { + "label": "a white double kitchen stove with raised burners", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "sheep make their way through the crowded city street", + "pred": "a man standing next to a group of sheep" + }, + { + "label": "a white toilet sitting next to a bath tub filled with paintings", + "pred": "a bath room with a toilet and a bath tub" + }, + { + "label": "a bathroom is adorned with beige and white tiles", + "pred": "a white toilet sitting next to a shower in a bathroom" + }, + { + "label": "a white stove in a very small kitchen", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "a kitchen has a vintage gas range and yellow walls", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "hundreds of bicyclists clog up traffic in a city", + "pred": "a large group of people on a city street" + }, + { + "label": "an old fashion double oven cook stove with a griddle", + "pred": "a white stove top oven sitting in a kitchen" + }, + { + "label": "a herd of sheep that are walking through a large group of people", + "pred": "a man standing next to a group of sheep" + }, + { + "label": "a bathtub with several large paintings in it", + "pred": "a bath room with a toilet and a bath tub" + }, + { + "label": "a crowd of people with umbrellas on a street", + "pred": "a crowd of people walking down a street holding umbrellas" + }, + { + "label": "a bathroom stall with a toilet decorated with an outdoor mountain lake theme", + "pred": "a bathroom with a toilet and a painting on the wall" + }, + { + "label": "a herd of sheep traveling down a city street", + "pred": "a man standing next to a group of sheep" + }, + { + "label": "a crowd of people crossing a street holding umbrellas", + "pred": "a crowd of people walking down a street holding umbrellas" + }, + { + "label": "sheep running through town all together in a crowd", + "pred": "a man standing next to a group of sheep" + }, + { + "label": "a motorcycle driving by a red and white biplane", + "pred": "a red and white biplane is on a runway" + }, + { + "label": "crowd of people walking across the street under umbrellas", + "pred": "a crowd of people walking down a street holding umbrellas" + }, + { + "label": "on a narrow street people are taking pictures of sheep", + "pred": "a man standing next to a group of sheep" + }, + { + "label": "a crowded city street filled with motorcycle and car traffic", + "pred": "a large group of people on a city street" + }, + { + "label": "a person on a motor bike and small red airplane", + "pred": "a red and white biplane is on a runway" + }, + { + "label": "a very cute toilet decorated with green woodlands style", + "pred": "a bathroom with a toilet and a painting on the wall" + }, + { + "label": "a crowded street of people all with umbrellas", + "pred": "a crowd of people walking down a street holding umbrellas" + }, + { + "label": "a bathroom view with a toilet and picture frames inside a tub", + "pred": "a bath room with a toilet and a bath tub" + }, + { + "label": "a dog laying in a room near a television and dresser", + "pred": "a dog sitting on the floor watching tv" + }, + { + "label": "a toilet with an unusual green seat and back", + "pred": "a bathroom with a toilet and a painting on the wall" + }, + { + "label": "the striped cat is sitting on top of the car", + "pred": "a cat sitting on the hood of a car" + }, + { + "label": "a black dog laying down not watching the tv that is turned on", + "pred": "a dog sitting on the floor watching tv" + }, + { + "label": "a red and white bicycle next to a building and door", + "pred": "a red bicycle parked in front of a door" + }, + { + "label": "people crossing a street with umbrellas", + "pred": "a crowd of people walking down a street holding umbrellas" + }, + { + "label": "the shower curtain is centered in the middle of the tub", + "pred": "a white toilet sitting next to a shower in a bathroom" + }, + { + "label": "a motorcyclist riding alongside an airplane that is just taking off", + "pred": "a red and white biplane is on a runway" + }, + { + "label": "a person riding a skate board on a city street", + "pred": "a woman holding a kite while walking her dog" + }, + { + "label": "a cat sitting on a car engine with the hood up", + "pred": "a cat sitting on the hood of a car" + }, + { + "label": "a fluffy white chair that faces away fro a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a red bicycle leaned against a red stucco building with a graffiti covered door", + "pred": "a red bicycle parked in front of a door" + }, + { + "label": "framed artwork and paintings stored vertically in an old bathtub", + "pred": "a bath room with a toilet and a bath tub" + }, + { + "label": "people standing on the street by parked bicycles with a skateboard", + "pred": "a woman holding a kite while walking her dog" + }, + { + "label": "small red plane flying next to motorcycle rider in urban area", + "pred": "a red and white biplane is on a runway" + }, + { + "label": "commercial airliner flying near mast on cloudy day", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a bike leaning against the side of a building", + "pred": "a red bicycle parked in front of a door" + }, + { + "label": "man in a crowd of people with a skateboard", + "pred": "a woman holding a kite while walking her dog" + }, + { + "label": "bicycle chained to a building with graffiti on the door", + "pred": "a red bicycle parked in front of a door" + }, + { + "label": "a pillow covered reading chair in the corner of the living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "someone put their art collection in their bath tub", + "pred": "a bath room with a toilet and a bath tub" + }, + { + "label": "a small red plane with a motorcycle riding past it", + "pred": "a red and white biplane is on a runway" + }, + { + "label": "a man climbing on a toilet bowl in a closet", + "pred": "a man cleaning a toilet in a bathroom" + }, + { + "label": "the living room is empty with the television on", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a red bike is parked outside of a barred window", + "pred": "a red bicycle parked in front of a door" + }, + { + "label": "the person walking the dog has dressed it in a torn shirt", + "pred": "a dog laying on the ground next to a person" + }, + { + "label": "a large commercial airplane taking off into the sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "someone opened a hood on a car and he cat jumped up on the edge", + "pred": "a cat sitting on the hood of a car" + }, + { + "label": "white ornate seat in nicely decorated room with television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "three people stand on the street talking next to a dog", + "pred": "a woman holding a kite while walking her dog" + }, + { + "label": "a jet liner flying above in the clear blue sky", + "pred": "a plane is flying high in the sky" + }, + { + "label": "a view a large metal structure near the side of a building", + "pred": "a building with a lot of windows and a bike parked in front of it" + }, + { + "label": "a bathroom with white fixtures and tile floor", + "pred": "a white toilet sitting next to a shower in a bathroom" + }, + { + "label": "an airliner as seen from the ground, through some power lines", + "pred": "a plane is flying high in the sky" + }, + { + "label": "a bike that is parked by a bench, and an airplane that is high in the sky", + "pred": "a bike parked next to a bench with a bird perched on top of it" + }, + { + "label": "a commercial airplane with propellers flying through the air", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a passenger airplane is taking off into a cloudy sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "the bike is parked next to the empty bench", + "pred": "a bike parked next to a bench with a bird perched on top of it" + }, + { + "label": "a white chair, books and shelves and a tv on in this room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "the man is riding his skateboard down the street", + "pred": "a woman holding a kite while walking her dog" + }, + { + "label": "black cat sitting on the engine of a black car", + "pred": "a cat sitting on the hood of a car" + }, + { + "label": "a young man is dressed in a school skirt outfit", + "pred": "a man in a suit and tie holding a bottle" + }, + { + "label": "a white plane flies in the cloudy sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "two men stand over the green water spilled from a toilet", + "pred": "a man cleaning a toilet in a bathroom" + }, + { + "label": "two men working on and repairing a toilet", + "pred": "a man cleaning a toilet in a bathroom" + }, + { + "label": "a plane flying by a bright moon in the sky", + "pred": "an airplane flying high in the sky" + }, + { + "label": "a dog that is lying down on the sidewalk", + "pred": "a dog laying on the ground next to a person" + }, + { + "label": "a man with his foot on a toilet and a man holding something in his hand", + "pred": "a man cleaning a toilet in a bathroom" + }, + { + "label": "the man in the picture is wearing a stylish kilt", + "pred": "a man in a suit and tie holding a bottle" + }, + { + "label": "an air plane in the sky with a three quarter moon out", + "pred": "an airplane flying high in the sky" + }, + { + "label": "a jumbo jet flies through the sky with the moon peeking out", + "pred": "an airplane flying high in the sky" + }, + { + "label": "a small dog wearing a shirt and sniffing something on the ground", + "pred": "a dog laying on the ground next to a person" + }, + { + "label": "a gray cat is walking next to a truck", + "pred": "a cat sitting on the hood of a car" + }, + { + "label": "a passenger jet is flying through a blue sky", + "pred": "a plane is flying high in the sky" + }, + { + "label": "a young man that is wearing a nice suite coat with a skirt and a purse", + "pred": "a man in a suit and tie holding a bottle" + }, + { + "label": "two men are doing work in a bathroom", + "pred": "a man cleaning a toilet in a bathroom" + }, + { + "label": "a passenger jet is flying across the sky", + "pred": "an airplane flying high in the sky" + }, + { + "label": "a black and white cat laying in green vegetation", + "pred": "a black and white cat sitting in the bushes" + }, + { + "label": "people and two women are cutting a white cake", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a woman taking a picture in a bathroom mirror and a toilet and sink", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a smiling man in a jungle holds a bunch of plant parts", + "pred": "a man holding a bunch of bananas" + }, + { + "label": "people watching as a woman cuts into a cake", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a flat screen tv sitting in a living room in front of a dining room table", + "pred": "a table with a bowl of food on top of it" + }, + { + "label": "a male in a white shirt is sitting on a bench and a building", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a man holding a bunch of ripe bananas", + "pred": "a man holding a bunch of bananas" + }, + { + "label": "two large jets sitting on top of an airport runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "women standing around a cake sitting on top of a table", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a man is on a bench in front of a steple tower", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a man in a black jacket holding a zebra print umbrella", + "pred": "a man holding an umbrella while standing in the rain" + }, + { + "label": "a television is reflected from a bathroom mirror", + "pred": "a bathroom with a mirror and a television in it" + }, + { + "label": "a large amount of motorcycles are parked on the street", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a bathroom with a toilet, shower and an hanging chain to flush the toilet", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a motorcycle parked on a dirt road", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a man on sidewalk holding a zebra strip umbrella", + "pred": "a man holding an umbrella while standing in the rain" + }, + { + "label": "a girl slicing a pie inside of a box while others watch", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "an oddly shaped black toilet lid in a bathroom", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a bathroom decorated in black and white", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a small room with a tiny cot, little sink and toilet", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a toilet that has three sea shells on top", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "a large air plane flying thru the air", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a plane site on a grassy country runway", + "pred": "a large propeller plane sitting on top of a field" + }, + { + "label": "an old plane in a field", + "pred": "a large propeller plane sitting on top of a field" + }, + { + "label": "the man is walking with an umbrella near other pedestrians", + "pred": "a man holding an umbrella while standing in the rain" + }, + { + "label": "the cell has a toilet and a sink in it", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a bathroom with the reflection of a tv in a mirror", + "pred": "a bathroom with a mirror and a television in it" + }, + { + "label": "a small passenger airplane sits in the grass at the airport", + "pred": "a large propeller plane sitting on top of a field" + }, + { + "label": "an airplane flying high with a full moon", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a room with a sink, bed and toilet in it", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "an airplane is flying in the sky below the moon", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a man holding a black and white umbrella", + "pred": "a man holding an umbrella while standing in the rain" + }, + { + "label": "two commercial jets on a runway at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "two planes are on a runway beside trucks", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an airplane flying in a cloudy blue sky", + "pred": "a small propeller plane flying through a blue sky" + }, + { + "label": "one bicycle is parked next to many motorcycles", + "pred": "bikes parked next to each other on a sidewalk" + }, + { + "label": "a row of motorcycles next to a bicycle", + "pred": "bikes parked next to each other on a sidewalk" + }, + { + "label": "a toilet with three seashells sitting on top of it", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "a fancy bathroom has glass sinks, a chandelier, and a tv", + "pred": "a table with a bowl of food on top of it" + }, + { + "label": "a airplane coming in for a landing with a full moon above it", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "the large bathroom has four sinks and a chandelier", + "pred": "a table with a bowl of food on top of it" + }, + { + "label": "white and silver scottish airways plane on the ground", + "pred": "a large propeller plane sitting on top of a field" + }, + { + "label": "bathroom scene showing a television and a hair dryer", + "pred": "a bathroom with a mirror and a television in it" + }, + { + "label": "a twin propeller air plane parked in the grass", + "pred": "a large propeller plane sitting on top of a field" + }, + { + "label": "a toilet seat behind a tree in the open outdoor", + "pred": "a white toilet sitting next to a tree" + }, + { + "label": "a bathroom with a telivision in it and mirrors", + "pred": "a bathroom with a mirror and a television in it" + }, + { + "label": "a man is holding a bunch of bananas", + "pred": "a man holding a bunch of bananas" + }, + { + "label": "a beautiful, modern bathroom with a tv, chandelier and glass sinks", + "pred": "a table with a bowl of food on top of it" + }, + { + "label": "a hotel room with a chandelier and glass fixtures", + "pred": "a table with a bowl of food on top of it" + }, + { + "label": "a small engine plane flying over in the blue sky", + "pred": "a small propeller plane flying through a blue sky" + }, + { + "label": "a modern bathroom with square sink and backlit mirror", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "small white toilet with seashells sitting on top of it", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "counter top inside a house designed with different colors", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "two jumbo jet air planes on a runway facing each other", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a fighter jet plane ascending into the sky", + "pred": "a fighter jet flying through a cloudy sky" + }, + { + "label": "a plane flying through a clear blue sky", + "pred": "a small propeller plane flying through a blue sky" + }, + { + "label": "a very old toilet and sink in an old room", + "pred": "a dirty toilet in a dirty room next to a wall" + }, + { + "label": "a toilet with a black seat next to a shower", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a large jet liner flying under the moon", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a fighter jet gaining altitude in a cloudy sky", + "pred": "a fighter jet flying through a cloudy sky" + }, + { + "label": "a very colorful vanity in a public restroom", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "fancy designed sink in a bathroom with stained glass window pattern", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a really cool bathroom counter with bright colors", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "bikes and motorcycles parked on a city street", + "pred": "bikes parked next to each other on a sidewalk" + }, + { + "label": "bicycles and scooters lined up along the sidewalk in a quaint town", + "pred": "bikes parked next to each other on a sidewalk" + }, + { + "label": "an airplane flying overhead in a blue sky", + "pred": "a small propeller plane flying through a blue sky" + }, + { + "label": "a public restroom has been redone to resemble a party", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a white toilet with sea shells on the tank cover", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "a bathroom with purple walls and two mirrors", + "pred": "a bathroom with a mirror and a television in it" + }, + { + "label": "a dirty bathroom that has broken wood and pipes", + "pred": "a dirty toilet in a dirty room next to a wall" + }, + { + "label": "bicycles lined up on the side of the road", + "pred": "bikes parked next to each other on a sidewalk" + }, + { + "label": "two large jets facing each other at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "the underside white and blue plane in sky", + "pred": "a small propeller plane flying through a blue sky" + }, + { + "label": "a toilet seat sits in front of a tree", + "pred": "a white toilet sitting next to a tree" + }, + { + "label": "an aircraft is flying in a cloudy sky", + "pred": "a fighter jet flying through a cloudy sky" + }, + { + "label": "a double image of a comedian and a singer on the television screen", + "pred": "a man standing in front of a tv" + }, + { + "label": "a military jet taking off into the sky", + "pred": "a fighter jet flying through a cloudy sky" + }, + { + "label": "an old rusted bathroom with wooden walls and floor", + "pred": "a dirty toilet in a dirty room next to a wall" + }, + { + "label": "a video screen with faces of a couple of guys on it", + "pred": "a man standing in front of a tv" + }, + { + "label": "white toilet in a restroom with three seashells on the tank", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "a white toilet bowl with no tank near a tree", + "pred": "a white toilet sitting next to a tree" + }, + { + "label": "a nice jet plane flying into some grey skies", + "pred": "a fighter jet flying through a cloudy sky" + }, + { + "label": "a very old and dirty rest room with sink and toilet", + "pred": "a dirty toilet in a dirty room next to a wall" + }, + { + "label": "a vintage photo of a toilet sitting next to a shower", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a big thick tasty looking pastry with icing on it", + "pred": "a glazed donut sitting on top of a piece of paper" + }, + { + "label": "stephen colbert on tv doing an interview with paul mccartney", + "pred": "a man standing in front of a tv" + }, + { + "label": "a tv screen with two faces overlapping", + "pred": "a man standing in front of a tv" + }, + { + "label": "a toilet is placed at the base of a tree", + "pred": "a white toilet sitting next to a tree" + }, + { + "label": "a toilet with glitter paint on it", + "pred": "a toilet with the lid up in a bathroom" + }, + { + "label": "the tv has two men merged together on it", + "pred": "a man standing in front of a tv" + }, + { + "label": "a toilet missing the back section sitting next to a tree", + "pred": "a white toilet sitting next to a tree" + }, + { + "label": "brightly lit tiled wall in modern bathroom setting", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a dirty white toilet in a small room", + "pred": "a toilet with the lid up in a bathroom" + }, + { + "label": "toilet with white splatter paint on a black seat in a restroom stall", + "pred": "a toilet with the lid up in a bathroom" + }, + { + "label": "cinnamon roll with icing on a square of wax paper", + "pred": "a glazed donut sitting on top of a piece of paper" + }, + { + "label": "a white toilet and sink in a room", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "people watching off the side of a cruise ship as a life boat is lowered", + "pred": "a woman standing next to a boat on a body of water" + }, + { + "label": "yellow train stopped at the station in front of a bench", + "pred": "a train on a train track near a platform" + }, + { + "label": "a emergency boat being lowered into the water by a cruise ship", + "pred": "a woman standing next to a boat on a body of water" + }, + { + "label": "a bathroom with black walls and a toilet with a silver toilet seat", + "pred": "a toilet with the lid up in a bathroom" + }, + { + "label": "people watch from a large boat as a smaller boat is lowered into the ocean", + "pred": "a woman standing next to a boat on a body of water" + }, + { + "label": "a policeman on a motorcycle at night watching pedestrians cross a street", + "pred": "a police officer on a motorcycle on a city street" + }, + { + "label": "a bathroom with white and black tile a sink and toilet", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "people watching a small boat being raised up", + "pred": "a woman standing next to a boat on a body of water" + }, + { + "label": "a cinnamon roll with icing sitting on wax paper", + "pred": "a glazed donut sitting on top of a piece of paper" + }, + { + "label": "giraffe standing in a building", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a passenger train is yellow and blue, and stands at a station", + "pred": "a train on a train track near a platform" + }, + { + "label": "the woman in the diner and the man looking into the window are making eye contact", + "pred": "a woman standing in front of a counter in a restaurant" + }, + { + "label": "people are leaning over a railing on a boat", + "pred": "a woman standing next to a boat on a body of water" + }, + { + "label": "cars setting at traffic light leading to capitol building", + "pred": "cars are stopped at a red light" + }, + { + "label": "a policeman on a motorcycle and some people crossing the street", + "pred": "a police officer on a motorcycle on a city street" + }, + { + "label": "two giraffes look over a railing blockade", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a woman sits at a counter while a man looks at her through a window", + "pred": "a woman standing in front of a counter in a restaurant" + }, + { + "label": "the corner of a bathroom, showing the sink and toilet", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a line of cars stopped at a red light in a large city", + "pred": "cars are stopped at a red light" + }, + { + "label": "a man at a food truck viewing the menu", + "pred": "a woman standing in front of a counter in a restaurant" + }, + { + "label": "cars waiting at a red traffic light with a dome shaped building in the distance", + "pred": "cars are stopped at a red light" + }, + { + "label": "a restroom toilet and lid covered in silver glitter", + "pred": "a toilet with the lid up in a bathroom" + }, + { + "label": "a filthy bathroom has a dirt covered sink and a rusty toilet", + "pred": "a dirty toilet in a dirty room next to a wall" + }, + { + "label": "giraffe standing next to each other", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a green motorcycle parked on top of a green lawn", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a desk with a cup plate laptop monitor and keyboard", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a man standing at a counter talking to a woman", + "pred": "a woman standing in front of a counter in a restaurant" + }, + { + "label": "a city street filled with lots of cars", + "pred": "cars are stopped at a red light" + }, + { + "label": "blue and yellow train at a train station in front of a bench", + "pred": "a train on a train track near a platform" + }, + { + "label": "a laptop sitting next to a monitor, keyboard and a mouse", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a doughnut with sprinkled sugar and icing on it", + "pred": "a glazed donut sitting on top of a piece of paper" + }, + { + "label": "a man sitting at a desk in front of a laptop computer", + "pred": "a man sitting at a desk with a laptop" + }, + { + "label": "a man contemplating something at a desk with a laptop", + "pred": "a man sitting at a desk with a laptop" + }, + { + "label": "a white bath tub sitting next to a toilet", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "a city street filled with lots of traffic and people", + "pred": "a man riding a motorcycle down a street next to a bunch of cars" + }, + { + "label": "a man looking in the window of a cafe", + "pred": "a woman standing in front of a counter in a restaurant" + }, + { + "label": "a doughnut like pastry sitting on parchment paper", + "pred": "a glazed donut sitting on top of a piece of paper" + }, + { + "label": "a man in thought sitting in front of a laptop with a pen in his hand", + "pred": "a man sitting at a desk with a laptop" + }, + { + "label": "two people standing near a motorcycle on the grass", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a police on a motorcycle on the side of the road", + "pred": "a police officer on a motorcycle on a city street" + }, + { + "label": "a blue bike parked on a side walk", + "pred": "a blue bike parked on the side of the street" + }, + { + "label": "a man riding a bicycle with a boy on the back of it", + "pred": "a man riding a bike next to a man on a scooter" + }, + { + "label": "two giraffes have a big log in their enclosure", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a man in shirt and tie at desk with laptop", + "pred": "a man sitting at a desk with a laptop" + }, + { + "label": "cars are stopped at a stop light by the capital", + "pred": "cars are stopped at a red light" + }, + { + "label": "a man in yellow vest riding motorcycle on street", + "pred": "a police officer on a motorcycle on a city street" + }, + { + "label": "a bicycle is chained to a fixture on a city street", + "pred": "a blue bike parked on the side of the street" + }, + { + "label": "a blue bicycle sits on a sidewalk near a street", + "pred": "a blue bike parked on the side of the street" + }, + { + "label": "a man that is sitting at a desk with a pen and laptop", + "pred": "a man sitting at a desk with a laptop" + }, + { + "label": "a train that is on the tracks sitting in front of a bench", + "pred": "a train on a train track near a platform" + }, + { + "label": "a world war military motocycle on display at an event", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a large and small giraffe are looking at something while standing next to a log", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a bicycle is locked up to a post", + "pred": "a blue bike parked on the side of the street" + }, + { + "label": "a man on his bike with his friend riding on the back", + "pred": "a man riding a bike next to a man on a scooter" + }, + { + "label": "a busy street with cars, a motorcycle and a passenger bus", + "pred": "a man riding a motorcycle down a street next to a bunch of cars" + }, + { + "label": "two men ride a big along a busy street", + "pred": "a man riding a bike next to a man on a scooter" + }, + { + "label": "two boys riding on a single bicycle on a city street", + "pred": "a man riding a bike next to a man on a scooter" + }, + { + "label": "a laptop and a desktop monitor are displayed on top of the desk", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a bench sit in front of a blue and yellow train", + "pred": "a train on a train track near a platform" + }, + { + "label": "a man is riding a large bike through the park", + "pred": "a man riding a bike next to a park bench" + }, + { + "label": "a street with a motorcycle, bus and cars travelling on it", + "pred": "a man riding a motorcycle down a street next to a bunch of cars" + }, + { + "label": "a bathroom area with a sink, toilet and bathtub", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "a person riding a very tall bike in the street", + "pred": "a man riding a bike next to a park bench" + }, + { + "label": "large office desk with computers near a window", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a cop is riding a motorcycle at an intersection in a city at night", + "pred": "a police officer on a motorcycle on a city street" + }, + { + "label": "a black and white scene with two couples under umbrellas and rain jackets sitting at a stadium", + "pred": "two women with umbrellas walking down a street" + }, + { + "label": "a vintage army motorcycle is shown on display", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a desk with a laptop, second monitor and keyboard", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a vety cute furry dog posing near a big sign", + "pred": "a dog that is looking at the camera" + }, + { + "label": "a number of people in a kitchen preparing food", + "pred": "a chef preparing food in a restaurant kitchen" + }, + { + "label": "two men are on a bicycle and a third is on a scooter", + "pred": "a man riding a bike next to a man on a scooter" + }, + { + "label": "chefs and cooks are preparing meals in a restaurant kichen", + "pred": "a chef preparing food in a restaurant kitchen" + }, + { + "label": "a bike sits parked next to a street", + "pred": "a blue bike parked on the side of the street" + }, + { + "label": "a dog with a car in the back", + "pred": "a dog that is looking at the camera" + }, + { + "label": "group sitting under umbrellas", + "pred": "two women with umbrellas walking down a street" + }, + { + "label": "people look at the dark green motorcycle parked on the grass", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a woman sitting down with a large cell phone holder on her pants", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "the small dog has a tiny black nose", + "pred": "a dog that is looking at the camera" + }, + { + "label": "a grey dog with a black collar sits outside in the sun", + "pred": "a dog that is looking at the camera" + }, + { + "label": "a dog looking away from the camera in the wind", + "pred": "a dog that is looking at the camera" + }, + { + "label": "a bath and toilet in a small room", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "a kitchen that has a table and a chair", + "pred": "a kitchen with a stove, sink, and refrigerator" + }, + { + "label": "a person on a motor bike on a street", + "pred": "a man riding a motorcycle down a street next to a crowd of people" + }, + { + "label": "people sitting under umbrellas on bleachers with other spectators", + "pred": "two women with umbrellas walking down a street" + }, + { + "label": "a man this is on a high wheel bicycle", + "pred": "a man riding a bike next to a park bench" + }, + { + "label": "a close shot of someone pointing to their cased alltel phone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a person riding a bicycle on a deserted street", + "pred": "a man riding a bike next to a park bench" + }, + { + "label": "vehicles are traveling at both ends of the intersection with no traffic control", + "pred": "a man riding a motorcycle down a street next to a bunch of cars" + }, + { + "label": "people riding motorcycles and bikes down a city street", + "pred": "a man riding a motorcycle down a street next to a crowd of people" + }, + { + "label": "people with a umbrella", + "pred": "two women with umbrellas walking down a street" + }, + { + "label": "a woman standing at a kitchen counter with a child and a dog is behind her", + "pred": "a woman sitting on the floor next to a dog in a kitchen" + }, + { + "label": "a person rides a bike on the road", + "pred": "a man riding a bike next to a park bench" + }, + { + "label": "a kitchen decorated in decor with furniture in it", + "pred": "a kitchen with a stove, sink, and refrigerator" + }, + { + "label": "people work in a kitchen together", + "pred": "a chef preparing food in a restaurant kitchen" + }, + { + "label": "a bathroom that has a bathtub with the light on", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "people in a kitchen start to prepare some food", + "pred": "a chef preparing food in a restaurant kitchen" + }, + { + "label": "chefs working in a kitchen at a restaurant", + "pred": "a chef preparing food in a restaurant kitchen" + }, + { + "label": "an older image of a toddler, dog, and adult doing dishes", + "pred": "a woman sitting on the floor next to a dog in a kitchen" + }, + { + "label": "a sidewalk next to the outdoor sitting area of a restaurant", + "pred": "a row of motorcycles parked on the side of a road" + }, + { + "label": "an adult is cooking at the kitchen counter near a baby and a dog", + "pred": "a woman sitting on the floor next to a dog in a kitchen" + }, + { + "label": "six giraffe are standing looking in the same direction", + "pred": "giraffes standing next to each other" + }, + { + "label": "a yellow lap laying in a kitchen and looking at a little kid", + "pred": "a woman sitting on the floor next to a dog in a kitchen" + }, + { + "label": "a bus, cars and a motorcycle driving in busy traffic on the street", + "pred": "a man riding a motorcycle down a street next to a bunch of cars" + }, + { + "label": "a fish eye shot of people sitting outside at a cafe", + "pred": "a row of motorcycles parked on the side of a road" + }, + { + "label": "a herd of giraffes of multiple heights standing together", + "pred": "giraffes standing next to each other" + }, + { + "label": "a man on a motorbike rides down the street", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a policeman on a motorcycle leads the way in a parade", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a very old fashioned kitchen with retro floor tiles", + "pred": "a kitchen with a stove, sink, and refrigerator" + }, + { + "label": "a person has their cell phone clipped to their belt", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "black and white photo bicycle with sidewalk and umbrellas", + "pred": "a row of motorcycles parked on the side of a road" + }, + { + "label": "people is on the floor near a urinal", + "pred": "a man laying in a bath tub next to a woman" + }, + { + "label": "young women sitting next to each other under an umbrella", + "pred": "two women with umbrellas walking down a street" + }, + { + "label": "a row of white toilets sitting on top of a dirt ground", + "pred": "a row of toilets sitting next to each other" + }, + { + "label": "a painting of kids on the bathroom floor which is tile", + "pred": "a man laying in a bath tub next to a woman" + }, + { + "label": "a bicycle with a basket and a blue and pink umbrella", + "pred": "a person sitting at a table with an umbrella" + }, + { + "label": "busy street scene in india including various modes of transportation", + "pred": "a man riding a motorcycle down a street next to a crowd of people" + }, + { + "label": "someone mounted an umbrella and a basket on that bicycle", + "pred": "a person sitting at a table with an umbrella" + }, + { + "label": "a bicycle with an umbrella, basket and cloths with pens", + "pred": "a person sitting at a table with an umbrella" + }, + { + "label": "giraffe peering their heads out in sequential order", + "pred": "giraffes standing next to each other" + }, + { + "label": "the people in the photo are all reaching your hands up high", + "pred": "a man laying in a bath tub next to a woman" + }, + { + "label": "an old fashioned kitchen with the light on", + "pred": "a kitchen with a stove, sink, and refrigerator" + }, + { + "label": "five giraffes standing together and eating near some trees", + "pred": "giraffes standing next to each other" + }, + { + "label": "a small pack of giraffes are looking in to the distance", + "pred": "giraffes standing next to each other" + }, + { + "label": "a small child is in the kitchen with an adult and dog", + "pred": "a woman sitting on the floor next to a dog in a kitchen" + }, + { + "label": "someone pointing at their cell phone in a case on their hip", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a virtual mirage of people on a wall reaching up", + "pred": "a man laying in a bath tub next to a woman" + }, + { + "label": "a bicycle with a blue umbrella and baskets attached to carry things", + "pred": "a person sitting at a table with an umbrella" + }, + { + "label": "a 787 airplane is landing at the airport", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a bike with a basket attached to it is parked", + "pred": "a person sitting at a table with an umbrella" + }, + { + "label": "an old fashioned kitchen is set up for display", + "pred": "a kitchen with a stove, sink, and refrigerator" + }, + { + "label": "an airplane is getting ready to land at the airport", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a mural of people are on a yellow tile wall", + "pred": "a man laying in a bath tub next to a woman" + }, + { + "label": "a sheriff riding a motorcycle in a parade", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "bicycles and vehicles are parked where people are gathered", + "pred": "a row of motorcycles parked on the side of a road" + }, + { + "label": "a bathroom with sheer curtains framing the tub", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "a red microwave on a tile kitchen counter", + "pred": "a microwave sitting on top of a counter next to a brick wall" + }, + { + "label": "a airplane in the sky flying above a building", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "commercial jet passing overhead on bright cloudless sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a large aircraft in the blue sky by itself", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a man rides with a child on a motorcycle down a busy street with other pedestrians and bicyclists", + "pred": "a man riding a motorcycle down a street next to a crowd of people" + }, + { + "label": "a double deckered bus on a city street", + "pred": "a bus is parked in front of a church" + }, + { + "label": "blue and white airplane flying over radio tower", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a blue a white plane flying through the air", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a bath room with sinks and mirrors", + "pred": "a bathroom with a sink, toilet, and mirror" + }, + { + "label": "a busy street corner with lots of vehicles", + "pred": "a bus is parked in front of a church" + }, + { + "label": "a ground view of an airplane in the sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "meters are sitting near an air plane", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "bright red microwave sitting on the kitchen counter", + "pred": "a microwave sitting on top of a counter next to a brick wall" + }, + { + "label": "a jet plane is flying across the sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "dirty looking white toilets in a row outside", + "pred": "a row of toilets sitting next to each other" + }, + { + "label": "a red and black microwave on a counter", + "pred": "a microwave sitting on top of a counter next to a brick wall" + }, + { + "label": "a row of used and broken toilets in a field", + "pred": "a row of toilets sitting next to each other" + }, + { + "label": "a bus and other cars are traveling on a street", + "pred": "a bus is parked in front of a church" + }, + { + "label": "a microwave oven is sitting on a counter", + "pred": "a microwave sitting on top of a counter next to a brick wall" + }, + { + "label": "bikes that are sitting on the sidewalk", + "pred": "a row of motorcycles parked on the side of a road" + }, + { + "label": "a bathroom with orange decorated wallpaper and a mirror", + "pred": "a bathroom with a sink, toilet, and mirror" + }, + { + "label": "motorcycles are stacked together side by side", + "pred": "motorcycles parked next to each other" + }, + { + "label": "an empty tiled bathroom, with two sinks and two mirrors", + "pred": "a bathroom with a sink, toilet, and mirror" + }, + { + "label": "motorcycles that are parked together", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a person is flying a biplane in the sky", + "pred": "a small airplane flying through a cloudy sky" + }, + { + "label": "the officer is riding his motorcycle in a busy street", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a commercial bathroom with orange and gray mosaic tiles and three sinks", + "pred": "a bathroom with a sink, toilet, and mirror" + }, + { + "label": "an old biplane that is flying low for the crowd", + "pred": "a small airplane flying through a cloudy sky" + }, + { + "label": "a jetliner flying through a light blue sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a airplane that is sitting on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a red and white plane flying through a cloudy sky", + "pred": "a small airplane flying through a cloudy sky" + }, + { + "label": "two birds preparing to eat food off of a plate that was left on a table outside by the ocean", + "pred": "a chicken sandwich and french fries on a plate" + }, + { + "label": "a bus that is sitting in front of a building", + "pred": "a bus is parked in front of a church" + }, + { + "label": "a propeller plane that is flying in the sky", + "pred": "a small airplane flying through a cloudy sky" + }, + { + "label": "a colorful plane flying over head and telephone wires", + "pred": "an airplane flying through the air with a sky background" + }, + { + "label": "a bath and a toilet in a small room", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "a plate topped with bread, greens and pasta and a bird", + "pred": "a chicken sandwich and french fries on a plate" + }, + { + "label": "a man standing in front of a mirror in a room", + "pred": "a woman taking a picture of herself in a bathroom mirror" + }, + { + "label": "a man that is standing in the grass near animals", + "pred": "a man standing in a field with a herd of sheep" + }, + { + "label": "a fire hydrant and some cars on a street", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a ground view of the belly side of a air plane", + "pred": "an airplane flying through the air with a sky background" + }, + { + "label": "a jet airplane is flying through the sky", + "pred": "an airplane flying through the air with a sky background" + }, + { + "label": "a large number of chrome motorcycles parked together", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a man standing on a hill with sheep and two dogs", + "pred": "a man standing in a field with a herd of sheep" + }, + { + "label": "white and red biplane flying through the air", + "pred": "a small airplane flying through a cloudy sky" + }, + { + "label": "a red airplane jet flies over power lines in an empty sky", + "pred": "an airplane flying through the air with a sky background" + }, + { + "label": "two birds standing on the plate of food", + "pred": "a chicken sandwich and french fries on a plate" + }, + { + "label": "the back view of an airplane on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a street with many motor bikes parked together", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a girl is taking a selfie while brushing her teeth", + "pred": "a woman brushing her teeth with a toothbrush" + }, + { + "label": "bikes are being transported in a subway car", + "pred": "a man standing next to a row of parked bikes" + }, + { + "label": "a man is standing on a grassy hill with some sheep and dogs", + "pred": "a man standing in a field with a herd of sheep" + }, + { + "label": "a bird attempting to bite a piece of sandwich bread", + "pred": "a chicken sandwich and french fries on a plate" + }, + { + "label": "an airplane has just landed on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "the bathroom is painted a light blue and has pink ceramic tile that adorns the shower wall along with a maple color vanity and door", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "fire hydrant and pylons on a city street corner", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a white toilet and cup in a room", + "pred": "a toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a row of toilets with broken seat tops on the ground", + "pred": "a row of toilets sitting next to each other" + }, + { + "label": "a man standing in front of a bathroom mirror and a sink", + "pred": "a woman taking a picture of herself in a bathroom mirror" + }, + { + "label": "a table topped with a book, umbrella and other items", + "pred": "a cutting board with a knife and scissors on it" + }, + { + "label": "fire hydrant on city street with several parked cars", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "searchlights in front view and a plane on a wide runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an officer watching over bicycles in a subway cart", + "pred": "a man standing next to a row of parked bikes" + }, + { + "label": "antique trinkets are arranged on a table", + "pred": "a cutting board with a knife and scissors on it" + }, + { + "label": "a toilet next to a chain shower stall in a bathroom", + "pred": "a bathroom with a shower stall and a toilet" + }, + { + "label": "a fire hydrant surrounded by three metal poles", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "in bathroom taking selfie of herself brushing teeth", + "pred": "a woman brushing her teeth with a toothbrush" + }, + { + "label": "a counter with porcelain figurines, an umbrella and a bowl", + "pred": "a cutting board with a knife and scissors on it" + }, + { + "label": "lots of broken toilets sitting out on a lawn", + "pred": "a row of toilets sitting next to each other" + }, + { + "label": "a woman taking a picture of herself while brushing her teeth", + "pred": "a woman brushing her teeth with a toothbrush" + }, + { + "label": "a table with a white cup and a cookie next to a toilet", + "pred": "a toilet sitting in a bathroom next to a trash can" + }, + { + "label": "stylish circular shower stall, next to a toilet in a compact bathroom", + "pred": "a bathroom with a shower stall and a toilet" + }, + { + "label": "a corner of a rest room with a cookie and coffee", + "pred": "a toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a kitchen with a counter, window, stove and cutlery", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a woman brushing her teeth while taking a selfie", + "pred": "a woman brushing her teeth with a toothbrush" + }, + { + "label": "a bathroom with blue walls and pink tile", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "a table with an umbrella and other things", + "pred": "a cutting board with a knife and scissors on it" + }, + { + "label": "this bathroom has pink tiles in the shower and is painted blue", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "kitchen counter with mugs, coffee, and a knife block on it", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a black plush toy sitting on the lid of a toilet", + "pred": "a toilet in a bathroom with the lid up" + }, + { + "label": "a toilet lid is closed next to a bathtub with a white curtain and pink tile wall", + "pred": "a bathroom with a sink, toilet and tub" + }, + { + "label": "a shepard and his dogs herding a flock of sheep", + "pred": "a man standing in a field with a herd of sheep" + }, + { + "label": "a small black table next to a white toilet", + "pred": "a toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a black stuffed animal sitting on top of a toilet in a bathroom stall with blue floor tile", + "pred": "a toilet in a bathroom with the lid up" + }, + { + "label": "a yamaha motorcycle parked outside of a building", + "pred": "a black motorcycle parked in front of a building" + }, + { + "label": "a man is looking at himself in the mirror", + "pred": "a woman taking a picture of herself in a bathroom mirror" + }, + { + "label": "a black motorcycle parked at a building that says \"500\"", + "pred": "a black motorcycle parked in front of a building" + }, + { + "label": "bikes are being stored in a narrow passageway", + "pred": "a man standing next to a row of parked bikes" + }, + { + "label": "a bath room with a stand up shower and a toilet", + "pred": "a bathroom with a shower stall and a toilet" + }, + { + "label": "a bathroom with a toilet, tiled walls and a chained shower", + "pred": "a bathroom with a shower stall and a toilet" + }, + { + "label": "a toilet with a teddy bear sitting on the seat", + "pred": "a toilet in a bathroom with the lid up" + }, + { + "label": "a man in a bathroom looking at himself in the mirror", + "pred": "a woman taking a picture of herself in a bathroom mirror" + }, + { + "label": "a blue pained bathroom with a toilet missing the upper half", + "pred": "a bathroom with a shower stall and a toilet" + }, + { + "label": "a white and silver subway train filled with several bicycles", + "pred": "a man standing next to a row of parked bikes" + }, + { + "label": "a motorcycle parked near a building", + "pred": "a black motorcycle parked next to a brick building" + }, + { + "label": "a motorcycle is placed next to a 500 sign", + "pred": "a black motorcycle parked in front of a building" + }, + { + "label": "a women who is holding a whisk in the kitchen", + "pred": "a woman standing in front of a counter in a kitchen" + }, + { + "label": "a person is standing over a dirty toilet in a bathroom stall", + "pred": "a toilet with a lot of toilet paper on the floor" + }, + { + "label": "a cup and a plate with food on it on a table next to a toilet", + "pred": "a toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a man is looking into a disgusting toilet", + "pred": "a toilet with a lot of toilet paper on the floor" + }, + { + "label": "a small kitchen has a checkered floor and a window", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a woman in white dress leaning on a counter in a kitchen", + "pred": "a woman standing in front of a counter in a kitchen" + }, + { + "label": "a motorcycle that is sitting on a brick floor", + "pred": "a black motorcycle parked next to a brick building" + }, + { + "label": "a white refrigerator and a counter in a room", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "two rows of cars parked next to a boat", + "pred": "cars parked on the tarmac at an airport" + }, + { + "label": "a person behind a table in front of many dishes", + "pred": "a woman standing in front of a counter in a kitchen" + }, + { + "label": "a woman that is bent over on a counter", + "pred": "a woman standing in front of a counter in a kitchen" + }, + { + "label": "a toilet and a bath tub with toys", + "pred": "a bathroom with a toilet and a bath tub" + }, + { + "label": "cars lined up to be loaded onto a boat", + "pred": "cars parked on the tarmac at an airport" + }, + { + "label": "bathroom with sink, shower, towels, curtain, and more with window", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a white toilet filled with crap with two pink roles of toilet paper", + "pred": "a toilet with a lot of toilet paper on the floor" + }, + { + "label": "a bathroom with a fern plant near the sink and a photo of a city above the toilet", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a row of cars parked next to a large boat", + "pred": "cars parked on the tarmac at an airport" + }, + { + "label": "three mugs are on the kitchen counter of a stove", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "someone is standing over a dirty toilet", + "pred": "a toilet with a lot of toilet paper on the floor" + }, + { + "label": "large black motorcycle sitting next to a white building", + "pred": "a black motorcycle parked next to a brick building" + }, + { + "label": "the mirror, sink and bathtub area of a white bathroom", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "well decorated bathroom in a small yellow tinted area", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a street filled with lots of cars next to a boat", + "pred": "cars parked on the tarmac at an airport" + }, + { + "label": "a grey colored jet plane flying over a snowy mountain range", + "pred": "a fighter jet is flying through the air" + }, + { + "label": "a black motorcycle parked on a brick walkway", + "pred": "a black motorcycle parked next to a brick building" + }, + { + "label": "a white and red plane parked on a tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a small bathroom has a sink and a storage rack over the toilet", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a silver jet is flying high in the sky above the clouds", + "pred": "a fighter jet is flying through the air" + }, + { + "label": "a sink and some shelves are in this small bathroom", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a room that has two televisions in it", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a a small bathroom with pink tile and trim", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a bathroom with a sink and a mirror", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a small bathroom, with a commode, and a bathtub with bath toys in and around it", + "pred": "a bathroom with a toilet and a bath tub" + }, + { + "label": "a large airliner with a kangaroo on the tail wing", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a motorcycle parked next to a white building", + "pred": "a black motorcycle parked next to a brick building" + }, + { + "label": "a display of figurines and books as an art piece", + "pred": "a cutting board with a knife and scissors on it" + }, + { + "label": "a plate with bacon, eggs and hamburger topped with bananas", + "pred": "a white plate topped with a bunch of different types of food" + }, + { + "label": "an airplane flies high above in the sky with telephone lines in the picture as well", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a commercial airplane sits on a runway at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a living room with two televisions decorated for the holiday", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a young girl that is in a very clean and well stocked kitchen", + "pred": "a woman standing in front of a counter in a kitchen" + }, + { + "label": "a kitchen with all the appliances such as a fridge, microwave and stove", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a plate of chicken fried steak with bananas on top, eggs and bacon", + "pred": "a white plate topped with a bunch of different types of food" + }, + { + "label": "a dirty toiet", + "pred": "a toilet with a lot of toilet paper on the floor" + }, + { + "label": "banana pieces placed on beacon and sausage on a white plate", + "pred": "a white plate topped with a bunch of different types of food" + }, + { + "label": "a blue pot of tomato sauce with a wooden ladle", + "pred": "a pot of liquid sitting on top of a stove top" + }, + { + "label": "a cup sits on the edge of a white tub in a bathroom", + "pred": "a bathroom with a toilet and a bath tub" + }, + { + "label": "a large jetliner sitting on top of an airport runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a pan filled with mystery goo next to another pan", + "pred": "a pot of liquid sitting on top of a stove top" + }, + { + "label": "a large jetliner flying through a cloudy blue sky", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a tv with a man and a woman on it's display", + "pred": "a television and a bottle of beer on a table" + }, + { + "label": "a jet fighter flying through the sky above a snow covered mountain", + "pred": "a fighter jet is flying through the air" + }, + { + "label": "a wooden spoon sticking out of a pot of food", + "pred": "a pot of liquid sitting on top of a stove top" + }, + { + "label": "an airplane with the swiss flag symbol is flying through the mountains", + "pred": "a fighter jet is flying through the air" + }, + { + "label": "a red and white plane sitting on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a plane is flying in a blue cloudy sky", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a small cat sits perched on the back of a toilet", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a small cat sits on top of a white toilet missing its seat in a bathroom", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "an 023 airplane flying solo above blue terrain", + "pred": "a fighter jet is flying through the air" + }, + { + "label": "a man and a woman standing in front of a mirror", + "pred": "a man and a woman standing next to each other in a bathroom" + }, + { + "label": "a guy and a girl looking into the bathroom mirror taking a selfie photo with toothbrushes in their mouths", + "pred": "a man and a woman standing next to each other in a bathroom" + }, + { + "label": "french bread on a plate with eggs, bacon and banana slices atop the bread", + "pred": "a white plate topped with a bunch of different types of food" + }, + { + "label": "a wooden utensil in a red sauce in a pot", + "pred": "a pot of liquid sitting on top of a stove top" + }, + { + "label": "an airplane high in the sky over some electrical wires", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a tv on a tv stand in a room at christmas time", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a cat sitting on a toilet in a bathroom", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a guy and a pretty girl taking a picture in the mirror", + "pred": "a man and a woman standing next to each other in a bathroom" + }, + { + "label": "a big commercial plane flying in the sky over a wire", + "pred": "an airplane is flying high in the sky" + }, + { + "label": "a flat screen television next to an older tube television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "the image of a man holding a camera is in this motorcycle side mirror", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "bathroom tub with children's toys and books on floor and tub", + "pred": "a bathroom with a toilet and a bath tub" + }, + { + "label": "a guy inside a car taking a picture through the mirror in a remote area", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "a stuffed animal sitting on the toliet", + "pred": "a toilet in a bathroom with the lid up" + }, + { + "label": "a plate with meat and bananas on top", + "pred": "a white plate topped with a bunch of different types of food" + }, + { + "label": "a man taking a picture of his reflection in a motorcycle mirror", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "a large motorcycle that is sitting outside of a building", + "pred": "a black motorcycle parked in front of a building" + }, + { + "label": "an old tv and a flat screen tv on a homemade entertainment center", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "two women sitting outside hanging out and smoking cigarettes", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "television showing a movie with one man threatening another with a razor blade", + "pred": "a television and a bottle of beer on a table" + }, + { + "label": "a wooden handle in a pot with soup or stew next to an empty bowl", + "pred": "a pot of liquid sitting on top of a stove top" + }, + { + "label": "a kitchen with a refrigerator a counter and a sink", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a television set is on next to a bottle of water", + "pred": "a television and a bottle of beer on a table" + }, + { + "label": "a bicycle that is resting upon the wall of a building", + "pred": "a bicycle leaning against a wall next to a stone wall" + }, + { + "label": "a tv on with a man holding a knife at a guy's head and a bottle of mineral water", + "pred": "a television and a bottle of beer on a table" + }, + { + "label": "a motorcycle parked outside the doors of a building", + "pred": "a black motorcycle parked in front of a building" + }, + { + "label": "women sitting outside in a court yard", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "bicycle leaning up against a dirty board, near outdoor market", + "pred": "a bicycle leaning against a wall next to a stone wall" + }, + { + "label": "a man taking a picture of himself in the rear view mirror", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "a bottle of mineral water by a tv that is on", + "pred": "a television and a bottle of beer on a table" + }, + { + "label": "a couple taking a photo of themselves cleaning their teeth", + "pred": "a man and a woman standing next to each other in a bathroom" + }, + { + "label": "a bike leaning on a door of a building", + "pred": "a bicycle leaning against a wall next to a stone wall" + }, + { + "label": "an old car in front of an old air plane", + "pred": "an old airplane sitting on top of an airport tarmac" + }, + { + "label": "men on bikes riding alongside a car on the street", + "pred": "two people riding a bike next to a truck on a city street" + }, + { + "label": "young women having a cigarette in their back yard", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "two girls sitting outisde smoking and one girl on a laptop", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "antique red car is positioned in front of an airplane", + "pred": "an old airplane sitting on top of an airport tarmac" + }, + { + "label": "a bicycle parked outside an old fashioned stone building", + "pred": "a bicycle leaning against a wall next to a stone wall" + }, + { + "label": "a bicycle that is leaning against a wall", + "pred": "a bicycle leaning against a wall next to a stone wall" + }, + { + "label": "a vintage red car in front of a vintage army prop plane", + "pred": "an old airplane sitting on top of an airport tarmac" + }, + { + "label": "a cat sitting on the back of a toilet bowl with no tank", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "two men ride bikes next to the cars in the street", + "pred": "two people riding a bike next to a truck on a city street" + }, + { + "label": "the restored old time car is parked near a four engine airplane", + "pred": "an old airplane sitting on top of an airport tarmac" + }, + { + "label": "a man and woman brushing their teeth and taking a selfie photo with a camera in a bathroom mirror", + "pred": "a man and a woman standing next to each other in a bathroom" + }, + { + "label": "a statue of the virgin mary holding an orb of light", + "pred": "a large building with a statue of a man on top of it" + }, + { + "label": "two people are riding bikes through the street traffic", + "pred": "two people riding a bike next to a truck on a city street" + }, + { + "label": "a small and near bathroom that's inside someone's house", + "pred": "the bathroom is clean and ready for us to use" + }, + { + "label": "a unique car sitting beside an airplane", + "pred": "an old airplane sitting on top of an airport tarmac" + }, + { + "label": "a statue that is in front of a building", + "pred": "a large building with a statue of a man on top of it" + }, + { + "label": "a white toilet sitting in a bathroom next to a wall", + "pred": "a white toilet sitting next to a shower in a bathroom" + }, + { + "label": "cleaning products are on the counter of the bathroom", + "pred": "the bathroom is clean and ready for us to use" + }, + { + "label": "people are driving motorcycles through an intersection", + "pred": "a city street filled with traffic and pedestrians" + }, + { + "label": "a bathroom with a long counter that has cleaning products on it", + "pred": "the bathroom is clean and ready for us to use" + }, + { + "label": "statue and old buildings shot at an angle", + "pred": "a large building with a statue of a man on top of it" + }, + { + "label": "cars and people at bikes sitting at a red light", + "pred": "two people riding a bike next to a truck on a city street" + }, + { + "label": "a bathroom with a shower, toilet, and sink", + "pred": "the bathroom is clean and ready for us to use" + }, + { + "label": "a full view of a bathroom with sink and toilet in the back", + "pred": "the bathroom is clean and ready for us to use" + }, + { + "label": "a street filled with traffic and men on bikes", + "pred": "two people riding a bike next to a truck on a city street" + }, + { + "label": "a statue of a woman holding a ball stands in front of the old church", + "pred": "a large building with a statue of a man on top of it" + }, + { + "label": "a gang of bikers driving down a busy city street", + "pred": "a city street filled with traffic and pedestrians" + }, + { + "label": "a kitchen that has a large fridge and other appliances", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a kitchen with a stove, sink, table, chairs and couches", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "that looks like a statue of the virgin mary beside the church", + "pred": "a large building with a statue of a man on top of it" + }, + { + "label": "a bathroom with a toilet shower and sink", + "pred": "a white toilet sitting next to a shower in a bathroom" + }, + { + "label": "a man flying through the air while riding a bike", + "pred": "a person on a dirt bike jumping in the air" + }, + { + "label": "a green bench sitting on the side of a sidewalk", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a person adjusting a metal object hanging from a ceiling", + "pred": "a woman standing in front of a kitchen sink" + }, + { + "label": "a lady in a bath robe touching something near the ceiling", + "pred": "a woman standing in front of a kitchen sink" + }, + { + "label": "a woman bending over and looking inside of a mini fridge", + "pred": "a woman standing next to a refrigerator in a kitchen" + }, + { + "label": "a large modern kitchen has pineapples on the counter", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "bike riders racing in a street race", + "pred": "a large group of people riding bikes on a beach" + }, + { + "label": "a kitchen with a center white island topped with a bowl of greens", + "pred": "a kitchen with a sink, stove, refrigerator and cabinets" + }, + { + "label": "a book about understanding and maintaining a ten-speed bicycle", + "pred": "a man is reading a book on a bicycle" + }, + { + "label": "a kitchen with two pineapples on the counter and a wok pot on the burner", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a kitchen and dining area in a house with an open floor plan that looks out over the landscape from a large set of windows", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a crowd of bicycle riders are going down the street", + "pred": "a large group of people riding bikes on a beach" + }, + { + "label": "people are sitting on two benches next to a light pole", + "pred": "people sitting on a bench in a park" + }, + { + "label": "a sign explaining the components of a 10 speed bike", + "pred": "a man is reading a book on a bicycle" + }, + { + "label": "a person jumping in the air on a motorcycle", + "pred": "a person on a dirt bike jumping in the air" + }, + { + "label": "a man and a bike", + "pred": "a man is reading a book on a bicycle" + }, + { + "label": "a light blue bicycle chained to a pole on the sidewalk in front of a red building", + "pred": "a bicycle is parked in front of a building" + }, + { + "label": "a person standing next to a metal pot holder in a kitchen", + "pred": "a woman standing in front of a kitchen sink" + }, + { + "label": "a double sink with a bowl of food on the sink counter top", + "pred": "a stove top oven sitting next to a sink" + }, + { + "label": "empty stylish kitchen and living room with big picture windows", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a women brushing on a preservative liquid on a ceiling pot holder", + "pred": "a woman standing in front of a kitchen sink" + }, + { + "label": "small bathroom with commode, stand up shower, and small sink", + "pred": "a white toilet sitting next to a shower" + }, + { + "label": "motor cross bike and rider in the air doing tricks", + "pred": "a person on a dirt bike jumping in the air" + }, + { + "label": "a woman looking at a broken ceiling light in a kitchen", + "pred": "a woman standing in front of a kitchen sink" + }, + { + "label": "a old green bench with a green chair beside it", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "racers riding their bicycles in a bicycle race", + "pred": "a large group of people riding bikes on a beach" + }, + { + "label": "the book is about fixing your bike", + "pred": "a man is reading a book on a bicycle" + }, + { + "label": "a manual or book about ten-speed bicycles", + "pred": "a man is reading a book on a bicycle" + }, + { + "label": "white bathroom showing toilet, shower, sink and mirror", + "pred": "a white toilet sitting next to a shower" + }, + { + "label": "a man in mid air while riding a motor bike", + "pred": "a person on a dirt bike jumping in the air" + }, + { + "label": "a number of people sitting on benches", + "pred": "people sitting on a bench in a park" + }, + { + "label": "a bicycle near a pole in front of a building", + "pred": "a bicycle is parked in front of a building" + }, + { + "label": "a person who is on their motorcycle in the air", + "pred": "a person on a dirt bike jumping in the air" + }, + { + "label": "a clean and white bathroom with a tub, shower and sink", + "pred": "a white toilet sitting next to a shower" + }, + { + "label": "motorcycles are parked at a red light in the road in a city with tall buildings", + "pred": "a city street filled with traffic and pedestrians" + }, + { + "label": "people on motor scooters riding on a street", + "pred": "a city street filled with traffic and pedestrians" + }, + { + "label": "people who are sitting on some benches", + "pred": "people sitting on a bench in a park" + }, + { + "label": "most people negotiate the city streets with motorbikes in this asian city", + "pred": "a city street filled with traffic and pedestrians" + }, + { + "label": "a bathroom that has a broken wall in the shower", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a kitchen sink with a bowl of cereal next to it", + "pred": "a stove top oven sitting next to a sink" + }, + { + "label": "a bench sits in front of a chair", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "people that are riding bikes", + "pred": "a large group of people riding bikes on a beach" + }, + { + "label": "a green chair is sitting behind a green bench", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a bowl of food sitting on the edge of a sink", + "pred": "a stove top oven sitting next to a sink" + }, + { + "label": "a group if people that are sitting on a park bench", + "pred": "people sitting on a bench in a park" + }, + { + "label": "a young oerson is raiding a small fridge in their room", + "pred": "a woman standing next to a refrigerator in a kitchen" + }, + { + "label": "a bathroom with a tub and a shower curtain", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a person taking a photo in a bath room mirror", + "pred": "a woman sitting on a toilet in a bathroom" + }, + { + "label": "a person in a kitchen with a stove some pots and pans", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a large open kitchen with an island in the middle", + "pred": "a kitchen with a sink, stove, refrigerator and cabinets" + }, + { + "label": "a bowl of cereal is sitting on a kitchen sink", + "pred": "a stove top oven sitting next to a sink" + }, + { + "label": "a bathroom with some orange walls on it", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a woman is standing in a professional kitchen", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "people walking around a tamale truck and a building", + "pred": "people standing around a food truck" + }, + { + "label": "women sitting on a bench near a light pole", + "pred": "people sitting on a bench in a park" + }, + { + "label": "a youth on a toilet taking a \"selfie\" in a mirror", + "pred": "a woman sitting on a toilet in a bathroom" + }, + { + "label": "a bike is locked to a pole in front of a red building", + "pred": "a bicycle is parked in front of a building" + }, + { + "label": "a green chair is next to a long bench", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a large group of people watching a bu g group of bikers go by", + "pred": "a large group of people riding bikes on a beach" + }, + { + "label": "bicyclists are gathering at the taco truck", + "pred": "people standing around a food truck" + }, + { + "label": "a bicycle is locked to a lamp post in front of an old building", + "pred": "a bicycle is parked in front of a building" + }, + { + "label": "a worker passes through a cluttered restaurant kitchen", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a gathering outside on the lawn of city hall", + "pred": "a crowd of people standing around a fire hydrant" + }, + { + "label": "someone sitting on the toilet in the bathroom holding their camera at the mirror", + "pred": "a woman sitting on a toilet in a bathroom" + }, + { + "label": "a bathroom with white spots on the wall", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "the person is sitting on the unusual toilet in the bathroom", + "pred": "a woman sitting on a toilet in a bathroom" + }, + { + "label": "a bathroom looks clean but is missing tile at the shower stall", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "people are working in the kitchen and cooking", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a bathroom is painted in white and orange", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "the photographer sitting on the toilet", + "pred": "a woman sitting on a toilet in a bathroom" + }, + { + "label": "two people bent over to look into a little fridge", + "pred": "a woman standing in front of a refrigerator next to a child" + }, + { + "label": "a bathroom that needs to be fixed up", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "people standing outside of a building", + "pred": "a crowd of people standing around a fire hydrant" + }, + { + "label": "people riding bikes between a food truck and a building", + "pred": "people standing around a food truck" + }, + { + "label": "very well decorated and fruits in a very big box", + "pred": "people standing around a food truck" + }, + { + "label": "a woman in a congested kitchen in ahotel", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a shower toilet and sink in a basement bathroom", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "puppy chewing on toilet paper in the bathroom", + "pred": "a dog standing in a bathroom next to a toilet" + }, + { + "label": "a very big whit rest room with a shabby looking shower", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "two people point at what's in a mini fridge", + "pred": "a woman standing in front of a refrigerator next to a child" + }, + { + "label": "people visit and eat food outside city hall", + "pred": "a crowd of people standing around a fire hydrant" + }, + { + "label": "a woman is bent over next to a small refrigerator", + "pred": "a woman standing in front of a refrigerator next to a child" + }, + { + "label": "a tamale truck is in a rural city scene", + "pred": "people standing around a food truck" + }, + { + "label": "a bathroom containing a toilet, sink and bathtub with shower, with no accessories", + "pred": "a bathroom with a toilet a sink and a bathtub" + }, + { + "label": "a bow of food set next to a sink inside of a kitchen", + "pred": "a stove top oven sitting next to a sink" + }, + { + "label": "a plain, white bathroom with a sink and a tub", + "pred": "a bathroom with a sink, shower, and toilet" + }, + { + "label": "a white bathroom with a sink,toilet and bathtub", + "pred": "a bathroom with a toilet a sink and a bathtub" + }, + { + "label": "a bicycle that is tied to a post along a sidewalk", + "pred": "a bicycle is parked in front of a building" + }, + { + "label": "bright orange bathroom with spackling on the walls", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "an old toilet in a bathroom with extended plumbing", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "the view from a window of an enclosed staircase open to the air", + "pred": "a building with a lot of windows and a bike parked in front of it" + }, + { + "label": "a bicycle leaning against a bench as an airplane flies by", + "pred": "a bike parked next to a bench with a bird perched on top of it" + }, + { + "label": "a small long haired dog wearing shirt and bandana, on a leash", + "pred": "a dog laying on the ground next to a person" + }, + { + "label": "a commercial plane flying by the perspective of a half moon", + "pred": "an airplane flying high in the sky" + }, + { + "label": "a small bathroom with a toilet, shower, and a white curtain", + "pred": "a white toilet sitting next to a shower in a bathroom" + }, + { + "label": "a dog wearing a scarf and shirt on a leash", + "pred": "a dog laying on the ground next to a person" + }, + { + "label": "parked bikes sit between two buildings", + "pred": "a building with a lot of windows and a bike parked in front of it" + }, + { + "label": "a man dressed as a woman stands on a red carpet", + "pred": "a man in a suit and tie holding a bottle" + }, + { + "label": "a small bathroom with the shower curtains open", + "pred": "a white toilet sitting next to a shower in a bathroom" + }, + { + "label": "a cannondale bicycle leaning against a bench and an airplane", + "pred": "a bike parked next to a bench with a bird perched on top of it" + }, + { + "label": "an airplane flies by a bicycle leaned up against a bench", + "pred": "a bike parked next to a bench with a bird perched on top of it" + }, + { + "label": "a bedroom with built in television and open fireplace", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a large bedroom with a fireplace and tv", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "the passage between the modern buildings is used by bicycle riders", + "pred": "a building with a lot of windows and a bike parked in front of it" + }, + { + "label": "a chicken meal with carrots broccoli and rice", + "pred": "a plate of food on a table" + }, + { + "label": "a room with a bed, a clock, a lamp, a fireplace and a television", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a flying airplane being viewed through power lines", + "pred": "a plane is flying high in the sky" + }, + { + "label": "a bedroom with a large bed facing a fireplace that has a television over the top of it, in a shelf space", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a dinner plate that has white steamed rice with stir fry vegetables and chicken", + "pred": "a plate of food on a table" + }, + { + "label": "a room with a fire place and television inside of it", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a caged stairway beside a building on a rainy day", + "pred": "a building with a lot of windows and a bike parked in front of it" + }, + { + "label": "street sign painted on a road that looks like a bicycle", + "pred": "a street sign on the side of a road" + }, + { + "label": "a man wearing a skirt and stockings like a woman", + "pred": "a man in a suit and tie holding a bottle" + }, + { + "label": "a plane that is flying in the sky above wires", + "pred": "a plane is flying high in the sky" + }, + { + "label": "a man standing on top of an orange boat on a river", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "a cat standing on the edge of a sink drink water", + "pred": "a black and white cat laying in a bathroom sink" + }, + { + "label": "a cat drinking from a sink faucet that was left running", + "pred": "a black and white cat laying in a bathroom sink" + }, + { + "label": "a middle aged man takes a selfie in a mirror", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a bike lane with a bike lane symbol painted on it", + "pred": "a street sign on the side of a road" + }, + { + "label": "a black and white cat drinks water from a sink faucet", + "pred": "a black and white cat laying in a bathroom sink" + }, + { + "label": "a man taking a picture of himself in a mirror", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a black cat drinking water out of a water faucet", + "pred": "a black and white cat laying in a bathroom sink" + }, + { + "label": "a toilet and bathtub in a dark room with abnormal plumbing", + "pred": "a white toilet sitting in a bathroom next to a bath tub" + }, + { + "label": "a cat drinking water from a sink bowl", + "pred": "a black and white cat laying in a bathroom sink" + }, + { + "label": "a bath tub with a toilet beside it", + "pred": "a white toilet sitting in a bathroom next to a bath tub" + }, + { + "label": "a very large orange boat floating in a lake", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "a man taking a selfie in front of a mirror", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a man is standing on the edge of a orange boat", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "the bathroom is clean and ready to be used", + "pred": "a white toilet sitting in a bathroom next to a bath tub" + }, + { + "label": "an old fashioned toilet with the tank high above", + "pred": "a white toilet sitting in a bathroom next to a bath tub" + }, + { + "label": "a plate of vegetables, chicken, and white rice", + "pred": "a plate of food on a table" + }, + { + "label": "a woman poses in front of a giant pizza", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a small motor bike outside of the garage", + "pred": "a small motorized scooter is parked in front of a fire hydrant" + }, + { + "label": "a boat with some people on it drive through a water way", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "a big wide boat with some wires above it", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "a cheese pizza sitting on top of white paper and a large plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "the food is prepared on the dish on the table", + "pred": "a plate of food on a table" + }, + { + "label": "a very clean kitchen has stainless steel appliances", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a kitchen that has a stove and a sink in it", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a room with a desktop computer and a picture of a mummy", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a plate of food and a drink on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a room with a cluttered desk, lots of collectible items on shelves and many posters on the walls", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man is taking a picture of himself", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a kitchen is shown with stainless steel appliances", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "cheese pizza is sliced into small pieces on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "the inside of a room with a large collection of cd's", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a woman poses on front of a large pizza", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "the pizza has been cut into tiny square pieces", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a tricycle sits outside of a garage", + "pred": "a small motorized scooter is parked in front of a fire hydrant" + }, + { + "label": "a motorcycle parked in front of an open garage", + "pred": "a small motorized scooter is parked in front of a fire hydrant" + }, + { + "label": "a room with an empty and open refrigerator and a shelf of bottles", + "pred": "a room with a refrigerator and a shelf filled with food" + }, + { + "label": "a freshly paved road with a bicycle lane marker on the pavement", + "pred": "a street sign on the side of a road" + }, + { + "label": "a refrigerator freezer next to a wall", + "pred": "a room with a refrigerator and a shelf filled with food" + }, + { + "label": "a woman holding a knife and fork over a giant pizza", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a dog laying down licking food off of a plate", + "pred": "a dog laying on the floor eating a plate of food" + }, + { + "label": "a large dog eating food off of a white plate", + "pred": "a dog laying on the floor eating a plate of food" + }, + { + "label": "a lady using a knife and fork to cut a pizza", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a home made three wheeled trike sitting in a driveway", + "pred": "a small motorized scooter is parked in front of a fire hydrant" + }, + { + "label": "a pizza on a pan cut into squares", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a room with a t.v. and other bedroom items and accessories in it", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "the woman has a knife and fork for eating the big pizza", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a man takes a photo of his reflection in a public restroom", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a bench sitting in the grass facing the water and boats", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "a dog eats people food from a plate on the floor next to a plaid bed", + "pred": "a dog laying on the floor eating a plate of food" + }, + { + "label": "a cat lying down in a sink in a bathroom", + "pred": "a cat laying on top of a sink in a bathroom" + }, + { + "label": "a poster of a bald man in a room with a desktop computer", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a very old bathroom has dusty toilet and clawfoot tub", + "pred": "a white toilet sitting in a bathroom next to a bath tub" + }, + { + "label": "a kitchen has light wooden colored cabinetry, beige countertops, and stainless steel appliances in an open concept house", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a cat laying in a bathroom sink while looking at the camera", + "pred": "a cat laying on top of a sink in a bathroom" + }, + { + "label": "a man on a skateboard riding by food vendors", + "pred": "a man standing on a skateboard in front of a store" + }, + { + "label": "a motorcycle frame that has been made in to a tricycle", + "pred": "a small motorized scooter parked in front of a house" + }, + { + "label": "a dog eating cookies from a plate on the floor laying on a dog bed", + "pred": "a dog laying on the floor eating a plate of food" + }, + { + "label": "a skateboarder riding his board down the sidewalk", + "pred": "a man standing on a skateboard in front of a store" + }, + { + "label": "a young man riding a skateboard with red wheels", + "pred": "a man standing on a skateboard in front of a store" + }, + { + "label": "a computer monitor sitting above a computer keyboard", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a tan dog eating food scraps from a plate", + "pred": "a dog laying on the floor eating a plate of food" + }, + { + "label": "a large jetliner sitting on top of an airport runway", + "pred": "a large white airplane sitting on top of an airport tarmac" + }, + { + "label": "a wooden bench overlooking a harbor beneath a cloudy sky", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "a cat in a white sink looking out", + "pred": "a cat laying on top of a sink in a bathroom" + }, + { + "label": "a boy is riding a skateboard past many food carts", + "pred": "a man standing on a skateboard in front of a store" + }, + { + "label": "a beach has a grassy area with a park beach", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "a kitchen is nicely organized and looks very clean", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a bike lane has been painted on the road", + "pred": "a street sign on the side of a road" + }, + { + "label": "a bus stuck in traffic on a busy highway", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a bench that is sitting in the grass", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "a cat curled up in a white bathroom sink", + "pred": "a cat laying on top of a sink in a bathroom" + }, + { + "label": "a bench at the beach next to the sea", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "a large kitchen with white cabinets and appliances", + "pred": "a kitchen with a refrigerator and a stove top oven" + }, + { + "label": "mountains from the window of a jet airplane", + "pred": "the wing of an airplane flying over a mountain range" + }, + { + "label": "a refrigerator in a kitchen with its door opened", + "pred": "a room with a refrigerator and a shelf filled with food" + }, + { + "label": "a toilet, mirror and sink in a toilet", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a room that has an open refrigerator in it", + "pred": "a room with a refrigerator and a shelf filled with food" + }, + { + "label": "a person is taking a picture of a hotel bathroom", + "pred": "a bathroom with a sink and a bath tub" + }, + { + "label": "a big plane flying low on a cloudy sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "mountains out of an airplane window", + "pred": "the wing of an airplane flying over a mountain range" + }, + { + "label": "a bus with a flat tire sitting in traffic on a street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "airline employees by an aircraft parked at the gate", + "pred": "a large white airplane sitting on top of an airport tarmac" + }, + { + "label": "the plane is parked at the gate at the airport terminal", + "pred": "a large white airplane sitting on top of an airport tarmac" + }, + { + "label": "a delicious pizza sets on top of a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a kitchen in a poverty area of a town", + "pred": "a room with a sink, a toilet and a window" + }, + { + "label": "a sunny office desk with computer, laptop and phone", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a large jetliner wing flying over a mountain range", + "pred": "the wing of an airplane flying over a mountain range" + }, + { + "label": "a wooden shelf filled with lots of glass pots and plates", + "pred": "a collection of pots and pans on a shelf" + }, + { + "label": "a white sink sitting under a bathroom mirror", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a cat lying inside a sink with a hair brush, sanitizer and toothpaste on top", + "pred": "a cat laying on top of a sink in a bathroom" + }, + { + "label": "men riding on the back of motorcycles", + "pred": "motorcyclists are riding down the road" + }, + { + "label": "a mirror a sink a shower and a rug", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a bottle a cup a keyboard a laptop and a monitor", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a yellow white and red bus lost a wheel", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a beautiful bathroom and a guy is in bathroom", + "pred": "a bathroom with a sink and a bath tub" + }, + { + "label": "a commercial plane being serviced by two people", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "the underside of an airplane taking off into the cloudy sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a monitor, keyboard, coffee cup, and plastic bottle sit on a table", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a turboprop airplane that is in the hangar for repair", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a large white airplane parked in a stationary position", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a man in front of a vendor on a skateboard", + "pred": "a man standing on a skateboard in front of a store" + }, + { + "label": "an airplane sits on a runway in a airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an empty street with a bike lane", + "pred": "a street sign on the side of a road" + }, + { + "label": "view from gate of jet connected to jet way for passengers to board or deplane", + "pred": "a large white airplane sitting on top of an airport tarmac" + }, + { + "label": "a desk with a computer, computer keyboard, mug, empty plastic bottle, red pen, and a laptop", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "an alaska air lines passenger jet at an airport terminal", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a building wall and pair of doors that are open, along with vases of flowers on the outside of the building", + "pred": "a dog is standing in front of a door" + }, + { + "label": "a building with dirty walls and dirty doors", + "pred": "a dog is standing in front of a door" + }, + { + "label": "a passenger bus that is leaning to the right", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a bathroom with a sink and television in it", + "pred": "a bathroom with a sink and a bath tub" + }, + { + "label": "a two burner stove a door a window and a table", + "pred": "a room with a sink, a toilet, and a vase on the floor" + }, + { + "label": "a bathroom sink with a large walk in shower", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a bathroom with a modern white pedestal sink", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a large white airplane and a person on a lot", + "pred": "a large white airplane sitting on top of an airport tarmac" + }, + { + "label": "a very large airplane that is on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a twin propeller plane sits parked on a run way", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an air plane that is parked on the tarp", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "people who are standing outside by a plane and a car", + "pred": "people standing on top of a dirt field" + }, + { + "label": "an airplane wing hovers over a big valley", + "pred": "the wing of an airplane flying over a mountain range" + }, + { + "label": "a person takes a picture in a hotel bathroom", + "pred": "a bathroom with a sink and a bath tub" + }, + { + "label": "a garage area with some appliances inside of it", + "pred": "a room with a sink, a toilet, and a vase on the floor" + }, + { + "label": "people standing around a plane and a vehicle", + "pred": "people standing on top of a dirt field" + }, + { + "label": "group of old ornaments sitting on the ground of an old building", + "pred": "a room with a sink, a toilet, and a vase on the floor" + }, + { + "label": "a brown dog standing next to a toilet in a bathroom", + "pred": "a dog standing in a bathroom next to a toilet" + }, + { + "label": "a white toilet sitting next to a trash can in a restroom", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "motor cycle riders stopping at a stop sign", + "pred": "motorcyclists are riding down the road" + }, + { + "label": "a run down building with two planters outside the door", + "pred": "a dog is standing in front of a door" + }, + { + "label": "a kitchen view of a counter cabinets stove and pots", + "pred": "a kitchen with a sink, stove, refrigerator and cabinets" + }, + { + "label": "white cabinets silver oven sink and refrigerator", + "pred": "a kitchen with a sink, stove, refrigerator and cabinets" + }, + { + "label": "a cabinet with vases pots bowls cups and other china", + "pred": "a collection of pots and pans on a shelf" + }, + { + "label": "a cabinet with several different items that have price tags on them", + "pred": "a collection of pots and pans on a shelf" + }, + { + "label": "a yellow and brown wall a gray door and a sign", + "pred": "a dog is standing in front of a door" + }, + { + "label": "a prop plane parked at an airport with support vehicles around it", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a little bathroom with some feet standing next to it", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a white bus with a flat tire sitting next to a bench", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "an airplane parked in the dark on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "looking down into a toilet in a very small stall", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "people by a building with a flag at half mast", + "pred": "a crowd of people standing around a fire hydrant" + }, + { + "label": "people standing on top of a dirt field", + "pred": "people standing on top of a dirt field" + }, + { + "label": "a plaster external wall with multiple old paper images attached", + "pred": "a dog is standing in front of a door" + }, + { + "label": "a bathroom in what appears to be a hotel", + "pred": "a bathroom with a sink and a bath tub" + }, + { + "label": "a toilet sitting in a room surrounded by personal items", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a large jetliner sitting on top of an airport runway", + "pred": "a large jetliner sitting on top of a grass covered field" + }, + { + "label": "individauls gathered outside a building and an american flag at half mast", + "pred": "a crowd of people standing around a fire hydrant" + }, + { + "label": "the inside of a house with the door open", + "pred": "a room with a sink, a toilet, and a vase on the floor" + }, + { + "label": "mountains can be seen through the window of a plane", + "pred": "the wing of an airplane flying over a mountain range" + }, + { + "label": "landing strip with two planes, several men and an suv", + "pred": "people standing on top of a dirt field" + }, + { + "label": "a puppy pulls a line of toilet paper", + "pred": "a dog standing in a bathroom next to a toilet" + }, + { + "label": "a jetliner taking off from an airport runway", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "people on motorcycles stopped at a stop sign", + "pred": "motorcyclists are riding down the road" + }, + { + "label": "a kitchen with an oven, fridge and bowls on the table", + "pred": "a kitchen with a sink, stove, refrigerator and cabinets" + }, + { + "label": "a white bath tub sitting under a window in a bathroom", + "pred": "a bathroom with a toilet a sink and a bathtub" + }, + { + "label": "a room with an open refrigerator and shelves with jars on it", + "pred": "a room with a refrigerator and a shelf filled with food" + }, + { + "label": "a cat standing next to a white toilet near a bath tub", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "the bathtub takes up one wall of the small bathroom", + "pred": "a bathroom with a sink, shower, and toilet" + }, + { + "label": "a bathroom with a toilet, tub, mirror, window and a shower pole", + "pred": "a bathroom with a toilet a sink and a bathtub" + }, + { + "label": "an airplane flying high in the sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a bathroom with a sink, shower, tub and a cabinet", + "pred": "a bathroom with a sink, shower, and toilet" + }, + { + "label": "a dog playing with a roll of toilet paper in a bathroom", + "pred": "a dog standing in a bathroom next to a toilet" + }, + { + "label": "a shelf of antique pottery in an antique store", + "pred": "a collection of pots and pans on a shelf" + }, + { + "label": "men standing near a vehicle and planes", + "pred": "people standing on top of a dirt field" + }, + { + "label": "a shelf that has a bunch of glass items on it", + "pred": "a collection of pots and pans on a shelf" + }, + { + "label": "a airplane that is flying through the sky", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a plane soars hundreds of feet in the air", + "pred": "an airplane that is flying in the sky" + }, + { + "label": "a bathroom with ski equipment laid out on the floor", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a bathroom with a sink, toilet, tub and shower head", + "pred": "a bathroom with a toilet a sink and a bathtub" + }, + { + "label": "the view of a toilet from above looking into the bowl", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a white bathroom with sink and shower cleaned", + "pred": "a bathroom with a sink, shower, and toilet" + }, + { + "label": "a model kitchen from the 1950s showing appliances and cabinets", + "pred": "a kitchen with a refrigerator and a stove top oven" + }, + { + "label": "an old ad is showing a retro kitchen", + "pred": "a kitchen with a refrigerator and a stove top oven" + }, + { + "label": "cars parked along the side of a street next to a street sign", + "pred": "cars parked on the side of the road" + }, + { + "label": "a bathroom with white appliances and orange walls", + "pred": "a bathroom with a sink, shower, and toilet" + }, + { + "label": "an overhead shots of a toilet in a public restroom", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a bathroom with a toilet, a plant, a stand and several footwear on the floor", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a man standing on a purple bed playing an electric guitar", + "pred": "a man in a black shirt playing a guitar" + }, + { + "label": "cars parked along a no parking area", + "pred": "cars parked on the side of the road" + }, + { + "label": "japanese airliner just taking off with snow capped mountains", + "pred": "a large jetliner sitting on top of a grass covered field" + }, + { + "label": "a cat in a bathroom with a tub and a toilet", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "rows of cars parked on the side of a city street going uphill", + "pred": "cars parked on the side of the road" + }, + { + "label": "a man standing on a bed playing a guitar", + "pred": "a man in a black shirt playing a guitar" + }, + { + "label": "a puppy has pulled toilet paper across the bathroom floor", + "pred": "a dog standing in a bathroom next to a toilet" + }, + { + "label": "the man is standing on a bed playing guitar", + "pred": "a man in a black shirt playing a guitar" + }, + { + "label": "cars parked on the side of a street", + "pred": "cars parked on the side of the road" + }, + { + "label": "four people wait to cross the street at an intersection", + "pred": "a crowd of people walking on a city street" + }, + { + "label": "a passenger plane sits on a runway with mountains behind it", + "pred": "a large jetliner sitting on top of a grass covered field" + }, + { + "label": "a woman talking on a cell phone while holding luggage", + "pred": "a woman is talking on her cell phone" + }, + { + "label": "kids walking through some grass", + "pred": "a little girl standing next to a group of children" + }, + { + "label": "a bathroom vanity sink with a large mirror and hairdryer on the wall", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "plenty of cars parked on the side of the street", + "pred": "cars parked on the side of the road" + }, + { + "label": "a man standing on the bed while playing a guitar", + "pred": "a man in a black shirt playing a guitar" + }, + { + "label": "a bathroom with blue walls, black and white checkered floor, toilet, urinal and bathtub", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "children are holding various stuffed animals and dolls", + "pred": "a little girl standing next to a group of children" + }, + { + "label": "a bath room sink with large mirror", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "the bathroom is a mess with sports gear", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a guy with a nice guitar standing on a bed", + "pred": "a man in a black shirt playing a guitar" + }, + { + "label": "a bathroom with bidet, toilet, tub, and a checkerboard floor", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "a very nice looking rest room with a big sink", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "kids walking while holding their stuffed animals", + "pred": "a little girl standing next to a group of children" + }, + { + "label": "kids holding teddy bears and looking happy", + "pred": "a little girl standing next to a group of children" + }, + { + "label": "people looking at a stop light on the other side of the road", + "pred": "a crowd of people walking on a city street" + }, + { + "label": "a pile of oranges, apples and pears next to each other", + "pred": "a bowl full of apples, oranges, and pears" + }, + { + "label": "a bathroom sink with a towel rack, hair dryer and a mirror", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a large of people on motor bikes on a street", + "pred": "motorcyclists are riding down the road" + }, + { + "label": "children carrying stuffed animals walks across the grass", + "pred": "a little girl standing next to a group of children" + }, + { + "label": "giraffes in their wood and grass zoo enclosure", + "pred": "giraffes are standing in a fenced in area" + }, + { + "label": "a woman on a cell phone with a bag", + "pred": "a woman is talking on her cell phone" + }, + { + "label": "a black and white tiled floor in a bathroom", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "a woman is standing near a brick wall", + "pred": "a woman is talking on her cell phone" + }, + { + "label": "a white toilet and a bath in a room", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "an airplane landing on a runway in an airport", + "pred": "a large jetliner sitting on top of a grass covered field" + }, + { + "label": "plane taking off the runway with it's landing gears still out", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a jet airplane taking off from a runway", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a large giraffe looks at a smaller giraffe looking over a fence", + "pred": "giraffes are standing in a fenced in area" + }, + { + "label": "a large airplane is ascending from the runway", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "people riding motorcycles on a road and stopping and a stop sign", + "pred": "motorcyclists are riding down the road" + }, + { + "label": "two giraffe stand in an enclosure, on giraffe leans over the wall", + "pred": "giraffes are standing in a fenced in area" + }, + { + "label": "an old advertisement shows a large kitchen with white cabinets and appliances and yellow walls", + "pred": "a kitchen with a refrigerator and a stove top oven" + }, + { + "label": "a single basin bathroom sink with a granite vanity", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a woman holding a purse and a cellphone", + "pred": "a woman is talking on her cell phone" + }, + { + "label": "appliances and cookware in a kitchen", + "pred": "a kitchen with a refrigerator and a stove top oven" + }, + { + "label": "a man preparing food in a restaurant kitchen", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "a large airplane is ascending from the runway", + "pred": "a large jetliner sitting on top of a grass covered field" + }, + { + "label": "woman leaning on wall while talking on cell phone", + "pred": "a woman is talking on her cell phone" + }, + { + "label": "a toilet from above; flanked by a toilet brush and a small trash can", + "pred": "a white toilet sitting in a bathroom next to a trash can" + }, + { + "label": "a cook in the kitchen is making something very good to eat", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "apples oranges and pears on the table", + "pred": "a bowl full of apples, oranges, and pears" + }, + { + "label": "a pile of of oranges and apples piled together", + "pred": "a bowl full of apples, oranges, and pears" + }, + { + "label": "people in a large kitchen", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "a man who is cutting something in a kitchen", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "an apple and orange together in a bowl", + "pred": "a bowl full of apples, oranges, and pears" + }, + { + "label": "a passenger jet airline taking off from the runway", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a bathroom with a toilet and a lot of ski boots", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "the motorcycles are parked on the side of the building", + "pred": "a motorcycle parked on a sidewalk next to a building" + }, + { + "label": "a person on a motor bike travels around a sharp corner", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a toilet and a bathtub in a bathroom with a cat next to it", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a bathroom that has a be-day next to the toilet", + "pred": "a bathroom with a toilet a sink and a tub" + }, + { + "label": "a bathroom with a toilet, bathtub, and a cat in a bathroom", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "people standing next to a crosswalk", + "pred": "a crowd of people walking on a city street" + }, + { + "label": "a person on a motor bike on a road", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a laptop in a bright yellow coffee house", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "a jetliner wing flying over the top of a parking", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a white sink in a corner underneath a small mirror and light", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "an air plane wing with a parking lot with cars", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "someone is online inside the slightly crowded restaurant", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "view from an airplane looking looking out over large parking lot", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a white sink sitting under a mirror in a bathroom", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "people wait to cross an intersection", + "pred": "a crowd of people walking on a city street" + }, + { + "label": "so many ripe fruits on a basket to be eaten", + "pred": "a bowl full of apples, oranges, and pears" + }, + { + "label": "a rider dressed in white riding a matching white motorcycle", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a man standing in a kitchen preparing food next to other cooks", + "pred": "a chef preparing food in a kitchen" + }, + { + "label": "a painting of a table with fruit on top of it", + "pred": "a painting of a vase with flowers on a table" + }, + { + "label": "a very clean sink in a bathroom and a towel", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a man sitting at a table in front of a plate of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a white toilet sitting in a bathroom next to a tiled wall", + "pred": "a white toilet with a picture on the side of it" + }, + { + "label": "bikers riding motorcycles across a bridge", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "an all white bathroom consisting of a mirror and sink view", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "painting of oranges, a bowl, candle, and a pitcher", + "pred": "a painting of a vase with flowers on a table" + }, + { + "label": "a motorcycle parked in front of a building", + "pred": "a motorcycle parked on a sidewalk next to a building" + }, + { + "label": "men walking across the street", + "pred": "a crowd of people walking on a city street" + }, + { + "label": "a bathroom with sink, mirror, and lights in it", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a person on a motorcycles driving past a group of people behind a fence", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a man at home posing with a cake", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "pair of giraffes exploring a large, airy zoo enclosure", + "pred": "giraffes are standing in a fenced in area" + }, + { + "label": "a guy on a motorcycle with some people watching", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a smiling guy sitting at a table with some food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a raised white toilet seat with a sticker stands in front of square tiles", + "pred": "a white toilet with a picture on the side of it" + }, + { + "label": "parking lots from an airplane", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a very nice looking motorcycle with some long handle bars", + "pred": "a motorcycle parked on a sidewalk next to a building" + }, + { + "label": "a big parking with a bunch of cars parked in it", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an all-white bathroom with a light fixture and small mirror above a sink", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "two giraffes in a zoo enjoy a walk and a snack", + "pred": "giraffes are standing in a fenced in area" + }, + { + "label": "a bowl filled with lots of oranges on a counter", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "a woman walking across a street near motorcycles", + "pred": "a woman riding a motorcycle next to a man on a scooter" + }, + { + "label": "a laptop computer sitting on top of a wooden table", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "people on motorcycles riding across a bridge", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a white toilet sitting in a bathroom next to a shower", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a person that is sitting down with a plate of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a painting of fruit and a candle with a vase", + "pred": "a painting of a vase with flowers on a table" + }, + { + "label": "a laptop that is on a table in a restaurant", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "a painting of a candlestick holder with a candle, several pieces of fruit and a vase, with a gold frame around the painting", + "pred": "a painting of a vase with flowers on a table" + }, + { + "label": "a painting that has a gold frame on it", + "pred": "a painting of a vase with flowers on a table" + }, + { + "label": "a menu is displayed in front of a restaurant", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "a motorcycle parked beside a window of some building", + "pred": "a motorcycle parked on a sidewalk next to a building" + }, + { + "label": "motorcycles that are in the middle of street", + "pred": "a woman riding a motorcycle next to a man on a scooter" + }, + { + "label": "people riding some very nice looking motorcycles", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a cat sitting on the hood of a car", + "pred": "a black and white cat laying on the hood of a car" + }, + { + "label": "airplanes flying under a cloudy sky", + "pred": "airplanes flying in the sky" + }, + { + "label": "a black and white motorcycle parked on the sidewalk outside a store", + "pred": "a motorcycle parked on a sidewalk next to a building" + }, + { + "label": "a cat laying on a white car outside", + "pred": "a black and white cat laying on the hood of a car" + }, + { + "label": "a bathroom with tile floors and tile walls", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a toilet set up in a bathroom with a sexual drawing on the flushing unit", + "pred": "a white toilet with a picture on the side of it" + }, + { + "label": "a man is sitting in front of some food at a table", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a black and white cat lays on the hood of a car", + "pred": "a black and white cat laying on the hood of a car" + }, + { + "label": "a clear bowl that is filled with oranges", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "a bathroom with a glass shower door, a toilet and a towel handle", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "buckets in a white room", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "startled cat lying on the windshield of a car", + "pred": "a black and white cat laying on the hood of a car" + }, + { + "label": "an old woman is in front of some food on a table", + "pred": "a woman preparing food on a wooden table" + }, + { + "label": "the two airplanes are in the air next to eachother", + "pred": "airplanes flying in the sky" + }, + { + "label": "a white kitchen with stove, sink, and refrigerator", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a toilet with a lid up leaning against a tiled wall", + "pred": "a white toilet with a picture on the side of it" + }, + { + "label": "a bathroom with a walk in shower and toilet", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a kitchen full of cabinets, a stove, sink and refridgeratio", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "the fruit is placed in a bowl out in the open to be eaten", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "bob the builder sicker on bottom of toilet lid in bathroom", + "pred": "a white toilet with a picture on the side of it" + }, + { + "label": "the person is driving a motorcycle on the road", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "people riding motorcycles across a bridge beside each other", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "pair of small planes flying near each other on stormy day", + "pred": "airplanes flying in the sky" + }, + { + "label": "a small bathroom with a shower and a toilet", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "two airplanes are flying in the cloudy sky", + "pred": "airplanes flying in the sky" + }, + { + "label": "a woman with an umbrella is walking past a bus", + "pred": "a man and woman walking down the street with an umbrella" + }, + { + "label": "a clear glass bowl with bananas and plums in it", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a woman holding an umbrella walks past the side of a bus with a large advertisement on the side", + "pred": "a man and woman walking down the street with an umbrella" + }, + { + "label": "a person at a table in a room with some food", + "pred": "a woman preparing food on a wooden table" + }, + { + "label": "woman working with large assortment of baked goods at kitchen table", + "pred": "a woman preparing food on a wooden table" + }, + { + "label": "a woman that is standing in a crosswalk near mopeds", + "pred": "a woman riding a motorcycle next to a man on a scooter" + }, + { + "label": "a woman in white crosses the road against the flow of motorcycle traffic", + "pred": "a woman riding a motorcycle next to a man on a scooter" + }, + { + "label": "woman walking next to commuter bus with umbrella on rainy day", + "pred": "a man and woman walking down the street with an umbrella" + }, + { + "label": "two planes that are flying in the sky", + "pred": "airplanes flying in the sky" + }, + { + "label": "a bathroom with no toilets and a red and green bucket", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a bowl that has some oranges in it", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "the cat is laying on the hood of the car", + "pred": "a black and white cat laying on the hood of a car" + }, + { + "label": "bananas and plums sitting in a bowl on the a table", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a woman prepares bread and pastries on a table", + "pred": "a woman preparing food on a wooden table" + }, + { + "label": "a big bowl of oranges that is on the floor", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "a woman walking on a cross walk with cars driving on it", + "pred": "a woman riding a motorcycle next to a man on a scooter" + }, + { + "label": "a woman walking down the sidewalk next to a bus", + "pred": "a man and woman walking down the street with an umbrella" + }, + { + "label": "a glass bowl filled with prunes and bananas", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "plums and bananas are in a glass bowl", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a bathroom with a lot of items near the sink and counter", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a man taking his picture in a bathroom mirror", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a kitchen with ceiling fan, stove, and sink", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a shower room with two buckets, tolet paper holder and soap", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a standing toilet in a bathroom next to a window", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a motorcycle parked on the side of a road near a city", + "pred": "a motorcycle parked on the side of the road" + }, + { + "label": "a bathroom sink sitting above a trash can", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "this picture looks like a janitors closet with buckets on the floor", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a bathroom sink is all piled up with toiletries", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a kitchen area with white stove, sink and a refrigerator", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "an older woman preparing cookies and bread at a table", + "pred": "a woman preparing food on a wooden table" + }, + { + "label": "young people riding motorcycles near a river", + "pred": "a large group of people riding on top of a boat" + }, + { + "label": "a man in blue shirt taking a picture in bathroom mirror", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a white toilet with a blue tank above it", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "bathroom stall with green door in commercial business", + "pred": "a white toilet sitting in a bathroom next to a wall" + }, + { + "label": "a brown dog hanging it's head out of a car window", + "pred": "a dog looking out the window of a car" + }, + { + "label": "a big bowl of oranges on the counter", + "pred": "a bowl filled with oranges on top of a table" + }, + { + "label": "a man is taking a picture of himself in the bathroom using the mirror for a reflection", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a small toilet on the ground with a pipe running to the camode", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "a white and black kitchen", + "pred": "a kitchen with a stove a sink and a refrigerator" + }, + { + "label": "a man taking a picture of his reflection in a mirror", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a sink is pictured with a small shelf full of products", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a motorcycle. the picture is very close", + "pred": "a motorcycle parked on the side of the road" + }, + { + "label": "a bathroom with toilet and sink with lots of items on the sink counter", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "people riding motorcycles in the woods", + "pred": "a large group of people riding on top of a boat" + }, + { + "label": "a giraffe and its pack standing in an enclosure", + "pred": "giraffes standing next to each other" + }, + { + "label": "a green door opens into a toilet stall containing a white toilet bowl", + "pred": "a white toilet sitting in a bathroom next to a wall" + }, + { + "label": "a row of motorcycles parked next to a building", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a black and green parked motorcycle some cars and buildings", + "pred": "a motorcycle parked on the side of the road" + }, + { + "label": "two giraffes stand near rocks in a zoo", + "pred": "giraffes standing next to each other" + }, + { + "label": "a very nice bathroom in the middle of a remodel", + "pred": "a sink in a bathroom with a wooden cabinet" + }, + { + "label": "a white sink a towel and some brown cabinets", + "pred": "a sink in a bathroom with a wooden cabinet" + }, + { + "label": "a bathroom sink sitting on top of a wooden cabinet", + "pred": "a sink in a bathroom with a wooden cabinet" + }, + { + "label": "a bathroom sink sitting under a bathroom mirror", + "pred": "a man taking a picture of himself in a bathroom mirror" + }, + { + "label": "a bathroom that is covered from bottom to top in stone", + "pred": "a sink in a bathroom with a wooden cabinet" + }, + { + "label": "men who are on motorcycles", + "pred": "a large group of people riding on top of a boat" + }, + { + "label": "men stand around three motorcycle riders", + "pred": "a large group of people riding on top of a boat" + }, + { + "label": "a brown dog is looking outside of the car window", + "pred": "a dog looking out the window of a car" + }, + { + "label": "bikes are lined up on a curb", + "pred": "motorcycles parked next to each other" + }, + { + "label": "the toilet is very low to the ground", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "giraffes are standing in the middle of the zoo exhibit", + "pred": "giraffes standing next to each other" + }, + { + "label": "the dining table near the kitchen has a bowl of fruit on it", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a bathroom with a toilet, toilet roll and safety rail", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a white toilet in the rest room", + "pred": "a public restroom with a urinal and a white toilet" + }, + { + "label": "a small kitchen has various appliances and a table", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a line of people are riding bicycles on the street", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "a small bathroom has an army green toilet", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a toilet stall with exposed pipes and a window", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "the kitchen is clean and ready for us to see", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a bathroom with an auto flush urinal", + "pred": "a public restroom with a urinal and a white toilet" + }, + { + "label": "people riding bikes in a street next to a sidwalk", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "a urinal hanging on a wall in between two stalls", + "pred": "a public restroom with a urinal and a white toilet" + }, + { + "label": "two stunt airplanes touching their wings as the fly", + "pred": "two airplanes flying in the sky with smoke coming out of them" + }, + { + "label": "a bathroom with a toilet, window and toilet tissue holder", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a small bathroom features a toilet, window and piping", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "the view of a kitchen's microwave, oven, and cabinets", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a kitchen and dining area decorated in white", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "a wall urinal in a stall with an auto sensor flushing system", + "pred": "a public restroom with a urinal and a white toilet" + }, + { + "label": "a man's urinal inside a bathroom stall", + "pred": "a public restroom with a urinal and a white toilet" + }, + { + "label": "a kitchen that has a bowl of fruit on the table", + "pred": "a kitchen with a refrigerator, stove, sink and dishwasher" + }, + { + "label": "airplanes do fly in unison during an air show", + "pred": "two airplanes flying in the sky with smoke coming out of them" + }, + { + "label": "a very small kitchen with small white appliances", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "a compact kitchen with white appliances and shelving units for storage", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "the corner of a kitchen with a hanging plant", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "two jets are flying against a bright blue sky", + "pred": "two airplanes flying in the sky with smoke coming out of them" + }, + { + "label": "an open air zone that looks incredible", + "pred": "two airplanes flying in the sky with smoke coming out of them" + }, + { + "label": "people that are walking in a line", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "the kitchen has a small stove in it", + "pred": "a kitchen with a stove a sink and a microwave" + }, + { + "label": "people on bicycles at a traffic light by vehicles", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "a very nice bathroom with toilet and mirror", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "bicycle riding is a good way to get around town", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "a white toilet sitting inside of a bathroom next to a sink", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a dog near a bowl", + "pred": "a brown and white dog standing next to a bowl of water" + }, + { + "label": "two air planes flying in the air near one another", + "pred": "two airplanes flying in the sky with smoke coming out of them" + }, + { + "label": "the tiny white bathroom has a toilet and pedestal sink", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a small bathroom still has all of the necessary amenities", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a brown dog laying on the ground with a metal bowl in front of him", + "pred": "a brown and white dog standing next to a bowl of water" + }, + { + "label": "a laptop computer sitting on top of a table", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "a cat walking through a kitchen by a eating tray", + "pred": "a cat laying on the floor in a kitchen" + }, + { + "label": "a fancy mirror and vanity counter top enhance this bathroom", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a bathroom that appears to be very elegant", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a big bathroom featuring a sink and toilet", + "pred": "a bathroom with a toilet a sink and a mirror" + }, + { + "label": "a kitchen with a cat walking past a refrigerator freezer", + "pred": "a cat laying on the floor in a kitchen" + }, + { + "label": "the lid is up on a toilet viewed through the open door of a bathroom", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "an outside with various things in the scene", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a bathroom that has a window by the toilet and sink", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a white small bathroom showing the toilet bowl and sink with beige tiles", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "the brown dog is laying near a silver dog bowl", + "pred": "a brown and white dog standing next to a bowl of water" + }, + { + "label": "a airplane that is flying in the sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a man is seen walking out of a building", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "a dark room with an open laptop and a computer monitor behind it", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "a young man sitting on top of a white bench", + "pred": "a person sitting on a skateboard on a sidewalk" + }, + { + "label": "a dog is laying with its water dish in front of it", + "pred": "a brown and white dog standing next to a bowl of water" + }, + { + "label": "a table with a plate of food and a urinal basin", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a man sitting down on a bench beside a water bottle", + "pred": "a person sitting on a skateboard on a sidewalk" + }, + { + "label": "a man is smiling for the camera while standing in a kitchen", + "pred": "a man standing in front of a microwave in a kitchen" + }, + { + "label": "a cat is walking in a kitchen that has cookware hanging on the wall", + "pred": "a cat laying on the floor in a kitchen" + }, + { + "label": "a person is near a glass door in a room with a computer", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "a cat walking down the center of the kitchen", + "pred": "a cat laying on the floor in a kitchen" + }, + { + "label": "a cat is walking across a rug on a kitchen floor", + "pred": "a cat laying on the floor in a kitchen" + }, + { + "label": "a fancy bathroom with some tile walls", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a large plane is flying in the sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a man is standing inside of a food truck", + "pred": "a man standing in front of a microwave in a kitchen" + }, + { + "label": "a smiling man is behind the counter at a restaurant", + "pred": "a man standing in front of a microwave in a kitchen" + }, + { + "label": "a bathroom not being used contains a toilet, sink, shower and bathtub", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "an air plane flies in a dark grey sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a man seated on a bench with a plastic bottle", + "pred": "a person sitting on a skateboard on a sidewalk" + }, + { + "label": "a large jet airplane flying in the sky", + "pred": "a large jetliner flying through a cloudy sky" + }, + { + "label": "a building has two macintosh computers at the workstations", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "a person sits on a bench with a water bottle next to him", + "pred": "a person sitting on a skateboard on a sidewalk" + }, + { + "label": "a modern bathroom with a large bathtub and walk in shower", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a dog pants next to a bowl of water on the ground", + "pred": "a brown and white dog standing next to a bowl of water" + }, + { + "label": "a man in a kitchen smiles towards a camera", + "pred": "a man standing in front of a microwave in a kitchen" + }, + { + "label": "a person shows two bowls full of different fruits", + "pred": "a person holding a bowl filled with fruit" + }, + { + "label": "a woman lies on the ground under a suitcase", + "pred": "a woman laying on the ground with a suitcase" + }, + { + "label": "modern looking bathroom featuring a bathtub, shower, sink and toilet", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a man sitting alone with his water bottle", + "pred": "a person sitting on a skateboard on a sidewalk" + }, + { + "label": "a modern day bathroom set up with wooden sink", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a chef displays a bowl of freshly made fruit salad", + "pred": "a person holding a bowl filled with fruit" + }, + { + "label": "a massive variety of pots and other objects are displayed along a long kitchen counter with a sink and a clock on the wall", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a man cooks in a kitchen that is made of all stainless steel", + "pred": "a man standing in front of a microwave in a kitchen" + }, + { + "label": "a cat sitting between two bikes sitting next to each other", + "pred": "a cat sitting on top of a bicycle tire" + }, + { + "label": "a person laying crushed underneath a black piece of luggage", + "pred": "a woman laying on the ground with a suitcase" + }, + { + "label": "horses communing with each other on a shady street", + "pred": "two horses are standing on the side of the road" + }, + { + "label": "a urinal next to a red table with a plate sitting on the table", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a black cat is sitting in a bathroom sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "raw mango and orange and ripe bananas in a bowl", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a papia, orange and bruised banana sitting in a bowl", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "the shelves in a kitchen are covered with pans", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "someone has crawled under the plane to check that everything is operational", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "horses stand on the street next to a silver car", + "pred": "two horses are standing on the side of the road" + }, + { + "label": "an airplane on a runway preparing to take off", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "a modern bathroom with hardwood flooring and counter tops", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a cat laying in a green bowl on a wooden table", + "pred": "a cat sitting in a bowl on a table" + }, + { + "label": "a motorcycle and people looking a travel vehicles", + "pred": "a red and white motorcycle parked in a parking lot" + }, + { + "label": "a baby sitting on a females lap staring into the camera", + "pred": "a woman brushing a baby's teeth with a toothbrush" + }, + { + "label": "adult displaying several bowls of fruits in kitchen area", + "pred": "a person holding a bowl filled with fruit" + }, + { + "label": "a woman holds her small child in her lap", + "pred": "a woman brushing a baby's teeth with a toothbrush" + }, + { + "label": "a fruit salad that includes a variety of fruit", + "pred": "a person holding a bowl filled with fruit" + }, + { + "label": "a small bowl and a very big bowl full of fruit salad", + "pred": "a person holding a bowl filled with fruit" + }, + { + "label": "a motorcycle that is sitting in the street on a stand", + "pred": "a red and white motorcycle parked in a parking lot" + }, + { + "label": "a cat that is sitting in between bikes", + "pred": "a cat sitting on top of a bicycle tire" + }, + { + "label": "a motorcycle is sitting on the side of the road next to a sign", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a person lying on the ground with a suit case on top of them", + "pred": "a woman laying on the ground with a suitcase" + }, + { + "label": "a person lying under a large black suitcase near a block wall", + "pred": "a woman laying on the ground with a suitcase" + }, + { + "label": "a cat laying down in a bathroom sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "someone who is laying down under a suitcase", + "pred": "a woman laying on the ground with a suitcase" + }, + { + "label": "the motorcycle rider is taking a break before continuing his ride", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a pear, orange, and two bananas in a wooden bowl", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a black cat sits in a white bathroom sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "a cat laying in a bowl asleep on the ground", + "pred": "a cat sitting in a bowl on a table" + }, + { + "label": "a woman holds a sick child who is getting her temperature taken", + "pred": "a woman brushing a baby's teeth with a toothbrush" + }, + { + "label": "a motorcycle sitting in front of a speed limit sign with a curvy road drawing", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a white airplane parked on a runway under a blue sky", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a cat with its mouth opened sitting between some bikes", + "pred": "a cat sitting on top of a bicycle tire" + }, + { + "label": "a colorful motorcycle sitting next to a fence", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "busy kitchen in residential home with cabinets and wooden table", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a white urinal white tiles a red table with a dish", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a black cat that is sitting in a sink", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "a line of parked motorcycles with the edges of image blurred", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a small bathroom with wood flooring and tan walls", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "horses standing in front of a car", + "pred": "two horses are standing on the side of the road" + }, + { + "label": "a urinal in a public restroom near a wooden table", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a silver sports car is parked beside horse droppings left by a group of horses", + "pred": "two horses are standing on the side of the road" + }, + { + "label": "a small bathroom with marble tiles and counter", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a motor bike sits parked next to a street sign", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "parked motor bikes sit on some grass", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a bmw motorcycle is parked on display in this field", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a motorcycle with a boot on the back wheel", + "pred": "a red and white motorcycle parked in a parking lot" + }, + { + "label": "horses stand around on a neighborhood street in front of a car", + "pred": "two horses are standing on the side of the road" + }, + { + "label": "a small plane with the cockpit open and landing gear down", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "a little red tabke with a plate on it in the bathroom", + "pred": "a white toilet sitting in a bathroom next to a toilet paper dispenser" + }, + { + "label": "a toilet with the toilet seat left up and the sink next to it", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "parked motorcycles sit in it line", + "pred": "motorcycles parked next to each other" + }, + { + "label": "pieces of fruit are in a bowl", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a red and blue plan on the runway getting ready to get passengers", + "pred": "an airplane sitting on top of an airport tarmac" + }, + { + "label": "cat sitting on the ground between bikes showing its teeth", + "pred": "a cat sitting on top of a bicycle tire" + }, + { + "label": "a young girl is getting her temperature taken", + "pred": "a woman brushing a baby's teeth with a toothbrush" + }, + { + "label": "a jet pilot sits in a plane on a tarmac", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "the black and white photo shows a toilet and a bathroom sink", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a big cat sitting in a little bowl", + "pred": "a cat sitting on top of a wooden table" + }, + { + "label": "the loading dock is attached to the side of a four engine airliner", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a moped is parked next to bicycles on a sidewalk", + "pred": "motorcycles parked in front of a building" + }, + { + "label": "a black cat sitting inside of a sink in the bathroom", + "pred": "a black cat sitting in a bathroom sink" + }, + { + "label": "a rural road with trees, road signs of a squiggly arrow and of 55 mph, and motorcycle parked beside it", + "pred": "a motorcycle is parked on the side of the road" + }, + { + "label": "a airplane that has landed on a runway yellow line", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "bicycles and a scooter are parked nearby each other", + "pred": "motorcycles parked in front of a building" + }, + { + "label": "a cat is curled up and sleeping in a round tin", + "pred": "a cat sitting in a bowl on a table" + }, + { + "label": "a toilet a sink a counter a mirror and some toilet paper", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "this basic kitchen has tools sitting on the floor", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a line of parked motorcycles some people and a flag", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a small plane is sitting on a runway", + "pred": "a fighter jet sitting on top of an airport tarmac" + }, + { + "label": "pots and pans a clock a sink and some cabinets", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "a row of motorcycles posed on a floor next to a flag", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a bathroom with a brown wall and counter", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a line of motorcycles sitting in line", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a cat sitting next to a bunch of bikes parked next to each other", + "pred": "a cat sitting on top of a bicycle tire" + }, + { + "label": "a parked red motor bike on a lot", + "pred": "a red and white motorcycle parked in a parking lot" + }, + { + "label": "a scooter and bicycles are parked outside a local business", + "pred": "motorcycles parked in front of a building" + }, + { + "label": "a room with a tv, potted plant, tables and chairs", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a large passenger jumbo jet takes passengers on the runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a row of foreign motorcycles is lined up in front of a wooden fence", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "a white kitchen with wood cabinets in the midst of repairs", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a cat is sitting in a small bowl on the table", + "pred": "a cat sitting on top of a wooden table" + }, + { + "label": "the television, in a plastic cow, is on", + "pred": "a cow statue sitting on top of a bed" + }, + { + "label": "a kitchen with a countertop and talbe with open cabinets", + "pred": "a kitchen with a stove top oven and a counter top" + }, + { + "label": "modern bathroom with stone sink area and tiled walls", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a toddler in a pink shirt sits on the lap of a woman", + "pred": "a woman brushing a baby's teeth with a toothbrush" + }, + { + "label": "the airplane is parked on the runway in the airport", + "pred": "an airplane sitting on top of an airport tarmac" + }, + { + "label": "woman on a motorcycle with a sidecar in front of scenic backdrop in a showroom", + "pred": "a woman standing next to a motorcycle on a beach" + }, + { + "label": "a sleek white, red and blue motorcycle parked opposite of several others", + "pred": "a motorcycle is parked on a grassy field" + }, + { + "label": "cans sitting on the kitchen floor", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "an empty table at a restaurant with ships", + "pred": "a clock that is on top of a pole" + }, + { + "label": "a bowl with a mango, orange, and banana in it", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a very simple and modern bathroom with a white toilet", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "an airplane with one wing stands motionless on the tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a cat sitting in a bowl on a table", + "pred": "a cat sitting on top of a wooden table" + }, + { + "label": "electronic wires pass over the road with few cars on it", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "the dark wood and marble pillars give this living space a warm feel", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a building with a few sunflowers painted on it", + "pred": "motorcycles parked in front of a building" + }, + { + "label": "a living room with a lot of chairs and a big entertainment center", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a cat that has curled up in a bowl", + "pred": "a cat sitting in a bowl on a table" + }, + { + "label": "a white refrigerator freezer sitting inside of a kitchen", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a person fills jars with orange slices from a large bowl", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "the people are all in a restaurant some are sitting", + "pred": "a large group of people are gathered around a large clock" + }, + { + "label": "a red yellow and blue airplane is sitting on the runway", + "pred": "an airplane sitting on top of an airport tarmac" + }, + { + "label": "the kitchen is white with brown counter tops and a white fridge", + "pred": "a kitchen with a stove a refrigerator and a sink" + }, + { + "label": "a woman riding a green motorcycle with a side car", + "pred": "a woman standing next to a motorcycle on a beach" + }, + { + "label": "there's a cow that has a television on its side", + "pred": "a cow statue sitting on top of a bed" + }, + { + "label": "the cat is sitting inside of a bowl on a table", + "pred": "a cat sitting on top of a wooden table" + }, + { + "label": "a cow sculpture with a tv sticking out of it's center", + "pred": "a cow statue sitting on top of a bed" + }, + { + "label": "a bowl of peeled oranges sit next to several jars of peeled oranges", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "a cutting sitting upright in a pottery bowl on a coffee table", + "pred": "a cat sitting on top of a wooden table" + }, + { + "label": "this table is covered by a blue sam adams umbrella", + "pred": "a clock that is on top of a pole" + }, + { + "label": "a building has many bikes pared outside of it", + "pred": "motorcycles parked in front of a building" + }, + { + "label": "advertising sign above a patio umbrella on sunny day", + "pred": "a clock that is on top of a pole" + }, + { + "label": "this crowded restaurant has an enormous clock on the wall", + "pred": "a large group of people are gathered around a large clock" + }, + { + "label": "a southwest airlines jet pulled up to the terminal for loading", + "pred": "an airplane sitting on top of an airport tarmac" + }, + { + "label": "a metal bowl filled with orange slices on a table", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "a woman riding a bike with a basket on it", + "pred": "a woman riding a bike down a street" + }, + { + "label": "your guess is as good as mine as to what these objects are", + "pred": "a bathroom with a toilet and a sink in it" + }, + { + "label": "a game at an outdoor fair called \"ball in the bog\"", + "pred": "a fire hydrant in the middle of a grassy field" + }, + { + "label": "an old toilet sitting under a sign for this picture", + "pred": "a fire hydrant in the middle of a grassy field" + }, + { + "label": "a blue and red plane on a runway", + "pred": "an airplane sitting on top of an airport tarmac" + }, + { + "label": "a toilet and towel rack are in a bathroom", + "pred": "a bathroom with a toilet, sink, and tub" + }, + { + "label": "this gray cat has curled up into a ball", + "pred": "a cat sitting in a bowl on a table" + }, + { + "label": "a motorcycle parked behind two vans in a parking lot", + "pred": "a red and white motorcycle parked in a parking lot" + }, + { + "label": "traffic on a busy city highway", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a wooden door in front of an entrance next to a black cat", + "pred": "a black and white cat laying on the floor next to a door" + }, + { + "label": "a women sitting on a motorcycle with a side car with a desert background of hills", + "pred": "a woman standing next to a motorcycle on a beach" + }, + { + "label": "a sign is placed over a toilet that is out on a lawn", + "pred": "a fire hydrant in the middle of a grassy field" + }, + { + "label": "a sign for a ball game over an old toilet", + "pred": "a fire hydrant in the middle of a grassy field" + }, + { + "label": "a bathroom with a toilet, window and tub in it", + "pred": "a bathroom with a toilet, sink, and tub" + }, + { + "label": "an indoor toilet underneath a sign that says please flush", + "pred": "a white toilet sitting next to a red wall" + }, + { + "label": "a television is mounted inside of a cow figurine", + "pred": "a cow statue sitting on top of a bed" + }, + { + "label": "vehicles are moving down a city street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "people gathered inside of a building", + "pred": "a large group of people are gathered around a large clock" + }, + { + "label": "a crowd of people sitting in a room, with a clock tower in front", + "pred": "a large group of people are gathered around a large clock" + }, + { + "label": "a woman sits on a motor bike with a cart extended", + "pred": "a woman standing next to a motorcycle on a beach" + }, + { + "label": "a cat climbing into a cat door on a wall", + "pred": "a black and white cat standing next to a wall" + }, + { + "label": "a school girl checks her phone while riding a bike", + "pred": "a woman riding a bike down a street" + }, + { + "label": "nice furniture is arranged in a fancy looking house", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "commode sits on grass next to sign at outdoor event", + "pred": "a fire hydrant in the middle of a grassy field" + }, + { + "label": "the interior layout of an average clean bathroom", + "pred": "a bathroom with a toilet, sink, and tub" + }, + { + "label": "a woman sitting on a bike with a cellphone", + "pred": "a woman riding a bike down a street" + }, + { + "label": "a woman rides her bike while on her smartphone", + "pred": "a woman riding a bike down a street" + }, + { + "label": "a dim room with toilet bowls lined along the wall", + "pred": "a bathroom with a toilet and a sink in it" + }, + { + "label": "a white toilet sitting in a bathroom next to a sink", + "pred": "a bathroom with a toilet, sink, and tub" + }, + { + "label": "a tv mounted in a cow on a wall", + "pred": "a cow statue sitting on top of a bed" + }, + { + "label": "person canning oranges showing a large bowl of fruit wedges", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "tubs are lined up next to each other", + "pred": "a bathroom with a toilet and a sink in it" + }, + { + "label": "people sitting at tables inside a large clock tower", + "pred": "a large group of people are gathered around a large clock" + }, + { + "label": "old urinals all lined up", + "pred": "a bathroom with a toilet and a sink in it" + }, + { + "label": "a white toilet in a black counter bathroom", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a large living and dining room area with rich wood features", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "there were six toilet all lined up along the wall", + "pred": "a bathroom with a toilet and a sink in it" + }, + { + "label": "street with a bus parked on the side", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a woman sits on a motorcycle with a sidecar", + "pred": "a woman standing next to a motorcycle on a beach" + }, + { + "label": "a cat on a wall", + "pred": "a black and white cat standing next to a wall" + }, + { + "label": "a restroom with a toilet, sink and window", + "pred": "a bathroom with a toilet, sink, and tub" + }, + { + "label": "a sign is seen posted above a toilet", + "pred": "a white toilet sitting next to a red wall" + }, + { + "label": "a cat going through a cat door has been put on the wall", + "pred": "a black and white cat standing next to a wall" + }, + { + "label": "oranges that have been peeled are placed into a larger bowl", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "a wax head is looking out of a car window", + "pred": "a car filled with lots of stuffed animals on top of it" + }, + { + "label": "a girl is sitting on a bicycle outside", + "pred": "a woman riding a bike down a street" + }, + { + "label": "the plane was flying high near the flag in the air", + "pred": "an american flag flying over an american flag plane" + }, + { + "label": "a motorcycle parked on the pavement near a building", + "pred": "a black motorcycle parked on the side of a road" + }, + { + "label": "a person on a skateboard and bike at a skate park", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "a bathroom with a red wall and poster in front of a toilet", + "pred": "a white toilet sitting next to a red wall" + }, + { + "label": "a plane flying low with an american flag flying", + "pred": "an american flag flying over an american flag plane" + }, + { + "label": "vehicle traffic on a hilly street in a small town", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a lamp post stands next to an umbrella and table", + "pred": "a clock that is on top of a pole" + }, + { + "label": "a plane flying in the sky near an american flag", + "pred": "an american flag flying over an american flag plane" + }, + { + "label": "a worn and a new sign for the same mexican food restaurant", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a white passenger train passing a parking lot at night", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a silver and black sports motorcycle parked near a building", + "pred": "a black motorcycle parked on the side of a road" + }, + { + "label": "the entrance to an old house", + "pred": "a building with a stairway leading to a balcony" + }, + { + "label": "a passenger jet airplane flies low over trees with an american flag", + "pred": "an american flag flying over an american flag plane" + }, + { + "label": "an umbrella is opened over an outdoor table", + "pred": "a clock that is on top of a pole" + }, + { + "label": "a car is shown covered in dental items at a fair", + "pred": "a car filled with lots of stuffed animals on top of it" + }, + { + "label": "a man wearing a suit and tie and red hat with a silver buckle", + "pred": "a man in a suit and tie on a city street" + }, + { + "label": "a man holds a controller and keyboard with his hands", + "pred": "a person is typing on a computer keyboard" + }, + { + "label": "a lady that has a bowl in her hand", + "pred": "a woman standing in a kitchen next to a table" + }, + { + "label": "a car driving down a street with a creepy dummy inside of it", + "pred": "a car filled with lots of stuffed animals on top of it" + }, + { + "label": "a computer user types one handed on a keyboard", + "pred": "a person is typing on a computer keyboard" + }, + { + "label": "a large airplane that is flying through the sky", + "pred": "an american flag flying over an american flag plane" + }, + { + "label": "a cyclist pauses near the water to observe a canoe", + "pred": "a man riding a bike down a river" + }, + { + "label": "a cat is standing in the doorway of the house", + "pred": "a black and white cat laying on the floor next to a door" + }, + { + "label": "person holding on to a video game remote while using a computer mouse with other hand", + "pred": "a person is typing on a computer keyboard" + }, + { + "label": "a black and silver motor cycle parked by a shed", + "pred": "a black motorcycle parked on the side of a road" + }, + { + "label": "a person uses a black computer keyboard on a wooden desk", + "pred": "a person is typing on a computer keyboard" + }, + { + "label": "a man wearing a blue blazer is also wearing a red hat", + "pred": "a man in a suit and tie on a city street" + }, + { + "label": "a car on a city street with a moving train directly behind it", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a car driving down a street at night", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "this older photo depicts a woman working in a primitive kitchen", + "pred": "a woman standing in a kitchen next to a table" + }, + { + "label": "three white urinals mounted to a bathroom wall", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "a dirty floor and wall with a black kit going into a trap door", + "pred": "a black and white cat standing next to a wall" + }, + { + "label": "a black and silver motorcycle outside on the road", + "pred": "a black motorcycle parked on the side of a road" + }, + { + "label": "a housewife holds a platter of food in the kitchen", + "pred": "a woman standing in a kitchen next to a table" + }, + { + "label": "a gamer holding a controller and using a keyboard", + "pred": "a person is typing on a computer keyboard" + }, + { + "label": "cars are crossing an intersection", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a cat is sitting on the carpet in front of a door", + "pred": "a black and white cat laying on the floor next to a door" + }, + { + "label": "a man wearing a red hat and a suit and tie", + "pred": "a man in a suit and tie on a city street" + }, + { + "label": "a busy street with cars in action and a train zooming by", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a man on a skateboard performs a trick at the skate park", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "a large black cat sits by the front door", + "pred": "a black and white cat laying on the floor next to a door" + }, + { + "label": "a skateboarder jumps into the air as he performs a skateboard trick", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "cars, truck and carriages are traveling on the road", + "pred": "a tour bus driving down a street next to a parking lot" + }, + { + "label": "a bathroom with a big mirror above the sink", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "cat going inside house through small opening on door", + "pred": "a black and white cat standing next to a wall" + }, + { + "label": "athletes performing tricks on a bmx bicycle and a skateboard", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "different items are lined out for display on a table", + "pred": "a car filled with lots of stuffed animals on top of it" + }, + { + "label": "a woman in the kitchen", + "pred": "a woman standing in a kitchen next to a table" + }, + { + "label": "this bathroom has red and white walls and a poster", + "pred": "a white toilet sitting next to a red wall" + }, + { + "label": "a boat filled with people going down a river", + "pred": "a boat that is sitting in the water" + }, + { + "label": "a horse drawn carriage among several other motor vehicles on a road", + "pred": "a tour bus driving down a street next to a parking lot" + }, + { + "label": "a toilet with a poster above it in a bathroom", + "pred": "a white toilet sitting next to a red wall" + }, + { + "label": "a man falls off his skateboard in a skate park", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "a cat that is sitting outside a door", + "pred": "a black and white cat laying on the floor next to a door" + }, + { + "label": "the front door to the house is open", + "pred": "a building with a stairway leading to a balcony" + }, + { + "label": "three urinals each have small signs posted above them", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "three urinals are displayed with sings above them", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "a car covered in dolls and doll parts with people", + "pred": "a car filled with lots of stuffed animals on top of it" + }, + { + "label": "a horse and cart are stopped on a busy street", + "pred": "a tour bus driving down a street next to a parking lot" + }, + { + "label": "a building that has some stairs out front", + "pred": "a building with a stairway leading to a balcony" + }, + { + "label": "the woman is placing a turkey into a black pan", + "pred": "a woman standing in a kitchen next to a table" + }, + { + "label": "a man with a red hat is in the city", + "pred": "a man in a suit and tie on a city street" + }, + { + "label": "two glass bowls of oranges add up to more than enough", + "pred": "a bowl of oranges sitting on top of a counter" + }, + { + "label": "bird standing on car roof near covered pavilion", + "pred": "a white bird standing on top of a car" + }, + { + "label": "these toilets are being used outside as decor", + "pred": "a bathroom with a toilet and a trash can" + }, + { + "label": "these stairs are leading up to an open door", + "pred": "a building with a stairway leading to a balcony" + }, + { + "label": "a small clean bathroom that is well lit", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "the bathroom has a mirror and a tiled sink", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "these two photographs show the old sign and the new sign of this restaurant", + "pred": "a sign that is on the side of a building" + }, + { + "label": "vehicles and a horse drawn cart pull up outside of a building", + "pred": "a tour bus driving down a street next to a parking lot" + }, + { + "label": "two toilets sit outside a fence on the sidewalk", + "pred": "a bathroom with a toilet and a trash can" + }, + { + "label": "a man in a red hat, suit, and blue striped tie walks past two other men on a street", + "pred": "a man in a suit and tie on a city street" + }, + { + "label": "two toilet bowls outside one is blue", + "pred": "a bathroom with a toilet and a trash can" + }, + { + "label": "two tall signs advertising mexican food under a cloudy sky", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a small crane stands on the roof of a car in a city area", + "pred": "a white bird standing on top of a car" + }, + { + "label": "a motorcycle that is parked near a building", + "pred": "a black motorcycle parked on the side of a road" + }, + { + "label": "concrete stairs lead to the double doors of the house", + "pred": "a building with a stairway leading to a balcony" + }, + { + "label": "a number of business signs in a tall pole", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a person on a bike that is by some water", + "pred": "a man riding a bike down a river" + }, + { + "label": "bike rider stopped by river bank watching row boat", + "pred": "a man riding a bike down a river" + }, + { + "label": "cars that are parked out on a road", + "pred": "a tour bus driving down a street next to a parking lot" + }, + { + "label": "a person is standing with a bicycle while people row by in a boat", + "pred": "a man riding a bike down a river" + }, + { + "label": "bicyclist on side of river watching rowers in a nanoe", + "pred": "a man riding a bike down a river" + }, + { + "label": "two clear glass bowls full of oranges on a bar", + "pred": "a bowl of oranges sitting on top of a counter" + }, + { + "label": "interior bathroom shot of a glass shower and white sink fixtures", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "an undecorated bath room with shower, toilet and sink", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a plane is parked in an airport field", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a large jetliner sitting on top of an airport tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "glass bowls or oranges sitting on a metal counter", + "pred": "a bowl of oranges sitting on top of a counter" + }, + { + "label": "the white bird is standing on the roof of a car", + "pred": "a white bird standing on top of a car" + }, + { + "label": "the people are floating in the water in the small wooden boat", + "pred": "a boat that is sitting in the water" + }, + { + "label": "a malaysian airplane that is stationary on the runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "two toilets sit outside with for sale signs on them", + "pred": "a bathroom with a toilet and a trash can" + }, + { + "label": "a grey motorcycle on dirt road next to a building", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "two bowls of lemons setting on a shelf", + "pred": "a bowl of oranges sitting on top of a counter" + }, + { + "label": "people ride in the wooden bench along a river", + "pred": "a boat that is sitting in the water" + }, + { + "label": "a motorcycle is parked on a dirt road in front of an old farm truck selling produce", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "a bath room with a toilet and toilet paper", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "group of adults and children riding in wooden boat on river", + "pred": "a boat that is sitting in the water" + }, + { + "label": "people riding on the back of a boat in a river", + "pred": "a boat that is sitting in the water" + }, + { + "label": "a bird on top of a parked car", + "pred": "a white bird standing on top of a car" + }, + { + "label": "a bike on a dirt road", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "an old black and white photo of cars parked near a building", + "pred": "a large building with a truck parked in front of it" + }, + { + "label": "trucks are parked outside of a market building", + "pred": "a large building with a truck parked in front of it" + }, + { + "label": "two toilets sit outside on the pavement next to a yard with many decorations", + "pred": "a bathroom with a toilet and a trash can" + }, + { + "label": "an airplane is parked on a lot near hills", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "the airplane is on the tarmac at the airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "the adult giraffe is standing near a metal fence", + "pred": "a giraffe standing next to a fence in a zoo" + }, + { + "label": "two men herding a pack of elephants across a field", + "pred": "a man standing next to a herd of elephants" + }, + { + "label": "a room with a large cabinet filled with white towels", + "pred": "a room with a bed, a dresser and a dresser drawer" + }, + { + "label": "a bird is standing on top of a car", + "pred": "a white bird standing on top of a car" + }, + { + "label": "urinals with signs hanging over them in a restroom", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "two bowls of oranges are sitting on a metal surface", + "pred": "a bowl of oranges sitting on top of a counter" + }, + { + "label": "the man is riding his motorcycle while smoking a cigarette", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a dog herding a group of sheep in a meadow", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a bathroom that has a small dividing wall next to it", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a little boy riding his bike and wearing a helmet", + "pred": "a person riding a bike on a dirt road" + }, + { + "label": "motorcycle sitting on a dirt road in front of a farm house advertising produce", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "urinals with stickers above them", + "pred": "a row of urinals in a public restroom" + }, + { + "label": "a building and trucks outside the building", + "pred": "a large building with a truck parked in front of it" + }, + { + "label": "a toilet and sink side by side in a bathroom and a mirror", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a man and a woman holding big wooden sticks with elephants", + "pred": "a man standing next to a herd of elephants" + }, + { + "label": "a bathroom with a sink, mirror, and toilet with handicap rail", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a motorcycle that is sitting in the dirt", + "pred": "a motorcycle parked on the side of a road" + }, + { + "label": "two old trucks parked next to the building", + "pred": "a large building with a truck parked in front of it" + }, + { + "label": "a kitchen with a very messy counter space", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a bathroom with a tub and a towel cabinet", + "pred": "a room with a bed, a dresser and a dresser drawer" + }, + { + "label": "a kitchen that has black counters and wooden cabinets", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a little boy raveling down a road on a bike, with a yellow helmet on", + "pred": "a person riding a bike on a dirt road" + }, + { + "label": "three sheep and a dog standing in a field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a man sitting on a motorcycle smoking a cigarette", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "three sheep running from a dog in the grass", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a toilet and sink that is in a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "the boy wears a helmet while riding his bicycle", + "pred": "a person riding a bike on a dirt road" + }, + { + "label": "a man on a motorcycle driving beside a van", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "people in a hall with a camera taking a picture", + "pred": "a man sitting on a ledge with a laptop in front of him" + }, + { + "label": "a metallic refrigerator freezer sitting inside of a kitchen", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a bathroom with a white toilet and a white sink and a mirror", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a man is riding a motorcycle on a city street", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "two people stand in front of a bunch of elephants", + "pred": "a man standing next to a herd of elephants" + }, + { + "label": "a kitchen filled with assorted items like a bottle of dish soap", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a tv showing two men in hats and women", + "pred": "a man on a cell phone in front of a tv" + }, + { + "label": "a cow standing outside of a white building with a blue entrance", + "pred": "a cow that is standing in front of a building" + }, + { + "label": "a narrow bathroom with little room for movement", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a very tall building with trucks parked in front of it", + "pred": "a large building with a truck parked in front of it" + }, + { + "label": "a very tall building sitting along side of a street", + "pred": "a large building with a clock on the front of it" + }, + { + "label": "a bathroom with sink, mirror, and toilet in it", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "the door of a closet is open with towels in it", + "pred": "a room with a bed, a dresser and a dresser drawer" + }, + { + "label": "kitchen utensils and appliances have been left unattended", + "pred": "a kitchen with a lot of food on the counter" + }, + { + "label": "a cow stands on a sidewalk outside a building", + "pred": "a cow that is standing in front of a building" + }, + { + "label": "a small child wearing a helmet and riding a bike", + "pred": "a person riding a bike on a dirt road" + }, + { + "label": "two signs that are advertising a mexican restaurant", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a flock of sheep in the field with grass", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a work room that looks like a dry cleaners", + "pred": "a kitchen with a lot of food on the counter" + }, + { + "label": "a little boy wearing a helmet and riding a bike", + "pred": "a person riding a bike on a dirt road" + }, + { + "label": "people that are petting a cat", + "pred": "a man sitting on a ledge with a laptop in front of him" + }, + { + "label": "the man on the motorcycle pulled up beside the car", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a cabinet towels a toilet and a sink", + "pred": "a room with a bed, a dresser and a dresser drawer" + }, + { + "label": "a kitchen with two sinks, a counter, detergent, a stove and a refrigerator in it", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "sheep in a field being followed by a dog", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a bathroom with a toilet and bathtub beside a hallway", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a woman rides a bicycle down a narrow corridor in an indoor asian market", + "pred": "a city street filled with lots of shops and people" + }, + { + "label": "a very cute giraffe standing by a fence", + "pred": "a giraffe standing next to a fence in a zoo" + }, + { + "label": "a small bathroom with old toilet and tub", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a plain white bathroom with a cupboard stocked with towels", + "pred": "a room with a bed, a dresser and a dresser drawer" + }, + { + "label": "different bikes on a wooden floor", + "pred": "a bicycle is parked on the floor in a room" + }, + { + "label": "a man sitting on a toilet with a cigarette and beer can in hand", + "pred": "a woman is brushing her teeth in a bathroom" + }, + { + "label": "a t.v. showing court room proceedings", + "pred": "a man on a cell phone in front of a tv" + }, + { + "label": "a giraffe is looking over a metal fence", + "pred": "a giraffe standing next to a fence in a zoo" + }, + { + "label": "people are walking and riding motorcycles on the street", + "pred": "motorcycles are parked in front of a building" + }, + { + "label": "a row of bicycles for sale in a store", + "pred": "a bicycle is parked on the floor in a room" + }, + { + "label": "a white bathroom sink sitting under a bathroom window", + "pred": "a bathroom with a tub, toilet and sink" + }, + { + "label": "one riding a bike through a market", + "pred": "a city street filled with lots of shops and people" + }, + { + "label": "guy sitting on toilet smoking a cigarette", + "pred": "a woman is brushing her teeth in a bathroom" + }, + { + "label": "a man sits on the toilet while smoking", + "pred": "a woman is brushing her teeth in a bathroom" + }, + { + "label": "a cow standing next to a white wall and bright blue door", + "pred": "a cow that is standing in front of a building" + }, + { + "label": "a large building is shown next to a busy street with cars on it", + "pred": "a large building with a clock on the front of it" + }, + { + "label": "a television with two men and a woman on the screen", + "pred": "a man on a cell phone in front of a tv" + }, + { + "label": "two elephant herders stand next to a large group of elephants in a field", + "pred": "a man standing next to a herd of elephants" + }, + { + "label": "the cramped interior of a passenger ship's kitchen", + "pred": "a kitchen with a lot of food on the counter" + }, + { + "label": "a man that is nealed down in a bathroom", + "pred": "a woman is brushing her teeth in a bathroom" + }, + { + "label": "a giraffe in a pen at a zoo", + "pred": "a giraffe standing next to a fence in a zoo" + }, + { + "label": "a man on the toilet drinking a beer and smoking a cigarette", + "pred": "a woman is brushing her teeth in a bathroom" + }, + { + "label": "this large building has a tower that has a clock on it", + "pred": "a large building with a clock on the front of it" + }, + { + "label": "a room with a bunch of stainless steel items and other accessories", + "pred": "a kitchen with a lot of food on the counter" + }, + { + "label": "motorists pass very large buildings in asia", + "pred": "motorcycles are parked in front of a building" + }, + { + "label": "bikes are lined up in the store on the floor", + "pred": "a bicycle is parked on the floor in a room" + }, + { + "label": "a large giraffe that is next to a fence", + "pred": "a giraffe standing next to a fence in a zoo" + }, + { + "label": "traffic passing in front of a cathedral type building", + "pred": "a large building with a clock on the front of it" + }, + { + "label": "an empty bathroom with blue walls on the lights on", + "pred": "a bathroom with a tub, toilet and sink" + }, + { + "label": "a very tall and big room with some people", + "pred": "a city street filled with lots of shops and people" + }, + { + "label": "different stores along this long hallway", + "pred": "a city street filled with lots of shops and people" + }, + { + "label": "guys with big sticks in a field with some elephants", + "pred": "a man standing next to a herd of elephants" + }, + { + "label": "bikers are gathered on a city street", + "pred": "motorcycles are parked in front of a building" + }, + { + "label": "people sitting around petting a cat", + "pred": "a man sitting on a ledge with a laptop in front of him" + }, + { + "label": "a downtown open air street market", + "pred": "a city street filled with lots of shops and people" + }, + { + "label": "a small bathroom with an open design concept", + "pred": "a bathroom with a tub, toilet and sink" + }, + { + "label": "a bathroom with blue and white walls", + "pred": "a bathroom with a tub, toilet and sink" + }, + { + "label": "a clean industrial kitchen with no one in it", + "pred": "a kitchen with a lot of food on the counter" + }, + { + "label": "women siting around a cat as they pet it", + "pred": "a man sitting on a ledge with a laptop in front of him" + }, + { + "label": "people ride their motorcycles beside some cars, passing by an empty street with stores and apartment buildings", + "pred": "motorcycles are parked in front of a building" + }, + { + "label": "motorcyclists riding their bikes through heavy city traffic", + "pred": "motorcycles are parked in front of a building" + }, + { + "label": "a man and a woman are posing next to a red motorcycle", + "pred": "a man and a woman sitting on a motorcycle" + }, + { + "label": "cars driving by an old building and clock tower", + "pred": "a large building with a clock on the front of it" + }, + { + "label": "a tv with a picture of two men wearing black hats", + "pred": "a man on a cell phone in front of a tv" + }, + { + "label": "a pink bike in a bike shop with hardwood floors", + "pred": "a bicycle is parked on the floor in a room" + }, + { + "label": "a bathroom with blue walls and white tiles", + "pred": "a bathroom with a tub, toilet and sink" + }, + { + "label": "a television depicts a courtroom", + "pred": "a man on a cell phone in front of a tv" + }, + { + "label": "a man and woman beside a red motorcycle", + "pred": "a man and a woman sitting on a motorcycle" + }, + { + "label": "a man and a woman are standing beside a red motorcycle", + "pred": "a man and a woman sitting on a motorcycle" + }, + { + "label": "a cow is standing in the street by a door", + "pred": "a cow that is standing in front of a building" + }, + { + "label": "the cow is positioned next to the wall", + "pred": "a cow that is standing in front of a building" + }, + { + "label": "a cow stands if front of a white wall", + "pred": "a cow that is standing in front of a building" + }, + { + "label": "man and woman sitting on the back of a motorcycle", + "pred": "a man and a woman sitting on a motorcycle" + }, + { + "label": "a bowl of bananas sitting on the kitchen table", + "pred": "a wooden table with a bowl of fruit on top of it" + }, + { + "label": "a man and a woman posing in front of a motorcycle", + "pred": "a man and a woman sitting on a motorcycle" + }, + { + "label": "people are sitting on the ground petting a cat", + "pred": "a man sitting on a ledge with a laptop in front of him" + }, + { + "label": "a car with a snowboard on it's ski rack parked in a foggy parking lot next to two cars with empty ski racks", + "pred": "a car parked in the middle of a parking lot" + }, + { + "label": "a man is standing next to a motorcycle outside", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "cars parked in a lot", + "pred": "a car parked in the middle of a parking lot" + }, + { + "label": "a plane passing over a harbor, on a clear day", + "pred": "a plane flying over a large body of water" + }, + { + "label": "small automobile parked on the side of a beach area", + "pred": "a car parked in the middle of a parking lot" + }, + { + "label": "a bowl filled with bananas sitting on top of a table", + "pred": "a wooden table with a bowl of fruit on top of it" + }, + { + "label": "two car facing opposite side to side in overcast day", + "pred": "a car parked in the middle of a parking lot" + }, + { + "label": "a grouping of bananas hanging in a tree next to grassy area", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "bananas hanging from a tree", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "a little plane flying above a lake full of boats", + "pred": "a plane flying over a large body of water" + }, + { + "label": "a row of bikes parked next to each other", + "pred": "a bicycle is parked on the floor in a room" + }, + { + "label": "car with pedestrians parked in gravel lot near ski area", + "pred": "a car parked in the middle of a parking lot" + }, + { + "label": "a man standing next to a parked motorcycle", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "a woman sitting on top of a red motorcycle", + "pred": "a woman standing next to a red motorcycle" + }, + { + "label": "the airplane is flying low over the town", + "pred": "a plane flying over a large body of water" + }, + { + "label": "a stalk of banana's hanging from a tree in the forest", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "a large bunch of bananas hangs from a tree", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "a dock that is separating the harbor from the ocean", + "pred": "a plane flying over a large body of water" + }, + { + "label": "a wood table with bananas on it", + "pred": "a wooden table with a bowl of fruit on top of it" + }, + { + "label": "a computer workstation with a laptop and a desktop computer", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "banana trees bananas dirt and bushes", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "road is littered with old cars and some wrecked trucks with a lone red and white stop sign at a grassy lot", + "pred": "a stop sign on the side of a road" + }, + { + "label": "a guy and his motorcycle", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "a man stands by a motorcycle on the side of the road", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "a laptop next to a monitor, keyboard and mouse on a desk", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "this si a desk with two computers on it", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a plane flies over the hills above a developed shoreline", + "pred": "a plane flying over a large body of water" + }, + { + "label": "a woman takes a selfie in her backyard on a moped", + "pred": "a woman standing next to a red motorcycle" + }, + { + "label": "a desk top computer and a laptop sitting on a computer desk", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a stop sign in front of a road in a small town in the hills", + "pred": "a stop sign on the side of a road" + }, + { + "label": "a sign that leads to brooklyn and queens", + "pred": "two motorcyclists are stopped at a red light" + }, + { + "label": "a man riding on the back of a motorcycle", + "pred": "a man that is sitting on a motorcycle" + }, + { + "label": "a bathroom with a both a toilet and bidet", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a kitchen with two stoves, an island, and appliances", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a bathroom with two toilets and a shower in it, with no space for any of them", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "these people are riding bikes in the street at night", + "pred": "two motorcyclists are stopped at a red light" + }, + { + "label": "a kitchen with two stoves and a table", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a stop sign in a rocky field", + "pred": "a stop sign on the side of a road" + }, + { + "label": "man in black jacket standing in front of a black motorcycle", + "pred": "a man standing next to a parked motorcycle" + }, + { + "label": "two people on motorcycles approaching a tunnel", + "pred": "two motorcyclists are stopped at a red light" + }, + { + "label": "a lap top and a desk top on this table", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "lots of junk on a field of grass next to a stop sign", + "pred": "a stop sign on the side of a road" + }, + { + "label": "a kitchen with black appliances and open cupboards sits empty", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a pair of motorcyclists drive down a highway at night", + "pred": "two motorcyclists are stopped at a red light" + }, + { + "label": "a woman with her hand on the seat of an automatic toilet in a display", + "pred": "a woman standing next to a toilet in a bathroom" + }, + { + "label": "a bowl of fruit is placed on a table in a kitchen", + "pred": "a wooden table with a bowl of fruit on top of it" + }, + { + "label": "a kitchen view of a table counter top and cabinets", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a man on a motorcycle indoors attempts to lick the windshield", + "pred": "a man that is sitting on a motorcycle" + }, + { + "label": "a woman standing next to and touching a toilet", + "pred": "a woman standing next to a toilet in a bathroom" + }, + { + "label": "a room showing a cooker and an oven", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a woman with glasses and a red bandana around her neck, smiling next to a red motorcycle", + "pred": "a woman standing next to a red motorcycle" + }, + { + "label": "a bike behind a rail for safety on a train ride", + "pred": "a bike leaning against a wall next to a train" + }, + { + "label": "colorful lights reflect off the items inside this bathroom stall", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "a bathroom with a toilet and a drain in it", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a rome with rose flowers and a sink", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a tiny bathroom area features a patterned wall, bidet and toilet", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a stop sighn in a grass feild next to a road", + "pred": "a stop sign on the side of a road" + }, + { + "label": "a man sitting on top of a bench with a newspaper", + "pred": "a man sitting on a bench talking on a cell phone" + }, + { + "label": "two motorcycles going through the tunnel at night", + "pred": "two motorcyclists are stopped at a red light" + }, + { + "label": "a man sticks out his tongue while sitting on a motorcycle", + "pred": "a man that is sitting on a motorcycle" + }, + { + "label": "a bathroom sink decorated with candles and rose petals", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a man riding a scooter in the kitchen of a home", + "pred": "a man that is sitting on a motorcycle" + }, + { + "label": "a man kneeling down in front of a refrigerator", + "pred": "a person standing in front of a refrigerator" + }, + { + "label": "a toilet in a tiled stall with rainbow streaks around the room", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "a person is leaning low on their motorcycle on the tracks", + "pred": "a person riding a motorcycle on a race track" + }, + { + "label": "a woman is posing next to a red motorcycle", + "pred": "a woman standing next to a red motorcycle" + }, + { + "label": "a road traveling along a field under a cloudy sky", + "pred": "a grassy area with a fire hydrant on the side of the road" + }, + { + "label": "a bike hanging from a rail inside a train", + "pred": "a bike leaning against a wall next to a train" + }, + { + "label": "a bike is leaning against the railing by the window", + "pred": "a bike leaning against a wall next to a train" + }, + { + "label": "the bathroom mirror above the sink has candles and rose petals on it", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a person leaning down on a motorcycle as they ride on a track", + "pred": "a person riding a motorcycle on a race track" + }, + { + "label": "a bathroom sink and counter with rose petals and a candle", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a white bath tub sitting under a window", + "pred": "a bathroom with a toilet, sink, tub and window" + }, + { + "label": "the toilet is across from a bidet in the small bathroom", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "older men sit and relax on shady benches", + "pred": "a man sitting on a bench talking on a cell phone" + }, + { + "label": "a white toilet covered in rays of rainbow", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "man making funny gesture with tongue while sitting on motorcycle", + "pred": "a man that is sitting on a motorcycle" + }, + { + "label": "it sure is a beautiful day to sit outside and read the paper", + "pred": "a man sitting on a bench talking on a cell phone" + }, + { + "label": "buses and cars on interstate going both ways", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a large black counter top sitting next to a sink", + "pred": "a kitchen with a lot of clutter on the counter" + }, + { + "label": "someones sink in their bathroom in their home", + "pred": "a white sink sitting under a mirror in a bathroom" + }, + { + "label": "a man riding no a motorcycle down a race tracks", + "pred": "a person riding a motorcycle on a race track" + }, + { + "label": "people that are sitting on the benches", + "pred": "a man sitting on a bench talking on a cell phone" + }, + { + "label": "a highway filled with lots of traffic and buses", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a clean kitchen counter with a clean sink", + "pred": "a kitchen with a lot of clutter on the counter" + }, + { + "label": "a bike stuck inside the back of a train", + "pred": "a bike leaning against a wall next to a train" + }, + { + "label": "white toilet in a small tiled room rainbows on toilet", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "a bathroom scene with a dirty tub, toilet and sink", + "pred": "a bathroom with a toilet, sink, tub and window" + }, + { + "label": "two cats that are laying with each other", + "pred": "a cat and a cat laying on a wall" + }, + { + "label": "cars are causing a traffic jam", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a woman on her bike in her yard", + "pred": "a woman standing next to a red motorcycle" + }, + { + "label": "cats laying next to each other", + "pred": "a cat and a cat laying on a wall" + }, + { + "label": "a paved path stretches through the grass under the cloudy sky", + "pred": "a grassy area with a fire hydrant on the side of the road" + }, + { + "label": "two cats laying together on a bed or floor", + "pred": "a cat and a cat laying on a wall" + }, + { + "label": "a white toilet in a small tile walled bathroom", + "pred": "a toilet with a toilet paper dispenser next to it" + }, + { + "label": "a cat that is drinking out of the toilet", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a old television set is displaying an old computer game in front of two bookshelves", + "pred": "a television sitting on top of a bookshelf" + }, + { + "label": "two different color cats laying beside each other", + "pred": "a cat and a cat laying on a wall" + }, + { + "label": "a man is nearly sideways while racing a motorcycle around a track", + "pred": "a person riding a motorcycle on a race track" + }, + { + "label": "a bicycle being held by a bar on a train", + "pred": "a bike leaning against a wall next to a train" + }, + { + "label": "a kitchen with a sink, dishwasher and some boxes on the counter", + "pred": "a kitchen with a lot of clutter on the counter" + }, + { + "label": "a kitchen with a sink, dishwasher and boxes on the counter", + "pred": "a kitchen with a lot of clutter on the counter" + }, + { + "label": "a cat is propped up on the toilet seat", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "two cats in a room next to a white wall", + "pred": "a cat and a cat laying on a wall" + }, + { + "label": "bananas are in a bowl on a table", + "pred": "a wooden table with a bowl of fruit on top of it" + }, + { + "label": "a man with a helmet is riding a motorcycle on it's side", + "pred": "a person riding a motorcycle on a race track" + }, + { + "label": "an old and run down bathroom with dark red accent colors", + "pred": "a bathroom with a toilet, sink, tub and window" + }, + { + "label": "a cat is standing up to a white toilet", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a man sitting on a bench reading a newspaper", + "pred": "a man sitting on a bench talking on a cell phone" + }, + { + "label": "a very dirty looking rest room with poor lighting", + "pred": "a bathroom with a toilet, sink, tub and window" + }, + { + "label": "vehicles are coming down the road", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a busy bus station with ramp going downstairs", + "pred": "a crowded train station with people and bicycles" + }, + { + "label": "an empty kitchen in a house with a window in the corner", + "pred": "a kitchen with a stove a sink and a window" + }, + { + "label": "a woman walking a bike down a walkway in a train station", + "pred": "a crowded train station with people and bicycles" + }, + { + "label": "a white stove top oven sitting next to a window", + "pred": "a kitchen with a stove a sink and a window" + }, + { + "label": "adult with bicycle on ramp of commuter railway platform", + "pred": "a crowded train station with people and bicycles" + }, + { + "label": "kitchen with oven and plenty of cabinets home", + "pred": "a kitchen with a stove a sink and a window" + }, + { + "label": "a person holding the toilet seat while looing inside", + "pred": "a woman standing next to a toilet in a bathroom" + }, + { + "label": "a highway of traffic with several transit buses riding down it", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a cat pears into the bowl of a toilet", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a bathtub is filled with junk in a dirty bathroom", + "pred": "a bathroom with a toilet, sink, tub and window" + }, + { + "label": "a woman standing beside a toilet with the lid up", + "pred": "a woman standing next to a toilet in a bathroom" + }, + { + "label": "a small television in front of a bookshelf", + "pred": "a television sitting on top of a bookshelf" + }, + { + "label": "a black counter on a wood cabinet in a kitchen", + "pred": "a kitchen with a lot of clutter on the counter" + }, + { + "label": "a woman standing in front of a white toilet", + "pred": "a woman standing next to a toilet in a bathroom" + }, + { + "label": "a bike that is parked on a small bridge", + "pred": "a bicycle parked next to a fire hydrant" + }, + { + "label": "the roll of toilet paper beside the toilet is empty", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "people are waiting for a bus at the bus terminal", + "pred": "a crowded train station with people and bicycles" + }, + { + "label": "in the kitchen, there is a sink, stove, window and some cabinets", + "pred": "a kitchen with a stove a sink and a window" + }, + { + "label": "a white toilet sitting next to a white bath tub", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a narrow pathway leads to a residential area", + "pred": "a grassy field with a fire hydrant on top of it" + }, + { + "label": "a new kitchen cabinet with a sink being installed", + "pred": "a kitchen with a lot of clutter on the counter" + }, + { + "label": "a bicycle that is chained to a bridge railing", + "pred": "a bicycle parked next to a fire hydrant" + }, + { + "label": "an empty park and bench beneath a partially cloudy sky", + "pred": "a grassy field with a fire hydrant on top of it" + }, + { + "label": "a t.v. with bunny ears in front of a book shelf", + "pred": "a television sitting on top of a bookshelf" + }, + { + "label": "a cat sitting in a bathroom sink under a faucet", + "pred": "a cat that is laying down in a sink" + }, + { + "label": "a white toilet sits next to a bath tub", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a bathroom sink and mirror reflecting the shower and bathtub", + "pred": "a bathroom with two sinks and a large mirror" + }, + { + "label": "books shelves a television and a table", + "pred": "a television sitting on top of a bookshelf" + }, + { + "label": "silver cars parked around a fire hydrant", + "pred": "a car parked in a parking lot next to a parking meter" + }, + { + "label": "a bike parked up against a fence with a bag over it's seat", + "pred": "a bicycle parked next to a fire hydrant" + }, + { + "label": "a person kneels down to peer into a refrigerator", + "pred": "a person standing in front of a refrigerator" + }, + { + "label": "a sink that is in front of a mirror", + "pred": "a bathroom with two sinks and a large mirror" + }, + { + "label": "a cat has its front paws on a toilet seat", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "cars a yellow fire hydrant and some buildings", + "pred": "a car parked next to a parking meter" + }, + { + "label": "a contemporary bathroom that has a very large mirror", + "pred": "a bathroom with two sinks and a large mirror" + }, + { + "label": "a bathroom with a sink, tub, shower head and mirror", + "pred": "a bathroom with two sinks and a large mirror" + }, + { + "label": "a bike that is leaning against a rail", + "pred": "a bicycle parked next to a fire hydrant" + }, + { + "label": "a man is searching for food in a refrigerator", + "pred": "a person standing in front of a refrigerator" + }, + { + "label": "a cat sitting in a bathroom sink", + "pred": "a cat that is laying down in a sink" + }, + { + "label": "a game is displayed on a television in a living room", + "pred": "a television sitting on top of a bookshelf" + }, + { + "label": "a silver bicycle some water cars and buildings", + "pred": "a bicycle parked next to a fire hydrant" + }, + { + "label": "a chef is opening and looking into the fridge", + "pred": "a person standing in front of a refrigerator" + }, + { + "label": "a cop riding on the back of a motorcycle", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a man wearing an apron peering into the bottom of an open fridge", + "pred": "a person standing in front of a refrigerator" + }, + { + "label": "a small cat sits inside of a bathroom sink", + "pred": "a cat that is laying down in a sink" + }, + { + "label": "a series of photos showing a banana holder", + "pred": "a close up picture of a banana and a knife" + }, + { + "label": "cars parked in a parking lot", + "pred": "a car parked next to a parking meter" + }, + { + "label": "a man and woman standing over a dinner table with a cake", + "pred": "a man and woman cutting a cake together" + }, + { + "label": "the vanity features a very contemporary style motif", + "pred": "a bathroom with two sinks and a large mirror" + }, + { + "label": "a cement walkway is beside a grassy field near a residential area", + "pred": "a grassy field with a fire hydrant on it" + }, + { + "label": "a yellow cat sits in a small sink", + "pred": "a cat that is laying down in a sink" + }, + { + "label": "a cat sits in a bathroom sink while looking outward", + "pred": "a cat that is laying down in a sink" + }, + { + "label": "motor scooters are jammed into a small market street", + "pred": "a row of motorcycles parked on the side of a street" + }, + { + "label": "motorcycles are parked on a street", + "pred": "a row of motorcycles parked on the side of a street" + }, + { + "label": "very pretty horses with riders in the grass", + "pred": "a number of people riding horses on a track" + }, + { + "label": "a digitally manipulated image of cars on a highway at night in the city", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a narrow city street is filled with people and motorbikes", + "pred": "a row of motorcycles parked on the side of a street" + }, + { + "label": "a series of images showing a man holding a spoon over a lit candle, then serving a cake with it", + "pred": "a man and woman cutting a cake together" + }, + { + "label": "cars parked in a lot in a city", + "pred": "a car parked next to a parking meter" + }, + { + "label": "a white sink sitting next to a toilet", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a room with a sink and a toilet in it", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "people in a building doing different things", + "pred": "a crowded train station with people and bicycles" + }, + { + "label": "a kitchen with a window and bunch of kitchen furniture in it", + "pred": "a kitchen with a stove a sink and a window" + }, + { + "label": "white bathroom sinks sitting next to a toilet", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a row of motorcycles parked next to a building", + "pred": "a row of motorcycles parked on the side of a street" + }, + { + "label": "a white bathroom sink sitting under a bathroom mirror", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "car lights being capture in high speed at night", + "pred": "a city street at night with a traffic light" + }, + { + "label": "three men riding horses through a grassy field", + "pred": "a number of people riding horses on a track" + }, + { + "label": "a policeman on a police motorcycle in the street", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a bathroom with some orange walls, and a black and white counter", + "pred": "a bathroom with a sink, toilet and mirror" + }, + { + "label": "people are riding horses outside", + "pred": "a number of people riding horses on a track" + }, + { + "label": "a white toilet and tub in a bathroom", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a white kitchen sink filled with dishes and eating utensils", + "pred": "a sink with soap, toothbrushes, and toothpaste" + }, + { + "label": "a bathroom done in almost total white", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "traffic lights captured at sunset with slow shutter speed", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a bathroom with orange walls and black tile features", + "pred": "a bathroom with a sink, toilet and mirror" + }, + { + "label": "a compilation photo demonstrating how to use a banana storage container", + "pred": "a close up picture of a banana and a knife" + }, + { + "label": "a white toilet sitting next to a toilet paper roller", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a large jetliner flying over a dry grass field", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a white toilet sitting in a bathroom stall next to a tp dispenser", + "pred": "a white toilet sitting in a bathroom next to a shower" + }, + { + "label": "a police officer riding a wide white motorcycle", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a city street at night filled with blurry traffic", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a kitchen filled with a stove top oven and a refrigerator", + "pred": "a kitchen with a stove a sink and a dishwasher" + }, + { + "label": "four different photos of bananas and banana holders", + "pred": "a close up picture of a banana and a knife" + }, + { + "label": "a dog standing on the back of a brown car", + "pred": "a dog sitting on top of a pick up truck" + }, + { + "label": "bird cages hanging over a cobblestone alley full of people and motorcycles", + "pred": "a row of motorcycles parked on the side of a street" + }, + { + "label": "the living room and kitchen of a home", + "pred": "a living room filled with furniture and a kitchen" + }, + { + "label": "a bathroom with a sink and a bath tub", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "three horses and three jockeys are racing near a silver car", + "pred": "a number of people riding horses on a track" + }, + { + "label": "a bathroom area with a sink and tiled counter top", + "pred": "a bathroom with a sink, toilet and mirror" + }, + { + "label": "a police officer riding a bike in the street", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "the view of a bathroom with a wall mounted sink", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a police officer is riding a motorcycle down the street", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a bathroom with a glass shower, glass and wood vanity and a toilet", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a series of pictures showing a flambe cake", + "pred": "a man and woman cutting a cake together" + }, + { + "label": "two silver cars parked beside each other in parking spots", + "pred": "a car parked on the side of a road next to a parking meter" + }, + { + "label": "a clean and tidy living area with a kitchen and green accents", + "pred": "a living room filled with furniture and a kitchen" + }, + { + "label": "a small bathroom with a closet off to the side", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a small cramped bathroom slightly cluttered with dingy walls", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "three jockeys and three horses competing in a race against each other", + "pred": "a number of people riding horses on a track" + }, + { + "label": "a bathroom has yellow walls, brown floors, and a closet in it", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "living room area with pass bar leading to kitchen in residence", + "pred": "a living room filled with furniture and a kitchen" + }, + { + "label": "a time lapse image of a city street", + "pred": "a city street at night with a traffic light" + }, + { + "label": "a dog that is sitting on top of a brown car", + "pred": "a dog sitting on top of a pick up truck" + }, + { + "label": "a bathroom with brown tile and a bare pantry", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "two sinks in a kitchen with dirty dishes in them", + "pred": "a sink with soap, toothbrushes, and toothpaste" + }, + { + "label": "a bathroom sink beside a toilet and blue trashcan", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "an elaborate church with tiled floors and stained glass", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "within a bathroom with a sink", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a large chapel facing towards the alter with pews on either side and beautiful glass and marble adornments", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "a bathroom has a sink, toilet, and trash can in it", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "the people watch the man with the spoon over the candle", + "pred": "a man and woman cutting a cake together" + }, + { + "label": "a close up look down in a sink with some items", + "pred": "a sink with soap, toothbrushes, and toothpaste" + }, + { + "label": "a double sink vanity with mirror, shower stall and toilet in a bathroom", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "partially open door leading to a kitchen from a hallway", + "pred": "a door that is open in a bathroom" + }, + { + "label": "a dog with a bandana on the trunk of a car", + "pred": "a dog sitting on top of a pick up truck" + }, + { + "label": "a sink that has a few dishes and cleaning products", + "pred": "a sink with soap, toothbrushes, and toothpaste" + }, + { + "label": "a bathroom with a tiled counter, a sink and a soap dispenser", + "pred": "a bathroom with a sink, toilet and mirror" + }, + { + "label": "a commercial airplane above a dirt trail and crowd of people", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a white toilet sits in a bathroom, with the lid open", + "pred": "a white toilet sitting in a bathroom next to a shower" + }, + { + "label": "a green tinted bathroom consisting of a toilet and sink", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a bathroom sink with mirror are shown in this picture", + "pred": "a bathroom with a sink, toilet and mirror" + }, + { + "label": "a bathroom with the lights on visible through a slightly ajar door", + "pred": "a door that is open in a bathroom" + }, + { + "label": "a person that is putting fire on a cake", + "pred": "a man and woman cutting a cake together" + }, + { + "label": "the view of the door and kitchen area of an apartment from the living room", + "pred": "a living room filled with furniture and a kitchen" + }, + { + "label": "a church with pews running along the sides with a clear center isle", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "a double sink full of dirty cups and spoons", + "pred": "a sink with soap, toothbrushes, and toothpaste" + }, + { + "label": "a small kitchen with a living room and brightly colored pillows", + "pred": "a living room filled with furniture and a kitchen" + }, + { + "label": "modern bathroom with two sinks a toilet and a shower", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a small, white toilet with a toilet paper dispenser on the wall", + "pred": "a white toilet sitting in a bathroom next to a shower" + }, + { + "label": "a woman laying on a bathroom floor next to a toilet", + "pred": "a man laying on the floor next to a toilet" + }, + { + "label": "the bathroom door has three panels of frosted glass", + "pred": "a door that is open in a bathroom" + }, + { + "label": "a white sink sitting under a bathroom window", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a bathroom with sinks, a brass counter and decorative shower stall", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a dog sits in the basket of a bicycle leaning against bleachers", + "pred": "a bike parked next to a bench on a sidewalk" + }, + { + "label": "a toilet is placed within a shower stall", + "pred": "a white toilet sitting in a bathroom next to a shower" + }, + { + "label": "a bike parked in front of a parking meter", + "pred": "a bicycle parked next to a parking meter" + }, + { + "label": "a stainless steel kitchen sink on a black granite countertop", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a dog sitting in a basket mounted on the front of a blue bike", + "pred": "a bike parked next to a bench on a sidewalk" + }, + { + "label": "a pair of people sitting on a motorcycle, in the grass", + "pred": "two people standing next to each other on a motorcycle" + }, + { + "label": "multiple shots of a banana and a banana guard", + "pred": "a collage of photos of a banana peel and a person holding a knife" + }, + { + "label": "the open door to the bathroom is shown here", + "pred": "a door that is open in a bathroom" + }, + { + "label": "a dog with a bandana sitting on the trunk of a car", + "pred": "a dog sitting on top of a pick up truck" + }, + { + "label": "a white sink in a small, tiled bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "two people posing together outside with their motorcycle", + "pred": "two people standing next to each other on a motorcycle" + }, + { + "label": "a room with black and white tiled flooring", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "a toilet right next to a shower stall", + "pred": "a white toilet sitting in a bathroom next to a shower" + }, + { + "label": "a low flying airplane over a parked silver van", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "the picture shows the interior of a kitchen, with vintage refrigerator, stove, and other appliances", + "pred": "a kitchen with a stove a sink and a dishwasher" + }, + { + "label": "you can see into part of a bathroom with the linen closet on the outside", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a woman is sitting on the passenger seat of a motorcycle", + "pred": "two people standing next to each other on a motorcycle" + }, + { + "label": "a person is laying on their back on the floor of a bathroom", + "pred": "a man laying on the floor next to a toilet" + }, + { + "label": "a woman laying down on a bathroom floor by a trash can", + "pred": "a man laying on the floor next to a toilet" + }, + { + "label": "kitchen with many old appliances and many pots and pans", + "pred": "a kitchen with a stove a sink and a dishwasher" + }, + { + "label": "a playing flying over a van with multiple people around it", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "a man riding a motorcycle on the side of a road", + "pred": "a man riding a motorcycle down a dirt road" + }, + { + "label": "a middle-aged couple in motorcycle helmets show off their red motorcycle", + "pred": "two people standing next to each other on a motorcycle" + }, + { + "label": "a person riding a dirt bike", + "pred": "a man riding a dirt bike on a dirt road" + }, + { + "label": "the large room has wooden counters with chairs behind them on both sides", + "pred": "a large room with a large clock on the wall" + }, + { + "label": "a person laying on the ground in a bath room near a toilet", + "pred": "a man laying on the floor next to a toilet" + }, + { + "label": "outside shot of a restroom showing the door partially open", + "pred": "a door that is open in a bathroom" + }, + { + "label": "a kitchen with a sink on a counter top", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a dog waits in the basket of the bicycle", + "pred": "a bike parked next to a bench on a sidewalk" + }, + { + "label": "a bathroom with a white sink and a towel rack", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "the kitchen features an old fashioned center island", + "pred": "a kitchen with a stove a sink and a dishwasher" + }, + { + "label": "a person is laying on the bathroom floor in front of toilet", + "pred": "a man laying on the floor next to a toilet" + }, + { + "label": "a small kitten standing in a blue hat on top of a table", + "pred": "a cat that is sitting in a bowl" + }, + { + "label": "the various pictures are featuring bananas and holders", + "pred": "a collage of photos of a banana peel and a person holding a knife" + }, + { + "label": "dirt bike rider driving on dirt road fully geared", + "pred": "a man riding a dirt bike on a dirt road" + }, + { + "label": "a kitchen has an island, icebox, and sink in it", + "pred": "a kitchen with a stove a sink and a dishwasher" + }, + { + "label": "a kitchen with a sink near a window", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "the landing airplane comes in very close to the vehicle in the road", + "pred": "a large jetliner taking off from an airport runway" + }, + { + "label": "fish eye angle view of small kitchen with fire extinguisher at far end", + "pred": "a kitchen filled with furniture and appliances" + }, + { + "label": "a small bowl of fruit on a table", + "pred": "a bowl of fruit with strawberries on top of it" + }, + { + "label": "a number of horses in a field near a building", + "pred": "a herd of horses standing on top of a lush green hillside" + }, + { + "label": "a restaurant interior is taken through a fish-eye lens", + "pred": "a kitchen filled with furniture and appliances" + }, + { + "label": "a tub and a sink in a rest room", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a long brown and white room with a kitchen", + "pred": "a kitchen filled with furniture and appliances" + }, + { + "label": "a kitchen area with a large stainless steel sink", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a bathroom vanity with a lot of bottles on it", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a cat sitting inside of a plastic bucket", + "pred": "a cat that is sitting in a bowl" + }, + { + "label": "a dog wearing a bandanna and sitting on the trunk of a car", + "pred": "a dog sitting on top of a pick up truck" + }, + { + "label": "a bathroom with a tub and sink inside of it", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a guy riding a dirt bike on a course", + "pred": "a man riding a dirt bike on a dirt road" + }, + { + "label": "a clean hotel bathroom is pictured in this image", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a cat's image is blurred as he tumbles in a bowl near a food scale and pen and paper on a table", + "pred": "a cat that is sitting in a bowl" + }, + { + "label": "a white toilet sitting in a bathroom next to a sink", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a blue bicycle with a puppy in its basket is parked next to the bleacher steps", + "pred": "a bike parked next to a bench on a sidewalk" + }, + { + "label": "an empty kitchen sink underneath a window, on the counter", + "pred": "a kitchen with a sink and a counter top" + }, + { + "label": "a kitty cat jumping out of a blue bowl", + "pred": "a cat that is sitting in a bowl" + }, + { + "label": "strawberries and oranges sitting in a bowl", + "pred": "a bowl of fruit with strawberries on top of it" + }, + { + "label": "a sink a mirror a towel and some bottles", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "the ten speed bike is attached to the pole", + "pred": "a bicycle parked next to a parking meter" + }, + { + "label": "a blue bicycle with a black basket on the front of it", + "pred": "a bike parked next to a bench on a sidewalk" + }, + { + "label": "two horses standing around n a field near a brick building", + "pred": "a herd of horses standing on top of a lush green hillside" + }, + { + "label": "horses are standing in the grass near a fence and stone structure", + "pred": "a herd of horses standing on top of a lush green hillside" + }, + { + "label": "a bathroom has a shower and toilet in it", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a field full of horses standing on top of grass", + "pred": "a herd of horses standing on top of a lush green hillside" + }, + { + "label": "a shower curtain sits open in an empty and clean bathroom", + "pred": "a bathroom with a shower, sink, and tub" + }, + { + "label": "a bathroom has a window, mirror, towel rack, and sink in it", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a man sitting on his motorcycle on dirt just of a paved road", + "pred": "a man riding a motorcycle down a dirt road" + }, + { + "label": "a kitten climbing out of a blue bowl", + "pred": "a cat that is sitting in a bowl" + }, + { + "label": "a young man bending next to a toilet", + "pred": "a man sitting on a toilet in a bathroom" + }, + { + "label": "a bathroom view of a tub and sink wit mirrors", + "pred": "a bathroom with a shower, sink, and tub" + }, + { + "label": "a person in protective gear riding a dirtbike", + "pred": "a man riding a dirt bike on a dirt road" + }, + { + "label": "a row of seats inside of an airplane", + "pred": "a row of seats on a train with a sky background" + }, + { + "label": "a white toilet sitting up against a wall", + "pred": "a white toilet sitting in a bathroom next to a wall" + }, + { + "label": "nice and neat clean bathroom with shower in the corner", + "pred": "a bathroom with a shower, sink, and tub" + }, + { + "label": "cluttered bathroom with sink in foreground and towel on a rack", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "an older couple with helmets preparing to go on a motorcycle ride", + "pred": "two people standing next to each other on a motorcycle" + }, + { + "label": "a small bathroom with a white vanity", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "the interior of a dimly lit plane or train", + "pred": "a row of seats on a train with a sky background" + }, + { + "label": "a person is riding a dirt bike along a path", + "pred": "a man riding a dirt bike on a dirt road" + }, + { + "label": "two people stand near a bike wearing helmets", + "pred": "a person on a motorcycle with a helmet on" + }, + { + "label": "a bathroom door is open revealing a toilet, sink, and hanging cabinet", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a room with a fire extinguisher, mugs hanging from a shelf and several lights", + "pred": "a kitchen filled with furniture and appliances" + }, + { + "label": "view from outside of a pristine white bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a brown medium sized dog stares out of a window", + "pred": "a dog looking out the window of a car" + }, + { + "label": "an open-mouthed, leashed dog has its head outside of an unlocked car door window as a blurry park-like vista rushes by", + "pred": "a dog looking out the window of a car" + }, + { + "label": "a man is kneeling and holding on to a toilet", + "pred": "a man sitting on a toilet in a bathroom" + }, + { + "label": "a dog looking out the window of a car", + "pred": "a dog looking out the window of a car" + }, + { + "label": "the front of a clean motorcycle", + "pred": "a motorcycle parked on the side of the road" + }, + { + "label": "a line up of motorcycles parked on the side of the street", + "pred": "motorcycles parked next to each other" + }, + { + "label": "motorcycles are lined up on a sidewalk", + "pred": "motorcycles parked next to each other" + }, + { + "label": "a woman holding an umbrella and walking beside a bus", + "pred": "a man and woman walking down the street with an umbrella" + }, + { + "label": "a toilet in a public bathroom with the stall door open", + "pred": "a white toilet sitting in a bathroom next to a wall" + }, + { + "label": "giraffes inside of their habitat at a zoo", + "pred": "giraffes standing next to each other" + }, + { + "label": "a vanity stink area with a marble counter top and wooden cabinets", + "pred": "a sink in a bathroom with a wooden cabinet" + }, + { + "label": "the front end of a motorcycle in a parking lot", + "pred": "a motorcycle parked on the side of the road" + }, + { + "label": "a man attempting to lift up a toilet off the floor", + "pred": "a man sitting on a toilet in a bathroom" + }, + { + "label": "a very low toilet that is blue and white on a brown floor", + "pred": "a white toilet sitting on top of a tile floor" + }, + { + "label": "two giraffes taking turns eating leaves from a tree", + "pred": "giraffes standing next to each other" + }, + { + "label": "a man fixing a toilet in a black and white photo", + "pred": "a man sitting on a toilet in a bathroom" + }, + { + "label": "men stand next to other men as they sit on motorcycles", + "pred": "a large group of people riding on top of a boat" + }, + { + "label": "a man wears gloves as he installs a toilet", + "pred": "a man sitting on a toilet in a bathroom" + }, + { + "label": "a bathroom stall that is open and exposing a toilet", + "pred": "a white toilet sitting in a bathroom next to a wall" + }, + { + "label": "a green military jeep, and motorcycle on display", + "pred": "a model of a fighter jet on display in a museum" + }, + { + "label": "a jeep and a bike parked together", + "pred": "a model of a fighter jet on display in a museum" + }, + { + "label": "a row of motorcycles parked on the side of a street", + "pred": "motorcycles parked next to each other" + }, + { + "label": "display featuring military vehicles and large gun with huge mural", + "pred": "a model of a fighter jet on display in a museum" + }, + { + "label": "a dog in a small bathroom with an orange shower curtain", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a dog that is standing on a rug in a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "this kitchen has a black stove, stainless steel refrigerator and white cupboards", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "a toilet that is in a bathroom with the lid up", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "an airplane with wheels wheels barely off ground tilted slightly upward from the pavement to the blue sky", + "pred": "a horse walking along a sandy beach" + }, + { + "label": "a kitchen that has a red pot and a red towel", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "a small plane is taking off from a sandy beach", + "pred": "a horse walking along a sandy beach" + }, + { + "label": "small kitchen with cabinets and a microwave on the counter", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "a roll of toilet paper sits next to a toilet", + "pred": "a white toilet sitting in a bathroom next to a window" + }, + { + "label": "a white airplane is driving down the runway", + "pred": "a horse walking along a sandy beach" + }, + { + "label": "a small dug stands on a white rug in the bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a small kitchen with stainless steel appliances and white cupboards", + "pred": "a kitchen with a refrigerator, stove, sink and cabinets" + }, + { + "label": "the dog was standing in the bathroom near the sink and toilet", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a puppy sitting on the ground in a bathroom", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "large commercial cargo plane sits on tarmac next to radar equipment", + "pred": "a large jetliner sitting on top of an airport runway" + }, + { + "label": "small plane inches above flat surface near water", + "pred": "a horse walking along a sandy beach" + }, + { + "label": "an out of focus image of a toilet and toilet paper", + "pred": "a white toilet sitting next to a window" + }, + { + "label": "a large gun, a jeep, a motorcycle, and a warplane are in front of a war backdrop", + "pred": "a statue of a man on a motorcycle" + }, + { + "label": "a toilet sits next to a brick wall", + "pred": "a white toilet sitting next to a window" + }, + { + "label": "a blurry photo of a toilet seat in a bathroom", + "pred": "a white toilet sitting next to a window" + }, + { + "label": "a crowded kitchen that is cluttered and messy", + "pred": "a kitchen with white cabinets and white appliances" + }, + { + "label": "a street light through a rainy lens", + "pred": "a street scene with a traffic light and trees" + }, + { + "label": "a large jet airplane parked next to a domed tower", + "pred": "a white and blue jet airliner on a runway" + }, + { + "label": "a window with rain drops on it looking at a street light", + "pred": "a street scene with a traffic light and trees" + }, + { + "label": "a small kitchen is shown it has many appliances", + "pred": "a kitchen with a refrigerator and a sink" + }, + { + "label": "a woman holding a colorful striped umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a man drives a motorcycle down a road in the fog", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a cramped kitchen in pictured in this image", + "pred": "a kitchen with white cabinets and white appliances" + }, + { + "label": "woman standing in a crowd holding a colorful umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a plate of food placed next to a computer", + "pred": "a desk with a computer and a keyboard" + }, + { + "label": "the view on a street through a window on a rainy day", + "pred": "a street scene with a traffic light and trees" + }, + { + "label": "a small plane on the sand near a beach", + "pred": "a horse walking along a sandy beach" + }, + { + "label": "women that are sitting outside on a patio area and smoking cigarettes", + "pred": "a woman sitting on a bench using a laptop" + }, + { + "label": "a man riding a motorcycle through the rain", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a person that is on a motorcycle in the dark", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "the woman is sitting down with a laptop on her lap", + "pred": "a woman sitting on a bench using a laptop" + }, + { + "label": "a museum with an old military motorcycle and jeep on display", + "pred": "a statue of a man on a motorcycle" + }, + { + "label": "a girl stands with her umbrella in hand in a crowd", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "it is a kitchen filled with regular kitchen appliances", + "pred": "a kitchen with white cabinets and white appliances" + }, + { + "label": "a young woman with a colorful umbrella stands near a crowd", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "we are looking at a motorcycle riding through the fox", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "a person standing holding an open umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a world cargo 747 airline is taxiing down a runway", + "pred": "a white and blue jet airliner on a runway" + }, + { + "label": "a person riding a motorcycle on a a foggy road", + "pred": "a man riding on the back of a motorcycle" + }, + { + "label": "windshield with rain drops coming up to a stoplight", + "pred": "a street scene with a traffic light and trees" + }, + { + "label": "in a library children look on as costumed characters give a presentation", + "pred": "a statue of a man on a train" + }, + { + "label": "a jet plane and a large white sphere", + "pred": "a white and blue jet airliner on a runway" + }, + { + "label": "the window showing a traffic signal is covered in droplets of rainwater", + "pred": "a street scene with a traffic light and trees" + }, + { + "label": "two women sitting together in the back yard", + "pred": "a woman sitting on a bench using a laptop" + }, + { + "label": "an airplane is parked next to a domed tower", + "pred": "a white and blue jet airliner on a runway" + }, + { + "label": "a man dressed as an animal reading to adults and children in a library", + "pred": "a statue of a man on a train" + }, + { + "label": "a plate full of food in front of the laptop", + "pred": "a desk with a computer and a keyboard" + }, + { + "label": "two people sitting outside, one with a laptop", + "pred": "a woman sitting on a bench using a laptop" + }, + { + "label": "an office desk with computer equipment, calculator, and work papers holds an employee's working lunch of soup, rice, and vegetables", + "pred": "a desk with a computer and a keyboard" + }, + { + "label": "blue toilet in center of shot with tile floor", + "pred": "a toilet in a bathroom next to a sink" + }, + { + "label": "shot of kitchen with fridge alongside and stove near it", + "pred": "a kitchen with white cabinets and white appliances" + }, + { + "label": "the open doors looking into a subway from the station", + "pred": "the inside of a train car with doors open" + }, + { + "label": "a bathroom vanity with a his and hers sink", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "portioned lunch in front of laptop in nice workspace", + "pred": "a desk with a computer and a keyboard" + }, + { + "label": "a woman is sitting outside with a laptop", + "pred": "a woman sitting on a bench using a laptop" + }, + { + "label": "a kitchen with fish tanks and many many cabinets is shown", + "pred": "a kitchen with white cabinets and white appliances" + }, + { + "label": "a man reads a story to a group of children", + "pred": "a statue of a man on a train" + }, + { + "label": "a blue toilet in the corner of a bathroom", + "pred": "a toilet in a bathroom next to a sink" + }, + { + "label": "the two urinals are on the wall with color tiles", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "a man is wearing a costume and speaking to children", + "pred": "a statue of a man on a train" + }, + { + "label": "desktop picture with laptop and food container full of food", + "pred": "a desk with a computer and a keyboard" + }, + { + "label": "train stopped at the platform has it's doors opened on one side", + "pred": "the inside of a train car with doors open" + }, + { + "label": "a woman walking next to a man riding a pink bike", + "pred": "a woman walking down a street with a suitcase" + }, + { + "label": "two men dressed as animals entertaining a group of children", + "pred": "a statue of a man on a train" + }, + { + "label": "two urinals in a restroom with multicolored tile", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "bathroom sinks sitting underneath a mirror", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "a little powder room with a blue toilet, multicolored tile floor, and a colorful towel", + "pred": "a toilet in a bathroom next to a sink" + }, + { + "label": "a sleek modern bathroom design with square sinks", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "a blue toilet that is underneath a towel", + "pred": "a toilet in a bathroom next to a sink" + }, + { + "label": "clean and near modern appearing restroom with sinks and counter", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "the open doors of a public transport train", + "pred": "the inside of a train car with doors open" + }, + { + "label": "a bathroom, with two urinals in it", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "entry doors on both sides of the train making boarding easier", + "pred": "the inside of a train car with doors open" + }, + { + "label": "a train car is open and shows the door on the other side", + "pred": "the inside of a train car with doors open" + }, + { + "label": "a large cargo van parked in front of a smart car", + "pred": "a truck parked next to a parking meter" + }, + { + "label": "a blue toilet has the lid down in a bathroom", + "pred": "a toilet in a bathroom next to a trash can" + }, + { + "label": "a kitchen from across the room", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a person walks next to a person who is biking down a city street", + "pred": "a woman walking down a street with a suitcase" + }, + { + "label": "a small modern day house sits well lit", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a kitchen with hardwood floors and hardwood cabinets", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "two people walking down the street one of which is riding a pink bike", + "pred": "a woman walking down a street with a suitcase" + }, + { + "label": "the bicyclist is busy riding down the brick lined street", + "pred": "a woman walking down a street with a suitcase" + }, + { + "label": "two wall mounted urinals sitting next to trash cans", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "a bus and a smart car parked outside of a building", + "pred": "a truck parked next to a parking meter" + }, + { + "label": "a pair of people riding on a bike, down a street", + "pred": "a woman walking down a street with a suitcase" + }, + { + "label": "a parked van with a compact car behind it", + "pred": "a truck parked next to a parking meter" + }, + { + "label": "a single green motorcycle ina full parking lot", + "pred": "a green motorcycle parked in front of a parking meter" + }, + { + "label": "the smart car is parked directly behind the van", + "pred": "a truck parked next to a parking meter" + }, + { + "label": "light shines in a bathroom, with matching square sinks", + "pred": "a bathroom with two sinks and a mirror" + }, + { + "label": "a bathroom with the shower curtain open", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "the extremely small car is parked behind the bus", + "pred": "a truck parked next to a parking meter" + }, + { + "label": "small white bathroom with a black-and-white shower curtain", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a green motorcycle is in a large parking lot", + "pred": "a green motorcycle parked in front of a parking meter" + }, + { + "label": "two green and black motorcycles parked and some cars", + "pred": "a green motorcycle parked in front of a parking meter" + }, + { + "label": "a bathroom has a shower, sink, and toilet in it", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a tub and toilet in a small bathroom", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a bowl that has soup and a spoon in it", + "pred": "a spoon and a bowl of soup on a table" + }, + { + "label": "a green sports motorcycle parked by a pole in a car lot", + "pred": "a green motorcycle parked in front of a parking meter" + }, + { + "label": "a wood floor in a large home kitchen", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a kitchen with a wooden floor and a microwave oven", + "pred": "a kitchen with a stove a refrigerator and a microwave" + }, + { + "label": "a bathroom with a spa tub, sink, toilet, yellow stripes on the floor, and flower decorations on the walls", + "pred": "a bathroom with a toilet, sink, and mirror" + }, + { + "label": "a bathroom with a toilet and tub in it", + "pred": "a bathroom with a toilet, sink, and mirror" + }, + { + "label": "a sculpture of a toilet made from woven wood", + "pred": "a toilet sitting on top of a tiled floor" + }, + { + "label": "a big bowl with some food inside of it", + "pred": "a spoon and a bowl of soup on a table" + }, + { + "label": "a spoon resting in a bowl of vegetable soup", + "pred": "a spoon and a bowl of soup on a table" + }, + { + "label": "an odd looking toilet is against a wall", + "pred": "a toilet sitting on top of a tiled floor" + }, + { + "label": "a toilet that is made of material with sparkles", + "pred": "a toilet sitting on top of a tiled floor" + }, + { + "label": "a residential bathroom with sink, tub, and toilet setting in it", + "pred": "a bathroom with a toilet a sink and a shower" + }, + { + "label": "a glass of milk next to a round purple vase", + "pred": "a vase filled with water on top of a table" + }, + { + "label": "the toilet is covered in sparkles with a red object in front of it", + "pred": "a toilet sitting on top of a tiled floor" + }, + { + "label": "a spoon resting on the edge of a bowl of soup", + "pred": "a spoon and a bowl of soup on a table" + }, + { + "label": "a yellow bmw touring motorcycle parked in the street as people look on from behind a steel rail on the sidewalk", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a large orbital vase sits next to a candle on a table", + "pred": "a vase filled with water on top of a table" + }, + { + "label": "a glass of milk is sitting next to a vase with a reflection in it", + "pred": "a vase filled with water on top of a table" + }, + { + "label": "a public restroom with a toilet in the floor", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "two sinks that are in a kitchen near a window", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "two urinals near one another with trash cans", + "pred": "a bathroom with two urinals and a sink" + }, + { + "label": "a yellow motorcycle is parked on a road with many bystanders", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a toilet covered in glitter sitting inside of a room", + "pred": "a toilet sitting on top of a tiled floor" + }, + { + "label": "a white sink sitting beneath a window in a kitchen", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a bowl of vegetable and rice soup with a spoon in it", + "pred": "a spoon and a bowl of soup on a table" + }, + { + "label": "a large black ball sitting next to a glass of milk", + "pred": "a vase filled with water on top of a table" + }, + { + "label": "a motorcycle sits in a parking lot with other cars", + "pred": "a green motorcycle parked in front of a parking meter" + }, + { + "label": "a bright red light that is on the side of a snow covered street", + "pred": "a snow covered parking lot with a red light" + }, + { + "label": "feminine ambience style restroom with wide open feel", + "pred": "a bathroom with a toilet, sink, and mirror" + }, + { + "label": "a good luck plant is in a round vase", + "pred": "a vase filled with water on top of a table" + }, + { + "label": "a big airplane that is on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a bath room with a toilet and a bath tub", + "pred": "a bathroom with a toilet, sink, and mirror" + }, + { + "label": "a mirror that is hanging above a sink", + "pred": "a bathroom with a toilet, sink, and mirror" + }, + { + "label": "birds eating stuff off the ground", + "pred": "a small bird sitting on top of a piece of bread" + }, + { + "label": "a snow covered ramp in a parking garage", + "pred": "a snow covered parking lot with a red light" + }, + { + "label": "a pigeon with it's head inside of a donut", + "pred": "a small bird sitting on top of a piece of bread" + }, + { + "label": "a pigeon outside with his head in a piece of bread", + "pred": "a small bird sitting on top of a piece of bread" + }, + { + "label": "a kitchen with dark green cabinets and personal items on the windowsill", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a person sitting at a desk with a keyboard and monitor", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "a plane lands on a big wide run way", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a white bathroom is shown with a blue towel", + "pred": "a white toilet sitting next to a white sink" + }, + { + "label": "pans you would use to pee in", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a sink and a toilet that is in a small bathroom", + "pred": "a white toilet sitting next to a white sink" + }, + { + "label": "a woman at her desk sits intently and happy", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "a pigeon eating out of a bread bowl", + "pred": "a small bird sitting on top of a piece of bread" + }, + { + "label": "women that have a dog on a leash", + "pred": "a woman riding a bike with a dog on a leash" + }, + { + "label": "a low toilet some hand rails and toilet paper", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a toilet a cabinet a sink and a towel and toilet paper", + "pred": "a white toilet sitting next to a white sink" + }, + { + "label": "a light shines over a canopy on a snow covered sidewalk", + "pred": "a snow covered parking lot with a red light" + }, + { + "label": "a white toilet sitting next to a bathroom sink", + "pred": "a white toilet sitting next to a white sink" + }, + { + "label": "the bathroom has very white appliances in it", + "pred": "a white toilet sitting next to a white sink" + }, + { + "label": "a bird is eating bread on the pavement", + "pred": "a small bird sitting on top of a piece of bread" + }, + { + "label": "a sink and a black and white toilet", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a woman sitting at a desk in her work station", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "the woman is working on her computer at the desk", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "a big, yellow police motorcycle parked on a city street", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a plane is parked in a airport field", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "people that are standing in front of a island", + "pred": "a man and a woman standing in a kitchen" + }, + { + "label": "airplanes in the sky in formation", + "pred": "a fighter jet flying through a blue sky" + }, + { + "label": "a man that is sitting on a moped", + "pred": "a man sitting on a motorcycle with a box on top of it" + }, + { + "label": "a public restroom with a urinal and grab bars", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a person who is on a bike with a dog on a leash", + "pred": "a woman riding a bike with a dog on a leash" + }, + { + "label": "the entrance and exit to a snowy parking garage", + "pred": "a snow covered parking lot with a red light" + }, + { + "label": "a woman is sitting in front of a desk", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "a bright yellow police motorcycle parkd in the road", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "the jets are flying through the air in unison", + "pred": "a fighter jet flying through a blue sky" + }, + { + "label": "airplane parked at an airport in the city", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a plane that is sitting on a tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a small party of people eats some pizza on a table", + "pred": "a man and a woman standing in a kitchen" + }, + { + "label": "people with drinks standing around a kitchen island", + "pred": "a man and a woman standing in a kitchen" + }, + { + "label": "a person riding on a bicycle on the street in front of some cars", + "pred": "a man riding a bike down a street next to a car" + }, + { + "label": "a dog is pulling a woman on a bike", + "pred": "a woman riding a bike with a dog on a leash" + }, + { + "label": "a row of four trick navy planes flying in sequence", + "pred": "a fighter jet flying through a blue sky" + }, + { + "label": "it is snowing near a staircase and some walls with a light", + "pred": "a snow covered parking lot with a red light" + }, + { + "label": "the guy is travelling on his motorcycle outside", + "pred": "a man sitting on a motorcycle with a box on top of it" + }, + { + "label": "sinks and black and white designs in the bathroom", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "the cars are travelling behind the guy on the bicycle", + "pred": "a man riding a bike down a street next to a car" + }, + { + "label": "the planes are all flying in the same direction", + "pred": "a fighter jet flying through a blue sky" + }, + { + "label": "the woman is dipping food out of the pot to eat", + "pred": "a little girl standing in front of a stove with food on it" + }, + { + "label": "a kitchen with a sink and cabinets inside of it", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a burnt tea spoon sits on a wooden surface", + "pred": "a wooden spoon sitting on top of a wooden table" + }, + { + "label": "a public bathroom that has a toilet in the floor", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "people riding bikes next to a dog on a leash", + "pred": "a woman riding a bike with a dog on a leash" + }, + { + "label": "people standing in a kitchen having conversation", + "pred": "a man and a woman standing in a kitchen" + }, + { + "label": "a woman rides a bike in front of some cars", + "pred": "a man riding a bike down a street next to a car" + }, + { + "label": "a kitchen interior with olive green wooden cabinets", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a big spoon that is laying on a table", + "pred": "a wooden spoon sitting on top of a wooden table" + }, + { + "label": "a dog being led down the street, by a woman on a bike", + "pred": "a woman riding a bike with a dog on a leash" + }, + { + "label": "a cat that is standing on a toilet and next to a sink", + "pred": "a cat standing on top of a toilet in a bathroom" + }, + { + "label": "a coupe of people are standing around a small table", + "pred": "a man and a woman standing in a kitchen" + }, + { + "label": "a man riding around on a scooter with luggage on his lap", + "pred": "a man sitting on a motorcycle with a box on top of it" + }, + { + "label": "a cat with a look of annoyance standing on a toilet lid", + "pred": "a cat standing on top of a toilet in a bathroom" + }, + { + "label": "a woman on a bike rides on the street in front of cars", + "pred": "a man riding a bike down a street next to a car" + }, + { + "label": "a store with a variety of toilets of different colors and designs", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "the airplane is flying near a cloud in the sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a woman is riding her bike down the street in front of traffic", + "pred": "a man riding a bike down a street next to a car" + }, + { + "label": "an airplane is vintage and is on display", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "people are gathered to see the blue jet plane on display", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "blue-and-white jet airplane sitting at an airport runway", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "a jet fighter style airplane parked near a crowd of people who are walking about", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "cat standing on a toilet seat looking at the person taking the photo", + "pred": "a cat standing on top of a toilet in a bathroom" + }, + { + "label": "asian man on motorcycle with a large load of cardboard boxes", + "pred": "a man sitting on a motorcycle with a box on top of it" + }, + { + "label": "a yellow police motorcycle parked on a road near a large crowd behind a barrier", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a public bathroom with a hole in the floor", + "pred": "a bathroom with a toilet and a sink" + }, + { + "label": "a prop plane is flying through the sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a tabby cat standing on a closed toilet lid", + "pred": "a cat standing on top of a toilet in a bathroom" + }, + { + "label": "men climbing on board a bus that needs to be repaired", + "pred": "a man standing next to a white truck" + }, + { + "label": "a bathroom with three toilets and a big sink", + "pred": "a white toilet sitting in a bathroom next to a sink" + }, + { + "label": "a bicycle is standing next to a bed in a room", + "pred": "a bicycle parked next to a bed in a room" + }, + { + "label": "people that are biking down a road", + "pred": "a man riding a bike down a street" + }, + { + "label": "a woman stirring a pot on the stove while holding a plate", + "pred": "a little girl standing in front of a stove with food on it" + }, + { + "label": "a grey striped cat sitting on top of a toilet", + "pred": "a cat standing on top of a toilet in a bathroom" + }, + { + "label": "a formation of fighter jets flying by in the air", + "pred": "a fighter jet flying through a blue sky" + }, + { + "label": "a small air plane flying in the sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "an old corroded spoon setting on a bamboo mat", + "pred": "a wooden spoon sitting on top of a wooden table" + }, + { + "label": "a person riding a scooter with folded cardboard", + "pred": "a man sitting on a motorcycle with a box on top of it" + }, + { + "label": "a spoon on a wooden surface", + "pred": "a wooden spoon sitting on top of a wooden table" + }, + { + "label": "a man and a woman on a blue motorbike are picking up a piece of luggage from a man", + "pred": "a man and a woman are walking down the street" + }, + { + "label": "a woman preparing a plate of food in the kitchen", + "pred": "a little girl standing in front of a stove with food on it" + }, + { + "label": "couple of sheep relaxing in a fielder brown", + "pred": "two sheep standing next to each other on a field" + }, + { + "label": "a large jet airplane being loaded with cargo at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a woman preparing food from a pot in kitchen", + "pred": "a little girl standing in front of a stove with food on it" + }, + { + "label": "a bike with horses in background of the rider", + "pred": "a man riding a bike down a street" + }, + { + "label": "a airplane that is flying through the sky", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a large dark colored spoon sitting on a rack", + "pred": "a wooden spoon sitting on top of a wooden table" + }, + { + "label": "a woman is sitting on a scooter outside", + "pred": "a man and a woman are walking down the street" + }, + { + "label": "a black bike rests against a brown bed", + "pred": "a bicycle parked next to a bed in a room" + }, + { + "label": "a blue jet is sitting next to a sign", + "pred": "a small airplane sitting on top of an airport tarmac" + }, + { + "label": "a propeller plane that is flying in the air", + "pred": "a small airplane flying through a blue sky" + }, + { + "label": "a bicyclist waiting in the roadway until two horses pass", + "pred": "a man riding a bike down a street" + }, + { + "label": "people begin boarding a touring bus", + "pred": "a man standing next to a white truck" + }, + { + "label": "sheep are in a grassy field", + "pred": "two sheep standing next to each other on a field" + }, + { + "label": "a baby goat standing and a mother goat sitting in a field", + "pred": "two sheep standing next to each other on a field" + }, + { + "label": "a man is working on a hub cap on the ground", + "pred": "a man fixing a tire on a motorcycle" + }, + { + "label": "the living room is nicely cleaned and organized", + "pred": "a kitchen with a table, chairs and a refrigerator" + }, + { + "label": "a person riding a motorcycle in the reflection", + "pred": "a man and a woman are walking down the street" + }, + { + "label": "people are getting on a white bus", + "pred": "a man standing next to a white truck" + }, + { + "label": "a 747 jumbo passenger jet airplane parked at an airport terminal", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a biker stands on a path as horses follow", + "pred": "a man riding a bike down a street" + }, + { + "label": "guys are getting on a bus wearing blue", + "pred": "a man standing next to a white truck" + }, + { + "label": "a large air plane on a run way", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a large white sheep laying next to a baby sheep", + "pred": "two sheep standing next to each other on a field" + }, + { + "label": "a man and a woman riding on a motorcycle are getting ready to hit the road", + "pred": "a man and a woman are walking down the street" + }, + { + "label": "a man and woman on a scooter receiving baggage from a bellhop", + "pred": "a man and a woman are walking down the street" + }, + { + "label": "a black road bicycle leaning against a bed", + "pred": "a bicycle parked next to a bed in a room" + }, + { + "label": "a street corner with a brown and white building on it", + "pred": "a city street at night with a clock tower" + }, + { + "label": "white plane with red and blue detailing sits on tarmac", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a traffic light hanging from a wire above a street", + "pred": "a city street at night with a clock tower" + }, + { + "label": "a small black goat sits next to a white large goat", + "pred": "two sheep standing next to each other on a field" + }, + { + "label": "a bicyclist rests on a bike on an empty highway with two horses walking alone up the street", + "pred": "a man riding a bike down a street" + }, + { + "label": "an empty street with a building with a tower at the corner", + "pred": "a city street at night with a clock tower" + }, + { + "label": "people in blue jackets boarding a long white bus", + "pred": "a man standing next to a white truck" + }, + { + "label": "the bright lights are shining on the street", + "pred": "a city street at night with a clock tower" + }, + { + "label": "a neatly arranged room with two lights", + "pred": "a kitchen with a table, chairs and a refrigerator" + }, + { + "label": "a man sitting on the ground, fixing a motorcycle wheel", + "pred": "a man fixing a tire on a motorcycle" + }, + { + "label": "a library bus outside of an apartment building", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "an airline with airplanes from one world parked on the air field", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "the old, dilapidated bathroom has fallen into disrepair", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "the library bus has many colorful books painted on it", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a man in a green shirt working on a rim", + "pred": "a man fixing a tire on a motorcycle" + }, + { + "label": "a close up photo of suitcases and luggage", + "pred": "a pile of luggage sitting on top of each other" + }, + { + "label": "a woman standing over a pot holding a plate of food", + "pred": "a little girl standing in front of a stove with food on it" + }, + { + "label": "three bar stools in a kitchen with a black refrigerator", + "pred": "a kitchen with a table, chairs and a refrigerator" + }, + { + "label": "a tall church tower sitting on the corner of a street", + "pred": "a city street at night with a clock tower" + }, + { + "label": "a sleek modern kitchen with pale oak floors and open cabinets and an island with stools", + "pred": "a kitchen with a table, chairs and a refrigerator" + }, + { + "label": "a book mobile bus from a library sitting by a street side", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a man in a green shirt a rim and motorcycle", + "pred": "a man fixing a tire on a motorcycle" + }, + { + "label": "a dog in a a cage with a bed and bowl", + "pred": "a black and white dog sitting in a cage" + }, + { + "label": "motorcycles that are parked on the side of the street", + "pred": "motorcycles parked next to each other on a grassy field" + }, + { + "label": "an educational bus is parked in a residential area", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a cream colored bathroom is clean and empty", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a dog in a cage with a padded bed and water bowl", + "pred": "a black and white dog sitting in a cage" + }, + { + "label": "a counter stands in the center of a kitchen", + "pred": "a kitchen with a table, chairs and a refrigerator" + }, + { + "label": "a dog that is sitting down inside of a cage", + "pred": "a black and white dog sitting in a cage" + }, + { + "label": "a clean bathroom with tan walls and no curtain", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a library book mobile parked near a sidewalk", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a man fixing a tire for a motorcycle", + "pred": "a man fixing a tire on a motorcycle" + }, + { + "label": "a black and white dog is in a cage", + "pred": "a black and white dog sitting in a cage" + }, + { + "label": "a dog sitting inside a cage, in the dirt", + "pred": "a black and white dog sitting in a cage" + }, + { + "label": "suitcases sitting on a shelf with tags on them", + "pred": "a pile of luggage sitting on top of each other" + }, + { + "label": "motorcycles are lined up on the road", + "pred": "motorcycles parked next to each other on a grassy field" + }, + { + "label": "motorcycles are parked grass trees and flags", + "pred": "motorcycles parked next to each other on a grassy field" + }, + { + "label": "a dirty public restroom with sinks and mirrors", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "motorcycles are on display at a museum", + "pred": "a motorcycle that is on display in a museum" + }, + { + "label": "a black bicycle and a brown bed and a chair", + "pred": "a bicycle parked next to a bed in a room" + }, + { + "label": "a bathroom with a tub, sink, counter and a toilet in it", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a bicycle leaning against a bed in a bedroom", + "pred": "a bicycle parked next to a bed in a room" + }, + { + "label": "a motorcycle sitting amongst others at a convention", + "pred": "a motorcycle that is on display in a museum" + }, + { + "label": "vintage suitcases with price tags on their handles", + "pred": "a pile of luggage sitting on top of each other" + }, + { + "label": "a man taking a selfie while brushing his teeth and looking in the mirror", + "pred": "a man brushing his teeth in front of a mirror" + }, + { + "label": "the man is looking into a mirror holding a toothbrush", + "pred": "a man brushing his teeth in front of a mirror" + }, + { + "label": "a line of motorcycles parked in front of a row of flags", + "pred": "motorcycles parked next to each other on a grassy field" + }, + { + "label": "motorcycles are displayed in the store with descriptive signs posted near them", + "pred": "a motorcycle that is on display in a museum" + }, + { + "label": "the luggage suitcases with tags on them are stacked near one another", + "pred": "a pile of luggage sitting on top of each other" + }, + { + "label": "a man standing next to the kitchen counter", + "pred": "a man standing in a kitchen next to a stove" + }, + { + "label": "suitcases stacked on the shelf", + "pred": "a pile of luggage sitting on top of each other" + }, + { + "label": "a man with a toothbrush taking a selfie in the bathroom mirror", + "pred": "a man brushing his teeth in front of a mirror" + }, + { + "label": "a man with glasses looking at himself in the mirror with a toothbrush in his hand", + "pred": "a man brushing his teeth in front of a mirror" + }, + { + "label": "a shocked looking man in the mirror about to brush his teeth", + "pred": "a man brushing his teeth in front of a mirror" + }, + { + "label": "a clean bathroom with sink, toilet, and bathtub", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "sinks and soap dispensers in the bathroom", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a cat sitting on the floor watching television", + "pred": "a cat sitting on the floor in front of a television" + }, + { + "label": "a motorcycle parked in doors near other vehicles", + "pred": "a motorcycle that is on display in a museum" + }, + { + "label": "a cat siting on the ground watching a tv", + "pred": "a cat sitting on the floor in front of a television" + }, + { + "label": "a man standing in the kitchen", + "pred": "a man standing in a kitchen next to a stove" + }, + { + "label": "a row of motorcycles parked on the side of a road", + "pred": "motorcycles parked next to each other on a grassy field" + }, + { + "label": "a man posing for a picture, in a kitchen", + "pred": "a man standing in a kitchen next to a stove" + }, + { + "label": "an old very dirty bathroom with soap dispensers mounted to a tiled wall", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a person that is standing in a kitchen next to a icebox", + "pred": "a man standing in a kitchen next to a stove" + }, + { + "label": "a person standing near a stove in a kitchen", + "pred": "a man standing in a kitchen next to a stove" + }, + { + "label": "a bathroom with a vanity with sink, mirror, toilet and tub", + "pred": "a bathroom with a toilet a sink and a bath tub" + }, + { + "label": "a cat sitting on the floor watching a television", + "pred": "a cat sitting on the floor in front of a television" + }, + { + "label": "different bikes that are on display", + "pred": "a motorcycle that is on display in a museum" + }, + { + "label": "a cat sitting of a tv on top of a tv stand", + "pred": "a cat sitting on the floor in front of a television" + }, + { + "label": "sinks and soap dispensers hang from a wall", + "pred": "a bathroom with a sink and a toilet" + }, + { + "label": "a cat watches cars racing on a television", + "pred": "a cat sitting on the floor in front of a television" + }, + { + "label": "a cat sits on top of a toilet bowl", + "pred": "a cat sitting on top of a toilet in a bathroom" + }, + { + "label": "a kitchen with sunshine shining off of black and white tiles", + "pred": "a kitchen with a stove top oven and a sink" + }, + { + "label": "a banana placed on a phone on a table", + "pred": "a banana sitting on top of a desk next to a cell phone" + }, + { + "label": "a woman in a coat, sitting outside on a toilet", + "pred": "a woman is sitting on the side of the road" + }, + { + "label": "a white bathroom with all of the necessities", + "pred": "a bathroom with a sink, toilet and bathtub" + }, + { + "label": "a kitchen that has a bunch of cabinets in it", + "pred": "a kitchen with a refrigerator, sink, and dishwasher" + }, + { + "label": "a bathroom with a sink, towel rack and shower stall", + "pred": "a bathroom with a sink, mirror and bath tub" + }, + { + "label": "a busy street by large gothic style buildings", + "pred": "a bus is parked in front of a church" + }, + { + "label": "cars are parked on the street next to an old fire hydrant", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a police officer on a motorcycle drives through a parade", + "pred": "a police officer riding on the back of a motorcycle" + }, + { + "label": "a bathroom with toys and books for young children", + "pred": "a bathroom with a toilet and a bath tub" + }, + { + "label": "motorycles parked and lined up beside each other", + "pred": "motorcycles parked next to each other" + }, + { + "label": "an old shepherd with two dogs watching his sheep on a hill", + "pred": "a man standing in a field with a herd of sheep" + }, + { + "label": "an open bathroom door reveals a toilet, sink and wall cabinets", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a man taking a picture in a side car mirror with his cell phone", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "a microwave sits on top of a counter", + "pred": "a microwave sitting on top of a counter next to a brick wall" + }, + { + "label": "two girls are smoking cigarettes while one is playing on the laptop", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "a line of cars that are next to a large boat", + "pred": "cars parked on the tarmac at an airport" + }, + { + "label": "a train conductor standing next to a group of bikes", + "pred": "a man standing next to a row of parked bikes" + }, + { + "label": "a cat eating a dead bird on the ground", + "pred": "a cat that is eating some food out of the ground" + }, + { + "label": "a man wearing a red tie with his long sleeve shirt and pants", + "pred": "a man in a red shirt and tie standing next to a red couch" + }, + { + "label": "a room that has a fire extinguisher in it", + "pred": "a kitchen filled with furniture and appliances" + }, + { + "label": "a man riding on a motor scooter with a child in his lap", + "pred": "a man riding a motorcycle down a street next to a crowd of people" + }, + { + "label": "a woman brushing her teeth while taking a picture of herself", + "pred": "a woman brushing her teeth with a toothbrush" + }, + { + "label": "a toilet in a small room with a two-roll dispenser for toilet paper", + "pred": "a white toilet sitting next to a sink in a bathroom" + }, + { + "label": "a bathroom that features a bright tile wall and big mirrors", + "pred": "a bathroom with a sink, toilet, and mirror" + }, + { + "label": "a plane flies by next to some power lines", + "pred": "an airplane flying through the air with a sky background" + }, + { + "label": "the woman is pointing to a phone in a cover", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "horses are standing in a field outside of a crumbling castle", + "pred": "a herd of horses standing on top of a lush green hillside" + }, + { + "label": "a stuffed animal on a toilet seat", + "pred": "a toilet in a bathroom with the lid up" + }, + { + "label": "an extremely fancy desert", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "the inside of an airplane about half way back with television screens pulled down", + "pred": "a row of seats on a train with a sky background" + }, + { + "label": "a man holds an object as he looks at himself in the mirror", + "pred": "a woman taking a picture of herself in a bathroom mirror" + }, + { + "label": "a motorcyclist is pulled to the side of the road", + "pred": "a man riding a motorcycle down a dirt road" + }, + { + "label": "a bathroom with a sink, mirror, and toilet and other items", + "pred": "a bathroom with a sink and a mirror" + }, + { + "label": "a glass bowl contains peeled tangerines and cut strawberries", + "pred": "a bowl of fruit with strawberries on top of it" + }, + { + "label": "two birds pecking at the remnants of a burger at an outdoor restaurant", + "pred": "a chicken sandwich and french fries on a plate" + }, + { + "label": "a glass bowl of chopped oranges and strawberries", + "pred": "a bowl of fruit with strawberries on top of it" + }, + { + "label": "a man on a motorcycle resting on the side of a country road", + "pred": "a man riding a motorcycle down a dirt road" + }, + { + "label": "seats and some people standing in what appears to be an airplane", + "pred": "a row of seats on a train with a sky background" + }, + { + "label": "a bathroom has two sinks, a bathtub, and a shower", + "pred": "a bathroom with a shower, sink, and tub" + }, + { + "label": "two people in bmx gear in a redwood forest", + "pred": "a person on a motorcycle with a helmet on" + }, + { + "label": "the bathroom had a tub with two sinks and a separate shower", + "pred": "a bathroom with a shower, sink, and tub" + }, + { + "label": "two people wearing helmets while riding their motorcycles", + "pred": "a person on a motorcycle with a helmet on" + }, + { + "label": "a view from the seat of an airplane looking down rows of other seats", + "pred": "a row of seats on a train with a sky background" + }, + { + "label": "a man parked his motorcycle on the side of the road", + "pred": "a man riding a motorcycle down a dirt road" + }, + { + "label": "a toilet sits next to a bathtub in an empty bathroom", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "people are wearing helmets standing next to bikes in the woods", + "pred": "a person on a motorcycle with a helmet on" + }, + { + "label": "a bike locked to a parking meter", + "pred": "a bicycle parked next to a parking meter" + }, + { + "label": "a toilet a bathtub a rack bottles and a shower curtain", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a bowl sitting on a table filled with fruit", + "pred": "a bowl of fruit with strawberries on top of it" + }, + { + "label": "someone has parked a classic orange ten speed bicycle", + "pred": "a bicycle parked next to a parking meter" + }, + { + "label": "two people wearing helmets riding motor bikes in the woods", + "pred": "a person on a motorcycle with a helmet on" + }, + { + "label": "a bathroom with curtains that have floral decor on them", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a red bike with white handles is locked to a black pole on a sidewalk", + "pred": "a bicycle parked next to a parking meter" + }, + { + "label": "a tan bathroom with a toliet and a tub", + "pred": "a white toilet sitting next to a bath tub in a bathroom" + }, + { + "label": "a vase of flowers on a dining table", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "a giraffe stands alone outdoors at the zoo", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a gold colored pair of scissors cutting into a piece of bejeweled fabric with other bejeweled items", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a woman is standing at a crosswalk at a traffic intersection", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a giraffe's head in front of a hilly forest", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "giraffe from the zoo staring into the distance", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "girl sitting on a bench next to a fire hydrant that is being used", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a city crosswalk has a leaky fire hydrant on the street", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a long train sitting on a railroad track", + "pred": "a train yard filled with lots of train cars" + }, + { + "label": "a giraffe's head at a zoo with a mountain", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a hose hooked up to a fire hydrant on a busy street", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a pair of gold scissors laying on a bag of decorations", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a stop sign on a post at a public street", + "pred": "a street sign on a pole in front of a blue sky" + }, + { + "label": "a fire hydrant in a city has a hose attached", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a city street lit up in a night scene with cars", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "an urban scene of a roadway and skyscrapers at night", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a biilboard with a railcar in front of it", + "pred": "a fire hydrant with smoke coming out of it" + }, + { + "label": "a trainyard with several container cars on the tracks", + "pred": "a train yard filled with lots of train cars" + }, + { + "label": "a night time view of a city street", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "two tall giraffes graze on bushes in an open field", + "pred": "two giraffes are standing in a grassy field" + }, + { + "label": "giraffes are grazing in a grassy field", + "pred": "two giraffes are standing in a grassy field" + }, + { + "label": "a commuter train stops at a train station for passengers", + "pred": "a train that is stopped at a train station" + }, + { + "label": "the neck and head of a giraffe at the zoo", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "smoke is billowing over the large billboard sign", + "pred": "a fire hydrant with smoke coming out of it" + }, + { + "label": "a street sign in an asian language in front of a blue sky", + "pred": "a street sign on a pole in front of a blue sky" + }, + { + "label": "a long train filled with tanker cars on rail road tracks", + "pred": "a train yard filled with lots of train cars" + }, + { + "label": "two giraffes eat from a tree in the wild", + "pred": "two giraffes are standing in a grassy field" + }, + { + "label": "a stop sign at the end of the road", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a beautiful bird with brown wings, glides over the water", + "pred": "a bird flying over a body of water" + }, + { + "label": "passengers wait for a train as it approaches the platform", + "pred": "a train that is stopped at a train station" + }, + { + "label": "a pair of golden scissors are being used for crafts", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a pair of golden scissors next to multiple buttons", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a traffic sign has been vandalized to look like a scary face", + "pred": "a street sign on the side of the road" + }, + { + "label": "a snow covered road with a stop sign next to it", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "person waiting on a train platform near a train", + "pred": "a train that is stopped at a train station" + }, + { + "label": "a stop sign on a corner of a snowy road", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "fancy curved cutting gold colored scissors with decorative flowers", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "large bulletin board of a train and a group of people", + "pred": "a fire hydrant with smoke coming out of it" + }, + { + "label": "large black train system surrounded by trees and nature", + "pred": "a yellow school bus parked on the side of a road" + }, + { + "label": "a brown bird with a white head flys over a large body of water", + "pred": "a bird flying over a body of water" + }, + { + "label": "a double decker bus driving down the road", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a double-decker bus shown in a tropical area", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a sign stands in front of a building on the street", + "pred": "a street sign on the side of the road" + }, + { + "label": "a work crew repairs a stop light in the town", + "pred": "a truck driving down a street next to a traffic light" + }, + { + "label": "two giraffes browsing on a bush under a cloudy sky", + "pred": "two giraffes are standing in a grassy field" + }, + { + "label": "a train driving past mural of working men while billowing smoke", + "pred": "a fire hydrant with smoke coming out of it" + }, + { + "label": "a chinese sign with an image of a parent and child and a bicycle", + "pred": "a street sign on a pole in front of a blue sky" + }, + { + "label": "smoke from a passing train obscures a huge mural", + "pred": "a fire hydrant with smoke coming out of it" + }, + { + "label": "a street busy with cars and with a lot of street lights", + "pred": "a truck driving down a street next to a traffic light" + }, + { + "label": "the brown eagle is soaring over the ocean", + "pred": "a bird flying over a body of water" + }, + { + "label": "giraffes are grazing in a field of grass", + "pred": "two giraffes are standing in a grassy field" + }, + { + "label": "a blue sign is on a pole with another sign that has text", + "pred": "a street sign on a pole in front of a blue sky" + }, + { + "label": "a service truck with lift under stop lights", + "pred": "a truck driving down a street next to a traffic light" + }, + { + "label": "a train rounding a corner on the tracks", + "pred": "a yellow school bus parked on the side of a road" + }, + { + "label": "a little boy in a yellow shirt feeding a giraffe", + "pred": "a young girl feeding a giraffe at a zoo" + }, + { + "label": "a train going around a curve near the forest", + "pred": "a yellow school bus parked on the side of a road" + }, + { + "label": "traffic lights being repaired and/or replaced by a man", + "pred": "a truck driving down a street next to a traffic light" + }, + { + "label": "a sign with a red circle is sitting next to a curb", + "pred": "a street sign on the side of the road" + }, + { + "label": "a stop sign is standing next to a road in the snow", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a sign with a face next to a side walk on a street", + "pred": "a street sign on the side of the road" + }, + { + "label": "a busy intersection with cars waiting for a red light", + "pred": "a truck driving down a street next to a traffic light" + }, + { + "label": "a double decker bus driving down a city street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "an eagle flies low over the open water", + "pred": "a bird flying over a body of water" + }, + { + "label": "a giraffe standing by a pair of skinny trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a man sitting alone on a park bench in a park", + "pred": "a man sitting on a bench in a park" + }, + { + "label": "a person in the process of sheering a woolen animal", + "pred": "sheep laying on top of a grass covered field" + }, + { + "label": "kids feeding a giraffe at a zoo with plants", + "pred": "a young girl feeding a giraffe at a zoo" + }, + { + "label": "the streamlined view of railroad cars traveling along the track", + "pred": "a yellow school bus parked on the side of a road" + }, + { + "label": "a fleet of ships docked on a sandy beach", + "pred": "people standing on top of a beach next to a body of water" + }, + { + "label": "a giraffe hangs its neck low in a large field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a train riding along the tracks through the woods", + "pred": "a yellow school bus parked on the side of a road" + }, + { + "label": "two trains parked at a train station as passenger wait to board them", + "pred": "a blue and yellow train parked at a train station" + }, + { + "label": "a sign on the side of a street", + "pred": "a street sign on the side of the road" + }, + { + "label": "a bird swooping down to the water to catch food", + "pred": "a bird flying over a body of water" + }, + { + "label": "an icy snow covered road overlooking a body of water", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "an old man reads a book on a bench", + "pred": "a man sitting on a bench in a park" + }, + { + "label": "a boy and a girl feeding the giraffe at the zoo", + "pred": "a young girl feeding a giraffe at a zoo" + }, + { + "label": "a double decker red white and purple bus", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a street during the night", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a side view of a train by the street", + "pred": "a train that is stopped at a train station" + }, + { + "label": "a train that is going through a city", + "pred": "a train on a track in a city" + }, + { + "label": "a giraffe and some deer like animals at a wildlife park", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "wooden boats docked on the ocean beach", + "pred": "people standing on top of a beach next to a body of water" + }, + { + "label": "an old man sitting on a bench in a public park", + "pred": "a man sitting on a bench in a park" + }, + { + "label": "a giraffe and other animals in a grassy pasture", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a train riding along a group of train tracks", + "pred": "a train on a track in a city" + }, + { + "label": "boats are lined up on the sea shore", + "pred": "people standing on top of a beach next to a body of water" + }, + { + "label": "a train turns on the tracks in a different direction", + "pred": "a train on a track in a city" + }, + { + "label": "a train that is going over a bridge overlooking the city", + "pred": "a train on a track in a city" + }, + { + "label": "a train stopped at a train station with individuals walking alongside the train", + "pred": "a blue and yellow train parked at a train station" + }, + { + "label": "a car is parked on the side of the street in the rain", + "pred": "a cat standing on the side of a street next to a car" + }, + { + "label": "a person sheering the wool from a sheep", + "pred": "sheep laying on top of a grass covered field" + }, + { + "label": "an old man reading a book on a park bench", + "pred": "a man sitting on a bench in a park" + }, + { + "label": "a car parked in front of a building and fire hydrant in the rain", + "pred": "a cat standing on the side of a street next to a car" + }, + { + "label": "two giraffes and several other large animals roam a tropical zoo paddock", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a harbor with boats washed up in the low tide", + "pred": "people standing on top of a beach next to a body of water" + }, + { + "label": "two giraffe's and a water buffalo in a zoo type environment", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "train compartments parked along the train tracks", + "pred": "a train yard filled with lots of train cars" + }, + { + "label": "a double decker tour bus with the logo \"sbs transit\"", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a city sign in the night time with cars passing underneath", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a spotted kitten sitting on a wooden bench", + "pred": "a cat sitting on top of a wooden bench" + }, + { + "label": "a car is seen through the rain soaked window", + "pred": "a cat standing on the side of a street next to a car" + }, + { + "label": "an elevated subway train in a major city on a sunny day", + "pred": "a train on a track in a city" + }, + { + "label": "a giraffe extends its tongue to drink water", + "pred": "a giraffe standing on top of a body of water" + }, + { + "label": "five boats sitting on the beach by the ocean", + "pred": "people standing on top of a beach next to a body of water" + }, + { + "label": "a train at the station for people to board", + "pred": "a blue and yellow train parked at a train station" + }, + { + "label": "a sheep's wool is being shaved off with shears", + "pred": "sheep laying on top of a grass covered field" + }, + { + "label": "a white car parked on a street in the rain", + "pred": "a cat standing on the side of a street next to a car" + }, + { + "label": "two giraffe are standing and the other animals are walking", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a herd of sheep grazing on a green grass covered piece of land next to a forest", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "man sitting on a bench in the park", + "pred": "a man sitting on a bench in a park" + }, + { + "label": "a small kitten sitting on a slatted bench", + "pred": "a cat sitting on top of a wooden bench" + }, + { + "label": "a boy holds out a leaf to a giraffe", + "pred": "a young girl feeding a giraffe at a zoo" + }, + { + "label": "an adult sheep is getting shorn by a male farmer", + "pred": "sheep laying on top of a grass covered field" + }, + { + "label": "a city traffic signal and street at night", + "pred": "a street filled with lots of traffic at night" + }, + { + "label": "a person sheering the wool off a sheep", + "pred": "sheep laying on top of a grass covered field" + }, + { + "label": "two tall giraffes standing next to each other by trees", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a colorful but blurry street scene at night features a car driving through an intersection", + "pred": "a street filled with lots of traffic at night" + }, + { + "label": "a giraffe leaning down to take a drink of water", + "pred": "a giraffe standing on top of a body of water" + }, + { + "label": "a red sign notifying drivers that there is no parking allowed at any time", + "pred": "a red and white sign sitting on the side of a road" + }, + { + "label": "two giraffes nudging over a pole in a forested area", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "two giraffes looking at the other animals in the enclosure", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a traffic light on a street in a dark city", + "pred": "a street filled with lots of traffic at night" + }, + { + "label": "giraffes stand around in the wild animal park", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "the rain is pouring on the white car on the street", + "pred": "a cat standing on the side of a street next to a car" + }, + { + "label": "a red blue and yellow train and some people on a platform", + "pred": "a blue and yellow train parked at a train station" + }, + { + "label": "small kitten sitting on a small wooden table", + "pred": "a cat sitting on top of a wooden bench" + }, + { + "label": "a flock of sheep, some numbered grazing in a grass field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a sign in a parking lot next a building", + "pred": "a red and white sign sitting on the side of a road" + }, + { + "label": "two giraffes eat from a tall food post in their enclosure", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "small kitten sitting on top of a wooden crate", + "pred": "a cat sitting on top of a wooden bench" + }, + { + "label": "a small kitten sitting on a pallet of wood looking back", + "pred": "a cat sitting on top of a wooden bench" + }, + { + "label": "giraffes standing in a wooded area, touching heads", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a no parking sign at some sort of shopping mall", + "pred": "a red and white sign sitting on the side of a road" + }, + { + "label": "two giraffe standing in a field next to trees", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a cat sprawled out over the top of a laptop computer keyboard", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a giraffe next to a stone fence staring off into the distance", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a building near the sidewalk with a yellow curb and a no parking sign next to it", + "pred": "a red and white sign sitting on the side of a road" + }, + { + "label": "a passenger train pulls into a train station", + "pred": "a blue and yellow train parked at a train station" + }, + { + "label": "a giraffe standing in a pen next to a tree trunk", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a street sign on the side of a lot next to a building", + "pred": "a red and white sign sitting on the side of a road" + }, + { + "label": "sheep grazing on grass in a field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a giraffes neck and face", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a cat lying a top on the desk on a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "street signs on a pole painted in the colors of the italian flag", + "pred": "a number of street signs on a brick building" + }, + { + "label": "a train filled with passengers traveling down railroad tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "two street signs side by side on a street corner", + "pred": "a number of street signs on a brick building" + }, + { + "label": "a dog is tied to a fire hydrant", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a man sitting on the park bench in the forest", + "pred": "a man sitting on a bench in the woods" + }, + { + "label": "a very blurry picture of an intersection taken from a moving car", + "pred": "a street filled with lots of traffic at night" + }, + { + "label": "a giraffe has it's tongue out drinking water", + "pred": "a giraffe standing on top of a body of water" + }, + { + "label": "a railroad train that has just gone under an overpass", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "an intersection with oncoming traffic and blurry stop lights", + "pred": "a street filled with lots of traffic at night" + }, + { + "label": "a street corner sign is on the corner in little italy", + "pred": "a number of street signs on a brick building" + }, + { + "label": "a black and white cat laying across the keyboard of a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a flock of sheep eating grass in a field", + "pred": "a herd of sheep grazing in a field" + }, + { + "label": "a tog is leashed to a post on the sidewalk", + "pred": "a teddy bear sitting on a trash can" + }, + { + "label": "a man sitting on a bench in a forest area", + "pred": "a man sitting on a bench in the woods" + }, + { + "label": "street signs with two street names showing little italy district", + "pred": "a number of street signs on a brick building" + }, + { + "label": "train tracks with a train on the far tracks", + "pred": "a train traveling down tracks next to a forest" + }, + { + "label": "a giraffe lapping up water with tongue near a pond", + "pred": "a giraffe that is standing in the water" + }, + { + "label": "a train is rounding the train tracks next to the trees", + "pred": "a train traveling down tracks next to a forest" + }, + { + "label": "a black poodle is leashed to a fire hydrant", + "pred": "a teddy bear sitting on a trash can" + }, + { + "label": "a black-spotted cat lying on top of a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a herd of sheep grazing in a field", + "pred": "a herd of sheep grazing in a field" + }, + { + "label": "a giraffe drinking water with a long tongue", + "pred": "a giraffe that is standing in the water" + }, + { + "label": "a woman with suitcases waiting for a train", + "pred": "a woman standing next to luggage at an airport" + }, + { + "label": "a adult giraffe walking alone in a field", + "pred": "a giraffe that is standing in the grass" + }, + { + "label": "a man sitting on a bench in a wood", + "pred": "a man sitting on a bench in the woods" + }, + { + "label": "a cat is laying on top of a laptop computer", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a giraffe is standing near a rock with green bushes", + "pred": "a giraffe that is standing in the grass" + }, + { + "label": "a woman stands next to her luggage on a platform", + "pred": "a woman standing next to luggage at an airport" + }, + { + "label": "a bird sitting perched on a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "street art painted on the wall in an asian country", + "pred": "a street with graffiti on the side of it" + }, + { + "label": "a bird resting outside of a boat window", + "pred": "a bird is perched on a window ledge" + }, + { + "label": "a train traveling through the countryside next to a dirt road", + "pred": "a green and white train traveling down train tracks" + }, + { + "label": "blue and yellow train that is heading down the tracks", + "pred": "a train traveling down tracks next to a forest" + }, + { + "label": "a woman and her child sitting nest to a man on a park bench", + "pred": "a man and woman sitting on a park bench" + }, + { + "label": "a man sits on a bench underneath trees", + "pred": "a man sitting on a bench in the woods" + }, + { + "label": "street signs are displayed next to a road", + "pred": "a stop sign at an intersection in a city" + }, + { + "label": "a man sitting on a bench surrounded by trees", + "pred": "a man sitting on a bench in the woods" + }, + { + "label": "a woman with her luggage at a train station", + "pred": "a woman standing next to luggage at an airport" + }, + { + "label": "a car is waiting at a red stop light at night", + "pred": "a stop sign at an intersection in a city" + }, + { + "label": "a bird sits on a branch of a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "street signs show the intersection of two city streets", + "pred": "a number of street signs on a brick building" + }, + { + "label": "a woman walking past a shop filled with merchandise", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a bird sits by a window on the water", + "pred": "a bird is perched on a window ledge" + }, + { + "label": "a bird is outside of a window on a boat", + "pred": "a bird is perched on a window ledge" + }, + { + "label": "a dark colored poodle is tied to a post on a sidewalk", + "pred": "a teddy bear sitting on a trash can" + }, + { + "label": "a bird sitting on the window sill of a boat floating on a lake", + "pred": "a bird is perched on a window ledge" + }, + { + "label": "a speed detector displays the current speed of a car", + "pred": "a stop sign at an intersection in a city" + }, + { + "label": "a giraffe behind a fence eating grass from a feeder", + "pred": "a giraffe standing next to a metal fence" + }, + { + "label": "a woman leaning against a store front with an umbrella", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "an elderly woman sitting on the bench resting", + "pred": "a man in a suit sitting on a horse" + }, + { + "label": "the view from a city street of a building covered with a painted mural", + "pred": "a street with graffiti on the side of it" + }, + { + "label": "cars speeding buy a sign that says 55", + "pred": "a stop sign at an intersection in a city" + }, + { + "label": "a woman stands beside her luggage at an airport", + "pred": "a woman standing next to luggage at an airport" + }, + { + "label": "the woman with the umbrella is looking at the passerbys", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a hawk perches on a tree branch in a forest", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "people browse the shops while walking on a busy street", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "an old woman leans on her back while sitting on an ornate bench", + "pred": "a man in a suit sitting on a horse" + }, + { + "label": "a train heads down some tracks near a railroad crossing sign and a dirt road", + "pred": "a green and white train traveling down train tracks" + }, + { + "label": "a green white engine is pulling some gray train cars", + "pred": "a green and white train traveling down train tracks" + }, + { + "label": "a construction wall that has been used as a billboard", + "pred": "a street with graffiti on the side of it" + }, + { + "label": "a giraffe eats leaves from a basket in an enclosure", + "pred": "a giraffe standing next to a metal fence" + }, + { + "label": "a traffic light over a street with a sign that reads k", + "pred": "a traffic light sitting on top of a pole" + }, + { + "label": "an intersection with many traffic lights and a traffic camera visible", + "pred": "a traffic light sitting on top of a pole" + }, + { + "label": "a green train is going down the tracks in a rural setting", + "pred": "a green and white train traveling down train tracks" + }, + { + "label": "a monorail is going down the track with people on it", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "people standing with their luggage on a train platform", + "pred": "a woman standing next to luggage at an airport" + }, + { + "label": "a woman holding an umbrella stands as people walk past", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a stoplight with a speed radar on top", + "pred": "a stop sign at an intersection in a city" + }, + { + "label": "four children at an outdoor party wearing festive hats", + "pred": "three children sitting at a table eating cake" + }, + { + "label": "a bird is hanging onto the ledge outside the window", + "pred": "a bird is perched on a window ledge" + }, + { + "label": "four children sit eating birthday cake at a picnic table", + "pred": "three children sitting at a table eating cake" + }, + { + "label": "a large mural on a building at an intersection", + "pred": "a street with graffiti on the side of it" + }, + { + "label": "a bird on a limb of a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a flock of swans swims in a bay", + "pred": "a body of water filled with lots of birds" + }, + { + "label": "a passenger train drives passed a station on a cloudy day", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a tall clock tower with a statue on top", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a couple and their small baby girl are sitting on a bench", + "pred": "a man and a woman sitting on a park bench" + }, + { + "label": "a yellow and brown fire hydrant on the side of the road", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "storm clouds over a traffic interception probably taken while someone was waiting for red light to turn green", + "pred": "a traffic light sitting on top of a pole" + }, + { + "label": "a giraffe at a zoo eating some grass", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "the children are seated outside at the picnic table to eat the birthday party food", + "pred": "three children sitting at a table with plates of food" + }, + { + "label": "a man and woman sit on benches with a small child", + "pred": "a man and a woman sitting on a park bench" + }, + { + "label": "a bird on a limb surrounded by folliage", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a baby sitting between a lady and a man on a bench under a tree", + "pred": "a man and a woman sitting on a park bench" + }, + { + "label": "a flock of geese are sitting on the water with boats", + "pred": "a flock of seagulls floating on top of a body of water" + }, + { + "label": "a woman is sitting on a bench near a fence", + "pred": "a man in a suit sitting on a horse" + }, + { + "label": "white swans swimming on a lake", + "pred": "a flock of seagulls floating on top of a body of water" + }, + { + "label": "older woman in dress sitting on a park bench", + "pred": "a man in a suit sitting on a horse" + }, + { + "label": "a broken fire hydrant leaking water on the sidewalk", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a clock in the top of a tall tower", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "white ducks on the water in front of boats", + "pred": "a flock of seagulls floating on top of a body of water" + }, + { + "label": "small pieces of cake have been arranged on a plate", + "pred": "a cake on a plate on a table" + }, + { + "label": "a large clock tower with a gargoyle atop sits in front of a clear blue sky", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "white swans swimming in a harbor with docked boats", + "pred": "a flock of seagulls floating on top of a body of water" + }, + { + "label": "children at a birthday party sitting at a picnic table", + "pred": "three children sitting at a table with plates of food" + }, + { + "label": "a broken fire hydrant on a city sidewalk", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "an intersection with different poles filled with street lights and a camera", + "pred": "a traffic light sitting on top of a pole" + }, + { + "label": "a street corner is boarded by painted walls", + "pred": "a street scene with graffiti on the side of the street" + }, + { + "label": "a large clock tower with a statue on the top", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a foot wearing a pointy pink flat shoe rested upon a bench", + "pred": "a person's feet with a pair of pink shoes" + }, + { + "label": "a brown dog with a collar sniffing a red fire hydrant", + "pred": "a brown and white dog standing next to a fire hydrant" + }, + { + "label": "children gather around the table with party hats on", + "pred": "three children sitting at a table with plates of food" + }, + { + "label": "a giraffe behind a fences reaches for the hay in the basket", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "a woman showing off her pink pointy-toed heels", + "pred": "a person's feet with a pair of pink shoes" + }, + { + "label": "traffic lights and camera under a stormy sky", + "pred": "a traffic light sitting on top of a pole" + }, + { + "label": "a herd of giraffe walking along a grassy tree covered plain", + "pred": "a herd of giraffe standing on top of a dry grass covered field" + }, + { + "label": "clock tower with a bronze statue on top on a sunny day", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a dog sniffs the base of a fire hydrant", + "pred": "a brown and white dog standing next to a fire hydrant" + }, + { + "label": "a dog sniffing a red fire hydrant near grass", + "pred": "a brown and white dog standing next to a fire hydrant" + }, + { + "label": "a giraffe facing the camera as its photo is taken", + "pred": "a giraffe eating a piece of fruit from a tree" + }, + { + "label": "a woman wearing blue jeans with a sexy foot in a pink shoe", + "pred": "a person's feet with a pair of pink shoes" + }, + { + "label": "an old dog sniffs a red fire hydrant", + "pred": "a brown and white dog standing next to a fire hydrant" + }, + { + "label": "an adorable grey poodle standing next to a fire hydrant", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a bright pink shoe on a blue and green background", + "pred": "a person's feet with a pair of pink shoes" + }, + { + "label": "chocolate dessert bars covered in frosting and sprinkles", + "pred": "a cake on a plate on a table" + }, + { + "label": "a short fire hydrand sitting by the curb of a weedy street", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a train is on the tracks near some trees", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a dog standing next to a fire hydrant on a green grass covered park", + "pred": "a brown and white dog standing next to a fire hydrant" + }, + { + "label": "an old woman sitting on a bench next to a fence", + "pred": "a man in a suit sitting on a horse" + }, + { + "label": "a person feeding sheep behind a white picket fence", + "pred": "sheep standing next to a fence" + }, + { + "label": "a couple sitting on a bench with a little girl", + "pred": "a man and a woman sitting on a park bench" + }, + { + "label": "a giraffe standing on a fence to eat some grass", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "two giraffes are eating a leafy branch together", + "pred": "giraffe standing next to each other" + }, + { + "label": "a three car passenger train on the train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bused fire hydrant sitting on top of a sidewalk next to a street", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a man carrying a sign walking past buses", + "pred": "a man in a suit standing in front of a bus" + }, + { + "label": "two zebras eat a piece of a plant", + "pred": "giraffe standing next to each other" + }, + { + "label": "a lady wearing a pink shoe and blue jeans", + "pred": "a person's feet with a pair of pink shoes" + }, + { + "label": "two giraffes eating some crop during the day", + "pred": "giraffe standing next to each other" + }, + { + "label": "sheep with their front hooves on a fence", + "pred": "sheep standing next to a fence" + }, + { + "label": "a man holding a sign next to parked city buses", + "pred": "a man in a suit standing in front of a bus" + }, + { + "label": "a freight train with a green engine coming down the tracks", + "pred": "a green and white train traveling down train tracks" + }, + { + "label": "two large buses traveling down a busy city street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a large chicken walking through a grass covered landscape", + "pred": "a black and white cow is standing in the grass" + }, + { + "label": "ice explorer bus on a road near mountains", + "pred": "a red and white bus driving down a road" + }, + { + "label": "chickens looking for food in the grass", + "pred": "a black and white cow is standing in the grass" + }, + { + "label": "a man in black carrying a sheep on his shoulders", + "pred": "a man holding a sheep in his right hand" + }, + { + "label": "two black birds are swimming in some water", + "pred": "two swans swimming in a body of water" + }, + { + "label": "a canadian sightseeing bus with a maple leaf advertising on the", + "pred": "a red and white bus driving down a road" + }, + { + "label": "a street sign shows directions to highways and towns", + "pred": "a street sign in front of a large building" + }, + { + "label": "lambs leaning up and over a wooden post towards a red cup held by a man", + "pred": "sheep standing next to a fence" + }, + { + "label": "cars a red bus and a blue bus", + "pred": "a double decker bus driving down a street" + }, + { + "label": "two giraffe's fighting over a piece of food", + "pred": "giraffe standing next to each other" + }, + { + "label": "small train running down the tracks in the middle of a field", + "pred": "a train traveling down train tracks next to a grassy field" + }, + { + "label": "a short train traveling through a rustic contryside", + "pred": "a train traveling down train tracks next to a grassy field" + }, + { + "label": "a red tour bus driving through the streets", + "pred": "a double decker bus driving down a street" + }, + { + "label": "two giraffes share a branch that they are eating", + "pred": "giraffe standing next to each other" + }, + { + "label": "the transit train stretches down the track under the power lines", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "the man with the black sweatshirt carries a wooly sheep", + "pred": "a man holding a sheep in his right hand" + }, + { + "label": "an old brick building has florida direction signs in front", + "pred": "a street sign in front of a large building" + }, + { + "label": "a man walking with a goat on his shoulders", + "pred": "a man holding a sheep in his right hand" + }, + { + "label": "benches arranged together in an open park", + "pred": "a bench that is next to a fence" + }, + { + "label": "a bird in a forest looking down towards the ground", + "pred": "a black and white cow is standing in the grass" + }, + { + "label": "street signs point directions to various places", + "pred": "a street sign in front of a large building" + }, + { + "label": "two black geese are swimming in cloudy water", + "pred": "two swans swimming in a body of water" + }, + { + "label": "a man in an airport is carrying a sign", + "pred": "a man in a suit standing in front of a bus" + }, + { + "label": "a man at a bus station holding up a sign", + "pred": "a man in a suit standing in front of a bus" + }, + { + "label": "a man carrying a sheep on his shoulders", + "pred": "a man holding a sheep in his right hand" + }, + { + "label": "a turkey is walking through the grass with a small bird", + "pred": "a black and white cow is standing in the grass" + }, + { + "label": "a cross road of furnace st. and crapo st", + "pred": "a street sign sitting on top of a tree" + }, + { + "label": "a goose with a feb bill is eating grass", + "pred": "two swans swimming in a body of water" + }, + { + "label": "a small train moving along the tracks with a mountain town", + "pred": "a train traveling down train tracks next to a grassy field" + }, + { + "label": "a street sign in front of a church", + "pred": "a street sign in front of a large building" + }, + { + "label": "a small train travels down the track by itself", + "pred": "a train traveling down train tracks next to a grassy field" + }, + { + "label": "a small train is traveling near a large hills and a small town", + "pred": "a train traveling down train tracks next to a grassy field" + }, + { + "label": "a sheep is being carried up a hill", + "pred": "a man holding a sheep in his right hand" + }, + { + "label": "a busy street, only red is in color, a red double decker bus drives down the road", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a black and white chicken is walking through tall plants", + "pred": "a black and white cow is standing in the grass" + }, + { + "label": "a plate of desserts on a table looking delicious", + "pred": "a cake on a plate on a table" + }, + { + "label": "three benches for sitting facing each other", + "pred": "a bench that is next to a fence" + }, + { + "label": "a man walking with a sign next to a row of buses", + "pred": "a man in a suit standing in front of a bus" + }, + { + "label": "a plate of desserts with frosting and sprinkles", + "pred": "a cake on a plate on a table" + }, + { + "label": "buses and cars on a city street with buildings and palm trees", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a row of sheep by a wooden fence with a guy holding a bowl", + "pred": "sheep standing next to a fence" + }, + { + "label": "three empty park benches sitting next to orange and pink walls", + "pred": "a bench that is next to a fence" + }, + { + "label": "brick building behind an intersection and street sign", + "pred": "a street sign in front of a large building" + }, + { + "label": "street signs on the corner of furnace st and crapo st", + "pred": "a street sign sitting on top of a tree" + }, + { + "label": "street traffic, view of an alamo bus, a gold coast tour bus and several cars", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a large yellow school bus stopping on a road", + "pred": "a school bus parked on the side of a road" + }, + { + "label": "a statue is sitting on a bench and a woman sits on a cement block", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a parking lot is on the side of the ocean", + "pred": "a street sign on the side of a road" + }, + { + "label": "park benches under a pavilion", + "pred": "a bench that is next to a fence" + }, + { + "label": "three empty benches face each other beneath a canopy", + "pred": "a bench that is next to a fence" + }, + { + "label": "black and white picture with a single red bus and a crowd of people lining the streets", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "four sheep standing against a fence looking at a man with a red bowl", + "pred": "sheep standing next to a fence" + }, + { + "label": "two black swans are floating in a lake", + "pred": "two swans swimming in a body of water" + }, + { + "label": "an all-terrain bus for sight-seeing tourists near a glacier", + "pred": "a red and white bus driving down a road" + }, + { + "label": "a set up small chocolate cakes decorated like trains", + "pred": "a cake on a plate on a table" + }, + { + "label": "a woman sitting on a bench next to a statue sitting on a bench", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a street sign for the street named crapo", + "pred": "a street sign sitting on top of a tree" + }, + { + "label": "a school bus waits in traffic behind a car", + "pred": "a school bus parked on the side of a road" + }, + { + "label": "three yellow coach buses parked in a line", + "pred": "two buses parked next to each other in a parking lot" + }, + { + "label": "people standing on the sidewalk waiting for a parade to start", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a red double-decker bus travels down the road", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a black swan has some wet grasses in its mouth", + "pred": "two swans swimming in a body of water" + }, + { + "label": "a bus travels down the road next to a mountain", + "pred": "a red and white bus driving down a road" + }, + { + "label": "a street light attached to a pole next to a street and a sidewalk railing", + "pred": "a street sign on the side of a road" + }, + { + "label": "a bus with a reflection of metal work on the windshield", + "pred": "two buses parked next to each other in a parking lot" + }, + { + "label": "a traffic light and a signpost at a crossroads intersection near a waterway", + "pred": "a street sign on the side of a road" + }, + { + "label": "a red double decker bus going down the road with a lot of pedestrians on the side", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a wet road busy with traffic like a taxi and bus", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a tree standing in the middle of a grass circle", + "pred": "a park bench sitting in the middle of a lush green field" + }, + { + "label": "a woman sitting looking at her phone with an iron cast woman next to her", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a white street sign in front of a green large tree", + "pred": "a street sign sitting on top of a tree" + }, + { + "label": "one woman standing behind large specialized bus in mountains by glacier", + "pred": "a red and white bus driving down a road" + }, + { + "label": "an orange sign pointing to the right sitting on a sidewalk", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "parked buses have a tower reflected in the window", + "pred": "two buses parked next to each other in a parking lot" + }, + { + "label": "a yellow school bus traveling down a street", + "pred": "a school bus parked on the side of a road" + }, + { + "label": "a grey and orange fire hydrant next to a street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "busses parked in a parking lot", + "pred": "two buses parked next to each other in a parking lot" + }, + { + "label": "a view from the street overlooks the ocean", + "pred": "a street sign on the side of a road" + }, + { + "label": "a school bus goes down the busy road", + "pred": "a school bus parked on the side of a road" + }, + { + "label": "a red-brick wall with a gray bench in a lush green space", + "pred": "a park bench sitting in the middle of a lush green field" + }, + { + "label": "a school bus in the street behind other cars", + "pred": "a school bus parked on the side of a road" + }, + { + "label": "a street sign displaying that vehicles will be towed", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "an assortment of street lights and signs next to an ocean", + "pred": "a street sign on the side of a road" + }, + { + "label": "cars and trucks stopped at an intersection at twilight", + "pred": "a car that is stopped at a red light" + }, + { + "label": "a street sign intersection with a lush tree", + "pred": "a street sign sitting on top of a tree" + }, + { + "label": "a green yard has a little bench and brick fence", + "pred": "a park bench sitting in the middle of a lush green field" + }, + { + "label": "a car and a truck sitting a red light", + "pred": "a car that is stopped at a red light" + }, + { + "label": "a sign on a sidewalk is in a foreign language", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a fire hydrant stands at the corner of two city streets", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a school bus and a silver car waiting at a railroad crossing for a train to go past", + "pred": "a car driving down a street next to a train" + }, + { + "label": "two giraffes are shown standing in a grassy field", + "pred": "two giraffes standing next to each other in a grassy field" + }, + { + "label": "fur ducks walks along a wooden walkway", + "pred": "two seagulls are standing on the edge of a walkway" + }, + { + "label": "ducks making their way down several sets of steps", + "pred": "two seagulls are standing on the edge of a walkway" + }, + { + "label": "cars and a bus stopped for a train at a crossing", + "pred": "a car driving down a street next to a train" + }, + { + "label": "portable sign stating wegomlegging which is detour in dutch", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a train in its full span gives the illusion of a neverending adventure", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a far away bench covers all the distant serenity of a beautiful flower garden", + "pred": "a park bench sitting in the middle of a lush green field" + }, + { + "label": "a fire hydrant in the middle of the street curbside", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "two giraffes, one looking toward the camera, stand on some grass", + "pred": "two giraffes standing next to each other in a grassy field" + }, + { + "label": "a street scene take from a car looking toward an intersection at dusk", + "pred": "a car that is stopped at a red light" + }, + { + "label": "two buses and a taxi go down a street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a fireplug at the corner of this intersection in the residential section of town", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a tree sitting in the middle of a lush green field", + "pred": "a park bench sitting in the middle of a lush green field" + }, + { + "label": "a political candidate advertisement on the side of a coach bus", + "pred": "a blue and white bus parked at a bus stop" + }, + { + "label": "two city buses traveling down a rain covered road way", + "pred": "a double decker bus driving down a street" + }, + { + "label": "the young ducks are following their mother down the sunny sidewalk", + "pred": "two seagulls are standing on the edge of a walkway" + }, + { + "label": "the two giraffes are standing in the dirt", + "pred": "giraffes are standing in the dirt" + }, + { + "label": "the two giraffes are standing in a pasture", + "pred": "two giraffes standing next to each other in a grassy field" + }, + { + "label": "an overview of traffic on a wet day", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a beautiful woman sitting on a bench next to a bronze statue", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a car waiting at a stop light at sunset", + "pred": "a car that is stopped at a red light" + }, + { + "label": "mother giraffe keeping a watchful eye out to protect her baby", + "pred": "two giraffes standing next to each other in a grassy field" + }, + { + "label": "traffic is stopped at a red light at the intersection", + "pred": "a car that is stopped at a red light" + }, + { + "label": "a train next to another train next to a car", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a double city bus is pulled up to a bus stop", + "pred": "a public transit bus on a city street" + }, + { + "label": "traffic passing by a large building", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "people are gathered on the platforms of a train station", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "here is massachusettes candidate scott brown's campaign trailer", + "pred": "a blue and white bus parked at a bus stop" + }, + { + "label": "a train traveling across a road in front of a school bus", + "pred": "a car driving down a street next to a train" + }, + { + "label": "two giraffes standing under a tree to get some shade", + "pred": "giraffes are standing in the dirt" + }, + { + "label": "a bus traveling down the street in front of a large building with a clock tower", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "an intersection has a clock tower building", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a woman sitting on a bench near a statue, checking her phone", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a brown train next to a large mountain", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "the reflection of a large metal structure in the windshield of a bus", + "pred": "two buses parked next to each other in a parking lot" + }, + { + "label": "a red and grey fire hydrant on a street corner", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a man has a red water bottle up to his mouth", + "pred": "a man drinking a glass of red wine" + }, + { + "label": "a large bus with a political ad on the side of it", + "pred": "a blue and white bus parked at a bus stop" + }, + { + "label": "a bus traveling on a freeway next to other traffic", + "pred": "a large white bus driving down a street" + }, + { + "label": "a tour bus with advertisement on the side of it", + "pred": "a blue and white bus parked at a bus stop" + }, + { + "label": "a number of vehicles driving down a road", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a large campaign trailer parked in a parking lot", + "pred": "a blue and white bus parked at a bus stop" + }, + { + "label": "a bus and other cars driving down a multi-laned street", + "pred": "a large white bus driving down a street" + }, + { + "label": "a train sitting on the tracks at a station", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a man puts a red bottle up to his mouth", + "pred": "a man drinking a glass of red wine" + }, + { + "label": "a man drinking something from a red bottle", + "pred": "a man drinking a glass of red wine" + }, + { + "label": "the passenger train is pulling has arrived at the station", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a train on the train tracks in the daytime", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "two giraffes standing next to power lines in the sand", + "pred": "giraffes are standing in the dirt" + }, + { + "label": "a brown train parked next to the road", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "two giraffes standing in the shade of a tree", + "pred": "giraffes are standing in the dirt" + }, + { + "label": "two giraffe standing in a green grass covered field", + "pred": "two giraffes standing next to each other in a grassy field" + }, + { + "label": "2 giraffes standing under a tree in the shade", + "pred": "giraffes are standing in the dirt" + }, + { + "label": "a train on a track pulling into a station", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a car and a bus at an intersection in front of a historical looking building", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "two people are walking near a mini truck in a street", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a green street sign next to a dirt field by a playground", + "pred": "a street sign on the side of a road" + }, + { + "label": "a young man sitting on a park bench next to a playground", + "pred": "a boy sitting on a bench in front of a park" + }, + { + "label": "a giraffe running across a grass covered field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "three giraffes standing up in a field eating leaves off of trees", + "pred": "giraffes standing on top of a lush green field" + }, + { + "label": "a young man walking across a street at a crosswalk", + "pred": "people walking down a street with a skateboard" + }, + { + "label": "a man drinking a beverage from a red bottle", + "pred": "a man drinking a glass of red wine" + }, + { + "label": "a white bus driving on a four lane road", + "pred": "a large white bus driving down a street" + }, + { + "label": "a man is drinking water from a red bottle", + "pred": "a man drinking a glass of red wine" + }, + { + "label": "a street sign is in front of gravel, a sidewalk, and a fence", + "pred": "a street sign on the side of a road" + }, + { + "label": "a child sits on a bench at a playground", + "pred": "a boy sitting on a bench in front of a park" + }, + { + "label": "the group of ducks is walking down the stairs", + "pred": "two seagulls are standing on the edge of a walkway" + }, + { + "label": "city bus next to traffic cones in the far right lane of a busy freeway", + "pred": "a large white bus driving down a street" + }, + { + "label": "a brick red train is passing by a tree filled mountain", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a white with red striped bus drives down the slow lane on a freeway surrounded by several other cars", + "pred": "a large white bus driving down a street" + }, + { + "label": "a bird is walking right through a dining room", + "pred": "a black and white bird standing on a tile floor" + }, + { + "label": "a street sign is pictured on a hill behind some fences", + "pred": "a street sign on the side of a road" + }, + { + "label": "a boy sits on a bench in a park, working on homework", + "pred": "a boy sitting on a bench in front of a park" + }, + { + "label": "a city street scene with a bus and buildings", + "pred": "a public transit bus on a city street" + }, + { + "label": "automobiles stopped at an intersection because of a passing train", + "pred": "a car driving down a street next to a train" + }, + { + "label": "a silver car is stopped in front of train tracks as a train crosses", + "pred": "a car driving down a street next to a train" + }, + { + "label": "a street sign on a city side walk", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a street approaching california 138 with stop sign ahead", + "pred": "a street sign on the side of a road" + }, + { + "label": "a single giraffe walking towards a group trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a fire hydrant is painted red, white and blue and sits on a sidewalk in front of a brick wall that shows graffiti", + "pred": "a street sign on a pole next to a fire hydrant" + }, + { + "label": "a street sign marks the intersection of s lane st. and 12th ave s", + "pred": "a street sign on the side of a road" + }, + { + "label": "a young boy sits and reads a book on a bench at a quiet park", + "pred": "a boy sitting on a bench in front of a park" + }, + { + "label": "a giraffe stands at the edge of some trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "people walk out of a bus onto the street", + "pred": "people walking down a street with a skateboard" + }, + { + "label": "a rusty fire hydrant is red white and blue", + "pred": "a street sign on a pole next to a fire hydrant" + }, + { + "label": "a man crossing the street near a bus stop", + "pred": "people walking down a street with a skateboard" + }, + { + "label": "a street sign at the corner of s lane st and 12th ave", + "pred": "a street sign on the side of a road" + }, + { + "label": "a boy at a playground, sitting on a bench and reading a book", + "pred": "a boy sitting on a bench in front of a park" + }, + { + "label": "a bird walking on a tiled floor in a cafeteria", + "pred": "a black and white bird standing on a tile floor" + }, + { + "label": "a street sign with a sky back ground", + "pred": "a street sign on the side of a road" + }, + { + "label": "a goose walking inside of a cafeteria area", + "pred": "a black and white bird standing on a tile floor" + }, + { + "label": "a road with california 138 and a stop sign", + "pred": "a street sign on the side of a road" + }, + { + "label": "a distorted image shows street signs and a desert", + "pred": "a street sign on the side of a road" + }, + { + "label": "a woman in a coat walks along a snow covered sidewalk", + "pred": "a park bench in the middle of a park" + }, + { + "label": "pictures put together to depict a road in a desert with signs", + "pred": "a street sign on the side of a road" + }, + { + "label": "a city white bus stopped at a bus stop in front of tall buldings", + "pred": "a public transit bus on a city street" + }, + { + "label": "a giraffe is standing on a pile of logs in a grassy field next to trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a white and black bird is walking by a table and some chairs", + "pred": "a black and white bird standing on a tile floor" + }, + { + "label": "a giraffes head with a wooden wall", + "pred": "a giraffe standing next to a wooden fence" + }, + { + "label": "a fire hydrant painted red white and blue", + "pred": "a street sign on a pole next to a fire hydrant" + }, + { + "label": "people are leaving a bus station with a bus next to it as a person rides by on a bicycle", + "pred": "people walking down a street with a skateboard" + }, + { + "label": "a white wall with some graffiti and a red white and blue fire hydrant", + "pred": "a street sign on a pole next to a fire hydrant" + }, + { + "label": "ducks walking down the stairs", + "pred": "two seagulls are standing on the edge of a walkway" + }, + { + "label": "a street sign showing four different roads on it", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a stopped bus pulled up to the bus stop", + "pred": "a public transit bus on a city street" + }, + { + "label": "a giraffe looking down in front of a fence", + "pred": "a giraffe standing next to a wooden fence" + }, + { + "label": "identical street signs pointing in the opposite directions of each other", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a man crossing the street in front of a bus stop", + "pred": "people walking down a street with a skateboard" + }, + { + "label": "a fire hydrant in front of graffiti on a brick wall", + "pred": "a street sign on a pole next to a fire hydrant" + }, + { + "label": "this a close up picture of the giraffes face his eyes are half closed", + "pred": "a giraffe standing next to a wooden fence" + }, + { + "label": "a double decker bus is parked in the parking lot", + "pred": "a double decker bus parked in a parking lot" + }, + { + "label": "a pole with multiple street signs in front of a tall building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a giraffe standing next to a bamboo building", + "pred": "a giraffe standing next to a wooden fence" + }, + { + "label": "a shirtless man walking a bike down a rural street", + "pred": "a man riding a bike next to a store" + }, + { + "label": "a train crosses as a bunch of gathered vehicles watch", + "pred": "a marina filled with lots of cars and boats" + }, + { + "label": "a sign on the street that lets you know where you are", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a person walking pulling a bike next to him", + "pred": "a man riding a bike next to a store" + }, + { + "label": "street signs with buildings", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "people walking around a snow covered park area", + "pred": "a park bench in the middle of a park" + }, + { + "label": "people walking through the snow past park benches", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a giraffe running away through grass toward trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a polewith many street signs standing in front of a very tall building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "an intersection with tow street labeled east st", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a bird walking through a cafeteria next to a table", + "pred": "a black and white bird standing on a tile floor" + }, + { + "label": "a parking lot next to a marina next to a railroad", + "pred": "a marina filled with lots of cars and boats" + }, + { + "label": "a sign with a trailer at the corner of east st. and east st", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a red fire hydrant in front of a skyscraper", + "pred": "a fire hydrant on the side of a building" + }, + { + "label": "a shirtless man walking down city street with a bike", + "pred": "a man riding a bike next to a store" + }, + { + "label": "a city bus that is stopped at a bus stop", + "pred": "a public transit bus on a city street" + }, + { + "label": "this gentleman is shirtless, walking his bicycle down the street of an asian city", + "pred": "a man riding a bike next to a store" + }, + { + "label": "two giraffes make contact while a third eats from a tree", + "pred": "giraffes standing on top of a lush green field" + }, + { + "label": "three giraffes are in an enclosure with heads in the air", + "pred": "giraffes standing on top of a lush green field" + }, + { + "label": "a giraffe is pictured in front of a wooden fence", + "pred": "a giraffe standing next to a wooden fence" + }, + { + "label": "shirtless man pushing his bike on a city street", + "pred": "a man riding a bike next to a store" + }, + { + "label": "group of people standing beside their cars on a pier", + "pred": "a marina filled with lots of cars and boats" + }, + { + "label": "an orange fire hydrant outside a modern office building", + "pred": "a fire hydrant on the side of a building" + }, + { + "label": "street corner sign in a big city with multiple names", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a yellow, white, and brown double decker bus parked in a lot", + "pred": "a double decker bus parked in a parking lot" + }, + { + "label": "a modern building with skylight and a fire hydrant", + "pred": "a fire hydrant on the side of a building" + }, + { + "label": "a red fire hydrant with a building", + "pred": "a fire hydrant on the side of a building" + }, + { + "label": "a tour bus with a cats face painted on the front of it", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "colorful commuter train goes through a marina area on a cloudy day", + "pred": "a marina filled with lots of cars and boats" + }, + { + "label": "entire front yard is filled with snow while people walk around", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a train going back to its coarse filled with people", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a person walking down the street past snow covered benches", + "pred": "a park bench in the middle of a park" + }, + { + "label": "people are in a parking lot beside the water, while a train is", + "pred": "a marina filled with lots of cars and boats" + }, + { + "label": "a large double decked bus parked in a lot", + "pred": "a double decker bus parked in a parking lot" + }, + { + "label": "a white meta bench next to a patch of grass", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a large orange double decker bus parked in a parking lot", + "pred": "a double decker bus parked in a parking lot" + }, + { + "label": "two men smiling and wearing yellow jackets behind construction markers", + "pred": "a police officer standing next to a yellow fire hydrant" + }, + { + "label": "a blue commuter train traveling towards a train tunnel", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "three giraffe's in a green grassy tree filled area", + "pred": "giraffes standing on top of a lush green field" + }, + { + "label": "four young giraffes in a zoo, with one of them being fed leaves by a person", + "pred": "a herd of giraffe standing next to each other" + }, + { + "label": "a bus with a kitty face on the front of it", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "street signs, corner of lynn and bigelow.taken 11.01.2009 23:58", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "people standing next to a bus with a cat face on the front", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "an orange double decker bus parked in a parking lot", + "pred": "a double decker bus parked in a parking lot" + }, + { + "label": "a fire hydrant waits in front of a tall building", + "pred": "a fire hydrant on the side of a building" + }, + { + "label": "giraffe standing up against a dirt wall in front of a crowd of children", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "an ornate fern garden bench outside in the garden", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a close up photo of a street sign of a cross street", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a red extra long bus driving down a stone covered walkway", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a green street sign on a pole in front of a tall building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "two street signs one is green and white the other brown and white", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a large group of people holding their arms out to feed giraffes", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "three giraffes on a green field with sand, rocks and trees", + "pred": "giraffes standing on top of a lush green field" + }, + { + "label": "two giraffes in a crate", + "pred": "giraffe standing next to each other" + }, + { + "label": "two giraffes in the trees, one standing up", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "two street signs atop a post beneath several trees", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "articulated bus, first part is red, back part is grey, on dull red street", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a fired hydrant on the street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a man is offering leaves to four giraffes", + "pred": "a herd of giraffe standing next to each other" + }, + { + "label": "street sign for anza and 21st streets in front of building", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "blue train car sitting on a train track near tunnel", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a plane flying over several houses and lots of trees", + "pred": "an airplane that is flying in the air" + }, + { + "label": "orange fire hydrant on the sidewalk in a commercial area", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a city skyline and train yard at dusk", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a city with skyscrapers, other buildings, and trains", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "guys in a dugout with their gear", + "pred": "a baseball player wearing a catchers mitt on a baseball field" + }, + { + "label": "a train with people inside is about to go into a tunnel", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a white bench with an elegant design of leaves on the back", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a fire hydrant sits on a sidewalk next to a fence", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "two adult pheasants walking slowly across a street", + "pred": "a brown and white bird walking across a street" + }, + { + "label": "a road sign standing near a telephone pole", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a plane flies through the sky above some trees", + "pred": "an airplane that is flying in the air" + }, + { + "label": "two white street signs showing directions", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a metal park bench sitting next to a small road", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a yellow commuter train parked at a train station", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "an old multi colored volvo parked next to a motel", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "in a city, the buildings are illuminated while trains sit below", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "two men in neon yellow safety jackets sharing a meal next to a food car", + "pred": "a police officer standing next to a yellow fire hydrant" + }, + { + "label": "a small plane in the air", + "pred": "an airplane that is flying in the air" + }, + { + "label": "two small birds walking on a sidewalk next to patches of grass", + "pred": "a brown and white bird walking across a street" + }, + { + "label": "metal park benches sitting in the grass and mud", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a mother sheep and a baby sheep pictured here", + "pred": "a sheep standing on top of a snow covered field" + }, + { + "label": "commuters standing around a train station", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "an airplane is flying over some trees and buildings", + "pred": "an airplane that is flying in the air" + }, + { + "label": "four giraffes next to a man", + "pred": "a herd of giraffe standing next to each other" + }, + { + "label": "a herd of sheep grazing on a lush green field", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "children feeding two giraffes at a zoo", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "a bus driving down a road by some tall trees and buildings", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a yellow train pulling into the train station", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a white bench just in front of a green bush", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a double bus driving on a city street", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a blue train on some train tracks about to go under a bridge", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a pair of birds crossing a street towards a grassy area", + "pred": "a brown and white bird walking across a street" + }, + { + "label": "a giraffe is half way between sitting and standing, while another giraffe looks on from behind some shrubs", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a street sign gives the cross streets on a sunny day", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "two girrafes sticking their heads through the boards of their stable", + "pred": "giraffe standing next to each other" + }, + { + "label": "a volvo bus parked on a road near a hotel", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "people crossing a street next to tall buildings", + "pred": "a man walking down a street next to a crosswalk" + }, + { + "label": "a man wearing a t-shirt stands in the door way of a white bus", + "pred": "a man is standing in front of a bus" + }, + { + "label": "the back of a volvo bus approaching a hotel", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "two adult sheep lay on the green grass", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "street signs for the intersection of anza and 21st avenue in front of a large building", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a red fire hydrant on a street between two identical white poles", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "two white goats in a snowy field look at a tree", + "pred": "a sheep standing on top of a snow covered field" + }, + { + "label": "an orange fire hydrant between two white poles on the side of a sidewalk", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a bench sitting on the beach near the ocean", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "two white goats standing near some melting snow", + "pred": "a sheep standing on top of a snow covered field" + }, + { + "label": "a city street sign mounted on a black pole near a high rise building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a bus traveling down a curvy road behind a black car", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a man riding a brown horse in uniform next to tall green trees", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man feeding four giraffes grass and leaves", + "pred": "a herd of giraffe standing next to each other" + }, + { + "label": "a double street sign at a neighbourhood corner", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "an orange, blue, and yellow bus on the driveway in front of a hotel", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "goats out in the snow", + "pred": "a sheep standing on top of a snow covered field" + }, + { + "label": "a bus traveling on a street during the day", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a large bus parked in a parking lot next to a group of women", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a boy feeding four giraffes at a zoo from his hand", + "pred": "a herd of giraffe standing next to each other" + }, + { + "label": "a single giraffe looks over the green brush", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "an empty beach with a blue bench on it", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "a tri-motor, vintage airplane on final approach to land", + "pred": "an airplane that is flying in the air" + }, + { + "label": "two men wearing bright yellow construction jackets eating and standing under an orange umbrella", + "pred": "a police officer standing next to a yellow fire hydrant" + }, + { + "label": "two mountain goats standing outside by the snow", + "pred": "a sheep standing on top of a snow covered field" + }, + { + "label": "two sheep sit in a field and look towards the camera", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "a man in a white tee shirt standing in the door of a bus", + "pred": "a man is standing in front of a bus" + }, + { + "label": "two men in yellow jackets sitting at a table eating", + "pred": "a police officer standing next to a yellow fire hydrant" + }, + { + "label": "the metal park bench sits next to green grass", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a black and yellow bird with a colorful beak", + "pred": "a large bird sitting on top of a tree branch" + }, + { + "label": "two sheep lying in green grass have a surprised look for the camera", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "giraffe trying to stand up after sitting in the grass", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a yellow passenger train pulling up to a station", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a yellow train is pulling in to a train station", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a bench in the sand facing an empty beach", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "the back of a bus with a hotel", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "a street sign reading cambridge st and norfolk st's crossing lies broken on the ground", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "two birds walking down the road in the daytime", + "pred": "a brown and white bird walking across a street" + }, + { + "label": "the norfolk and cambridge road signs have fallen to the ground while a van drives by", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "street signs for lynn street and bigelow avenue", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "baseball players sit with their gear in the dugout", + "pred": "a baseball player wearing a catchers mitt on a baseball field" + }, + { + "label": "two sheep lay in the grass and look at the camera", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "baseball players sitting in a dugout watching a game", + "pred": "a baseball player wearing a catchers mitt on a baseball field" + }, + { + "label": "groups of people walk around a huge, multi engine airplane", + "pred": "people standing next to an airplane on a runway" + }, + { + "label": "a bench is seated on the grass", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a bench that is on the beach by the water", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "a street sign that is on the ground", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "the heads of two giraffes sticking out of a building looking around", + "pred": "giraffe standing next to each other" + }, + { + "label": "a broken street sign lays on the side of a road", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "two giraffes stick their heads out and get their picture taken", + "pred": "giraffe standing next to each other" + }, + { + "label": "two sexy young women sitting on a metal bench in front of flowers", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "the stop sign and to street signs", + "pred": "a stop sign with a street sign on top of it" + }, + { + "label": "an adult giraffe grazing in a brown field", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a street scene with the street sign knocked over", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "two steel benches next to a walk way", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a giraffe leans its neck as it walks through the bush", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a red car parked next to an old bus", + "pred": "a red car parked in front of a house" + }, + { + "label": "an alley between two buildings with a sky", + "pred": "a train station with a train on the tracks" + }, + { + "label": "a person standing in the doorway of a mass transit vehicle", + "pred": "a man is standing in front of a bus" + }, + { + "label": "people trying to feed giraffes at the zoo", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "two sheep laying in a field of grass", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "a young man standing in the doorway of a bus", + "pred": "a man is standing in front of a bus" + }, + { + "label": "a television screen in an open space at a political function", + "pred": "a television that is on in front of a wall" + }, + { + "label": "a road sign labeled bodacious drive", + "pred": "a green street sign sitting on the side of a road" + }, + { + "label": "a street sign for w. centre st", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "two zebras stare at the camera in a zoo", + "pred": "giraffe standing next to each other" + }, + { + "label": "people wait for the subway", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "a woman standing next to a light pole by a street", + "pred": "a man and woman standing next to a tall clock tower" + }, + { + "label": "a boy standing in the door of a bus", + "pred": "a man is standing in front of a bus" + }, + { + "label": "a street sign with a sky background", + "pred": "a stop sign with a street sign on top of it" + }, + { + "label": "a small road is shown behind a building", + "pred": "a train station with a train on the tracks" + }, + { + "label": "a dug out filled with baseball players next to baseball equipment", + "pred": "a baseball player wearing a catchers mitt on a baseball field" + }, + { + "label": "side of meat sitting on a white plate on a dinner table", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a narrow road in city between two buildings", + "pred": "a train station with a train on the tracks" + }, + { + "label": "people at a train station board and unboard a train", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "group of people walking on a city pedestrian crossing", + "pred": "a man walking down a street next to a crosswalk" + }, + { + "label": "a white and gray bird soaring over the blue ocean", + "pred": "a seagull flying over a body of water" + }, + { + "label": "a fairly dark and narrow street in asia", + "pred": "a train station with a train on the tracks" + }, + { + "label": "three women standing near a bus that has the face of a cat painted on the front", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a red fire hydrant sitting on a patch of green grass", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "an army plane sitting on the tarmac", + "pred": "people standing next to an airplane on a runway" + }, + { + "label": "a giraffe getting up off the ground", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a train station with people waiting to get on the train", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "a plate of food at the table with meat", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a large propeller airplane parked on an airport tarmac", + "pred": "people standing next to an airplane on a runway" + }, + { + "label": "two old medal benches are put together on a side walk", + "pred": "a wooden bench sitting in the middle of a park" + }, + { + "label": "a bench in the middle of the beach", + "pred": "a bench sitting on top of a sandy beach" + }, + { + "label": "an urban skyline with a train-yard", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a red mustang is parked in front of a schoolbus/boat/house", + "pred": "a red car parked in front of a house" + }, + { + "label": "a red and white bus and some cars in the rain", + "pred": "a bus driving down a street next to a body of water" + }, + { + "label": "three giraffes standing near a tree in a forest", + "pred": "a herd of giraffe standing on top of a dry grass covered field" + }, + { + "label": "a day time view of a narrow street in a city", + "pred": "a train station with a train on the tracks" + }, + { + "label": "two game birds with red heads on the sidewalk", + "pred": "a brown and white bird walking across a street" + }, + { + "label": "white birds are gathered around a water puddle", + "pred": "a flock of seagulls standing on top of a parking lot" + }, + { + "label": "a fire hydrant is standing amid some grass", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "one giraffe is crouched down while another peers out of the shrubbery", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a red and black fire hydrant is positioned in front of a dwelling", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "a fire hydrant in front of a house with overgrown grass", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "a man in uniform riding a horse by a fence", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "the locomotive of a train is painted yellow", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a large plane with two propellers on it", + "pred": "people standing next to an airplane on a runway" + }, + { + "label": "the stop sign is at a four way intersection", + "pred": "a stop sign with a street sign on top of it" + }, + { + "label": "a cat is playing with a plan in a park", + "pred": "a cat that is standing in the grass" + }, + { + "label": "a stop sign located at the intersection of east village and woodfield rd", + "pred": "a stop sign with a street sign on top of it" + }, + { + "label": "zoo scene of children at zoo near giraffes, attempting to pet or feed them", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "a television set with a politician on the screen", + "pred": "a television that is on in front of a wall" + }, + { + "label": "a fire hydrant in the grass", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "people walking across a pedestrian cross walk", + "pred": "a man walking down a street next to a crosswalk" + }, + { + "label": "birds in a bunch of puddles", + "pred": "a flock of seagulls standing on top of a parking lot" + }, + { + "label": "interesting food sitting on a white plate by a knife", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a person wearing orange pants standing on a bench", + "pred": "a person standing on a wooden bench" + }, + { + "label": "time shot of cars driving down asian highway", + "pred": "a train going down the tracks at night" + }, + { + "label": "pedestrians standing outside a train station waiting for the train", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "black and yellow bird with colorful beak sitting on a branch", + "pred": "a large bird sitting on top of a tree branch" + }, + { + "label": "a street sign in front of a skyscraper", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "someone in the tv on the wall", + "pred": "a television that is on in front of a wall" + }, + { + "label": "white birds getting a drink from the water puddles", + "pred": "a flock of seagulls standing on top of a parking lot" + }, + { + "label": "the fire hydrant in the green grass is red", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "a large water bird flying over the ocean", + "pred": "a seagull flying over a body of water" + }, + { + "label": "two women sitting on a metal park bench", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "the picture of three buses on a lot", + "pred": "two double decker buses parked next to each other" + }, + { + "label": "a boat traveling into a water filled tunnel", + "pred": "a boat floating on top of a large body of water" + }, + { + "label": "a nice red car parked in front of a roadside junk sale", + "pred": "a red car parked in front of a house" + }, + { + "label": "a city scape scene with a train yard", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "motion blur photograph of an oriental street at night", + "pred": "a train going down the tracks at night" + }, + { + "label": "a woman stands next to a traffic light", + "pred": "a man and woman standing next to a tall clock tower" + }, + { + "label": "the woman is standing by the stop light", + "pred": "a man and woman standing next to a tall clock tower" + }, + { + "label": "a woman stands next to a lamp post with a street light on it", + "pred": "a man and woman standing next to a tall clock tower" + }, + { + "label": "a rusty old fire hydrant on an inner city street", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a road travels through an industrial area at night", + "pred": "a train going down the tracks at night" + }, + { + "label": "a room that houses several pieces of campaign memorabilia", + "pred": "a television that is on in front of a wall" + }, + { + "label": "a set of train tracks underneath a bridge over pass", + "pred": "a train going down the tracks at night" + }, + { + "label": "a bus makes a splash in the heavy rain", + "pred": "a bus driving down a street next to a body of water" + }, + { + "label": "three double decked buses are parked on pavement", + "pred": "two double decker buses parked next to each other" + }, + { + "label": "a trolley is going down the street while a car passes it", + "pred": "a public transit bus on a city street" + }, + { + "label": "here is a plate of food that appears to have been browned in butter", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "sheep eating grass next to the forest", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "an electric trolley bus on the street in seattle", + "pred": "a public transit bus on a city street" + }, + { + "label": "green and red double decker buses lined up parked", + "pred": "two double decker buses parked next to each other" + }, + { + "label": "a bus drives through a city street with a building", + "pred": "a public transit bus on a city street" + }, + { + "label": "a rusty fire hydrant", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a green street sign handing from a black pole with a building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a city bus driving down a street next to a hotel", + "pred": "a public transit bus on a city street" + }, + { + "label": "the road sign says \"east 278 queens bronx\"", + "pred": "a green and white sign on the side of a road" + }, + { + "label": "a red stop sign with two green street signs on top of it", + "pred": "a stop sign with a street sign on top of it" + }, + { + "label": "a electric trolly bus driving in the middle of a street with a building behind it", + "pred": "a public transit bus on a city street" + }, + { + "label": "a highway road sign directing the way ahead", + "pred": "a green and white sign on the side of a road" + }, + { + "label": "a roadway at night with an overpass walkway above the road", + "pred": "a train going down the tracks at night" + }, + { + "label": "a woman at a crosswalk that has a green light", + "pred": "a man and woman standing next to a tall clock tower" + }, + { + "label": "a street scene of a self service parking lot", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a green street sign that says bodacious drive", + "pred": "a green street sign sitting on the side of a road" + }, + { + "label": "white birds standing in a puddle in a parking lot", + "pred": "a flock of seagulls standing on top of a parking lot" + }, + { + "label": "a green double decker bus sits at the front of a row of buses", + "pred": "two double decker buses parked next to each other" + }, + { + "label": "a flock of white birds stands in a parking lot puddle", + "pred": "a flock of seagulls standing on top of a parking lot" + }, + { + "label": "a green and two red double decker tour buses", + "pred": "two double decker buses parked next to each other" + }, + { + "label": "a large and green interstate exit sign above a road", + "pred": "a green and white sign on the side of a road" + }, + { + "label": "the train is approaching and a man is getting off his bicycle", + "pred": "a person riding a bicycle next to a train on a track" + }, + { + "label": "a bus that is driving down the road", + "pred": "a public transit bus on a city street" + }, + { + "label": "a clean street sign that reads bodacious dr", + "pred": "a green street sign sitting on the side of a road" + }, + { + "label": "a car sits next to a bus with things in front of it", + "pred": "a red car parked in front of a house" + }, + { + "label": "a rusted fire hydrant planted firmly on the ground", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "groups of people admire a large propeller plane on the runway", + "pred": "people standing next to an airplane on a runway" + }, + { + "label": "a flock of birds flying over the ocean next to a beach", + "pred": "a flock of birds flying over a body of water" + }, + { + "label": "a park filled with green grass and a tall leaf filled tree", + "pred": "a house that is in the middle of a grassy area" + }, + { + "label": "a television is in a wall and on", + "pred": "a television that is on in front of a wall" + }, + { + "label": "the tall object is very old and rusty looking", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a red car parked in front of an abandoned bus", + "pred": "a red car parked in front of a house" + }, + { + "label": "a green road sign showing the queens bronx exit", + "pred": "a green and white sign on the side of a road" + }, + { + "label": "a city bus is driving through the town", + "pred": "a public transit bus on a city street" + }, + { + "label": "cars that are parked in the parking lot", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a train approaching a station with a man and a bike on it", + "pred": "a person riding a bicycle next to a train on a track" + }, + { + "label": "a black building that says first avenue and 7th street entry", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a train is pulling up to people waiting and a crossing guard getting off his bike", + "pred": "a person riding a bicycle next to a train on a track" + }, + { + "label": "no image again there are a lot of these lately", + "pred": "a public transit bus on a city street" + }, + { + "label": "an green and white overhead street sign on interstate 278 for queens and bronx, showing a truck restriction", + "pred": "a green and white sign on the side of a road" + }, + { + "label": "a giraffe bending over to chew some brush", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a bus that is driving through the rain", + "pred": "a bus driving down a street next to a body of water" + }, + { + "label": "passengers at a train station standing on the platform as a train arrives", + "pred": "a person riding a bicycle next to a train on a track" + }, + { + "label": "a close up picture of a fire hydrant on a street", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a flock of seagulls flying over the water together", + "pred": "a flock of birds flying over a body of water" + }, + { + "label": "a self service parking lot with a building behind it and an intersection in front of it", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a bus driving on a rain covered street", + "pred": "a bus driving down a street next to a body of water" + }, + { + "label": "workers in fluorescent yellow jackets standing under a fluorescent orange umbrella", + "pred": "a police officer standing next to a yellow fire hydrant" + }, + { + "label": "a city bus is driving down the road next to buildings", + "pred": "a public transit bus on a city street" + }, + { + "label": "a small herd of giraffe standing in a plain", + "pred": "a herd of giraffe standing on top of a dry grass covered field" + }, + { + "label": "a cat attacks weeds in a landscaped area", + "pred": "a cat that is standing in the grass" + }, + { + "label": "two cats sitting in the dirt under a tree", + "pred": "a cat sitting on the ground next to a tree" + }, + { + "label": "someone in orange pants stands on a wooden bench", + "pred": "a person standing on a wooden bench" + }, + { + "label": "people cross the curved street", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a cat plays with grass outside in the garden", + "pred": "a cat that is standing in the grass" + }, + { + "label": "a person getting off a bike and a train coming on the tracks", + "pred": "a person riding a bicycle next to a train on a track" + }, + { + "label": "people standing and walking at a city intersection", + "pred": "a man walking down a street next to a crosswalk" + }, + { + "label": "a bus and a few cars are riding in the rain", + "pred": "a bus driving down a street next to a body of water" + }, + { + "label": "a parking lot with a few cars in it", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a bench under a tree in a park", + "pred": "a house that is in the middle of a grassy area" + }, + { + "label": "a train with steam coming out is on the tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "two people sit on a bench with pigeons and other people nearby", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a cat playing with an outdoor plant with long grass on it", + "pred": "a cat that is standing in the grass" + }, + { + "label": "a giraffe points its head towards the sky", + "pred": "a giraffe standing next to a rock wall" + }, + { + "label": "a giraffe stretching its next long to reach a branch", + "pred": "a giraffe standing next to a rock wall" + }, + { + "label": "a large white bird flies over the water", + "pred": "a seagull flying over a body of water" + }, + { + "label": "a man standing on a bench with a sign next to them", + "pred": "a person standing on a wooden bench" + }, + { + "label": "this green street name sign says bodacious drive", + "pred": "a green street sign sitting on the side of a road" + }, + { + "label": "a yellow and blue bus traveling down a road next to a park", + "pred": "a double decker bus driving down a street" + }, + { + "label": "an empty field with older structure", + "pred": "a house that is in the middle of a grassy area" + }, + { + "label": "a herd of sheep standing next to each other on dirt ground", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "birds are flying around in the air", + "pred": "a flock of birds flying over a body of water" + }, + { + "label": "two women sitting on a bench in the park", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a cat sits on its hind legs, and swats at the plant", + "pred": "a cat that is standing in the grass" + }, + { + "label": "seagulls in flight and standing on a beach at sunset", + "pred": "a flock of birds flying over a body of water" + }, + { + "label": "people crossing a street next to a bend traffic light", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a white statue holding open a newspaper while sitting on a bench", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "an old style green train moving along train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a street sign in a neighborhood during the day", + "pred": "a green street sign sitting on the side of a road" + }, + { + "label": "a curve in a city road with a bus following a car and people walking on the side", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a sidewalk grass median with a street sign and a fire hydrant", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "a small group of giraffes walking across a field with dried grass and trees", + "pred": "a herd of giraffe standing on top of a dry grass covered field" + }, + { + "label": "a tall giraffe standing next to a tree", + "pred": "a giraffe eating a piece of fruit from a tree" + }, + { + "label": "a giraffe raises its head in front of rocks", + "pred": "a giraffe standing next to a rock wall" + }, + { + "label": "a giraffe in the display at the zoo", + "pred": "a giraffe standing next to a rock wall" + }, + { + "label": "two giraffes at the zoo during the day", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a black passenger bus navigating paved city streets", + "pred": "a public transit bus on a city street" + }, + { + "label": "a red fire hydrant sitting on a sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "giraffe trying to reach some leafs on a tree", + "pred": "a giraffe standing next to a rock wall" + }, + { + "label": "an old- fashioned train rounds the corner on train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a giraffe standing in a straw field next to shrubbery", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a red fire hydrant on a red bricked sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "smoke is emanating from a train that is on a track that is curving", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "two little girls sitting on the side of a white boat", + "pred": "a woman sitting on top of a boat next to a man" + }, + { + "label": "caps and gloves sit in front of the players in a baseball dugout", + "pred": "a little league baseball player sitting on a bench" + }, + { + "label": "two giraffes wander the open park in the same direction", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a bus stopped in front of a building with the apple logo on it", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a giraffe eating some leaves from a tree at the zoo", + "pred": "giraffes standing next to each other" + }, + { + "label": "an ocean view with dozens of birds in the sky", + "pred": "a flock of birds flying over a body of water" + }, + { + "label": "an \"apple\" logo burns bright over a city bus", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a large yellow and black toucan sitting on top of a tree branch", + "pred": "a large bird sitting on top of a tree branch" + }, + { + "label": "a white plate topped with food sitting on a table", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a little house and some grass", + "pred": "a house that is in the middle of a grassy area" + }, + { + "label": "cats are by a tree", + "pred": "a cat sitting on the ground next to a tree" + }, + { + "label": "a family of swans swimming on top of a lake", + "pred": "a herd of ducks swimming across a river" + }, + { + "label": "an apple building and a white bus and people", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a catchers mitt sitting inside of a blue baseball hat", + "pred": "a baseball player wearing a catchers mitt" + }, + { + "label": "two women sitting on a bench with one smoking a cigarette", + "pred": "a woman sitting on a bench next to a man" + }, + { + "label": "a cat sitting on top of a bench in a field", + "pred": "a white cat sitting on top of a cement block" + }, + { + "label": "a hydrant is shown on the side of the walkway", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a rusted silver fire hydrant next to two poles", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a green park bench underneath a tree in a park", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "people walk alongside the road", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "people walk across a crosswalk", + "pred": "a man walking down a street next to a crosswalk" + }, + { + "label": "a red bus driving down a busy city street surrounded by tall buildings", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "two giraffe standing next to each other on a dirt road next to a grass field", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "an asian city square, with people, buses, and a mcdonald's", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a giraffe standing under a large tree in an enclosed area", + "pred": "giraffes standing next to each other" + }, + { + "label": "two giraffe standing on dirt near flowering trees", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a black and green train locomotive engine traveling along a railroad track", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a storage building located near a town park", + "pred": "a house that is in the middle of a grassy area" + }, + { + "label": "two traffic lights in front of a huge building", + "pred": "a traffic light in front of a tall building" + }, + { + "label": "a bird flying over the water", + "pred": "a seagull flying over a body of water" + }, + { + "label": "green stop lights are set against a tall building", + "pred": "a traffic light in front of a tall building" + }, + { + "label": "a bus parked near an apple sign during the night", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a bus parked outside and below an illuminated apple sign", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "two giraffes standing on a dirt path in a fenced in area with trees and green grass surrounding them", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "two street lights that are both on the green light", + "pred": "a traffic light in front of a tall building" + }, + { + "label": "a man on top of a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a herd of giraffes herding in the wilderness", + "pred": "a herd of giraffe standing on top of a dry grass covered field" + }, + { + "label": "two cats in a sand lot", + "pred": "a cat sitting on the ground next to a tree" + }, + { + "label": "a herd of sheep grazing in the pasture", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "people and buses on a city street under cloudy skies", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a bird standing in the sand", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "a cardinal perches on the side window mirror of a parked sedan", + "pred": "a black and white cat sitting on the hood of a pick up truck" + }, + { + "label": "a giraffe has come to a fence line to greet visitors", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "animals that are by a tree", + "pred": "giraffes standing next to each other" + }, + { + "label": "a large open area with concrete floor and a mcdonalds in the background with chinese writing on the building", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a bird that is sitting down on some water", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "a fish eye view of a bus rounding a curve on a city street", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "children looking at a zoo giraffe and its baby", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "two green stop lights in front of a skyscraper", + "pred": "a traffic light in front of a tall building" + }, + { + "label": "two cats by a tree in the dirt", + "pred": "a cat sitting on the ground next to a tree" + }, + { + "label": "a small crowd of children standing around a giraffe at a zoo", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "a young man kissing the top of a young woman's head", + "pred": "a man with glasses and a woman wearing a hat" + }, + { + "label": "a red fire hydrant near a dirt road with trees", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "sheep eating in the field eating grass", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "a zoo giraffe enjoys a treat from a hanging basket", + "pred": "giraffes standing next to each other" + }, + { + "label": "patchy lawn, a road sign and a fire hydrant", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "a red fire hydrant sitting on the side of a dirt road", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "a crows of people standing outside of a train", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "small motorbikes are parked along the street", + "pred": "motorcycles parked in front of a store" + }, + { + "label": "red fire hydrant on a curb by a street", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "children look at two giraffes in an enclosure", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "the young man is kissing the young woman on top of her head", + "pred": "a man with glasses and a woman wearing a hat" + }, + { + "label": "a man kisses the top of a woman's head", + "pred": "a man with glasses and a woman wearing a hat" + }, + { + "label": "a person in red pants stands on a wooden bench with a poster", + "pred": "a person standing on a wooden bench" + }, + { + "label": "a giraffe reaching for a tree branch on a sandy zoo lot", + "pred": "giraffes standing next to each other" + }, + { + "label": "a red fire hydrant on a street corner near a sign", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "a close of a red fire hydrant next to a road", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "polaroid-like shot of sheep grazing in a green field", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "the man kisses the girl on the head as she laughs", + "pred": "a man with glasses and a woman wearing a hat" + }, + { + "label": "numerous motor scooters parked by backing in facing the street", + "pred": "motorcycles parked in front of a store" + }, + { + "label": "a colorful toucan perched on a branch in some trees", + "pred": "a large bird sitting on top of a tree branch" + }, + { + "label": "people that are outside in the dark", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "a little red bird standing on the side view mirror of a car", + "pred": "a black and white cat sitting on the hood of a pick up truck" + }, + { + "label": "a tiny red bird perched on a car's mirror", + "pred": "a black and white cat sitting on the hood of a pick up truck" + }, + { + "label": "a long billed bird stands at the shore of a lake", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "a line of motor scooters in front of a bar", + "pred": "motorcycles parked in front of a store" + }, + { + "label": "children looking at two giraffes in an enclosure", + "pred": "a giraffe standing next to a group of people" + }, + { + "label": "a crowd of people stand beside a train", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "a bird standing next to a large body of water", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "cats sitting near a tree and a bird on a fence post", + "pred": "a cat sitting on the ground next to a tree" + }, + { + "label": "geese swimming in water near a wooded area", + "pred": "a herd of ducks swimming across a river" + }, + { + "label": "an old fashioned steam engine train traveling down railroad tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a man is kissing a woman on the top of the head", + "pred": "a man with glasses and a woman wearing a hat" + }, + { + "label": "a street going trough the center of a small town", + "pred": "a street filled with lots of traffic next to a tall building" + }, + { + "label": "a steam engine train traveling down train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a chinese street with a mcdonalds in the back drop", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a beautiful woman taking a picture with her smart phone", + "pred": "a woman looking at her cell phone while standing in front of a body of water" + }, + { + "label": "a row of parked motorcycles sitting in front of a restaurants", + "pred": "motorcycles parked in front of a store" + }, + { + "label": "a red fire hydrant in a forest setting", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "a baby girl standing in a shopping cart holding an umbrella", + "pred": "a little girl is holding an umbrella over her head" + }, + { + "label": "a bird is sitting on a silver truck", + "pred": "a black and white cat sitting on the hood of a pick up truck" + }, + { + "label": "an old restored train in an open field", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a silver truck parked next to a green truck", + "pred": "a black and white cat sitting on the hood of a pick up truck" + }, + { + "label": "an old fashioned train engine caked up to a caboose", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a tall white bird standing on a lake in a swamp", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "people underneath an arched bridge near the water", + "pred": "a woman looking at her cell phone while standing in front of a body of water" + }, + { + "label": "a very crowded sidewalk with a crooked light pole", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a fire hydrant and a stake in a dirt area with a few plants", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "a person reading a paper on a park bench", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "a girl is in a grocery cart", + "pred": "a little girl is holding an umbrella over her head" + }, + { + "label": "a little black bird with a big colorful beak sitting on a branch", + "pred": "a large bird sitting on top of a tree branch" + }, + { + "label": "a woman is standig on the pavement looking", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a girl is taking a picture of people fishing", + "pred": "a woman looking at her cell phone while standing in front of a body of water" + }, + { + "label": "boy standing on top of a bench", + "pred": "a person standing on a wooden bench" + }, + { + "label": "motorcycles are parked on the street", + "pred": "motorcycles parked in front of a store" + }, + { + "label": "a little girl is riding in a shopping cart while holding her umbrella", + "pred": "a little girl is holding an umbrella over her head" + }, + { + "label": "a man in uniform rides a horse down the street", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "the woman is taking a photo of the white goose next to the river", + "pred": "a woman looking at her cell phone while standing in front of a body of water" + }, + { + "label": "four geese floating in the middle of a river", + "pred": "a herd of ducks swimming across a river" + }, + { + "label": "person in red peacoat and hat riding a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "an old fashioned looking red train is on the tracks by a green grassy hill", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a waterway under a bridge with people sitting down and a woman taking a photo", + "pred": "a woman looking at her cell phone while standing in front of a body of water" + }, + { + "label": "a locomotive in the rear of a train pushing it", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a street scene with cars on the road and people on the sidewalk", + "pred": "a street filled with lots of traffic next to a tall building" + }, + { + "label": "a speed boat is docked underneath a dark, shadowy bridge", + "pred": "a boat floating on top of a large body of water" + }, + { + "label": "the statue on the bench is reading a large newspaper", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "a street filled with traffic next to a building", + "pred": "cars are stopped at a red light" + }, + { + "label": "a little girl inside of a shopping cart", + "pred": "a little girl is holding an umbrella over her head" + }, + { + "label": "a train speeding along the railroad tracks during the day", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a man and his dog sit at the park", + "pred": "a man sitting on a bench with a dog" + }, + { + "label": "a train with mirrors on the outside sits on some tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a man in front of a christmas tree with his dog", + "pred": "a man wearing a christmas hat and holding a dog" + }, + { + "label": "a white bird fly's in the air above the blue water", + "pred": "a seagull flying over a body of water" + }, + { + "label": "a blue sign points the way to the road", + "pred": "a street sign with a bicycle attached to it" + }, + { + "label": "a man in a red santa hat and a dog pose in front of a christmas tree", + "pred": "a man wearing a christmas hat and holding a dog" + }, + { + "label": "ducks in a body of water with trees", + "pred": "a herd of ducks swimming across a river" + }, + { + "label": "a traffic light sitting next to a street sign", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a man sitting at a green bench next to a tall tree", + "pred": "a man sitting on a bench with a dog" + }, + { + "label": "a man sits on a bench with a dog laying at his feet", + "pred": "a man sitting on a bench with a dog" + }, + { + "label": "a large shadow is cast upon a busy street", + "pred": "a street filled with lots of traffic next to a tall building" + }, + { + "label": "a train parked at a train stop next to another train", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "people standing on a platform next to a train at night", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "a red fire hydrant is on the brick sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a yellow and blue bus drives down the road", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a blue traffic sign sitting on top of a pole", + "pred": "a street sign with a bicycle attached to it" + }, + { + "label": "a large city bus driving down a street", + "pred": "a bus that is parked in a parking lot" + }, + { + "label": "buildings some trees people and cars and signs", + "pred": "a street filled with lots of traffic next to a tall building" + }, + { + "label": "a train is entering its stop with people waiting for it", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "a quiet city street shows buildings, cars, and people", + "pred": "a street filled with lots of traffic next to a tall building" + }, + { + "label": "a train on the tracks that is filled with doors for houses", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a train engine that is letting out smoke travelling down a railroad track with multiple passenger cars attached", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a light post leans towards a crowd on a busy city street", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a gaggle of geese swim in a body of water", + "pred": "a herd of ducks swimming across a river" + }, + { + "label": "crowded sheep of different colors stand in an enclosure", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a train has oval like mirrors on the sides", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a small child stands in a shopping cart with an umbrella", + "pred": "a little girl is holding an umbrella over her head" + }, + { + "label": "a green bench with graffiti in an area with trees", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "a sign that might read parking here where bicycles are parked", + "pred": "a street sign with a bicycle attached to it" + }, + { + "label": "a train car pulls into a train station where travelers wait nearby", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "a white bus parked at a stop next to a crowd", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "a man wearing a santa hat holding a dog posing for a picture", + "pred": "a man wearing a christmas hat and holding a dog" + }, + { + "label": "a baseball cap and catchers mitt sitting on the ground", + "pred": "a baseball player wearing a catchers mitt" + }, + { + "label": "a train is stopping to pick up passengers on the platform", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "a red fire hydrant sitting in a field next to a white building", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "a train car parked next to a tree on tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a man and his dog enjoy an afternoon in the park", + "pred": "a man sitting on a bench with a dog" + }, + { + "label": "a train coming down on the tracks", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "a large and wide street covered in lots of traffic lights", + "pred": "traffic lights hanging from the side of a road" + }, + { + "label": "cars bumper to bumper stuck in city traffic", + "pred": "cars are stopped at a red light" + }, + { + "label": "dog and his human walking partner relax in a park", + "pred": "a man sitting on a bench with a dog" + }, + { + "label": "a red arrow light at a city street intersection", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a small sheep is standing under a wooden fence post", + "pred": "a sheep standing on top of a lush green field" + }, + { + "label": "a school bus covered in art and a sign", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a statue of a man reading on a park bench", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "a yellow and blue public bus driving down the road by some flowers", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a boat in the water next to a rail in a tunnel", + "pred": "a boat floating on top of a large body of water" + }, + { + "label": "a white and blue buss driving on a cobblestone road", + "pred": "a blue and white bus parked in a parking lot" + }, + { + "label": "an old fashioned train riding on train tracks in a wooded area", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a street scene with cars and a stoplight", + "pred": "cars are stopped at a red light" + }, + { + "label": "a street with a bunch of cars on it", + "pred": "cars are stopped at a red light" + }, + { + "label": "cars are stopped at a traffic light on a highway", + "pred": "traffic lights hanging from the side of a road" + }, + { + "label": "a double-decker bus is parked in a large field", + "pred": "a double decker bus is parked in a field" + }, + { + "label": "traffic is stopped at a red stop light", + "pred": "traffic lights hanging from the side of a road" + }, + { + "label": "a large brown dog standing on the side of a white wood fence", + "pred": "a brown and white dog standing on top of a patio" + }, + { + "label": "two girls sitting on device on side of a boat", + "pred": "a woman sitting on top of a boat next to a man" + }, + { + "label": "people standing on a sidewalk with a train going by", + "pred": "people waiting to board a train at a train station" + }, + { + "label": "three similar cars are stopped at traffic lights", + "pred": "cars are stopped at a red light" + }, + { + "label": "a highway filled with lots of traffic nest to a traffic light", + "pred": "cars driving down a highway next to a highway sign" + }, + { + "label": "a bearded man in a santa hat holding a small dog", + "pred": "a man wearing a christmas hat and holding a dog" + }, + { + "label": "a motorboat docked on a pier under a tunnel", + "pred": "a boat floating on top of a large body of water" + }, + { + "label": "a large bus driving down a road", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a small boat on a body of water on a harbor", + "pred": "a boat floating on top of a large body of water" + }, + { + "label": "a public transit bus in a city street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a red fire hydrant with a building", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "a train passing through wooded areas on a train track", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a public bus parked in a bus station at night", + "pred": "a bus that is parked in a parking lot" + }, + { + "label": "two girls are sitting on the edge of a boat looking at the water", + "pred": "a woman sitting on top of a boat next to a man" + }, + { + "label": "a double decker bus sitting on a green field", + "pred": "a double decker bus is parked in a field" + }, + { + "label": "this giraffe has two horns on the top of its head", + "pred": "a giraffe eating a piece of fruit from a tree" + }, + { + "label": "a white building some trees and a red fire hydrant", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "a baseball glove and a black ball hat", + "pred": "a baseball player wearing a catchers mitt" + }, + { + "label": "a northumbria bus is parked in a field", + "pred": "a double decker bus is parked in a field" + }, + { + "label": "a bus parked on the side of the street", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "an empty green park bench sitting among overgrowth", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "a sculpture of a man reading a newspaper sitting at a bench", + "pred": "a statue of a man sitting on a bench" + }, + { + "label": "little girls are on the edge of a boat", + "pred": "a woman sitting on top of a boat next to a man" + }, + { + "label": "a locomotive on train tracks in a wooded countryside", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "children are sitting on the side of the boat in the water", + "pred": "a woman sitting on top of a boat next to a man" + }, + { + "label": "the bikes are all parked beside the sign", + "pred": "a street sign with a bicycle attached to it" + }, + { + "label": "a very large herd of sheep of all different colors", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a cat sitting on a bench in front of a house", + "pred": "a white cat sitting on top of a cement block" + }, + { + "label": "a sheep rubbing its back under a fence post", + "pred": "a sheep standing on top of a lush green field" + }, + { + "label": "a sheep standing on the grass in front of a fence", + "pred": "a sheep standing on top of a lush green field" + }, + { + "label": "furry goats and other animals in a crowded pen", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a public transit bus on a brick surface", + "pred": "a blue and white bus parked in a parking lot" + }, + { + "label": "a cat sitting on a bench", + "pred": "a white cat sitting on top of a cement block" + }, + { + "label": "a highway with a green exit sign and a yellow traffic sign", + "pred": "cars driving down a highway next to a highway sign" + }, + { + "label": "a man holding his dog stands in front of the tree", + "pred": "a man wearing a christmas hat and holding a dog" + }, + { + "label": "a one way sign with a yellow blinking light on top", + "pred": "a street sign with a bicycle attached to it" + }, + { + "label": "a signal light glows red by the street sign", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a white bus is pulled up to a sidewalk", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "a sheep standing in a dry grass field", + "pred": "a sheep standing on top of a dry grass field" + }, + { + "label": "a silver and green train pulling into a train station", + "pred": "a green and white train on a train track" + }, + { + "label": "a white building on a green lawn with trees and a fire hydrant", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "a metal pole covered in different street signs", + "pred": "a number of street signs on a pole" + }, + { + "label": "a dog standing on a bench with an orange tree in back", + "pred": "a brown and white dog standing on top of a patio" + }, + { + "label": "a young boy standing on a field next to a giraffe", + "pred": "a man is looking at a giraffe" + }, + { + "label": "a pay phone sitting on the side of a street", + "pred": "a city street at night with a street light on" + }, + { + "label": "a dog standing on a ledge in front of a lemon tree", + "pred": "a brown and white dog standing on top of a patio" + }, + { + "label": "a red, yellow and silver train traveling down train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a brown and white dog a fence and a tree", + "pred": "a brown and white dog standing on top of a patio" + }, + { + "label": "a family standing around a small white sheep", + "pred": "a little girl standing next to a sheep in a field" + }, + { + "label": "sheep in a grassy area with trees in the back ground", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a traffic light and intersection with cars traveling in both directions on the street", + "pred": "traffic lights hanging from the side of a road" + }, + { + "label": "a baseball glove on the ground with a hat", + "pred": "a baseball player wearing a catchers mitt" + }, + { + "label": "a green and white street sign some cars and buildings", + "pred": "cars driving down a highway next to a highway sign" + }, + { + "label": "a street sign on a street corner outside of a building", + "pred": "a street sign on the side of a building" + }, + { + "label": "a yellow and red train stopped at a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a giraffe sticking his head in the sky next to a tree", + "pred": "a giraffe eating a piece of fruit from a tree" + }, + { + "label": "two tall giraffe standing next to each other", + "pred": "a giraffe standing next to a bunch of trees" + }, + { + "label": "a traffic light near a street sign is red", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a highway at dusk with cars traveling between cities", + "pred": "cars driving down a highway next to a highway sign" + }, + { + "label": "a street pole with multiple signs next to a building", + "pred": "a number of street signs on a pole" + }, + { + "label": "a passenger bus that has been parked on a street", + "pred": "a blue and white bus parked in a parking lot" + }, + { + "label": "a herd of sheep walking across a lush green field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a blue and white bus with large windows on it", + "pred": "a blue and white bus parked in a parking lot" + }, + { + "label": "a sheep that is standing under a wooden plank from a fence", + "pred": "a sheep standing on top of a lush green field" + }, + { + "label": "a passenger bus drives through a street at night", + "pred": "a bus that is parked in a parking lot" + }, + { + "label": "an old school bus with a bicycle in front of it", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "black and white street signs and some buildings", + "pred": "a number of street signs on a pole" + }, + { + "label": "animals with a fence", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a sign for an exit on a highway", + "pred": "cars driving down a highway next to a highway sign" + }, + { + "label": "a brown dog standing on a wooden bench near a lemon tree", + "pred": "a brown and white dog standing on top of a patio" + }, + { + "label": "a number of red and green traffic lights on a wide highway", + "pred": "traffic lights hanging from the side of a road" + }, + { + "label": "three giraffe standing next to each other behind a rock", + "pred": "a herd of giraffes standing next to a rock wall" + }, + { + "label": "stop light in a city next to a street sign on during the day", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a school bus painted with museum information", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a school bus is covered in some decoration", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "passengers standing outside a green and white tour bus", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "a large clock tower in the middle of a street", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a long train is going down the train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a commuter bus in a warehouse", + "pred": "a bus that is parked in a parking lot" + }, + { + "label": "a blue and cream-colored bus is parked on a cobblestone surface", + "pred": "a blue and white bus parked in a parking lot" + }, + { + "label": "a city intersection road sign in front of a building", + "pred": "a number of street signs on a pole" + }, + { + "label": "a sheep stands idly at the edge of a field", + "pred": "a sheep standing on top of a dry grass field" + }, + { + "label": "various street signs including one that reads \"newlon hale village.\"", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a bus parks behind a cone in a large building", + "pred": "a bus that is parked in a parking lot" + }, + { + "label": "a blue and white street sign that reads \"othello.\"", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "wall st's street sign at night", + "pred": "a street sign on the side of a building" + }, + { + "label": "sheep grazing in a grassy valley", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "a double-decker bus turned in to a traveling showcase for a university", + "pred": "a double decker bus is parked in a field" + }, + { + "label": "people stand on a path outside a parked bus", + "pred": "a double decker bus parked on the side of a road" + }, + { + "label": "a park bench with graffiti sitting next to dead grass", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "we see a double decker bus wit a compartment in the side", + "pred": "a double decker bus is parked in a field" + }, + { + "label": "a long fire plug stands some distance away from the building", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "a grey and silver fire hydrant between two barriers", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a giraffe standing next to a very large tree", + "pred": "a giraffe eating a piece of fruit from a tree" + }, + { + "label": "various signs in two languages direct tourists in wales", + "pred": "a number of street signs on a pole" + }, + { + "label": "a painted school bus reads \"van gogh museum bus\"", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a wall street street sign in front of a lit up street", + "pred": "a street sign on the side of a building" + }, + { + "label": "a bus which is part of the metropolitan transit system", + "pred": "a public transit bus on a city street" + }, + { + "label": "dark surrounding a lit street sign and american flags", + "pred": "a street sign on the side of a building" + }, + { + "label": "subway car leaving the subway station at night", + "pred": "a green and white train on a train track" + }, + { + "label": "a white and brown cat sitting alone on a bench", + "pred": "a white cat sitting on top of a cement block" + }, + { + "label": "a pay phone on the dark street corner", + "pred": "a city street at night with a street light on" + }, + { + "label": "dark street with a pizza hut on the opposite corner", + "pred": "a city street at night with a street light on" + }, + { + "label": "wall street sign pictured next to american decorations", + "pred": "a street sign on the side of a building" + }, + { + "label": "it is night and there are street lights on", + "pred": "a city street at night with a street light on" + }, + { + "label": "single sheep in a field looking back at camera", + "pred": "a sheep standing on top of a dry grass field" + }, + { + "label": "a modern, electric commuter train coming in to the station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a green bench with graffiti on it near a wooded area", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "a curse word written on a traffic sign", + "pred": "a street sign on the side of a road" + }, + { + "label": "a yellow commuter bus leaving a bus stop at sunset", + "pred": "a yellow bus driving down a street next to a tall building" + }, + { + "label": "a commuter train at the station at night", + "pred": "a green and white train on a train track" + }, + { + "label": "a view from the inside of a train from a side window", + "pred": "a window in a building with snow on the ground" + }, + { + "label": "a green and yellow train traveling past a platform", + "pred": "a train is pulling into a train station" + }, + { + "label": "a contemporary light-rail train seen from the front is stopped in a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a yellow bus traveling through a city with small buildings", + "pred": "a yellow bus driving down a street next to a tall building" + }, + { + "label": "a sheep is standing in a front some grass", + "pred": "a sheep standing on top of a dry grass field" + }, + { + "label": "two cups sitting on top of a gray counter", + "pred": "a painting of two vases on a table" + }, + { + "label": "the rear side of a bus on a street", + "pred": "a yellow bus driving down a street next to a tall building" + }, + { + "label": "a sign that is in front of a business", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a large white and red bus driving on the street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a red white and black bus some people and a building", + "pred": "a public transit bus on a city street" + }, + { + "label": "a train passes by in an empty station", + "pred": "a green and white train on a train track" + }, + { + "label": "a variety of cars on a street with buildings", + "pred": "a city street filled with lots of cars and trucks" + }, + { + "label": "pedestrians walking on a sidewalk by a badly tipped traffic light", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a train is pulling into a subway stop", + "pred": "a green and white train on a train track" + }, + { + "label": "one sheep is standing in some tall grass", + "pred": "a sheep standing on top of a dry grass field" + }, + { + "label": "a train traveling through a rural country side covered in grass", + "pred": "a train on a track with smoke coming out of it" + }, + { + "label": "two women and several little girls look at a sheep in an area with hay on the ground", + "pred": "a little girl standing next to a sheep in a field" + }, + { + "label": "two giraffe walking next to each other in a forest", + "pred": "two giraffes standing next to each other in an enclosure" + }, + { + "label": "red and white bus parked next to a glass building", + "pred": "a public transit bus on a city street" + }, + { + "label": "a red traffic light with a sad face drawn over it", + "pred": "a traffic light on the side of a road" + }, + { + "label": "families in a cage bedded with hay petting a sheep", + "pred": "a little girl standing next to a sheep in a field" + }, + { + "label": "two giraffe standing next to each other on a field", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "a number of people walking on a side walk", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a baseball hat on top of a baseball glove in the sand", + "pred": "a baseball player wearing a catchers mitt" + }, + { + "label": "a yellow and white bus a red car a street and some houses", + "pred": "a yellow bus driving down a street next to a tall building" + }, + { + "label": "small children standing around a small white sheep", + "pred": "a little girl standing next to a sheep in a field" + }, + { + "label": "a street filled with buses and a white van", + "pred": "a bus driving down a street next to palm trees" + }, + { + "label": "a cat sitting on a bench in front of a building", + "pred": "a white cat sitting on top of a cement block" + }, + { + "label": "a green street sign sitting on top of a pole", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a giraffe drinking milk from a bottle behind a cage", + "pred": "a giraffe standing in front of a group of people" + }, + { + "label": "a red stop sign behind a chain link fence", + "pred": "a stop sign on the side of a fence" + }, + { + "label": "a bent traffic light next to the side of a street", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a pay phone is sitting at the corner of an empty street", + "pred": "a city street at night with a street light on" + }, + { + "label": "a fence some buildings and some different signs", + "pred": "a sign that is on the side of a building" + }, + { + "label": "kids are standing in hay next to a sheep", + "pred": "a little girl standing next to a sheep in a field" + }, + { + "label": "a white and red bus driving down a street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a long train traveling down a city street with tall buildings", + "pred": "a red and white bus driving down a street" + }, + { + "label": "two giraffes and some green trees and yellow flowers", + "pred": "a giraffe standing next to a bunch of trees" + }, + { + "label": "kids petting sheep inside of a corral", + "pred": "a boy and a girl looking at a sheep in a pen" + }, + { + "label": "a diner named \"court order\" sitting on the side of a dirt road", + "pred": "a sign that is on the side of a building" + }, + { + "label": "two birds flying in a gray sky next to a mountain", + "pred": "two birds flying in the sky over a mountain range" + }, + { + "label": "a person looking at a giraffe from a distance", + "pred": "a man is looking at a giraffe" + }, + { + "label": "sheep all in on grassy area", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a boy takes a picture of a seated giraffe", + "pred": "a man is looking at a giraffe" + }, + { + "label": "two giraffes are peering up above some bushes", + "pred": "a giraffe standing next to a bunch of trees" + }, + { + "label": "landscape and a building from a train window", + "pred": "a window in a building with snow on the ground" + }, + { + "label": "a green traffic light suspended above a street", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "two giraffes are towering over the plants under them", + "pred": "a giraffe standing next to a bunch of trees" + }, + { + "label": "two top halve of two giraffes walking in trees", + "pred": "a giraffe standing next to a bunch of trees" + }, + { + "label": "a diner sitting on a street with the side of the building fenced in", + "pred": "a sign that is on the side of a building" + }, + { + "label": "giraffes are poking their heads beyond some rocks", + "pred": "a herd of giraffes standing next to a rock wall" + }, + { + "label": "a building seen through a rain and fog covered window", + "pred": "a window in a building with snow on the ground" + }, + { + "label": "a lime and green bus parked on a grass field parking lot", + "pred": "a yellow school bus parked in a parking lot" + }, + { + "label": "a boy looking at a giraffe laying down", + "pred": "a man is looking at a giraffe" + }, + { + "label": "a bus is stopped along a street with no passengers waiting to board", + "pred": "a yellow bus driving down a street next to a tall building" + }, + { + "label": "a wet day from indoors", + "pred": "a window in a building with snow on the ground" + }, + { + "label": "a street sign on a metal pole next to a street", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "the side of an old building is fenced off", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a sheep with short hair stands under a fence", + "pred": "a sheep standing on top of a lush green field" + }, + { + "label": "a wet window blurs the image of an apartment building beyond", + "pred": "a window in a building with snow on the ground" + }, + { + "label": "a double decker bus makes its way past a tall clock tower", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "the side walk outside a diner that appears to be deserted", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a zebra and a giraffe stand next to each other", + "pred": "a giraffe and a zebra standing next to each other" + }, + { + "label": "a man looking at a giraffe sitting down", + "pred": "a man is looking at a giraffe" + }, + { + "label": "a man is riding on bicycle alongside a new construction building", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a wooden bench sitting next to a large body of water", + "pred": "a bench sitting on top of a dock next to a body of water" + }, + { + "label": "two buses parked in a parking lot next to cars", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a zebra and a giraffe eat some hay together", + "pred": "a giraffe and a zebra standing next to each other" + }, + { + "label": "a bright green train is pulled up for awaiting customers", + "pred": "a train is pulling into a train station" + }, + { + "label": "four giraffes look around a rock corner in their enclosure", + "pred": "a herd of giraffes standing next to a rock wall" + }, + { + "label": "a double traffic signal shows three green lights", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "four giraffes poking their heads out from behind a rock", + "pred": "a herd of giraffes standing next to a rock wall" + }, + { + "label": "a street light shows a yellow are point right", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "four giraffes sticking their heads through a hole in some large rocks", + "pred": "a herd of giraffes standing next to a rock wall" + }, + { + "label": "giraffe and a zebra standing side by side", + "pred": "a giraffe and a zebra standing next to each other" + }, + { + "label": "two green lit traffic lights with a blue sky behind them", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "othello sign in front of a restaurant on a street", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a street sign in the city with various symbols on it", + "pred": "a street sign on the side of a road" + }, + { + "label": "a stop sign behind a green chain link fence", + "pred": "a stop sign on the side of a fence" + }, + { + "label": "a fire hydrant near two small poles on the curb of a street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a variety of shops and stores on a busy city street", + "pred": "a city street filled with lots of cars and trucks" + }, + { + "label": "sheep graze in a lushly green mountain meadow", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "the fireplug is positioned between 2 slanted posts, all three of which are dotted with graffiti", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a gated grassy noel has a shorted stop sign stuck in part of the land", + "pred": "a stop sign on the side of a fence" + }, + { + "label": "a street light in front of a store front window", + "pred": "a street sign on a pole in front of a store" + }, + { + "label": "a \"i love tottenham\" sign on a black post", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a busy street crammed with businesses and parked cars", + "pred": "a city street filled with lots of cars and trucks" + }, + { + "label": "green lights a shining bright against a cool blue sky", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a downtown clock tower at the intersection of a busy street", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a street full of cars that are driving and parked and a group of people sitting outside eating", + "pred": "a city street filled with lots of cars and trucks" + }, + { + "label": "a fire hydrant on a street has two rusty posts beside it", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a woman holding up a large bottle so a baby giraffe can drink from it", + "pred": "a giraffe standing in front of a group of people" + }, + { + "label": "flock of white woolen sheep standing in grassy area", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a yellow bus with tinted windows driving uphill down a street", + "pred": "a yellow and yellow bus driving down a street" + }, + { + "label": "a busy intersection with a bus, several cars and a clock tower", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "the traffic lights glow green in the night sky", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "an elaborate lamp post clock in a traffic circle", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a giraffe and a zebra stand side by side as they eat", + "pred": "a giraffe and a zebra standing next to each other" + }, + { + "label": "a woman feeding a giraffe with a bottle at the zoo", + "pred": "a giraffe standing in front of a group of people" + }, + { + "label": "a street sign is a circle with a cross through it", + "pred": "a street sign on the side of a road" + }, + { + "label": "giraffes stand with their necks stretched over a barrier toward a small crowd of people", + "pred": "two giraffes standing next to each other in an enclosure" + }, + { + "label": "the school bus is colored yellow and pink", + "pred": "a yellow school bus parked in a parking lot" + }, + { + "label": "a clock between two bronze flamingo statues on a black box", + "pred": "a clock that is on top of a pole" + }, + { + "label": "passengers wait at the platform as a passenger train approaches", + "pred": "a train is pulling into a train station" + }, + { + "label": "a red double decker bus on a street", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a passenger bus that is parked in a parking lot", + "pred": "a white and blue bus parked in a parking lot" + }, + { + "label": "the stop sign is behind the fence instead of on the street", + "pred": "a stop sign on the side of a fence" + }, + { + "label": "a train pulling up to station people waiting", + "pred": "a train is pulling into a train station" + }, + { + "label": "a stop sign is in grass behind a fence", + "pred": "a stop sign on the side of a fence" + }, + { + "label": "an orange and green train reads \"bnsf\" on the side", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a train caboose on tracks next to another train", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a baby giraffe sucking down a bottle of milk", + "pred": "a giraffe standing in front of a group of people" + }, + { + "label": "steam rising from a train moving along tracks", + "pred": "a train on a track with smoke coming out of it" + }, + { + "label": "a sign post with an electric traffic signal attached", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "two giraffes and one other animal grazing in a field", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "a traffic light on the intersection of a city, with a large building and a bicyclist", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "two giraffes next to an antelope in a field", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "a big white bus is parked in the middle of a parking lot", + "pred": "a white and blue bus parked in a parking lot" + }, + { + "label": "the last car of a train sits on train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a yellow and pink bus parked by itself", + "pred": "a yellow school bus parked in a parking lot" + }, + { + "label": "a bus is painted half pink and half yellow", + "pred": "a yellow school bus parked in a parking lot" + }, + { + "label": "a white and black train on rusty train tracks", + "pred": "a train on a track with smoke coming out of it" + }, + { + "label": "a cup with a bird on it and a cup with a wolf on it", + "pred": "a painting of two vases on a table" + }, + { + "label": "i am assuming that the sign means no profanity", + "pred": "a street sign on the side of a road" + }, + { + "label": "two ceramic cups - one with a bird and the other with a fox", + "pred": "a painting of two vases on a table" + }, + { + "label": "sheep grazing on the grass in the field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a train billowing smoke going down a track", + "pred": "a train on a track with smoke coming out of it" + }, + { + "label": "a giraffe drinking from a bottle in front of a group of people", + "pred": "a giraffe standing in front of a group of people" + }, + { + "label": "a train blowing smoke is coming down the tracks", + "pred": "a train on a track with smoke coming out of it" + }, + { + "label": "giraffes leaning over a fence towards some people", + "pred": "two giraffes standing next to each other in an enclosure" + }, + { + "label": "two cups with painted animal pictures on them", + "pred": "a painting of two vases on a table" + }, + { + "label": "people seated on wooden chairs and a bicycle parked nearby", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "an old school bus is painted neon yellow and magenta", + "pred": "a yellow school bus parked in a parking lot" + }, + { + "label": "buses and tractor trailers are parked together in different directions", + "pred": "a white and blue bus parked in a parking lot" + }, + { + "label": "two giraffes and a deer-like animal in a grassy field", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "a city has colorful buildings and signs among cars", + "pred": "a city street filled with lots of cars and trucks" + }, + { + "label": "a flock of sheep walking along a grassy hillside grazing", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "a flock of sheep are grazing on a grassy slope", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "a bus that is going down the tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a no cursing sign posted as a street sign", + "pred": "a street sign on the side of a road" + }, + { + "label": "a street sign with flags on it and a building", + "pred": "a street sign in front of a tall building" + }, + { + "label": "a logo on a blue and red bus", + "pred": "a sign on the side of a red bus" + }, + { + "label": "people are lined up along a train station waiting for a train", + "pred": "a train is pulling into a train station" + }, + { + "label": "two cup like things with a bird and a wolf painted on them", + "pred": "a painting of two vases on a table" + }, + { + "label": "a train on a train track with power lines above", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "two people sitting on benches with trees", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "little kids in a barn petting a sheep in a stall", + "pred": "a boy and a girl looking at a sheep in a pen" + }, + { + "label": "giraffes in a zoo, standing with their heads peeking over the fence, looking at people", + "pred": "two giraffes standing next to each other in an enclosure" + }, + { + "label": "diesel train engine with company logo in train yard", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "electric trolleys, bus, limo bus, and bicycle on a street", + "pred": "a double decker bus driving down a street next to palm trees" + }, + { + "label": "a double decker bus is going down a street", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a side symbol on a bus", + "pred": "a sign on the side of a red bus" + }, + { + "label": "a giraffe eats next to a zebra among some rocks", + "pred": "a giraffe and a zebra standing next to each other" + }, + { + "label": "birds fly around, above an empty beach", + "pred": "a flock of birds sitting on top of a sandy beach" + }, + { + "label": "a passangers bus moving on the opposite side with the car", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a sign showing a place beside the road", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "an intersection with two street signs near a palm tree", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "double-decker buses in the street in residential area", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "red and white train at the end of a train station", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a long line of wooden chairs and two women sit", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a yellow and white train passing by multiple rows of tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a flock of birds flies over a beach", + "pred": "a flock of birds sitting on top of a sandy beach" + }, + { + "label": "the side view of a red vehicle with a logo sign on the side of it", + "pred": "a sign on the side of a red bus" + }, + { + "label": "street sign at the corner of ho'ohu and pe'e roads on kauai", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "sheep grazing in a grassy field", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "a bus parked between two trucks in a parking lot", + "pred": "a white and blue bus parked in a parking lot" + }, + { + "label": "sheep are in a pen as some kids stand next to it while one boy has his hand on one of the sheep's head", + "pred": "a boy and a girl looking at a sheep in a pen" + }, + { + "label": "trains and buses in a town with a large mountain behind it", + "pred": "a double decker bus driving down a street next to palm trees" + }, + { + "label": "two children petting sheep in a wooden pen with straw bedding", + "pred": "a boy and a girl looking at a sheep in a pen" + }, + { + "label": "a street scene with a close of of a stop light", + "pred": "a traffic light on the side of a road" + }, + { + "label": "buses are gathered on a street with palm trees", + "pred": "a double decker bus driving down a street next to palm trees" + }, + { + "label": "a number of vehicles stops in a traffic jam", + "pred": "a white and blue bus parked in a parking lot" + }, + { + "label": "two giraffe and a zebra are standing in a field", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "two birds are in flight in front of some mountains", + "pred": "two birds flying in the sky over a mountain range" + }, + { + "label": "two signs are displayed on a street light", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "signs hanging from a metal pole bordering a street", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a photo looking at the back side of two giraffes check out the people", + "pred": "two giraffes standing next to each other in an enclosure" + }, + { + "label": "children reach over a short barrier to pet small sheep", + "pred": "a boy and a girl looking at a sheep in a pen" + }, + { + "label": "a logo on a double decker bus with a lion and a sword", + "pred": "a sign on the side of a red bus" + }, + { + "label": "this train car has letters and numbers on it", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a red double decker bus headed to victoria is parked on the side of the street", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a clock sitting on a post above the statues of two birds", + "pred": "a clock that is on top of a pole" + }, + { + "label": "the two women sit on a bench together", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a large clock and two birds make a statue", + "pred": "a clock that is on top of a pole" + }, + { + "label": "a red stoplight with a street", + "pred": "a traffic light on the side of a road" + }, + { + "label": "a stop sign gives traffic a frown face", + "pred": "a traffic light on the side of a road" + }, + { + "label": "a flock of birds flying over a beach", + "pred": "a flock of birds sitting on top of a sandy beach" + }, + { + "label": "the sign is now at a red light", + "pred": "a traffic light on the side of a road" + }, + { + "label": "buses on a street near a covered bus stop", + "pred": "a double decker bus driving down a street next to palm trees" + }, + { + "label": "two street signs are sitting under power lines and a palm tree", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a city street with cars and street signs giving directions", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a train stopped in a city", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a red and silver fire hydrant sitting on top of a sidewalk", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a large bus driving down a city street", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "people sitting on chairs lined up", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a flock of birds flying over water and sand with a volley ball net on the sand", + "pred": "a flock of birds sitting on top of a sandy beach" + }, + { + "label": "a light pole and street sign in front of a store front", + "pred": "a street sign on a pole in front of a store" + }, + { + "label": "a street sign with a palm tree and blue skies behind it", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "two birds fly in the sky over mountains", + "pred": "two birds flying in the sky over a mountain range" + }, + { + "label": "a sidewalk under a pedestrian overpass walkway near a public transit passenger train terminal", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a red and white train near a terminal in a city setting", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a light pole that has a street sign", + "pred": "a street sign on a pole in front of a store" + }, + { + "label": "a white building has a street lamp with a sign", + "pred": "a street sign on a pole in front of a store" + }, + { + "label": "a wooden bench next to the water where a lot a boats are", + "pred": "a bench sitting on top of a dock next to a body of water" + }, + { + "label": "people crossing a busy city street full of vehicles", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a clock displayed on a statue of birds", + "pred": "a clock that is on top of a pole" + }, + { + "label": "people are crossing a busy street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "the statue of two pelicans has a clock above it", + "pred": "a clock that is on top of a pole" + }, + { + "label": "pedestrians crossing a street between buses and cars", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a passenger train speeding down a train track", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a beach area with black birds flying over it", + "pred": "a flock of birds sitting on top of a sandy beach" + }, + { + "label": "the side of a buss with a sign on it", + "pred": "a sign on the side of a red bus" + }, + { + "label": "the birds are sitting next to each other on a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a red stop sign next to a blue street sign", + "pred": "a stop sign with a street sign attached to it" + }, + { + "label": "a train is traveling along a stretch of track", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a green pole with street signs attached to it", + "pred": "a street sign in front of a tall building" + }, + { + "label": "a street with two busses and people walking", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a stop sign sits below a construction site", + "pred": "a stop sign with a street sign attached to it" + }, + { + "label": "a light pole with a street sign, outside of a building", + "pred": "a street sign on a pole in front of a store" + }, + { + "label": "a street sign with a traffic light underneath", + "pred": "a street sign in front of a tall building" + }, + { + "label": "a white fire hydrant sitting on a sidewalk", + "pred": "a white fire hydrant sitting on the side of a road" + }, + { + "label": "a bus traveling on a road next to cars with building", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "two small owls on a branch in a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "two owls sitting on the limb of a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a bus driving in the middle of traffic", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "street sign with large buildings", + "pred": "a street sign in front of a tall building" + }, + { + "label": "a street sign with flags and a high rise building", + "pred": "a street sign in front of a tall building" + }, + { + "label": "an empty bench looking out over a bay with numerous boats on it", + "pred": "a bench sitting on top of a dock next to a body of water" + }, + { + "label": "a public transit bus with traffic lights", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "a empty bench is located next to the water of a harbor", + "pred": "a bench sitting on top of a dock next to a body of water" + }, + { + "label": "a fire hydrant outside a shop with graffiti", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a wooden bench is located by a lakeshore", + "pred": "a bench sitting on top of a dock next to a body of water" + }, + { + "label": "a yellow bus picking up riders on a city street", + "pred": "a yellow and yellow bus driving down a street" + }, + { + "label": "two birds perched up on a large tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "two owls sitting together on a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a man sitting on a bench surrounded by pigeons", + "pred": "a man sitting on a bench next to pigeons" + }, + { + "label": "a giraffe examining the back of another giraffe", + "pred": "a baby giraffe standing next to a bigger giraffe" + }, + { + "label": "two giraffes standing next to each other in a holding pen", + "pred": "a baby giraffe standing next to a bigger giraffe" + }, + { + "label": "a red and yellow bus parked in front of a tall building", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a red fire hydrant on a curb near graffiti on a wall", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "two giraffe standing next to each other in a field", + "pred": "a baby giraffe standing next to a bigger giraffe" + }, + { + "label": "a yellow bus waiting at bus stop near some benches", + "pred": "a yellow and yellow bus driving down a street" + }, + { + "label": "two birds flying by in front of a mountain", + "pred": "two birds flying in the sky over a mountain range" + }, + { + "label": "a large red bus driving in heavy traffic", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "two birds fly through the clouds over a mountain", + "pred": "two birds flying in the sky over a mountain range" + }, + { + "label": "the two giraffes are standing next to each other outside", + "pred": "a baby giraffe standing next to a bigger giraffe" + }, + { + "label": "man sitting on park bench waving and wearing water protective clothing", + "pred": "a man that is sitting on a bench" + }, + { + "label": "a construction site sits in front of a stop sign", + "pred": "a stop sign with a street sign attached to it" + }, + { + "label": "graffiti on the side of a building with a fire hydrant", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "an old white fire hydrant on a sidewalk in a town", + "pred": "a white fire hydrant sitting on the side of a road" + }, + { + "label": "a goat alongside a house, trying to go through the bushes", + "pred": "a white sheep standing next to a wooden fence" + }, + { + "label": "a white fire hydrant in front of a red car", + "pred": "a white fire hydrant sitting on the side of a road" + }, + { + "label": "a pair of horses grazing in a field behind a fence", + "pred": "two horses eating grass in a fenced in area" + }, + { + "label": "a bright yellow bus stops to take on passengers", + "pred": "a yellow and yellow bus driving down a street" + }, + { + "label": "a giraffe and a baby giraffe standing in an enclosure", + "pred": "a baby giraffe standing next to a bigger giraffe" + }, + { + "label": "the side of a bus parked on the side of a street", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "the fort york blvd. sign is very close to the stop sign", + "pred": "a stop sign with a street sign attached to it" + }, + { + "label": "two cranes behind a stop sign and a street sign indicating fort york blvd", + "pred": "a stop sign with a street sign attached to it" + }, + { + "label": "a person sitting on a bench wearing some boots and yellow jacket", + "pred": "a man that is sitting on a bench" + }, + { + "label": "a red fire hydrant is standing on a sidewalk", + "pred": "a fire hydrant sitting on the side of a street" + }, + { + "label": "a red do not enter sign under a green street sign", + "pred": "a green street sign sitting on top of a stop sign" + }, + { + "label": "two horses grazing in a fenced in field", + "pred": "two horses eating grass in a fenced in area" + }, + { + "label": "a sheep standing up against the side of a house covered in grass", + "pred": "a white sheep standing next to a wooden fence" + }, + { + "label": "a white fire hydrant stand on a side walk", + "pred": "a white fire hydrant sitting on the side of a road" + }, + { + "label": "a street sign with six different locations on it", + "pred": "two street signs on a pole in front of a building" + }, + { + "label": "a large bus parked on the side of the road", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a yellow bus parks near the median of a street", + "pred": "a yellow and yellow bus driving down a street" + }, + { + "label": "street markers pointing to different locations in front of a few stores", + "pred": "two street signs on a pole in front of a building" + }, + { + "label": "a bus parked in front of a brick building", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "horses standing in a lush green field", + "pred": "two horses eating grass in a fenced in area" + }, + { + "label": "street signs sitting in front of a tree", + "pred": "a green street sign sitting on top of a stop sign" + }, + { + "label": "a goat stands on its high legs and leans against a grassy bank", + "pred": "a white sheep standing next to a wooden fence" + }, + { + "label": "three giraffe's leaning over to get a sip of water", + "pred": "giraffes drinking water from a pond" + }, + { + "label": "a bus parked in the street in front of a building", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a do not enter sign with a two way street sign above it", + "pred": "a green street sign sitting on top of a stop sign" + }, + { + "label": "a transporting cart parked in a street while passengers board", + "pred": "a yellow and white fire truck parked on the side of a road" + }, + { + "label": "a goat leans propped against a grassy surface", + "pred": "a white sheep standing next to a wooden fence" + }, + { + "label": "a street sign sitting on the side of a road", + "pred": "two street signs on a pole in front of a building" + }, + { + "label": "a man in a rain coat and rain boots sitting on a bench with his right hand up", + "pred": "a man that is sitting on a bench" + }, + { + "label": "a man sitting on a bench wearing a yellow jacket", + "pred": "a man that is sitting on a bench" + }, + { + "label": "a white and yellow train traveling down a road next to a red motorcycle", + "pred": "a yellow and white fire truck parked on the side of a road" + }, + { + "label": "vehicles on a street near a green traffic light", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "an older woman riding a train while sitting under it's window", + "pred": "a man sitting on a train looking out the window" + }, + { + "label": "a street sign near a large leafy tree", + "pred": "a green street sign sitting on top of a stop sign" + }, + { + "label": "a white fire hydrant on the sidewalk by a car", + "pred": "a white fire hydrant sitting on the side of a road" + }, + { + "label": "a street sign that reads sparta sitting next to a tall building", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "the cops in the city are riding horses threw the streets", + "pred": "a number of people riding horses on a city street" + }, + { + "label": "a white goat climbing up to eat some grass", + "pred": "a white sheep standing next to a wooden fence" + }, + { + "label": "a traffic light suspended over a street near a forest", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a person in rubber boots and a rain coat seated on a bench", + "pred": "a man that is sitting on a bench" + }, + { + "label": "street signs going in every direction in front of a yellow building", + "pred": "two street signs on a pole in front of a building" + }, + { + "label": "a man is feeding birds from a park bench", + "pred": "a man sitting on a bench next to pigeons" + }, + { + "label": "a bus on the road outside a large building", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "two giraffes grazing on some green leaves in the field", + "pred": "a giraffe eating leaves off of a tree" + }, + { + "label": "a truck made to look like a train parked on the side of the road", + "pred": "a yellow and white fire truck parked on the side of a road" + }, + { + "label": "two brown horses grazing in a field next to a tree", + "pred": "two horses eating grass in a fenced in area" + }, + { + "label": "store signs on the outside of stores in a downtown area", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a herd of giraffes in the water", + "pred": "giraffes drinking water from a pond" + }, + { + "label": "a white and gold train-style bus is parked on a street", + "pred": "a yellow and white fire truck parked on the side of a road" + }, + { + "label": "an angle view of city bus near a side walk", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a horse and a donkey eating grass in a fenced in pasture", + "pred": "two horses eating grass in a fenced in area" + }, + { + "label": "street lights that is next to the road", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "horses that are standing on the sidewalk", + "pred": "a number of people riding horses on a city street" + }, + { + "label": "number of street signs in front of a big building", + "pred": "two street signs on a pole in front of a building" + }, + { + "label": "a map in the street of the city", + "pred": "a sign that is on the side of a building" + }, + { + "label": "two giraffes grazing from a tree in a field", + "pred": "a giraffe eating leaves off of a tree" + }, + { + "label": "a white and yellow car made to look like a train", + "pred": "a yellow and white fire truck parked on the side of a road" + }, + { + "label": "a red car is parked at a traffic light", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "people on some horses that are standing on a road", + "pred": "a number of people riding horses on a city street" + }, + { + "label": "three giraffes banding down to drink water with trees", + "pred": "giraffes drinking water from a pond" + }, + { + "label": "a green traffic light hovering over a street", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a man sits by himself on a bench surrounded by pigeons", + "pred": "a man sitting on a bench next to pigeons" + }, + { + "label": "a bus is driving outside at dusk time", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a giraffe stands near a tree in the wilderness", + "pred": "a giraffe standing next to a tree" + }, + { + "label": "a woman with an umbrella on a commuter train takes a snooze", + "pred": "a man sitting on a train looking out the window" + }, + { + "label": "a bus stop map in a city near a water fountain", + "pred": "a sign that is on the side of a building" + }, + { + "label": "four cops on the back of horses stand in the street", + "pred": "a number of people riding horses on a city street" + }, + { + "label": "a man sits on a park bench surrounded by pigeons", + "pred": "a man sitting on a bench next to pigeons" + }, + { + "label": "three giraffe drinking from a pond with brush in back", + "pred": "giraffes drinking water from a pond" + }, + { + "label": "giraffes eating the shrubbery or the top of trees", + "pred": "a giraffe eating leaves off of a tree" + }, + { + "label": "man on park bench surrounded by some pigeons", + "pred": "a man sitting on a bench next to pigeons" + }, + { + "label": "giraffes leaning down to drink at a watering hole", + "pred": "giraffes drinking water from a pond" + }, + { + "label": "street signs and traffic lights on a city street", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "sparta street sign hanging on a lamp in a street", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "mounted police officers and their horses line up on the street", + "pred": "a number of people riding horses on a city street" + }, + { + "label": "a woman sitting alone on a train next to a bag", + "pred": "a man sitting on a train looking out the window" + }, + { + "label": "two giraffes eating leaves together off of a tree", + "pred": "a giraffe eating leaves off of a tree" + }, + { + "label": "a giraffe standing in front of a group of trees", + "pred": "a giraffe standing next to a tree" + }, + { + "label": "the subway stop square victoria entrance and the map of the neighborhood", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a giraffe is peeking around the side of a wall at the camera", + "pred": "a giraffe sticking its head over a wooden fence" + }, + { + "label": "the business and street signs are clearly visible", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a map and street sign with building", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a bus stopped on the side of the road", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "two giraffes sitting together in the wild", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a large long bus going down a city street", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a camel or a giraffe is playing with the camera-man", + "pred": "a giraffe sticking its head over a wooden fence" + }, + { + "label": "a man sitting on a bench with a shopping bag next to him on a train", + "pred": "a man sitting on a train looking out the window" + }, + { + "label": "a giraffe standing next to a leaf free tree", + "pred": "a giraffe standing next to a tree" + }, + { + "label": "two giraffe are out in the wilderness looking at the camera", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a woman with a cane and shopping bag sitting", + "pred": "a man sitting on a train looking out the window" + }, + { + "label": "giraffes love the tender, young leaves on trees", + "pred": "a giraffe eating leaves off of a tree" + }, + { + "label": "two giraffes are standing in the tall grass", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a giraffe has its head pressed against the wall", + "pred": "a giraffe sticking its head over a wooden fence" + }, + { + "label": "giraffe standing in a grassy field", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "two giraffes standing in a field looking in the same direction", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "head and neck of a giraffe in natural feeding habitat", + "pred": "a giraffe standing next to a tree" + }, + { + "label": "a street sign is above a do not enter sign", + "pred": "a green street sign sitting on top of a stop sign" + }, + { + "label": "giraffes walking in the sand", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "two giraffes are standing together outside near a wall", + "pred": "two giraffes standing next to each other near a rock wall" + }, + { + "label": "two giraffes that are standing near a rock wall", + "pred": "two giraffes standing next to each other near a rock wall" + }, + { + "label": "a shot of a road in a city with a no peddling sign", + "pred": "people crossing a street at a cross walk" + }, + { + "label": "a train with headlights traveling on a track past pedestrians", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "people walking down a city street near a bus", + "pred": "people walking down a street with skateboards" + }, + { + "label": "two giraffes with the backs turned to the camera next to a wall", + "pred": "two giraffes standing next to each other near a rock wall" + }, + { + "label": "a fire hydrant that has the stars and stripes on it", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "a small bird perched on a piece of wood", + "pred": "two birds perched on top of a wooden post" + }, + { + "label": "a single giraffe standing in the middle of a field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a passenger train is sitting at a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a red, white and blue fire hydrant on a city sidewalk", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "street signs near a road with a truck", + "pred": "a street sign on the corner of a street" + }, + { + "label": "a train that is going by some rocks in the day time", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a fire hydrant painted exactly as the patriotic flag", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "a city view of an e-train on a track", + "pred": "a train traveling down train tracks next to a bridge" + }, + { + "label": "warmly dressed pedestrians walking across a public square", + "pred": "people walking down a street with skateboards" + }, + { + "label": "a red and white train traveling down train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a fire hydrant is decorated with an american flag design", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "a giraffe standing in a open grassy field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a tall giraffe standing in a lush green field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "two giraffes in an outdoor setting eating grass", + "pred": "two giraffes standing next to each other near a rock wall" + }, + { + "label": "a bird standing on a wooden post near a house", + "pred": "two birds perched on top of a wooden post" + }, + { + "label": "a vintage red tour bus parked on the side of the street", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "two giraffes walking around in the grass and dirt", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "the street corner of a busy intersection in a town", + "pred": "a street sign on the corner of a street" + }, + { + "label": "a american flag painted fire hydrant with chains hanging at it side", + "pred": "a fire hydrant on the side of the road" + }, + { + "label": "a road between the buildings where a big car is parked.a water hydrant is also seen", + "pred": "a street sign on the corner of a street" + }, + { + "label": "a train is full of of passengers as it pulls off from the station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a blue train traveling past a train station next to a lush green mountain", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "two giraffes in a zoo crane their necks", + "pred": "two giraffes standing next to each other near a rock wall" + }, + { + "label": "people walking down a street next to a tall building", + "pred": "a street scene with people walking around" + }, + { + "label": "a street.a bus for tourists is standing", + "pred": "people walking down a street with skateboards" + }, + { + "label": "a train traveling on an elevated train track", + "pred": "a train traveling down train tracks next to a bridge" + }, + { + "label": "the people are walking down the street in the city", + "pred": "people crossing a street at a cross walk" + }, + { + "label": "a bird sitting on a brick of bird food on a pole", + "pred": "two birds perched on top of a wooden post" + }, + { + "label": "a vehicle crosses an intersection near a building and a bus stop", + "pred": "a street sign on the corner of a street" + }, + { + "label": "people walking on a street", + "pred": "a street scene with people walking around" + }, + { + "label": "a train with bright lights and a crowd of people", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "a bird standing on a piece of wood", + "pred": "two birds perched on top of a wooden post" + }, + { + "label": "a tour bus that is parked on the street", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "two giraffes running across a field in the mud", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a bird sits atop a wooden post and watches its surroundings", + "pred": "two birds perched on top of a wooden post" + }, + { + "label": "a grey and blue train passing over a city area", + "pred": "a train traveling down train tracks next to a bridge" + }, + { + "label": "ladies walking down a street", + "pred": "a street scene with people walking around" + }, + { + "label": "young woman with sheep on straw covered floor", + "pred": "a woman petting a sheep in a field" + }, + { + "label": "commuter train on tracks that set above the city", + "pred": "a train traveling down train tracks next to a bridge" + }, + { + "label": "the passersby ignore the sign for the canon chinese restaurant", + "pred": "a street scene with people walking around" + }, + { + "label": "a child places his hands on the head and neck of a sheep while another sheep looks at his face", + "pred": "a woman petting a sheep in a field" + }, + { + "label": "people walking in a urban area near a 'no peddling' sign", + "pred": "people crossing a street at a cross walk" + }, + { + "label": "the tour bus is parked beside the curb of a building", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "pair of giraffes walking on grassy area in enclosure", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a blue and yellow train passing by people and building", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "pedestrians walking on cobbled sidewalk past multiple storefronts", + "pred": "a street scene with people walking around" + }, + { + "label": "a giraffe standing in front of a grassy plain and blue sky", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a subway bus going thru the subway station", + "pred": "a train that is sitting in a train station" + }, + { + "label": "a person petting the head of a cute fluffy sheep", + "pred": "a woman petting a sheep in a field" + }, + { + "label": "people are walking by a blue train next to a mountain", + "pred": "a train traveling down train tracks next to a crowd of people" + }, + { + "label": "truck driving through the intersection of biltmore and short coxe ave", + "pred": "a street sign on the corner of a street" + }, + { + "label": "people crossing the street near a parked sightseeing bus", + "pred": "people walking down a street with skateboards" + }, + { + "label": "people walking on the sidewalk of a city with a tour bus", + "pred": "people walking down a street with skateboards" + }, + { + "label": "cars are parked along the sidewalk of a narrow street", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "three giraffes, one young, in a natural looking habitat", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "an older dodge pickup sits parked next to another older pickup", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a red dodge truck is parked near another dodge", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a narrow sidewalk with cars parked on both sides of the street", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "a dog anchored to a fire hydrant by his leash", + "pred": "a black and white cat sitting next to a fire hydrant" + }, + { + "label": "a bus that is parked along side a curb", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a white street sign that has the number 20 on it and says zone", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "two giraffes walking next to each other in a field", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a train passing by with empty seats on it", + "pred": "a train that is sitting in a train station" + }, + { + "label": "giraffes in a dirt field with some patches of green", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a white and red train at a train depot with passengers sitting inside", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a red bus driving down a street next to a tall building", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a dog sitting with his leash tied to a fire hydrant", + "pred": "a black and white cat sitting next to a fire hydrant" + }, + { + "label": "a child is petting a sheep while another sheep watches", + "pred": "a woman petting a sheep in a field" + }, + { + "label": "a seagull standing on the sand of a beach", + "pred": "a seagull standing on a beach next to the ocean" + }, + { + "label": "a small group of people on a side walk next to a street sign", + "pred": "people crossing a street at a cross walk" + }, + { + "label": "a woman kneeling to pet animals while others wait", + "pred": "a woman petting a sheep in a field" + }, + { + "label": "a train that is coming towards us on the rail", + "pred": "a train traveling down train tracks next to a bridge" + }, + { + "label": "a sidewalk and cars parked on the street", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "two giraffes are walking abreast on the grassy field", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "two giraffes walking next to each other", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a large long train with man inside on the track", + "pred": "a man riding on the back of a train" + }, + { + "label": "a speed limit sign sits on a sidewalk of a residential block", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "a bird sitting on top of a park bench", + "pred": "a bird sitting on top of a green park bench" + }, + { + "label": "i am unable to see an image above", + "pred": "a man riding on the back of a train" + }, + { + "label": "a red truck parked in grass next to other trucks", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a large dog is tied up to a fire hydrant", + "pred": "a black and white cat sitting next to a fire hydrant" + }, + { + "label": "train cars sit on a track next to a roadway", + "pred": "a man riding on the back of a train" + }, + { + "label": "a large dog tied to a yellow fire hydrant", + "pred": "a black and white cat sitting next to a fire hydrant" + }, + { + "label": "horses are standing in an open field in the grass", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a very old red truck that is parked on some grass", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "people are walking on a sidewalk near a sign that says no peddling", + "pred": "people crossing a street at a cross walk" + }, + { + "label": "a dog wearing a hat standing on some grass", + "pred": "a brown and white dog wearing a hat" + }, + { + "label": "a white colored dog with it's mouth open and wearing a person's baseball style cap on it's head", + "pred": "a brown and white dog wearing a hat" + }, + { + "label": "a dog laying on the ground its leash tied to a fire hydrant", + "pred": "a black and white cat sitting next to a fire hydrant" + }, + { + "label": "a large red and white bus on a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a multi colored train at this train station", + "pred": "a train that is sitting in a train station" + }, + { + "label": "a white and a red bus that is stopped on this street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a seagull stands on the beach in front of a wave", + "pred": "a seagull standing on a beach next to the ocean" + }, + { + "label": "men standing inside of a bus", + "pred": "two men standing next to each other holding cell phones" + }, + { + "label": "a black train engine and its driver and a red caboose", + "pred": "a man riding on the back of a train" + }, + { + "label": "a white dog standing on top of a wooden bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "there seem to be very few animals on this field", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a red truck sitting on a grassy field next to other trucks", + "pred": "a red pick up truck parked in a field" + }, + { + "label": "a pair of giraffes walking in an area between a rock and a tree", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a city bus parked on the side of a road", + "pred": "a public transit bus on a city street" + }, + { + "label": "a seagull standing on the sand near the water", + "pred": "a seagull standing on a beach next to the ocean" + }, + { + "label": "a pair of giraffe standing in a big open area", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a dog in a field looking up while wearing a hat", + "pred": "a brown and white dog wearing a hat" + }, + { + "label": "a red and white bus on street next to trees", + "pred": "a public transit bus on a city street" + }, + { + "label": "a woman sitting on a wooden bench on a wall", + "pred": "a woman sitting on a bench in front of a stone wall" + }, + { + "label": "a young male sitting on a park bench typing on a laptop", + "pred": "a man sitting on a park bench reading a book" + }, + { + "label": "a boy sipping a milk bottle while lying on a bed", + "pred": "a baby laying on a bed with a stuffed animal" + }, + { + "label": "the man is sitting on the park bench using his laptop", + "pred": "a man sitting on a park bench reading a book" + }, + { + "label": "the big bird is standing on the beach by the water", + "pred": "a seagull standing on a beach next to the ocean" + }, + { + "label": "men standing on a subway with other people", + "pred": "two men standing next to each other holding cell phones" + }, + { + "label": "a silver and orange train in a train station", + "pred": "a train that is sitting in a train station" + }, + { + "label": "men are standing around on a city bus", + "pred": "two men standing next to each other holding cell phones" + }, + { + "label": "horses are eating the hay in a large field", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a small train going down a steel track", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "red and white bus parked at the curb of a street under blue sky", + "pred": "a public transit bus on a city street" + }, + { + "label": "the wooden park benches are painted dark purple", + "pred": "a bird sitting on top of a green park bench" + }, + { + "label": "a young man on a wooden bench using a laptop", + "pred": "a man sitting on a park bench reading a book" + }, + { + "label": "a seagull standing near the ocean on the sand", + "pred": "a seagull standing on a beach next to the ocean" + }, + { + "label": "two giraffes traveling across a rocky terrain with patchy grass", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a white dog on leash sitting on brown park bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "a woman is sitting on an old wooden bench", + "pred": "a woman sitting on a bench in front of a stone wall" + }, + { + "label": "a train with a view inside", + "pred": "a train that is sitting in a train station" + }, + { + "label": "a person operating a laptop on a bench", + "pred": "a man sitting on a park bench reading a book" + }, + { + "label": "a man uses his computer on a park bench", + "pred": "a man sitting on a park bench reading a book" + }, + { + "label": "a small child laying on a bed drinking from a bottle", + "pred": "a baby laying on a bed with a stuffed animal" + }, + { + "label": "a woman in yellow shirt and skirt with cats in grass", + "pred": "a woman standing next to a fire hydrant" + }, + { + "label": "a street with traffic lights and cars at night", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "two giraffes in an open field with a sky", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a dog looking up with mouth open and wearing a hat", + "pred": "a brown and white dog wearing a hat" + }, + { + "label": "a blue and white train is moving on the rails", + "pred": "a blue and white train traveling down train tracks" + }, + { + "label": "a baby giraffe stands next to a adult giraffe on staring out beyond them", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a small bird sitting on the back of a wooden bench", + "pred": "a bird sitting on top of a green park bench" + }, + { + "label": "an adult and a younger giraffe are facing the same direction", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "this woman is sitting on a bench and looking in the right direction", + "pred": "a woman sitting on a bench in front of a stone wall" + }, + { + "label": "a bench with a couple of purple benches", + "pred": "a bird sitting on top of a green park bench" + }, + { + "label": "three people stand posing for a picture on a bus", + "pred": "two men standing next to each other holding cell phones" + }, + { + "label": "man standing in a black train with red train in front", + "pred": "a man riding on the back of a train" + }, + { + "label": "oncoming traffic shining their lights at a traffic stop", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a five car blue and white train with passengers", + "pred": "a blue and white train traveling down train tracks" + }, + { + "label": "two horses in a pasture with buildings", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a person standing next to a yellow fire hydrant", + "pred": "a woman standing next to a fire hydrant" + }, + { + "label": "an electric train is traveling down the track on a road", + "pred": "a blue and white train traveling down train tracks" + }, + { + "label": "a woman in grey shirt and hat sitting on a wooden bench", + "pred": "a woman sitting on a bench in front of a stone wall" + }, + { + "label": "a man standing in front of the open door of a bus", + "pred": "a woman standing next to a double decker bus" + }, + { + "label": "a large green field with a bench", + "pred": "a bench sitting in the middle of a grassy field" + }, + { + "label": "the large dog is wearing a human's cap on it's head", + "pred": "a brown and white dog wearing a hat" + }, + { + "label": "a man standing next to a woman in a living room", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "an intersection with red light at night time", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a bench that has been placed in a field", + "pred": "a bench sitting in the middle of a grassy field" + }, + { + "label": "a train driving down a track surrounded by trees", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "an electric train going by on the tracks", + "pred": "a blue and white train traveling down train tracks" + }, + { + "label": "commuters on a busy subway car or a bus", + "pred": "two men standing next to each other holding cell phones" + }, + { + "label": "a woman sitting on a wooden bench next to a rock wall", + "pred": "a woman sitting on a bench in front of a stone wall" + }, + { + "label": "purple benches and a bird on it", + "pred": "a bird sitting on top of a green park bench" + }, + { + "label": "a woman wearing a jean skirt standing next to a fire hydrant", + "pred": "a woman standing next to a fire hydrant" + }, + { + "label": "an empty street with brick buildings and cars", + "pred": "a city street with a street sign on the side of it" + }, + { + "label": "a large white and blue train on a train track", + "pred": "a blue and white train traveling down train tracks" + }, + { + "label": "a white dog tied with a black leash to a bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "a white and black train in train docking area", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a little boy drinking milk from a bottle while laying in bed", + "pred": "a baby laying on a bed with a stuffed animal" + }, + { + "label": "a park bench that is sitting in grass under a tree", + "pred": "a park bench sitting in the middle of a park" + }, + { + "label": "a park bench next to a tree in grassy field", + "pred": "a park bench sitting in the middle of a park" + }, + { + "label": "a small white dog standing on a bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "a vast, grassy field with animals in the distance", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a dog standing on a bench during the day", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "a plain wooden bench underneath a large tree", + "pred": "a park bench sitting in the middle of a park" + }, + { + "label": "a dilapidated bicycle frame underneath a pedestrian zone sign", + "pred": "a person walking down a sidewalk next to a bike" + }, + { + "label": "a park area with a wooden bench that is under a tree and green grass all around the bench", + "pred": "a park bench sitting in the middle of a park" + }, + { + "label": "blurry traffic lights on the road", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a train car is sitting on some train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a train moving along a track during the day", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "a man and a woman dressed in a gangster costume and ball dress", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a white green and black sign and a bicycle without wheels", + "pred": "a person walking down a sidewalk next to a bike" + }, + { + "label": "two little sparrows standing on a table by a knife", + "pred": "two birds sitting on a table next to each other" + }, + { + "label": "a man is standing outside of a bus on the curb", + "pred": "a woman standing next to a double decker bus" + }, + { + "label": "a train engine approaches a switch in a train yard", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a young boy lying in a bed with a sippy cup", + "pred": "a baby laying on a bed with a stuffed animal" + }, + { + "label": "a train passes by a road on a railroad track", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "a park bench sitting on a bed of mulch next to a tree", + "pred": "a park bench sitting in the middle of a park" + }, + { + "label": "street at night with red stoplights and street lights with head on traffic", + "pred": "a car is stopped at a red light at night" + }, + { + "label": "a couple is posing together dressed in outlandish attire", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a bus on the street next to the lamp post", + "pred": "a public transit bus on a city street" + }, + { + "label": "a man and woman in costume like clothing standing together", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a bike without wheels sitting in front of a building", + "pred": "a person walking down a sidewalk next to a bike" + }, + { + "label": "a bench outside near a body of water during the day", + "pred": "a wooden bench sitting next to a body of water" + }, + { + "label": "two gray white and brown birds a knife and a red table", + "pred": "two birds sitting on a table next to each other" + }, + { + "label": "a rusted up park bench sitting in the middle of a park", + "pred": "a bench sitting in the middle of a grassy field" + }, + { + "label": "a man standing next to a stage coach bus parked at a bus stop", + "pred": "a woman standing next to a double decker bus" + }, + { + "label": "a wooden bench sitting next to a large body of water", + "pred": "a wooden bench sitting next to a body of water" + }, + { + "label": "small birds standing on top of a table", + "pred": "two birds sitting on a table next to each other" + }, + { + "label": "a wooden bench and life preserver near some water", + "pred": "a wooden bench sitting next to a body of water" + }, + { + "label": "a man walking towards a blue and white bus on street", + "pred": "a woman standing next to a double decker bus" + }, + { + "label": "young male boarding a city bus at a bus stop", + "pred": "a woman standing next to a double decker bus" + }, + { + "label": "yellow train engine hauling freight cars past a level crossing", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "the bench in the field is empty with no one around it", + "pred": "a bench sitting in the middle of a grassy field" + }, + { + "label": "two people dressed up in formal attire", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "two benches, back to back, near a chain railing", + "pred": "a wooden bench sitting next to a body of water" + }, + { + "label": "a city bus stopped at stop waiting for passengers", + "pred": "a public transit bus on a city street" + }, + { + "label": "a bike has had the wheels stolen from it sits in a pedestrian zone", + "pred": "a person walking down a sidewalk next to a bike" + }, + { + "label": "a woman standing next to a yellow fire hydrant", + "pred": "a woman standing next to a fire hydrant" + }, + { + "label": "two sparrows sit n a table with a red tablecloth at an outdoor cafe", + "pred": "two birds sitting on a table next to each other" + }, + { + "label": "a giraffe sticks his nose and tongue out of a wire fence to accept something a man is offering him", + "pred": "a person feeding a giraffe at a zoo" + }, + { + "label": "an empty blue park bench on a slight hill", + "pred": "a bench sitting in the middle of a grassy field" + }, + { + "label": "a big orange sign about street maintenance near a street", + "pred": "a sign on a pole on the side of a road" + }, + { + "label": "a woman wearing a yellow top and a jean skirt standing next to a yellow fire hydrant", + "pred": "a woman standing next to a fire hydrant" + }, + { + "label": "an empty wooden bench near the waters edge", + "pred": "a wooden bench sitting next to a body of water" + }, + { + "label": "a fire hydrant on the side of a road", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a giraffe eating out of the hands of a man through fence", + "pred": "a person feeding a giraffe at a zoo" + }, + { + "label": "a large long train on a steel track", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "a yellow train engine pulling train cars over road", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "a small child laying in bed drinking a bottle of milk", + "pred": "a baby laying on a bed with a stuffed animal" + }, + { + "label": "a bicycle laid on its side on a sidewalk under a pedestrian zone sign", + "pred": "a person walking down a sidewalk next to a bike" + }, + { + "label": "a city bus 18 parked in a red zone", + "pred": "a public transit bus on a city street" + }, + { + "label": "a bike on lamppost next to a red and white bus", + "pred": "a public transit bus on a city street" + }, + { + "label": "two birds perched on a table near a plate of food", + "pred": "two birds sitting on a table next to each other" + }, + { + "label": "a yellow fire hydrant by a wall and a sign", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a fire hydrant next to a red sign", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a bus going to crosstown parked on side of road", + "pred": "a public transit bus on a city street" + }, + { + "label": "a bus parked on the side of the road next to a bike", + "pred": "a public transit bus on a city street" + }, + { + "label": "two giraffes are in the wilderness, possibly eating", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "giraffes stand in a field surrounded by woods in a zoo", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a fire hydrant and a street sign are on the side of a street", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "giraffes walking around on grass by trees", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a intersection and a narrow street lined with stone buildings", + "pred": "a city street with a street sign on the side of the road" + }, + { + "label": "a pond of water with three giraffe walking in the dirt", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a residential street has an orange no parking sign near a sidewalk", + "pred": "a sign on a pole on the side of a road" + }, + { + "label": "a brown and gold fire hydrant in front of a brick building", + "pred": "a fire hydrant on a sidewalk in front of a building" + }, + { + "label": "a house lined road with red trucks on the side of the street", + "pred": "a city street with a street sign on the side of the road" + }, + { + "label": "three giraffes walking on a gravel ground near a body of water", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "in a large area many giraffes stand behind a fenced area", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "a large wooden pole with a green street sign hanging from it", + "pred": "a street sign on top of a pole" + }, + { + "label": "a rather dirty looking street sign advertising maintenance on wednesday", + "pred": "a sign on a pole on the side of a road" + }, + { + "label": "street signs on the corner of gladys and detroit", + "pred": "a street sign on top of a pole" + }, + { + "label": "a man in black sweater feeding a giraffe through a fence", + "pred": "a person feeding a giraffe at a zoo" + }, + { + "label": "a bus that is on the side of the road", + "pred": "a public transit bus on a city street" + }, + { + "label": "a small suburb area with a few parked red vans", + "pred": "a city street with a street sign on the side of the road" + }, + { + "label": "three adult giraffes in a field among trees", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "giraffes and other animals in a fenced enclosure", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "giraffes on a grassy field during the day", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a front shot of a crosstown bus is parked on the side of the road", + "pred": "a public transit bus on a city street" + }, + { + "label": "a herd of giraffe walking along a dirt road", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a man feeding a giraffe through a metal fence", + "pred": "a person feeding a giraffe at a zoo" + }, + { + "label": "a stone building with a blue door on it", + "pred": "a city street with a street sign on the side of the road" + }, + { + "label": "a fire hydrant sits in front of a brick building", + "pred": "a fire hydrant on a sidewalk in front of a building" + }, + { + "label": "the signs give the street names and show where to park", + "pred": "a street sign on top of a pole" + }, + { + "label": "a street sign and fire hydrant sit next to a sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a bus parked to the side of an empty road", + "pred": "a public transit bus on a city street" + }, + { + "label": "two trains passing each other on seperate tacks", + "pred": "a train traveling down train tracks next to a lush green field" + }, + { + "label": "a white bus with bicycle rack parked on the side of a street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a wooden utility pole sports several street signs", + "pred": "a street sign on top of a pole" + }, + { + "label": "a man feeding a giraffe through a fence", + "pred": "a person feeding a giraffe at a zoo" + }, + { + "label": "the subject of this photo is a fire plug on a city street", + "pred": "a fire hydrant on a sidewalk in front of a building" + }, + { + "label": "a public transportation bus with an advertisement on the side", + "pred": "a public transit bus on a city street" + }, + { + "label": "a white road sign suspended over a highway", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a fire hydrant on a side walk in front of a building", + "pred": "a fire hydrant on a sidewalk in front of a building" + }, + { + "label": "a street sign in english and asian writing", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "two trains pass each other on the railroad tracks", + "pred": "a train traveling down train tracks next to a lush green field" + }, + { + "label": "a orange street sign with a white sign underneath", + "pred": "a sign on a pole on the side of a road" + }, + { + "label": "a fire hydrant across from a red bricked building", + "pred": "a fire hydrant on a sidewalk in front of a building" + }, + { + "label": "the street signs for gladys and detroit streets are attached to a wooden pole", + "pred": "a street sign on top of a pole" + }, + { + "label": "three giraffes with heads pointing ahead walk on a dirt path", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a small bird standing on a rocky ground", + "pred": "a bird that is standing on the ground" + }, + { + "label": "giraffes walking near water surrounded by a forest", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a long silver train traveling through a small city", + "pred": "a train traveling down train tracks next to a lush green field" + }, + { + "label": "a modern train running on tracks near a station", + "pred": "a white and blue train sitting on the tracks" + }, + { + "label": "a large long white train at a station", + "pred": "a white and blue train sitting on the tracks" + }, + { + "label": "a herd of giraffe walking through a grass covered hillside", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "giraffes spending time in an enclosed, grassy area", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "a grey and white bird on sandy beach next to rocks", + "pred": "a bird that is standing on the ground" + }, + { + "label": "street signs, graffiti, old buildings and a bridge", + "pred": "a street sign on the side of a building" + }, + { + "label": "a small bird standing on a rocky beach", + "pred": "a bird that is standing on the ground" + }, + { + "label": "a bird standing in the sand surrounded by rocks and pebbles", + "pred": "a bird that is standing on the ground" + }, + { + "label": "a street sign on a rural street with a sidewalk", + "pred": "a sign on a pole on the side of a road" + }, + { + "label": "large city signs in front of a big mountain", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a street sign has a freeway sign in a different language", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "graffiti on a building next to street signs", + "pred": "a street sign on the side of a building" + }, + { + "label": "a little grey and white bird standing on a sandy beach", + "pred": "a bird that is standing on the ground" + }, + { + "label": "a fire hydrant and some cars on the side of the street", + "pred": "a red brick building with a neon sign on the side of the building" + }, + { + "label": "a large white bus on a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a sign is next to an ornate white gazebo", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "street signs cast shadows on the graffiti decorated wall", + "pred": "a street sign on the side of a building" + }, + { + "label": "a green sign says thruway one fourth mile", + "pred": "a street sign on the side of a road" + }, + { + "label": "two trains on the track at a railway", + "pred": "a train traveling down train tracks next to a lush green field" + }, + { + "label": "a brown building has graffiti on the side", + "pred": "a street sign on the side of a building" + }, + { + "label": "a stable full of lambs standing and laying around", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "goats on grass in an area", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a public transit bus on a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a public transit train at one of its stations", + "pred": "a white and blue train sitting on the tracks" + }, + { + "label": "a train next to a train station with city", + "pred": "a city at night with a train passing by" + }, + { + "label": "a white train traveling down the tracks with expo center on a sign on the front", + "pred": "a white and blue train sitting on the tracks" + }, + { + "label": "a street sign is pictured at the forefront with an ornate building", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "giraffes wonder around in a fenced off area with other animals", + "pred": "giraffes and zebras in a grassy area" + }, + { + "label": "a stop sign with a pagoda", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "an open book store on a street corner", + "pred": "a red brick building with a neon sign on the side of the building" + }, + { + "label": "dusk is about to enter behind the city", + "pred": "a city at night with a train passing by" + }, + { + "label": "various street signs and a building next to a bridge", + "pred": "a street sign on the side of a building" + }, + { + "label": "sheep stand and lay in hay strewn around a barn", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a giraffe caged in while grass falling from his mouth", + "pred": "a giraffe that is standing in the dirt" + }, + { + "label": "two passenger trains on opposite tracks speeding down the tracks", + "pred": "a train traveling down train tracks next to a lush green field" + }, + { + "label": "i giraffe lowers its head to snag a floating wisp of hay", + "pred": "a giraffe that is standing in the dirt" + }, + { + "label": "the metro train is painted white with blue lettering", + "pred": "a white and blue train sitting on the tracks" + }, + { + "label": "a street sign on the street near a building", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a city bus carrying ads featuring women coming to town", + "pred": "a public transit bus on a city street" + }, + { + "label": "a giraffe at the zoo leans down to feed", + "pred": "a giraffe that is standing in the dirt" + }, + { + "label": "very detailed white roof behind a stop sign", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a street sign is shown across from a street with has cars and a traffic light", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a stop sign has been placed upside-down in the grass beside a building", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "blue mile marker sign advertising two locations in two languages", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a lone giraffe standing next to a wall", + "pred": "a giraffe that is standing in the dirt" + }, + { + "label": "a stop sign with the work stop written in arabic", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a very tall giraffe standing in the wild", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "two brown and black birds staring on a curved wire", + "pred": "a pair of birds perched on top of a tree branch" + }, + { + "label": "a highway near a city at sunset", + "pred": "a city at night with a train passing by" + }, + { + "label": "the large machinery sits on the opposite side of the fence from the highway sign", + "pred": "a street sign on the side of a road" + }, + { + "label": "a giraffe is standing by some brush in a field", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a bus is going down the street and it has an advertisement on the side of it", + "pred": "a public transit bus on a city street" + }, + { + "label": "a stop sighn is propped up against the side of a building", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "pickup trucks pass a building on hollywood", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a sign showing a street running one direction", + "pred": "a red brick building with a neon sign on the side of the building" + }, + { + "label": "a gray bird is standing on small brown branch", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a giraffe standing in his enclosure at the zoo", + "pred": "a giraffe that is standing in the dirt" + }, + { + "label": "a giraffe standing in a dirt field near a tree", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a road sign stands next to the road", + "pred": "a street sign on the side of a road" + }, + { + "label": "two yellow birds are standing on an object", + "pred": "a pair of birds perched on top of a tree branch" + }, + { + "label": "a long orange train traveling through a rural green countryside", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a single giraffe standing in a brushy area looking at the photographer", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a bus parked next to a white building with red trimming", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "a herd of sheep grazing on a pile of hay", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "an orange train is on the track with many cars behind it", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a bus sits parked next to a building", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "sheep on hay ground indoors", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "multiple orange train engines on tracks with trees on each side", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a person walking by stop sign at street intersection", + "pred": "a woman walking down a street next to a stop sign" + }, + { + "label": "a green fire hydrant next to field of colorful flowers", + "pred": "a fire hydrant filled with lots of colorful flowers" + }, + { + "label": "a goat is standing in a barn by some hay", + "pred": "a black sheep standing next to a white sheep" + }, + { + "label": "a yellow and black traffic sign with buildings", + "pred": "a person crossing a street at night with a traffic light" + }, + { + "label": "a city bus stopped by the side of the road for passengers", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "orange train on tracks in the country side", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a city skyline is shown with a subway train coming around the bend", + "pred": "a city at night with a train passing by" + }, + { + "label": "a fire hydrant sits in a bed of flowers", + "pred": "a fire hydrant filled with lots of colorful flowers" + }, + { + "label": "roadwork equipment, at a gas station, next to a thruway", + "pred": "a street sign on the side of a road" + }, + { + "label": "a cloudy sky is shown behind a hollywood street sign", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a bird sitting on a tree branch", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a street sign on a street corner in some very busy area", + "pred": "a person crossing a street at night with a traffic light" + }, + { + "label": "a street sign on the corner by a building", + "pred": "a red brick building with a neon sign on the side of the building" + }, + { + "label": "a street sign below a bunch of power lines", + "pred": "a street sign on the side of a road" + }, + { + "label": "a bird perched on the tree branch", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "birds standing together on a pole", + "pred": "a pair of birds perched on top of a tree branch" + }, + { + "label": "a yellow pedestrian sign at the side of a lit up city street", + "pred": "a person crossing a street at night with a traffic light" + }, + { + "label": "grainy image of two trains on tracks moving through a city", + "pred": "a city at night with a train passing by" + }, + { + "label": "a bird feeding her baby bird some food", + "pred": "a pair of birds perched on top of a tree branch" + }, + { + "label": "two birds standing next to each other on a branch", + "pred": "a pair of birds perched on top of a tree branch" + }, + { + "label": "a train traveling down tracks next to lights", + "pred": "a train traveling down train tracks next to a platform" + }, + { + "label": "a giraffe standing in dry dead brush on the savannah", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a store on the corner with an american flag flying from it's side", + "pred": "a red brick building with a neon sign on the side of the building" + }, + { + "label": "a red stop sign sitting on the floor next to a wall", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "the bird is sitting on the small branch of the tree", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a street sign sitting on the side of a large pole", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "the goats are standing together on the straw", + "pred": "a black sheep standing next to a white sheep" + }, + { + "label": "a black goat standing next to two white goats", + "pred": "a black sheep standing next to a white sheep" + }, + { + "label": "a yellow and green fire hydrant in a bed of colorful flowers", + "pred": "a fire hydrant filled with lots of colorful flowers" + }, + { + "label": "dogs viewing something as a person sits in a chair", + "pred": "a dog that is sitting on a bus" + }, + { + "label": "a woman walking by a stop sign while holding a bag", + "pred": "a woman walking down a street next to a stop sign" + }, + { + "label": "a bird is perched on a twig in the trees", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a green and silver fire hydrant sitting in a field of flowers", + "pred": "a fire hydrant filled with lots of colorful flowers" + }, + { + "label": "a busy road full of street signs and cars", + "pred": "a person crossing a street at night with a traffic light" + }, + { + "label": "a congested road where different vehicles are running", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "a person sitting on a seat on a bus next to brown dogs", + "pred": "a dog that is sitting on a bus" + }, + { + "label": "a man wearing sunglasses and a black hat", + "pred": "a man wearing a hat and sunglasses" + }, + { + "label": "a tall church tower sitting on the side of a road", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a red stop sign sitting on the side of a tall building", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a woman holding a baby next to a bird cage", + "pred": "a woman holding a baby while sitting on a couch" + }, + { + "label": "a herd of giraffe standing next to each other next to a pond", + "pred": "giraffes standing next to a body of water" + }, + { + "label": "van drives by a bus sitting at the curb", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "people walking down a sidewalk", + "pred": "a woman walking down a sidewalk next to a fire hydrant" + }, + { + "label": "two large giraffes inside a fenced area interact with one another", + "pred": "giraffes standing next to each other" + }, + { + "label": "a blue and silver train next to train station and trees", + "pred": "a train traveling down train tracks next to a platform" + }, + { + "label": "baxter street in the city at night; a \"people crossing\" sign", + "pred": "a person crossing a street at night with a traffic light" + }, + { + "label": "a blue train is next to a sidewalk on the rails", + "pred": "a train traveling down train tracks next to a platform" + }, + { + "label": "a long orange train is going between trees", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a man wearing a suit, hat, and sunglasses", + "pred": "a man wearing a hat and sunglasses" + }, + { + "label": "a bike, two dogs and a man sitting on public transportation", + "pred": "a dog that is sitting on a bus" + }, + { + "label": "the pleasant lane street corner and a woman carrying bags", + "pred": "a woman walking down a street next to a stop sign" + }, + { + "label": "black birds picking berries out of the tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "the four giraffes are standing next to a tree", + "pred": "giraffes standing next to a body of water" + }, + { + "label": "street signs from the corner of 8th ave. and 22 3/4 st", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "fire hydrant location in the middle of a flower field", + "pred": "a fire hydrant filled with lots of colorful flowers" + }, + { + "label": "a black bird sitting in a berry tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "sheep standing in a barn, one is black", + "pred": "a black sheep standing next to a white sheep" + }, + { + "label": "the woman who has bought her groceries is crossing the street", + "pred": "a woman walking down a street next to a stop sign" + }, + { + "label": "man posed in flashy clothes, with hat and sunglasses", + "pred": "a man wearing a hat and sunglasses" + }, + { + "label": "a smiling man in a hat is wearing sunglasses", + "pred": "a man wearing a hat and sunglasses" + }, + { + "label": "a person walking near a stop sign in a residential neighborhood", + "pred": "a woman walking down a street next to a stop sign" + }, + { + "label": "the view of two dogs inside a bus", + "pred": "a dog that is sitting on a bus" + }, + { + "label": "a stop sign along this street", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a woman sits by a bird cage holding a baby", + "pred": "a woman holding a baby while sitting on a couch" + }, + { + "label": "the back side of two giraffes inside a gated area", + "pred": "giraffes standing next to each other" + }, + { + "label": "a two way street sign with one sign that changes from one name to another", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a black bird on top of berry branches", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "the bird is eating berries from the tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a black bird is eating a berry from a bush", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "two dogs in the aisle of a bus next to a bicycle", + "pred": "a dog that is sitting on a bus" + }, + { + "label": "a street sign is pointing towards 8th avenue and the other is pointing towards 22 3/4 street in the middle of the forest", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "two giraffes standing next to each other at a zoo", + "pred": "giraffes standing next to each other" + }, + { + "label": "dark giraffe stretches it's neck over towards the other one", + "pred": "giraffes standing next to each other" + }, + { + "label": "small black and white pig on wheeled cart with protest sign", + "pred": "a black and white dog laying in the street" + }, + { + "label": "a stop sign sits at an intersection in a city at night time", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a woman holds a baby while sitting next to a cage with a bird in it", + "pred": "a woman holding a baby while sitting on a couch" + }, + { + "label": "a small pig with a sign in the middle of the street", + "pred": "a black and white dog laying in the street" + }, + { + "label": "street sign displayed on pole at intersection in metropolitan region", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "woman holding child who is looking at white bird in cage", + "pred": "a woman holding a baby while sitting on a couch" + }, + { + "label": "street lights in night time in urban setting", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a passenger train pulls into a train station", + "pred": "a train traveling down train tracks next to a platform" + }, + { + "label": "road sigh on wooden pole shown upside down next to white wall", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a stop sign on the side of a street", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a woman holding a baby next to a caged bird", + "pred": "a woman holding a baby while sitting on a couch" + }, + { + "label": "a small herd of buffalo resting on the ither side of the stream", + "pred": "a herd of cattle grazing in a snow covered field" + }, + { + "label": "a bird is trying to find food in the water", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "a street sign standing in front of some trees", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a man with a hat and a tie standing", + "pred": "a man wearing a hat and sunglasses" + }, + { + "label": "giraffes gather under a tree", + "pred": "giraffes standing next to a body of water" + }, + { + "label": "black and white sheep in hay next to wooden fence", + "pred": "a black sheep standing next to a white sheep" + }, + { + "label": "a stop sign standing up against a wall", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "two giraffes are standing next to each other", + "pred": "giraffes standing next to each other" + }, + { + "label": "three giraffes standing under a tree by a watering hole", + "pred": "giraffes standing next to a body of water" + }, + { + "label": "a herd of buffalo are standing in the snow", + "pred": "a herd of cattle grazing in a snow covered field" + }, + { + "label": "a train coming down the tracks arriving at a station", + "pred": "a train traveling down train tracks next to a platform" + }, + { + "label": "a night time street scene of a street light and church", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a small dog sits inside of a small cart", + "pred": "a black and white dog laying in the street" + }, + { + "label": "stoplights that have every light lit up", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "peculiar street sign showing intersection of 23 3/4 st and 8th ave/cth d", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "the pig is sitting in front of the ironic sign", + "pred": "a black and white dog laying in the street" + }, + { + "label": "a pet pig on a cart helps deliver a political message", + "pred": "a black and white dog laying in the street" + }, + { + "label": "a church steeple is shown amidst telephone wires and lights", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a number of animals in a field covered in snow", + "pred": "a herd of cattle grazing in a snow covered field" + }, + { + "label": "that looks like a herd of moose in the snow", + "pred": "a herd of cattle grazing in a snow covered field" + }, + { + "label": "a herd of bison stroll by the snow covered banks of a stream", + "pred": "a herd of cattle grazing in a snow covered field" + }, + { + "label": "a train as it travels down the tracks over a bridge", + "pred": "a train is going down the tracks in the city" + }, + { + "label": "people walking down a city sidewalk showing one with headphones", + "pred": "a woman walking down a sidewalk next to a fire hydrant" + }, + { + "label": "a stop sign is shown among foliage and grass", + "pred": "a red stop sign sitting in the middle of a field" + }, + { + "label": "the bird has its beak in the water", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "people walk along the sidewalk", + "pred": "a woman walking down a sidewalk next to a fire hydrant" + }, + { + "label": "a city street with buildings and cars on a rainy day", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "two people are walking close to each other on the side of the road", + "pred": "a woman walking down a sidewalk next to a fire hydrant" + }, + { + "label": "three giraffes stand by a sparse tree in the bushlands near a source of water", + "pred": "giraffes standing next to a body of water" + }, + { + "label": "a stop sign near woods", + "pred": "a red stop sign sitting in the middle of a field" + }, + { + "label": "a colorful train going along an elevated track", + "pred": "a train is going down the tracks in the city" + }, + { + "label": "a train rides on a bridge past a building", + "pred": "a train is going down the tracks in the city" + }, + { + "label": "a subway train that is passing over a train bridge", + "pred": "a train is going down the tracks in the city" + }, + { + "label": "a small bird pecking at the sand and water", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "a sandpiper probes the sand with its beak looking for food at the tideline", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "crowded suburbia area with cars and stoplights with skyline", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "people walking on sidewalk with yellow fire hydrant nearby", + "pred": "a woman walking down a sidewalk next to a fire hydrant" + }, + { + "label": "snow piled high around pipes with people walking", + "pred": "a snowboarder in the middle of a pile of snow" + }, + { + "label": "a large stop sign in the bushes", + "pred": "a red stop sign sitting in the middle of a field" + }, + { + "label": "people are walking down a snowy streets with white snow", + "pred": "a snowboarder in the middle of a pile of snow" + }, + { + "label": "two giraffes are standing next to a building", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "people walking across very dirty snow", + "pred": "a snowboarder in the middle of a pile of snow" + }, + { + "label": "bird drinking water and walking on beach and ocean surface", + "pred": "a bird standing on top of a body of water" + }, + { + "label": "adult giraffe standing next to young one by the building", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a small white dog on a wooden bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "persons are busy in clearing the snow", + "pred": "a snowboarder in the middle of a pile of snow" + }, + { + "label": "a traffic light and cars on a street", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "a large oval stop sign near some trees", + "pred": "a red stop sign sitting in the middle of a field" + }, + { + "label": "cute white fluffy dog standing on an old wooden bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "the snow is almost covering the fire hydrant", + "pred": "a snowboarder in the middle of a pile of snow" + }, + { + "label": "two large giraffes inside a fenced area stand together near many rocks", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a little white dog is standing on a bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "a white dog is sitting on a wooden bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "a red fire hydrant on a city sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a diminutive fire hydrant rising though a suburban sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "two giraffes stand together near rocks and a building", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "man standing under banner that reads \"run for rights\"", + "pred": "a man holding a sign in front of a group of people" + }, + { + "label": "cars and people stopped at a city intersection", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "a small white dog stands on a wooden bench", + "pred": "a white dog sitting on top of a wooden bench" + }, + { + "label": "the cars at the intersection are waiting for the pedestrians to cross", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "two giraffes standing outside near a building", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a red fire hydrant embedded in a city sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "the train is traveling across the high bridge", + "pred": "a yellow and blue train traveling under a bridge" + }, + { + "label": "a herd of sheep moving up over a wall to a field from a sidewalk", + "pred": "a herd of sheep standing on the side of a road" + }, + { + "label": "the red and white fire hydrant is embedded in the street", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "an intersection with antique cars and a bus at it", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a red fire hydrant is on the sidewalk next to a sign", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a train on a train track on an elevated bridge", + "pred": "a train is going down the tracks in the city" + }, + { + "label": "a train on a train track on an elevated bridge", + "pred": "a yellow and blue train traveling under a bridge" + }, + { + "label": "a street light in front of a colorful train on a bridge", + "pred": "a yellow and blue train traveling under a bridge" + }, + { + "label": "giraffe inside rock walls standing and bowing its head", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a young giraffe tries to stand up straight on it's legs", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a wooden bench is sitting next to a grassy field", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a tall giraffe standing on top of a solid rock ground", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a stop sign with trees", + "pred": "a red stop sign sitting in the middle of a field" + }, + { + "label": "cars in a city street", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a man standing underneath a marathon sign in the grass", + "pred": "a man holding a sign in front of a group of people" + }, + { + "label": "a large long train on a steel track", + "pred": "a yellow and blue train traveling under a bridge" + }, + { + "label": "a white and green bus driving down a street", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a small bus parked in front of a bus stop", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a guy smiling while standing under a run for rights banner", + "pred": "a man holding a sign in front of a group of people" + }, + { + "label": "a park bench next to fence and trees by grassy field", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a giraffe splays its front legs while in its enclosure", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "donkeys on the side of the road", + "pred": "a herd of sheep crossing a road in front of a mountain" + }, + { + "label": "a duck standing on a pile of debris in water", + "pred": "a dog swimming in a body of water" + }, + { + "label": "an orange and black train with train cars passing trees", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "animals that are walking down the road", + "pred": "a herd of sheep crossing a road in front of a mountain" + }, + { + "label": "a bird has it's head below the surface of the water", + "pred": "a dog swimming in a body of water" + }, + { + "label": "a giraffe stands with it's front legs spread apart", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "small red propeller airplane sitting on an airport runway", + "pred": "a red and white plane parked in a parking lot" + }, + { + "label": "group of sheep crossing over a street onto an open field", + "pred": "a herd of sheep standing on the side of a road" + }, + { + "label": "two buses parked next to each other in front of a building", + "pred": "people standing in front of a tour bus" + }, + { + "label": "a flock of animals stand on the road near mountains", + "pred": "a herd of sheep crossing a road in front of a mountain" + }, + { + "label": "a herd of sheep walking along a road", + "pred": "a herd of sheep standing on the side of a road" + }, + { + "label": "an orange train is going down the tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a bus and some cars sitting at an intersection", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a herd of animals on the side of the road", + "pred": "a herd of sheep crossing a road in front of a mountain" + }, + { + "label": "a herd of sheep with two sherds moving down a road in the mountains", + "pred": "a herd of sheep crossing a road in front of a mountain" + }, + { + "label": "the sheep follow each other over the short block wall", + "pred": "a herd of sheep standing on the side of a road" + }, + { + "label": "a man in racing gear and number under a banner", + "pred": "a man holding a sign in front of a group of people" + }, + { + "label": "vintage street with cars and buses lining it", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "the pedestrian is walking down the side of the highway by the bus", + "pred": "a man standing on the side of a road next to a bus" + }, + { + "label": "a rainbow train traveling on the bridge above", + "pred": "a yellow and blue train traveling under a bridge" + }, + { + "label": "a large bus on a open city street", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "the bird is swimming in the water alone", + "pred": "a dog swimming in a body of water" + }, + { + "label": "a bird puts its beak into its feathers in the middle of a body of water", + "pred": "a dog swimming in a body of water" + }, + { + "label": "a train chugs along parallel to a lush forest", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a black and red train going down a track by some trees", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a bird floating on top of water in the rain", + "pred": "a dog swimming in a body of water" + }, + { + "label": "a herd of sheep grazing on a lush green field", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "a secluded park bench over looking a field", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a runner poses beneath a \"run for rights\" sign in a green city park", + "pred": "a man holding a sign in front of a group of people" + }, + { + "label": "a bright red, very small plane waits on the runway with a red bae systems flag hanging behind it on a building", + "pred": "a red and white plane parked in a parking lot" + }, + { + "label": "a transit bus passing a man on a sidewalk", + "pred": "a man standing on the side of a road next to a bus" + }, + { + "label": "a large white sheep next to a small black one", + "pred": "sheep standing on top of a lush green field" + }, + { + "label": "a park bench placed near an open field", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "people getting off of a bus", + "pred": "people standing in front of a tour bus" + }, + { + "label": "a small red plane on a open road", + "pred": "a red and white plane parked in a parking lot" + }, + { + "label": "a red fighter plane on runway next to building", + "pred": "a red and white plane parked in a parking lot" + }, + { + "label": "a wooden bench in a grass field with a tree", + "pred": "a wooden bench sitting on top of a lush green field" + }, + { + "label": "a lamb and a sheep are out in the field together", + "pred": "sheep standing on top of a lush green field" + }, + { + "label": "a large number of sheep walking on a sidewalk", + "pred": "a herd of sheep standing on the side of a road" + }, + { + "label": "guy walking pass a bus sitting at the curb", + "pred": "a man standing on the side of a road next to a bus" + }, + { + "label": "the plane is on the runway near the building", + "pred": "a red and white plane parked in a parking lot" + }, + { + "label": "the two sheep are standing next to each other in the field", + "pred": "sheep standing on top of a lush green field" + }, + { + "label": "a button in front of the louisville slugger factory in ky", + "pred": "a baseball bat sitting on top of a parking meter" + }, + { + "label": "pair of sheep standing on open grassy field on clear day", + "pred": "sheep standing on top of a lush green field" + }, + { + "label": "a herd of sheep grazing on the grassy field", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "high rises on a city street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a street intersection with old buildings", + "pred": "a traffic light on the corner of a street" + }, + { + "label": "a farm with a lot of animals near mountains", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "a man is walking down the sidewalk next to a bus on the street", + "pred": "a man standing on the side of a road next to a bus" + }, + { + "label": "a white bus is driving down the street", + "pred": "a bus driving down a street at night" + }, + { + "label": "a car is parked next to a pole", + "pred": "a baseball bat sitting on top of a parking meter" + }, + { + "label": "a man walks down a sidewalk as a vehicle passes", + "pred": "a man standing on the side of a road next to a bus" + }, + { + "label": "a ewe and her kid in a field", + "pred": "sheep standing on top of a lush green field" + }, + { + "label": "a small city bus with advertising on the side and back", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a diesel locomotive hauling some freight through the countyside", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "people getting off of a bus", + "pred": "people standing in front of a tour bus" + }, + { + "label": "a grassy pasture with a herd of sheep with mountains", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "a traffic light above a city street", + "pred": "a traffic light on the corner of a street" + }, + { + "label": "a large grassy pasture with grazing sheep in it", + "pred": "a herd of sheep grazing on a lush green hillside" + }, + { + "label": "cars are parked on both sides of the narrow street full of tall buildings", + "pred": "a traffic light on the corner of a street" + }, + { + "label": "advertisements covered bus stopped on a city street", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a baseball bat is in a window looking out over the street", + "pred": "a baseball bat sitting on top of a parking meter" + }, + { + "label": "all of the children are gathered around santa claus", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a bus is parked next to the sidewalk", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "older women getting off a parked bus", + "pred": "people standing in front of a tour bus" + }, + { + "label": "elderly women debark a bus at a station", + "pred": "people standing in front of a tour bus" + }, + { + "label": "a hand written sign is posted on an object outside", + "pred": "a baseball bat sitting on top of a parking meter" + }, + { + "label": "the people are parked along the street by the tall buildings", + "pred": "a traffic light on the corner of a street" + }, + { + "label": "the street light is green above a quiet city street", + "pred": "a traffic light on the corner of a street" + }, + { + "label": "a yellow train on the tracks with several cars", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a herd of sheep are grazing in a green field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a city street corner with a street pole that has one way signs and a light on the top, and a building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "very blurry photo of a bus speeding through a tunnel", + "pred": "a bus driving down a street at night" + }, + { + "label": "sheep are on a grassy field and one of them is a white and black baby", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a city bus driving on a road with blurred lights and the city street behind it", + "pred": "a bus driving down a street at night" + }, + { + "label": "a stop sign is mounted upside-down on it's post", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a woman with an umbrella hat talks on her cell phone", + "pred": "a woman holding an umbrella while talking on a cell phone" + }, + { + "label": "the picture of a pin has a huge bat in the background beside a building", + "pred": "a baseball bat sitting on top of a parking meter" + }, + { + "label": "a marsh area with egrets and shrimp boats", + "pred": "a flock of birds standing on top of a grass covered field" + }, + { + "label": "cars driving through city intersection near tall buildings", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a train traveling down train tracks near a train station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a stop sign that is hanging upside down", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "the small herd of sheep are grazing on the grassy field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a bus driving down a street at night", + "pred": "a bus driving down a street at night" + }, + { + "label": "a train running along a track near a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "the lady on the phone is wearing an umbrella hat", + "pred": "a woman holding an umbrella while talking on a cell phone" + }, + { + "label": "a train that is riding on tracks through a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a train pulls past an intersection in the rail in a rural area", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "both streets of the intersection are marked as one way", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "an upside down stop sign by the road", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "cars passing through a street intersection with office buildings", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a passenger train that is pulling into a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a woman with an umbrella hat holds a cellphone up to her ear", + "pred": "a woman holding an umbrella while talking on a cell phone" + }, + { + "label": "a street scene with focus on the street signs on an overpass", + "pred": "a car driving down a highway next to a bridge" + }, + { + "label": "a red stop sign sitting next to a forest", + "pred": "a red stop sign sitting on top of a tree" + }, + { + "label": "a giraffe walking near a tree with very few leaves", + "pred": "a giraffe standing next to a tree" + }, + { + "label": "a bus stopped at a curb to allow people to board the bus", + "pred": "a bus driving down a street at night" + }, + { + "label": "a map of the town in the middle of the street with buildings", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a bus is stopped on a dark road", + "pred": "a bus driving down a street at night" + }, + { + "label": "a no bicycles, skates or skateboards sign on a pole", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "city bus stopped, taking on passengers, at night", + "pred": "a bus driving down a street at night" + }, + { + "label": "stop sign with a tree branch touching it", + "pred": "a red stop sign sitting on top of a tree" + }, + { + "label": "people getting on a public bus at night", + "pred": "a bus driving down a street at night" + }, + { + "label": "cars traveling on a busy road with exit signs overhead", + "pred": "a car driving down a highway next to a bridge" + }, + { + "label": "red double decker bus with people standing on top", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a man stands beside a bus in a snowy forest at night", + "pred": "a bus driving down a street at night" + }, + { + "label": "a double decker bus driving down a street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a vandalized street sign", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a street sign prohibiting bicycles, skates, and skateboards", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a stop sgn with a branch in front of it", + "pred": "a red stop sign sitting on top of a tree" + }, + { + "label": "a half of face of a giraffe and a tree", + "pred": "a giraffe sticking its head over a wooden fence" + }, + { + "label": "a dog with a leash on is sitting near a park bench", + "pred": "a black and white dog sitting on a park bench" + }, + { + "label": "a yellow bus is on a street near a black guard rail", + "pred": "a public transit bus on a city street" + }, + { + "label": "a street sign mounted to the side of a pole", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a rear view mirror sitting on the side of a yellow bus", + "pred": "a rear view mirror reflecting the reflection of a bus" + }, + { + "label": "a giraffe standing next to a building near a tree", + "pred": "a giraffe sticking its head over a wooden fence" + }, + { + "label": "the school bus is reflected in the rear view mirror", + "pred": "a rear view mirror reflecting the reflection of a bus" + }, + { + "label": "the passenger buses are travelling down the road", + "pred": "a public transit bus on a city street" + }, + { + "label": "california traffic goes by road signs on an overpass indicating famous hollywood streets", + "pred": "a car driving down a highway next to a bridge" + }, + { + "label": "a double decker bus with people waving from the top", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a dog is sitting next to a bench", + "pred": "a black and white dog sitting on a park bench" + }, + { + "label": "a bus full of happy tourists drives down the street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "double decker bus with people on the top floor on road", + "pred": "a double decker bus driving down a street" + }, + { + "label": "cars on the freeway are exiting onto sunset blvd", + "pred": "a car driving down a highway next to a bridge" + }, + { + "label": "a sign prohibiting skating on the sidewalk with black and red writing", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "dog on a leash next to a pink bench", + "pred": "a black and white dog sitting on a park bench" + }, + { + "label": "city buses on a city street in the dawn hours", + "pred": "a public transit bus on a city street" + }, + { + "label": "couple of seagulls stand next to each other watching the same thing", + "pred": "a flock of seagulls standing on top of a rock" + }, + { + "label": "two seagulls standing on a rock in front of the ocean", + "pred": "a flock of seagulls standing on top of a rock" + }, + { + "label": "two seagulls stand on the rocks by the shore", + "pred": "a flock of seagulls standing on top of a rock" + }, + { + "label": "a yellow and green object with a brown bird perched on top of it", + "pred": "a large group of people sitting on top of a bench" + }, + { + "label": "three birds walking around a dry grass field", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "a yellow bus driving down a street next to a ball building", + "pred": "a public transit bus on a city street" + }, + { + "label": "a red brick building with a graffiti covered front", + "pred": "a man sitting on a bench outside of a building" + }, + { + "label": "two seagulls standing on a rock looking out over the beach", + "pred": "a flock of seagulls standing on top of a rock" + }, + { + "label": "ice covered tree branch rubbing a stop sign", + "pred": "a red stop sign sitting on top of a tree" + }, + { + "label": "the brown cows walking along a path in the field", + "pred": "a brown cow standing next to a black cow" + }, + { + "label": "the view of this round rear-view mirror is that of a school bus", + "pred": "a rear view mirror reflecting the reflection of a bus" + }, + { + "label": "two brown animals walking through a path in the woods", + "pred": "a brown cow standing next to a black cow" + }, + { + "label": "a stop sign with trees and tree branches close to it", + "pred": "a red stop sign sitting on top of a tree" + }, + { + "label": "a large trains travels past a river that contains several different boats", + "pred": "a number of trains parked next to each other on a bridge" + }, + { + "label": "a big yellow school bus shown through the rear view of another school bus", + "pred": "a rear view mirror reflecting the reflection of a bus" + }, + { + "label": "two shorn sheep walking between some bushes", + "pred": "a brown cow standing next to a black cow" + }, + { + "label": "a large long train on a steel track", + "pred": "a number of trains parked next to each other on a bridge" + }, + { + "label": "covered boats are in the water by the shore", + "pred": "a number of trains parked next to each other on a bridge" + }, + { + "label": "two heron are standing on some rocks near some water", + "pred": "a flock of seagulls standing on top of a rock" + }, + { + "label": "3 female peacocks together walking around", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "in a rear view mirror, a school bus can be seen", + "pred": "a rear view mirror reflecting the reflection of a bus" + }, + { + "label": "two sheep walk in a line down a small pathway in the brush", + "pred": "a brown cow standing next to a black cow" + }, + { + "label": "a small bird sitting on a chair by a table", + "pred": "a large group of people sitting on top of a bench" + }, + { + "label": "a yellow bus and a white bus on a empty road", + "pred": "a public transit bus on a city street" + }, + { + "label": "three strange looking birds walking on the grass", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "smoggy picture of many trains in a busy train station", + "pred": "a train yard filled with lots of empty train tracks" + }, + { + "label": "cars and trucks driving under the underpass with street signs directing them where to go", + "pred": "a car driving down a highway next to a bridge" + }, + { + "label": "a pink city bus at a bus stop", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "three birds huddled together in a open field", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "three wild turkeys on top of the dried pasture", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "a pink bus with a duck advertisement on the side", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a dog on a leash sitting next to a bench", + "pred": "a black and white dog sitting on a park bench" + }, + { + "label": "two people have a conversation at an intersection", + "pred": "two people walking down a street next to a street sign" + }, + { + "label": "a graffiti-ridden building in an urban setting, a fire hydrant at curbside", + "pred": "a man sitting on a bench outside of a building" + }, + { + "label": "a street sign with an arrow on it", + "pred": "two people walking down a street next to a street sign" + }, + { + "label": "little birds on the back of chairs at an outdoor restaurant", + "pred": "a large group of people sitting on top of a bench" + }, + { + "label": "a person sitting on a bench in a park", + "pred": "a man sitting on top of a wooden bench" + }, + { + "label": "yellow and blue train moving along its tracks near a river", + "pred": "a number of trains parked next to each other on a bridge" + }, + { + "label": "a bird sits on a parking meter with several parked cars in the street", + "pred": "a bird is standing on the back of a car" + }, + { + "label": "an extensive network of wires are required to operate the railroad", + "pred": "a train yard filled with lots of empty train tracks" + }, + { + "label": "one who is sitting on the back of a park bench", + "pred": "a man sitting on top of a wooden bench" + }, + { + "label": "a pink bus is driving down the street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a pink bus is parked next to the curb", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a foggy view above trains on train tracks", + "pred": "a train yard filled with lots of empty train tracks" + }, + { + "label": "colorful bird sitting on a branch of a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a big dog on a leash, sitting next to a pink painted bench", + "pred": "a black and white dog sitting on a park bench" + }, + { + "label": "a bird is perched on the back of a chair", + "pred": "a large group of people sitting on top of a bench" + }, + { + "label": "cattle are walking on a dirt trail", + "pred": "a brown cow standing next to a black cow" + }, + { + "label": "a red and gold painted fire hydrant on the street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a giraffe is walking in some tall grass", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a pink and white bus parked next to sidewalk and people", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "very pretty yellow furniture near a busy street", + "pred": "a large group of people sitting on top of a bench" + }, + { + "label": "a blue and yellow train is traveling down the tracks near some water and boats", + "pred": "a number of trains parked next to each other on a bridge" + }, + { + "label": "a long train yard full of different equipment", + "pred": "a train yard filled with lots of empty train tracks" + }, + { + "label": "a very big city bus on a big street", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "railway cars in large yard with many power poles", + "pred": "a train yard filled with lots of empty train tracks" + }, + { + "label": "a large bus on the side of a street", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a person in jeans and two toned shoes sits on the back of a bench", + "pred": "a man sitting on top of a wooden bench" + }, + { + "label": "a giraffe standing in tall grass with trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "blue, white, and green passenger bus parked at a stop", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a giraffe standing in some tall grass outside", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a wooden bench and a fire hydrant on a field", + "pred": "a bench sitting on top of a dirt field" + }, + { + "label": "three people stand near a street sign and a traffic light", + "pred": "two people walking down a street next to a street sign" + }, + { + "label": "a bird perched on top of a tree branch in a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a giraffe standing in the middle of a lush green field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a large bus on the side of the road", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "the building in the city has been vandalized", + "pred": "a man sitting on a bench outside of a building" + }, + { + "label": "a bird on a parking meter next to a car", + "pred": "a bird is standing on the back of a car" + }, + { + "label": "people loading onto a orange and silver metro bus", + "pred": "people walking on a sidewalk next to a train" + }, + { + "label": "a fire hydrant on the side of the street", + "pred": "a man sitting on a bench outside of a building" + }, + { + "label": "a bird stand on top of a parking meter", + "pred": "a bird is standing on the back of a car" + }, + { + "label": "a giraffe staring right into the camera", + "pred": "a giraffe standing next to a zebra in a zoo" + }, + { + "label": "a sign on small post in grass corner of residential parking lot", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a sign with an arrow point upwards is seen on a street", + "pred": "two people walking down a street next to a street sign" + }, + { + "label": "red and black buses are parked and a building", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "a giraffe with a zebra", + "pred": "a giraffe standing next to a zebra in a zoo" + }, + { + "label": "a black bird is sitting on a parking meter and some cars", + "pred": "a bird is standing on the back of a car" + }, + { + "label": "people are walking in front of some shops", + "pred": "a woman walking down a street next to a tall building" + }, + { + "label": "a red bus parked at a bus stop in front of a building", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "a bird perched on a broken tree branch in the woods", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "multiple people are walking on a street with shopping", + "pred": "a woman walking down a street next to a tall building" + }, + { + "label": "people walking down a street next to tall buildings", + "pred": "a woman walking down a street next to a tall building" + }, + { + "label": "a wooden bench sitting out in the middle of a desert", + "pred": "a bench sitting on top of a dirt field" + }, + { + "label": "a red bricked building with a green door and graffiti", + "pred": "a man sitting on a bench outside of a building" + }, + { + "label": "a stop sign saying whoa instead of stop", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "people walking towards a parked bus on the street", + "pred": "people walking on a sidewalk next to a train" + }, + { + "label": "a white yellow and blue train at an empty train station", + "pred": "a train is stopped at a train station" + }, + { + "label": "a yellow white and black bus and some people", + "pred": "people walking on a sidewalk next to a train" + }, + { + "label": "a wood bench and post light on a sidewalk", + "pred": "a bench sitting on top of a dirt field" + }, + { + "label": "a black and white perspective on of a street sign and a traffic light and a group of people on a street corner talking", + "pred": "two people walking down a street next to a street sign" + }, + { + "label": "a city bus parked on the side of the road", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a white bus driving down a street next to a building", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a train is moving through a train station", + "pred": "a train is stopped at a train station" + }, + { + "label": "a transit bus with its doors opened as passengers board", + "pred": "people walking on a sidewalk next to a train" + }, + { + "label": "people standing around a herd of animals in a city", + "pred": "a herd of cattle walking down a dirt road" + }, + { + "label": "animals walking around a farm", + "pred": "two dogs are standing in front of a barn" + }, + { + "label": "a bench, a fire hydrant, and a street light are in the desert", + "pred": "a bench sitting on top of a dirt field" + }, + { + "label": "cows near a windmill, house and shed", + "pred": "two dogs are standing in front of a barn" + }, + { + "label": "people riding horses on top of a sandy beach", + "pred": "a number of animals on a beach near a body of water" + }, + { + "label": "two cow figures are standing in a yard", + "pred": "two dogs are standing in front of a barn" + }, + { + "label": "a fire hydrant on the side of the road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "two cows are drinking under a small windmill", + "pred": "two dogs are standing in front of a barn" + }, + { + "label": "a feathered bird is sitting on a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a brown, black and white bird resting on a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a baby giraffe and a baby zebra stand near a green hut", + "pred": "a giraffe standing next to a zebra in a zoo" + }, + { + "label": "a train is shown on the inside of a station", + "pred": "a train is stopped at a train station" + }, + { + "label": "a giraffe is close up next to the camera", + "pred": "a giraffe standing next to a zebra in a zoo" + }, + { + "label": "cow statues in yard", + "pred": "two dogs are standing in front of a barn" + }, + { + "label": "a giraffe stands in the brush near trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a multicolored fire hydrant that is on the sidewalk", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "outside photo of parked cars with a blackbird sitting on a parking meter", + "pred": "a bird is standing on the back of a car" + }, + { + "label": "a giraffe eats leaves through a wire fence", + "pred": "a giraffe standing in a fenced in area" + }, + { + "label": "a large train is sitting inside a train station", + "pred": "a train is stopped at a train station" + }, + { + "label": "a giraffe and two zebras in a dirt area next to fence", + "pred": "a giraffe standing next to a zebra in a zoo" + }, + { + "label": "people walking on a sidewalk next to buildings", + "pred": "a woman walking down a street next to a tall building" + }, + { + "label": "a bench is next to a lamp post in the middle of a field", + "pred": "a bench sitting on top of a dirt field" + }, + { + "label": "a fire hydrant on the side of a street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "red bus sitting in a bus station parking spot", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "a picture taken from a distance of people riding horses at the beach", + "pred": "a number of animals on a beach near a body of water" + }, + { + "label": "a fire hydrant is standing on the sidewalk with two spouts", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a double decker bus is shown that is not in service", + "pred": "a double decker bus parked on the side of the road" + }, + { + "label": "a train is scene in the station with no people around", + "pred": "a train is stopped at a train station" + }, + { + "label": "people are on a busy street with lots of animals", + "pred": "a herd of cattle walking down a dirt road" + }, + { + "label": "a giraffe standing in a zoo exhibit", + "pred": "a giraffe standing in a fenced in area" + }, + { + "label": "a person is sitting on the back of a park bench", + "pred": "a man sitting on top of a wooden bench" + }, + { + "label": "a bus is driving on a wet road with many green trees on the roadside", + "pred": "a bus driving down a street next to a tree" + }, + { + "label": "a bus is traveling through a street surrounded by trees", + "pred": "a bus driving down a street next to a tree" + }, + { + "label": "a pole with three road signs stands in front of a building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a street sign in the foreground with a building in back", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "the street signs \"w 122 st.\", \"seminary row\", and \"broadway\" in front of an old red brick building", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a double decker bus parked near a curb by trees", + "pred": "a double decker bus parked on the side of the road" + }, + { + "label": "a red bus driving down the road with its lights on", + "pred": "a bus driving down a street next to a tree" + }, + { + "label": "a bus parked in front of other buses", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "a person sits on top of a bench", + "pred": "a man sitting on top of a wooden bench" + }, + { + "label": "a sign is shown on the side of a road", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a small red sign that says whoa in a stop sign shape", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "people are riding horses on the beach", + "pred": "a number of animals on a beach near a body of water" + }, + { + "label": "a train", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a double decker bus sits parked on a curb", + "pred": "a double decker bus parked on the side of the road" + }, + { + "label": "men and goats on side of street under a tree", + "pred": "a herd of cattle walking down a dirt road" + }, + { + "label": "a giraffe eating food from a food dispenser", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "a street is lined with people and buildings", + "pred": "a woman walking down a street next to a tall building" + }, + { + "label": "a very tall brown brick building next to a street sign", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a baby giraffe standing next to a wire fence", + "pred": "a giraffe standing in a fenced in area" + }, + { + "label": "a giraffe eats from a feeder on a fence", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "a fake stop sign that is in the grass", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a green and white bus on street next to dirt area", + "pred": "a green bus is driving down the road" + }, + { + "label": "a giraffe eating out of a container hooked to a fence", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "a large green bus and people on a motor bike", + "pred": "a green bus is driving down the road" + }, + { + "label": "a distant shot of people riding horses on the beach", + "pred": "a number of animals on a beach near a body of water" + }, + { + "label": "passenger train stopped on the track under a bridge", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a large blue and white bus on a road", + "pred": "a double decker bus parked on the side of the road" + }, + { + "label": "animals by a nasty street", + "pred": "a herd of cattle walking down a dirt road" + }, + { + "label": "a giraffe that is eating some of his food from a high up feeder", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "people on horses on a beach", + "pred": "a number of animals on a beach near a body of water" + }, + { + "label": "a giraffe eating out of a food bucket in its enclosure", + "pred": "a giraffe standing in a fenced in area next to a fence" + }, + { + "label": "white sheep standing in front of a colorful wall in a building", + "pred": "a sheep standing in front of a mirror" + }, + { + "label": "a blue and white double decker bus on side of street", + "pred": "a double decker bus parked on the side of the road" + }, + { + "label": "a bus traveling down a road beside a motorcycle", + "pred": "a green bus is driving down the road" + }, + { + "label": "a fluffy sheep's face", + "pred": "a sheep standing in front of a mirror" + }, + { + "label": "new york street sign showing broadway and west 122nd street", + "pred": "a street sign on a pole in front of a tall building" + }, + { + "label": "a giraffe standing up behind a fenced in area", + "pred": "a giraffe standing in a fenced in area" + }, + { + "label": "a city bus that is traveling down a wet country road", + "pred": "a bus driving down a street next to a tree" + }, + { + "label": "group of sheep walking alongside a group of people on the road", + "pred": "a herd of cattle walking down a dirt road" + }, + { + "label": "the large green bus drives near two people on a motorcycle", + "pred": "a green bus is driving down the road" + }, + { + "label": "a public transit bus on a city street", + "pred": "a white van driving down a street next to a white car" + }, + { + "label": "a green tour bus driving down the road", + "pred": "a green bus is driving down the road" + }, + { + "label": "people milling about a bus terminal getting ready to board", + "pred": "people walking on a sidewalk next to a train" + }, + { + "label": "a sheep stands in front of a box of colorful objects", + "pred": "a sheep standing in front of a mirror" + }, + { + "label": "a giraffe eats some leaves through a fence", + "pred": "a giraffe standing in a fenced in area" + }, + { + "label": "a large bus and car on a street", + "pred": "a white van driving down a street next to a white car" + }, + { + "label": "a train in a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a shorn sheep looks to the left of the picture", + "pred": "a sheep standing in front of a mirror" + }, + { + "label": "a white sheep against a colored background orange blue purple and yellow", + "pred": "a sheep standing in front of a mirror" + }, + { + "label": "a train sitting on train tracks and driving by", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "children are riding on a mini orange train", + "pred": "a woman sitting on a red chair in front of a group of people" + }, + { + "label": "a transit bus coming down a street with a large wooded side area", + "pred": "a bus driving down a street next to a tree" + }, + { + "label": "a stop sign outside of a bus window", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a metro bus driving down a fairly busy city street", + "pred": "a white van driving down a street next to a white car" + }, + { + "label": "children are riding on a toy train ride", + "pred": "a woman sitting on a red chair in front of a group of people" + }, + { + "label": "a bus coming up the street next to a car", + "pred": "a white van driving down a street next to a white car" + }, + { + "label": "the children are riding on an indoor train", + "pred": "a woman sitting on a red chair in front of a group of people" + }, + { + "label": "three sheep are grazing in the field next to the water", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "children on a small indoor kiddie train", + "pred": "a woman sitting on a red chair in front of a group of people" + }, + { + "label": "a bus driving down a street next to a suv", + "pred": "a white van driving down a street next to a white car" + }, + { + "label": "sheep standing next to each other on a field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "children ride on an indoor train", + "pred": "a woman sitting on a red chair in front of a group of people" + }, + { + "label": "an old train is going down the railroad underpass", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "sheep standing next to a river on dry grass", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "sheep that are grazing near a body of water", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "a yellow cat is wearing a blue plastic baseball hat", + "pred": "a cat sitting on top of a blue baseball cap" + }, + { + "label": "a bus about to stop to pick up passengers", + "pred": "a bus that is parked on the side of the street" + }, + { + "label": "corner of broadway, west 32nd street, and korea way", + "pred": "street signs on a pole on a city street" + }, + { + "label": "single train parked at a train station on a clear day", + "pred": "a yellow and red train traveling down train tracks" + }, + { + "label": "an orange cat wearing a plastic baseball cap", + "pred": "a cat sitting on top of a blue baseball cap" + }, + { + "label": "silohette of a man against the whiteness of the sky surrounding him", + "pred": "a man standing on top of a ledge with a bird flying over him" + }, + { + "label": "sheep are eating some grass near the water", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "three sheep grassing in a pasture side by side", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a man is standing up, taking a shot of the water, while a pigeon looks on", + "pred": "a man standing on top of a ledge with a bird flying over him" + }, + { + "label": "three big horn sheep are in an enclosed pasture", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a man and a bird standing on top of a roof", + "pred": "a man standing on top of a ledge with a bird flying over him" + }, + { + "label": "a stop sign is showing out of a bus window", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "one way signs are by street signs", + "pred": "street signs on a pole on a city street" + }, + { + "label": "a swan in the water near a boat tied to a dock", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a cluster of street signs hang on a street pole", + "pred": "street signs on a pole on a city street" + }, + { + "label": "a white swan swimming through a lake next to a boat", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a stack of traffic signs on a pole next to a street", + "pred": "a number of street signs on a pole" + }, + { + "label": "a passenger bus pulling up to the side of a street", + "pred": "a public transit bus on a city street" + }, + { + "label": "street signs stating road names and the right ways to go", + "pred": "street signs on a pole on a city street" + }, + { + "label": "a cat is wearing a plastic baseball cap", + "pred": "a cat sitting on top of a blue baseball cap" + }, + { + "label": "an angry cat is wearing a baseball hat sideways", + "pred": "a cat sitting on top of a blue baseball cap" + }, + { + "label": "a bus sitting still on the side of the road", + "pred": "a public transit bus on a city street" + }, + { + "label": "a high speed train is seen in the station", + "pred": "a train is pulling into a train station" + }, + { + "label": "a train is sitting in a train station", + "pred": "a train is pulling into a train station" + }, + { + "label": "a variety of signs point in different directions", + "pred": "a number of street signs on a pole" + }, + { + "label": "swan floating on a river in front of a boat", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a bus that is sitting on the street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a large long train on a steel track", + "pred": "a train is pulling into a train station" + }, + { + "label": "four smaller dogs are running away from the women on the bench", + "pred": "a dog standing on top of a grass covered field" + }, + { + "label": "a man with his shirt off sitting by the shoreline sunning himself", + "pred": "a person sitting on a bench next to a body of water" + }, + { + "label": "a train is near an empty outdoor station", + "pred": "a yellow and red train traveling down train tracks" + }, + { + "label": "four signs are stacked together under two others", + "pred": "a number of street signs on a pole" + }, + { + "label": "three lambs", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a west 32nd sign under a korea way road sign", + "pred": "street signs on a pole on a city street" + }, + { + "label": "a cat with a durham bulls helmet on its head", + "pred": "a cat sitting on top of a blue baseball cap" + }, + { + "label": "a bus is traveling down the city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "people waiting for the metro bus", + "pred": "a bus that is parked on the side of the street" + }, + { + "label": "a man standing on top of a structure under a cloudy sky", + "pred": "a man standing on top of a ledge with a bird flying over him" + }, + { + "label": "a bird that is sitting at the top of a branch", + "pred": "a large bird perched on top of a tree branch" + }, + { + "label": "an orange bus is parked next to the people", + "pred": "a bus that is parked on the side of the street" + }, + { + "label": "a train coming into the station", + "pred": "a train is pulling into a train station" + }, + { + "label": "a white duck is swimming in the water near a boat", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a small bird sitting on top of a branch", + "pred": "a large bird perched on top of a tree branch" + }, + { + "label": "people standing next to a large bus", + "pred": "a bus that is parked on the side of the street" + }, + { + "label": "a stop sign taken through the window of a train", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a yellow bus that is sitting in the grass", + "pred": "a yellow school bus parked in a field" + }, + { + "label": "a red fire hydrant with a sticker of several animals on it", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a large white bus sitting in front of a tall building", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a yellow and red train at a train stop", + "pred": "a yellow and red train traveling down train tracks" + }, + { + "label": "a yellow an red colored train that is approaching a pickup/drop off point", + "pred": "a yellow and red train traveling down train tracks" + }, + { + "label": "a fire hydrant with a sticker of different animals on it", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "group of street signs posted to a concrete post by a stage", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a fire hydrant is sitting on a street corner", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a large yellow bus parked in some grass", + "pred": "a yellow school bus parked in a field" + }, + { + "label": "large signs stacked up on a pole", + "pred": "a number of street signs on a pole" + }, + { + "label": "a red fire hydrant with graphic art decal", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a school bus, parked in a rural area", + "pred": "a yellow school bus parked in a field" + }, + { + "label": "a bird is perched on top of a large stick", + "pred": "a large bird perched on top of a tree branch" + }, + { + "label": "a small group of sheep standing together next to a building", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a stop sign and two brown and white street signs", + "pred": "a stop sign and a street sign on a pole" + }, + { + "label": "group of sheep standing next to a brick building", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "dogs running across a lush green field", + "pred": "a dog standing on top of a grass covered field" + }, + { + "label": "a fire hyrdant sitting on the sidewalk next to the road", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "sheep standing around next to a brick wall", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "an suv is driving past a city bus that is letting passengers on", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a herd of sheep standing on top of a green grass covered yard", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "buildings with large signs \"park here\" with rainy cement", + "pred": "a food truck is parked on the side of the street" + }, + { + "label": "a large group of people standing in the street", + "pred": "a large group of people standing in front of a stop sign" + }, + { + "label": "a man in a hat leaning against a pole", + "pred": "a man standing on a sidewalk next to a street sign" + }, + { + "label": "a hydrant well tired up placed at the middle of the town", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "the roads are wet near a public parking booth", + "pred": "a food truck is parked on the side of the street" + }, + { + "label": "a school bus sitting in some overgrown grass", + "pred": "a yellow school bus parked in a field" + }, + { + "label": "people march together protesting and holding signs", + "pred": "a large group of people standing in front of a stop sign" + }, + { + "label": "a bird perched on top of a tree branch with large wings.l", + "pred": "a large bird perched on top of a tree branch" + }, + { + "label": "a protest showing people to stop murder on the road", + "pred": "a large group of people standing in front of a stop sign" + }, + { + "label": "a public parking payment booth in a lot", + "pred": "a food truck is parked on the side of the street" + }, + { + "label": "two street signs on the corner of a stone wall", + "pred": "a street sign with graffiti on it" + }, + { + "label": "blue and white bird standing on a branch", + "pred": "a large bird perched on top of a tree branch" + }, + { + "label": "the parking attendant is waiting for the fees to be paid", + "pred": "a food truck is parked on the side of the street" + }, + { + "label": "a leaning stop sign has a street sign on top", + "pred": "a stop sign and a street sign on a pole" + }, + { + "label": "crown marching in one direction in a lightly attended protest", + "pred": "a large group of people standing in front of a stop sign" + }, + { + "label": "three traffic signs sit on on a corner in front of a brick wall", + "pred": "a street sign with graffiti on it" + }, + { + "label": "a sign laying on a lush green field near a body of water", + "pred": "a person sitting on a bench next to a body of water" + }, + { + "label": "man relaxing near a trail closed sign on the ground", + "pred": "a person sitting on a bench next to a body of water" + }, + { + "label": "a very cute giraffe making a funny face", + "pred": "a giraffe that is standing in the grass" + }, + { + "label": "an old man walking down a sidewalk in black and white", + "pred": "a man standing on a sidewalk next to a street sign" + }, + { + "label": "a giraffe's head looking at the camera and making a face", + "pred": "a giraffe that is standing in the grass" + }, + { + "label": "a bus parked in the weeds on a sunny day", + "pred": "a yellow school bus parked in a field" + }, + { + "label": "a public parking booth", + "pred": "a food truck is parked on the side of the street" + }, + { + "label": "a giraffe eating in a zoo", + "pred": "a giraffe that is standing in the grass" + }, + { + "label": "a man sitting on a wall next to water next to a barrier", + "pred": "a person sitting on a bench next to a body of water" + }, + { + "label": "a red fire hydrant with a chain that is attached to it", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a stop sign is leaning on a rusted pole near a phone pole", + "pred": "a stop sign and a street sign on a pole" + }, + { + "label": "a faded stop sign with two street signs above, in a rural area", + "pred": "a stop sign and a street sign on a pole" + }, + { + "label": "a fire hydrant is standing on a sidewalk with a person walking by", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a bus is stopped to let a passenger get on", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a dog with a hat and a person in a truck", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a number of dogs running in a field with people on a bench", + "pred": "a dog standing on top of a grass covered field" + }, + { + "label": "a bus boarding at a curb near a drug store", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "a side view of a plane flying in the clear blue sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a black and white photos of a man leaning on a street sign in a neighborhood", + "pred": "a man standing on a sidewalk next to a street sign" + }, + { + "label": "a train is traveling down the rail road tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a train driving down the rail road tracks in a city", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a train is making its way down the tracks", + "pred": "a yellow and white train traveling down train tracks" + }, + { + "label": "different fire hydrants that have been painted various colors", + "pred": "a fire hydrant in the middle of a grassy area" + }, + { + "label": "a passenger jet that is flying in the sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a giraffe is making a funny face at the camera", + "pred": "a giraffe that is standing in the grass" + }, + { + "label": "a man is standing on a sidewalk leaning on a pole", + "pred": "a man standing on a sidewalk next to a street sign" + }, + { + "label": "nine fire hydrants in various type color schemes", + "pred": "a fire hydrant in the middle of a grassy area" + }, + { + "label": "a giraffe is coming up close to people", + "pred": "a giraffe that is standing in the grass" + }, + { + "label": "an airplane is flying through clear blue sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a train one track away from a platform at a stop", + "pred": "a yellow and white train traveling down train tracks" + }, + { + "label": "the photo is a collection of brightly painted fire hydrants", + "pred": "a fire hydrant in the middle of a grassy area" + }, + { + "label": "a gray and blue plane flies in the blue sky", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a alley way with graffiti and some signs", + "pred": "a street sign with graffiti on it" + }, + { + "label": "different fire hydrants have different looks including bright colors and stand in dirt and grass and the sidewalk", + "pred": "a fire hydrant in the middle of a grassy area" + }, + { + "label": "a giraffe standing on a grass covered field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "an old man that is leaning against a pole right by the corner", + "pred": "a man standing on a sidewalk next to a street sign" + }, + { + "label": "two signs that are on the side of a wall", + "pred": "a street sign with graffiti on it" + }, + { + "label": "a person in a car sits next to a top with a hat on", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a wall covered in graffiti next to a sidewalk", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a giraffe stands in an area of dead shrubbery", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "dogs that are standing in the grass", + "pred": "a dog standing on top of a grass covered field" + }, + { + "label": "a jet airliner flying in the air carrying some passengers", + "pred": "a large jetliner flying through a blue sky" + }, + { + "label": "a dog with a green hat sitting in a truck", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a collage with nine fire hydrants of different color combinations", + "pred": "a fire hydrant in the middle of a grassy area" + }, + { + "label": "a dog with a green hat in a truck and a green shamrock posted to the truck's side mirror", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a street sign prohibiting vehicles in front of a store", + "pred": "a street sign on the side of a building" + }, + { + "label": "vehicles are side by side", + "pred": "cars are stopped at a red light" + }, + { + "label": "two signs that are on a pole in the snow", + "pred": "a sign that is on a pole in the snow" + }, + { + "label": "a man waiting for the next train to come", + "pred": "a yellow and white train traveling down train tracks" + }, + { + "label": "a sign that is sitting on a wooden pole", + "pred": "a street sign on the side of a building" + }, + { + "label": "a building that has a rainbow above it", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a white train with a yellow front running on rails", + "pred": "a yellow and white train traveling down train tracks" + }, + { + "label": "a sign on the side of a snowy road stating avalanche zone", + "pred": "a sign that is on a pole in the snow" + }, + { + "label": "different color paintings on the side of a building", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a black cat with a hat on the ground", + "pred": "a cat that is laying down in a box" + }, + { + "label": "large public transportation train in different coloration sectionals", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a black cay laying on top of a white box", + "pred": "a cat that is laying down in a box" + }, + { + "label": "graffiti on a subway train", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a single giraffe standing in tall brown grass", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a giraffe is standing alone in a dead patch of foliage", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a cat sits inside a box wearing a pirate hat", + "pred": "a cat that is laying down in a box" + }, + { + "label": "colorful graffiti is on the side of a subway car", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a woman sitting on a unique chair beside a vase", + "pred": "a woman sitting on a chair in front of a window" + }, + { + "label": "cars and motorbike crowd the streets", + "pred": "cars are stopped at a red light" + }, + { + "label": "an old train is making its way through the city", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a railroad train rides down the tracks near buildings", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a single giraffe is standing in some tall brush looking all around", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "cars crowd a street in a busy city", + "pred": "cars are stopped at a red light" + }, + { + "label": "a sign posted in the mountains with snow on the ground", + "pred": "a sign that is on a pole in the snow" + }, + { + "label": "a black cat in a box wearing a pirate hat", + "pred": "a cat that is laying down in a box" + }, + { + "label": "a bird flying through a blue sky with wide wings", + "pred": "a bird that is flying in the sky" + }, + { + "label": "a red and white traffic sign sitting in front of buildings", + "pred": "a street sign on the side of a building" + }, + { + "label": "animals grazing on a lush green field", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "this highway is empty this early on the morning", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a white bus parked next to a sidewalk near a fence", + "pred": "a white and black bus parked next to a fence" + }, + { + "label": "a rainbow at the end of a rain soaked road", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a street view of cars and buildings with a rainbow in the sky", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a traffic light suspended over a rural road", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a humming bird standing on top of a green feeder", + "pred": "a small bird perched on top of a bird feeder" + }, + { + "label": "a woman in a blue dress poses on a weird chair", + "pred": "a woman sitting on a chair in front of a window" + }, + { + "label": "a woman in a sari rides on the back of a motorcycle", + "pred": "cars are stopped at a red light" + }, + { + "label": "a birds is soaring across the blue sky", + "pred": "a bird that is flying in the sky" + }, + { + "label": "people walking across a busy city street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "the parked bus is covered in colorful graffiti", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "people crossing a street in front of a taxi and tour bus", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a fire department with a sign out front", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a transit bus riding through a city street at night", + "pred": "a city bus driving down a city street" + }, + { + "label": "a very big city bus on wet city street at night", + "pred": "a city bus driving down a city street" + }, + { + "label": "a city street with a rainbow", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "woman with blue dress sitting in modern chair next to vase in empty room", + "pred": "a woman sitting on a chair in front of a window" + }, + { + "label": "a city street with people crossing in front of a taxi", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "sheep standing on a mountain side", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "lamp are seen at the top of a treeless hill", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "signs along a street on a rainy day", + "pred": "a street sign on the corner of a street" + }, + { + "label": "a a red and white sign outside of a fire department", + "pred": "a sign that is on the side of a building" + }, + { + "label": "shopping district with a banned sign for anything with wheels", + "pred": "a street sign on the side of a building" + }, + { + "label": "a small bird resting and eating from a bird feeder", + "pred": "a small bird perched on top of a bird feeder" + }, + { + "label": "a joke is posted on the sign outside the fire department", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a white bus stopped alongside a sidewalk in the street", + "pred": "a white and black bus parked next to a fence" + }, + { + "label": "a bus in a city at night time stopped", + "pred": "a city bus driving down a city street" + }, + { + "label": "a fish eye lens shows the corner of a busy city street with bikes, people and buildings", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a line of vehicles parked on the side of the road", + "pred": "a white and black bus parked next to a fence" + }, + { + "label": "people crossing in a crosswalk in front of traffic in the city", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a bird is flying against a blue sky", + "pred": "a bird that is flying in the sky" + }, + { + "label": "sheep grazing in grass in the mountains", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a white and blue bus is on a city street at night", + "pred": "a city bus driving down a city street" + }, + { + "label": "a sign in front of a building near a flag pole", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a big bird flies through the air", + "pred": "a bird that is flying in the sky" + }, + { + "label": "a herd of sheep standing on top of a hill", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a small bird on a bird feeder", + "pred": "a small bird perched on top of a bird feeder" + }, + { + "label": "a brown, white and black bird flying in blue sky", + "pred": "a bird that is flying in the sky" + }, + { + "label": "a vandalized stop sign", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a snowy, icy, empty city street and a stoplight", + "pred": "a snow covered street with a stop sign" + }, + { + "label": "a yield and left turn sign on the side of a street", + "pred": "a street sign on the corner of a street" + }, + { + "label": "view down a two lane road at a red stop signal", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a stop sign with the words \"don't\" and \"believing\" added", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "people are crossing the street in both directions", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a red traffic light at an empty intersection", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "an orange train engine moves down the track with one train car behind it", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "a street sign stuck inside of some snow", + "pred": "a sign that is on a pole in the snow" + }, + { + "label": "a stop sign has graffiti on that changes the sign to say, don't stop believing", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "the bird is standing on the rim of the bird feeder", + "pred": "a small bird perched on top of a bird feeder" + }, + { + "label": "a stop sign with words added to it in marker", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "an orange train is on a track near a stop sign", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "a wet city street with cars on it", + "pred": "a street sign on the corner of a street" + }, + { + "label": "a train station with an awning is depicted with a train on the right platform", + "pred": "a train station with a train on the tracks" + }, + { + "label": "a cleared crosswalk in a city on a snowy, slushy day", + "pred": "a snow covered street with a stop sign" + }, + { + "label": "a international train station with a passenger train passing by", + "pred": "a train station with a train on the tracks" + }, + { + "label": "a stop sign has graffiti on it as it stands on a snowy street", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a fire hydrant on a city side walk with bushes", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "two giraffe moving very quickly in the woods", + "pred": "two giraffes standing in a grassy area next to trees" + }, + { + "label": "two giraffes walking in long grass near short trees", + "pred": "two giraffes standing in a grassy area next to trees" + }, + { + "label": "a train platform with trains on the other side", + "pred": "a train station with a train on the tracks" + }, + { + "label": "a woman sitting in front of the eiffel tower near pigeons", + "pred": "a woman standing next to a pigeon on a sidewalk" + }, + { + "label": "a woman in a blue dress with no shoes, seated with her legs crossed on a chair in the middle of a room", + "pred": "a woman sitting on a chair in front of a window" + }, + { + "label": "small train like structure riding down a train way", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "an old school bus painted white with curtained windows parked under a freeway", + "pred": "a white and black bus parked next to a fence" + }, + { + "label": "a number of people and cars on a city street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a city street that has piles on snow on it", + "pred": "a snow covered street with a stop sign" + }, + { + "label": "a woman sitting on ledge with three pigeons, with gate railing, trees, and base of the eiffel tower behind", + "pred": "a woman standing next to a pigeon on a sidewalk" + }, + { + "label": "a man sitting on a train at a table using a laptop", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "people cross a crosswalk while a taxi and bus wait", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a rode that has car and bicycle lane that cars are driving on the left side of the road", + "pred": "a street sign on the corner of a street" + }, + { + "label": "a man sitting on cement by some birds", + "pred": "a woman standing next to a pigeon on a sidewalk" + }, + { + "label": "a man punching an innocent giraffe in the side of it's head", + "pred": "a man holding a giraffe next to a fence" + }, + { + "label": "a person is sitting in a chair at a table with a laptop computer", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "an older man is sitting on the bus above a movie advertisement", + "pred": "a bus with a picture of a woman on it" + }, + { + "label": "a person sitting on train doing something on their lap top", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a train pulling into a station beside a platform", + "pred": "a train station with a train on the tracks" + }, + { + "label": "train engine pulling one freight car along rails", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "two giraffes walking in an open wooded area", + "pred": "two giraffes standing in a grassy area next to trees" + }, + { + "label": "a small bird contemplates how to get some seeds", + "pred": "a small bird perched on top of a bird feeder" + }, + { + "label": "an oddly taken photo of some buildings and shops", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a man sitting at a table using a lap top", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a fire hydrant that has a large amount of weeds around it", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "giraffes are walking around near some bushes", + "pred": "two giraffes standing in a grassy area next to trees" + }, + { + "label": "a woman seated on wall and birds besides her", + "pred": "a woman standing next to a pigeon on a sidewalk" + }, + { + "label": "a woman is sitting near a prominent landmark", + "pred": "a woman standing next to a pigeon on a sidewalk" + }, + { + "label": "a young man is playing with a giraffe", + "pred": "a man holding a giraffe next to a fence" + }, + { + "label": "the fire hydrant has a lot of weeds by it on the side of the road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "the train is traveling down the railroad tracks", + "pred": "a train station with a train on the tracks" + }, + { + "label": "the road in the city is quiet and empty", + "pred": "a snow covered street with a stop sign" + }, + { + "label": "a city with snow and slush filling the ground", + "pred": "a snow covered street with a stop sign" + }, + { + "label": "a man looking out the window of a bus", + "pred": "a bus with a picture of a woman on it" + }, + { + "label": "a fire hydrant with grass grown around it on a curb side", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a city intersection with period buildings and store fronts", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a man sitting in a bus staring out the window", + "pred": "a bus with a picture of a woman on it" + }, + { + "label": "a man in a green suiit leaning over a laptop", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a long train traveling through a train yard", + "pred": "a train station with several trains parked on the tracks" + }, + { + "label": "a rusted out train engine sitting next to a green forest", + "pred": "an old train sitting on top of a train track" + }, + { + "label": "a man opening a fire hydrant spewing out rusty water into a street", + "pred": "a dog sniffing a fire hydrant on the sidewalk" + }, + { + "label": "a man sitting on top of a bus over a billboard", + "pred": "a bus with a picture of a woman on it" + }, + { + "label": "a giraffe stands in the middle of a sandy area", + "pred": "a giraffe standing on top of a dirt field" + }, + { + "label": "a man that is looking out of the window", + "pred": "a bus with a picture of a woman on it" + }, + { + "label": "two giraffes walking near some tall grasses", + "pred": "two giraffes standing in a grassy area next to trees" + }, + { + "label": "a bright yellow transit bus is making it's way down a street in the dark", + "pred": "a yellow bus is parked at a bus stop" + }, + { + "label": "a big pretty yellow city bus in the dark", + "pred": "a yellow bus is parked at a bus stop" + }, + { + "label": "a red brick building with a street sign sitting outside of it", + "pred": "a street sign in front of a brick building" + }, + { + "label": "a very cute flock of sheep in a grassy field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a train on a train track next to a parking lot", + "pred": "a train station with several trains parked on the tracks" + }, + { + "label": "a fire hydrant next to an exposed pipe in patch of shrubbery next to a street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a giraffe that is standing in the ground", + "pred": "a giraffe standing on top of a dirt field" + }, + { + "label": "birds are on the roof of a house", + "pred": "a pair of birds sitting on top of a wooden roof" + }, + { + "label": "sheeps walking the field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "an outdoor train yard area with several sets of train tracks and train cars extending down one set of tracks", + "pred": "a train station with several trains parked on the tracks" + }, + { + "label": "a yellow bus that says 103 roja on the front", + "pred": "a yellow bus is parked at a bus stop" + }, + { + "label": "a brick building with a blue sign on it in front of a metal pole", + "pred": "a street sign in front of a brick building" + }, + { + "label": "a large pretty brick building with a small blue sign on it", + "pred": "a street sign in front of a brick building" + }, + { + "label": "street signs sitting beside a large red brick building", + "pred": "a street sign in front of a brick building" + }, + { + "label": "an orange, white, and gray train is sitting at the platform", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a bird flies away from three others that are sitting", + "pred": "a pair of birds sitting on top of a wooden roof" + }, + { + "label": "a yellow bus traveling down a street at night", + "pred": "a yellow bus is parked at a bus stop" + }, + { + "label": "a train parked next to a railway platform", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a large group black faced sheep with one or two white faced sheep", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a train at a station near a platform", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a long train pulling several cars along the tracks", + "pred": "a train station with several trains parked on the tracks" + }, + { + "label": "a public transit bus on a city street", + "pred": "a yellow bus is parked at a bus stop" + }, + { + "label": "a flock of sheep is crossing a grassy field with trees behind them", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a landscape view of a railroad yard and train", + "pred": "a train station with several trains parked on the tracks" + }, + { + "label": "a bird taking flight from a rooftop away from the other birds", + "pred": "a pair of birds sitting on top of a wooden roof" + }, + { + "label": "this blurry picture shows the side of a brick building", + "pred": "a street sign in front of a brick building" + }, + { + "label": "three birds perched and one flying towards the viewer", + "pred": "a pair of birds sitting on top of a wooden roof" + }, + { + "label": "a two story train stopped at an indoor train stop", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a modern subway train is lit up at night", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a man pretending to punch a giraffe sculpture", + "pred": "a man holding a giraffe next to a fence" + }, + { + "label": "an old rusty pipe that is connected to building with windows", + "pred": "an old train sitting on top of a train track" + }, + { + "label": "a man opens a fire hydrant and brown colored water is flowing out", + "pred": "a dog sniffing a fire hydrant on the sidewalk" + }, + { + "label": "a public transit bus on a city street", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a red bus parked on a street with another vehicle parked nearby", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a rusted train engine in a sunny day", + "pred": "an old train sitting on top of a train track" + }, + { + "label": "muddy water is coming out from a water hose", + "pred": "a dog sniffing a fire hydrant on the sidewalk" + }, + { + "label": "a very old and rusted train parked on the tracks", + "pred": "an old train sitting on top of a train track" + }, + { + "label": "a man opening a fire hydrant on a city side walk", + "pred": "a dog is sniffing a fire hydrant" + }, + { + "label": "an the front of an amtrak train", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a lush green forest filled with lots of trees", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "a blue and white train traveling down tracks near a building", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "people standing inside of a moving tram", + "pred": "a collage of photos of people and a train" + }, + { + "label": "an insect sitting on top of a wooden deck", + "pred": "a pair of birds sitting on top of a building" + }, + { + "label": "the herd of sheep is standing on the grass", + "pred": "a herd of sheep standing on top of a hill" + }, + { + "label": "a large white sheep standing next to other sheep", + "pred": "sheep standing next to each other" + }, + { + "label": "a montage of images related to a mass transit train system", + "pred": "a collage of photos of people and a train" + }, + { + "label": "a man is miming punching a giraffe statue", + "pred": "a man holding a giraffe next to a fence" + }, + { + "label": "a small red bird perched by a wooden flower box", + "pred": "a red bird sitting on top of a wooden table" + }, + { + "label": "an outside view of a subway car and an inside view of people standing in a subway car", + "pred": "a collage of photos of people and a train" + }, + { + "label": "a red and black bird perched on a rail", + "pred": "a red bird sitting on top of a wooden table" + }, + { + "label": "a collage is shown of a train ride and stop", + "pred": "a collage of photos of people and a train" + }, + { + "label": "animals standing on top of a grass covered field", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a jacket is draped on a bench in a dense forest", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "a red bus sitting on the side of a road", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "red bus parked on street near stone steps", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a man is pretending to hit a statue of a giraffe", + "pred": "a man holding a giraffe next to a fence" + }, + { + "label": "a white train traveling through a train station", + "pred": "a collage of photos of people and a train" + }, + { + "label": "a bus in china is parked along a curb", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "an old, rusty part of a train", + "pred": "an old train sitting on top of a train track" + }, + { + "label": "a fire hydrant that has dirty, brown water inside", + "pred": "a dog is sniffing a fire hydrant" + }, + { + "label": "a bird is sitting on a railing next to a potted plant", + "pred": "a red bird sitting on top of a wooden table" + }, + { + "label": "a train covered in graffiti on top of train tracks", + "pred": "a train with graffiti on the side of it" + }, + { + "label": "a bird perched on top of a tree filled with leaves", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a front end of a big train near a bridge", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a red bird pirched on a wooden ledge", + "pred": "a red bird sitting on top of a wooden table" + }, + { + "label": "a giraffe standing in sand near trees", + "pred": "a giraffe standing on top of a dirt field" + }, + { + "label": "a sheep in a cage looking at sheep fur", + "pred": "sheep standing next to each other" + }, + { + "label": "a small giraffe standing on sand in its zoo enclosure", + "pred": "a giraffe standing on top of a dirt field" + }, + { + "label": "an amtrak train sitting on the train track", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a park bench with a backpack on it in a forest of trees", + "pred": "a wooden bench sitting in the middle of a forest" + }, + { + "label": "a giraffe looking and walking around a field", + "pred": "a giraffe standing on top of a dirt field" + }, + { + "label": "a lamb standing up in a couch full of wool", + "pred": "sheep standing next to each other" + }, + { + "label": "a blue and grey amtrak train is displayed", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a woman with an umbrella hat on talking on a cell phone", + "pred": "a woman holding an umbrella in front of a crowd" + }, + { + "label": "a long cargo train going down a track by some trees", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "an overcast day at dock with sea birds resting in the nearby marsh", + "pred": "a flock of birds standing on top of a field" + }, + { + "label": "a stop sign put upside down on a metal pole", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "sheep on a big grassy field full of sheep", + "pred": "sheep standing on top of a lush green field" + }, + { + "label": "a stop sign sittin on a pole that is somewhat broken", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a train with a red and yellow engine on a railroad track", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a street with some signs, cars, and some tall buildings", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "birds that are walking in a field", + "pred": "a flock of birds standing on top of a field" + }, + { + "label": "ships in the distance behind a grassy marsh with egrets", + "pred": "a flock of birds standing on top of a field" + }, + { + "label": "ships in the distance behind a grassy marsh with egrets", + "pred": "a flock of birds standing on top of a field" + }, + { + "label": "a bus driving down the road really fast", + "pred": "a bus driving down a street at night" + }, + { + "label": "a train on its tracks with a mannheim sign on the front", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "the woman is wearing and umbrella hat and on her phone", + "pred": "a woman holding an umbrella in front of a crowd" + }, + { + "label": "a train pulls a large number of cars through a junction", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "curious sheep on a large, well used pasture", + "pred": "sheep standing on top of a lush green field" + }, + { + "label": "people sitting near a santa", + "pred": "a large group of people posing for a picture" + }, + { + "label": "an upward view of a building and several signs, including a one way sign", + "pred": "a street sign in front of a tall building" + }, + { + "label": "a hybrid diesel-electric commuter bus on the street in england", + "pred": "a public transit bus on a city street" + }, + { + "label": "a white ecohopper bus driving down a street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a stop sign installed upside down on a street corner", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a variety of street signs on a light post in front of a tall building", + "pred": "a street sign in front of a tall building" + }, + { + "label": "an eco-friendly bus driving through a city intersection", + "pred": "a public transit bus on a city street" + }, + { + "label": "a stop sign on a broken post across the street from houses", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a city road with cars, traffic lights and road signs", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "children surrounded around a person with a beard on", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a broken telephone pole in a neighborhood with a stop sign attached to it", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "signs are posted on the light post near a skyscraper", + "pred": "a street sign in front of a tall building" + }, + { + "label": "kids are posing with santa", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a stop sign is on a dented wooden pole", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a bus full of people drives down a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "birds walk through a field of tall grass near a sail boat harbor", + "pred": "a flock of birds standing on top of a grass covered field" + }, + { + "label": "the traffic signal is at the intersection near a large building", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a street that has traffic lights that are very high up", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a stop sign that is attached to a broken wooden pole", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "people sitting on top of a wooden bench", + "pred": "a person sitting on a bench overlooking a body of water" + }, + { + "label": "street lights on the side of the road", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "two people sitting on a bench overlooking a body of water", + "pred": "a person sitting on a bench overlooking a body of water" + }, + { + "label": "children sit around a person in a santa costume", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a stop light in the middle of a small town", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a white bus turns a corner on a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "woolly sheep standing together in the field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "two street signs on top of a stop sign", + "pred": "two street signs on top of a stop sign" + }, + { + "label": "a number of sheep gathered together looking around while standing on grass", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a public transportation bus near a curb with a bicycle rack", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "two people sitting on a bench next to the ocean", + "pred": "a person sitting on a bench overlooking a body of water" + }, + { + "label": "sheep are standing together outside in a field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "two green street signs crossing each other above a stop sign", + "pred": "two street signs on top of a stop sign" + }, + { + "label": "two people on a bench near the water", + "pred": "a person sitting on a bench overlooking a body of water" + }, + { + "label": "a stop sign underneath two street signs with a tree", + "pred": "two street signs on top of a stop sign" + }, + { + "label": "the #41 bus parked at the curb waiting for passengers to board", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a street light on a street corner with cars driving on it", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a stop sign at the cross section of two streets", + "pred": "two street signs on top of a stop sign" + }, + { + "label": "a street sign on top of a stop sign", + "pred": "two street signs on top of a stop sign" + }, + { + "label": "a train traveling down tracks next to a lush forest", + "pred": "a yellow and black train traveling down train tracks" + }, + { + "label": "an african type landscape with giraffes, wildebeests and antelope", + "pred": "a herd of animals standing on top of a lush green field" + }, + { + "label": "two people sitting on a bench looking out over the ocean", + "pred": "a person sitting on a bench overlooking a body of water" + }, + { + "label": "a large bus parked by the curb", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "dirt roads on a hilly landscape with giraffes and antelope", + "pred": "a herd of animals standing on top of a lush green field" + }, + { + "label": "the sheep gathered in the meadow wait to be told where to go", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a white bus that has a 41 crosstown sign on the front", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a very big white bus parked by the curb", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a flock of very cute sheep in a grassy field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "two giraffes walking along a trail to the hills", + "pred": "a herd of animals standing on top of a lush green field" + }, + { + "label": "a large grassy field with giraffes and a few other animals", + "pred": "a herd of animals standing on top of a lush green field" + }, + { + "label": "a red traffic stop sign with a blank white sign below it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "the airplane has landed behind a fence with barbed wire", + "pred": "a white and blue airplane sitting on top of a grass covered field" + }, + { + "label": "an airplane sitting on a runway with a fence around it", + "pred": "a white and blue airplane sitting on top of a grass covered field" + }, + { + "label": "the airplane is on the ground, but getting ready for takeoff", + "pred": "a white and blue airplane sitting on top of a grass covered field" + }, + { + "label": "a tall building with four double decker buses driving along a parking lot", + "pred": "a double decker bus driving down a street" + }, + { + "label": "giraffes in a field near some mountains", + "pred": "a herd of animals standing on top of a lush green field" + }, + { + "label": "a large long bus on a city street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "two white double decker buses on a street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a large plane is docked at the airport and connected", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a small yellow bird on a small branch", + "pred": "a yellow bird sitting on a branch of a tree" + }, + { + "label": "a red stop sign in front of a blue truck", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "the picnic table under the tree is empty of people", + "pred": "a wooden bench sitting in front of a tree" + }, + { + "label": "a large bird that is standing on some rocks by a river", + "pred": "a zebra standing on top of a body of water" + }, + { + "label": "a picnic table sitting next to a tree", + "pred": "a wooden bench sitting in front of a tree" + }, + { + "label": "a yellow fire hydrant with a cartoon face drawn on it", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a picnic table in sand, underneath a tree", + "pred": "a wooden bench sitting in front of a tree" + }, + { + "label": "a bird standing on rocks in a river", + "pred": "a zebra standing on top of a body of water" + }, + { + "label": "a plane that is sitting on the asphalt behind a fence", + "pred": "a white and blue airplane sitting on top of a grass covered field" + }, + { + "label": "a red stop sign sitting next to a car under a traffic light", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "red and white park bench sitting underneath a large tree", + "pred": "a wooden bench sitting in front of a tree" + }, + { + "label": "a wooden table sititng under a big tree", + "pred": "a wooden bench sitting in front of a tree" + }, + { + "label": "an old yellow train is waiting at the station", + "pred": "a yellow and black train on a train track" + }, + { + "label": "a plane with the attachment to let passengers on the plane", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "an airplane with the loading ramp in place", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "two giraffes standing around in the middle of a field", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a fire hydrant that has been painted green on top", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a bird perched on top of a brown tree branch", + "pred": "a yellow bird sitting on a branch of a tree" + }, + { + "label": "sheep standing next to each other on a field", + "pred": "a sheep that is standing in the grass" + }, + { + "label": "a train comes to a stop on the tracks next to the sidewalk", + "pred": "a yellow and black train on a train track" + }, + { + "label": "three zebra and four giraffe inside a fenced area", + "pred": "giraffes and zebras in a zoo enclosure" + }, + { + "label": "two sheep in a pasture behind a wire fence", + "pred": "a sheep that is standing in the grass" + }, + { + "label": "four giraffes standing around while three zebras walk by", + "pred": "giraffes and zebras in a zoo enclosure" + }, + { + "label": "two giraffes standing on a dirt expanse with trees", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "two giraffes standing out in the hot sun in front of a tent", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "sheep looking to camera over another sheep's back as seen through a fence", + "pred": "a sheep that is standing in the grass" + }, + { + "label": "two giraffes standing in a dry landscape gaze to the side", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a plane pulled up to a gate with the jet bridge out", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a plane is surrounded by a high barbed-wire fence", + "pred": "a white and blue airplane sitting on top of a grass covered field" + }, + { + "label": "a yellow train parked on the track next to a platform", + "pred": "a yellow and black train on a train track" + }, + { + "label": "a bird perched on a branch of a tree", + "pred": "a yellow bird sitting on a branch of a tree" + }, + { + "label": "two sheep in a fenced area on a sunny day", + "pred": "a sheep that is standing in the grass" + }, + { + "label": "two giraffes standing in a desert like area", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a yellow fire hydrant with an angry face drawn on it", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a train at the station with no passengers around", + "pred": "a yellow and black train on a train track" + }, + { + "label": "animals that are in side a fence", + "pred": "cows that are in a barn" + }, + { + "label": "a long yellow train that is on a train track", + "pred": "a yellow and black train on a train track" + }, + { + "label": "a blue pickup truck stopped at a stop sign", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "two sheep in a caged area with bushes", + "pred": "a sheep that is standing in the grass" + }, + { + "label": "a bird that is standing on a rock in the water", + "pred": "a zebra standing on top of a body of water" + }, + { + "label": "a large airplane that is on a runway", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "zebras staning in line next to some trees", + "pred": "giraffes and zebras in a zoo enclosure" + }, + { + "label": "a bird is sitting out on some rocks in the water", + "pred": "a zebra standing on top of a body of water" + }, + { + "label": "two giraffes are standing together outside a barn", + "pred": "giraffe standing next to each other" + }, + { + "label": "a yellow and red bird is sitting in a tree", + "pred": "a yellow bird sitting on a branch of a tree" + }, + { + "label": "two sheep that are inside of a gate", + "pred": "cows that are in a barn" + }, + { + "label": "a train with a gold front is going down the tracks", + "pred": "a yellow and black train traveling down train tracks" + }, + { + "label": "a mother giraffe is standing with a baby giraffe", + "pred": "giraffe standing next to each other" + }, + { + "label": "a bright colored bird is sitting on a branch of a full tree", + "pred": "a yellow bird sitting on a branch of a tree" + }, + { + "label": "a large bird is perched on rocks in a river", + "pred": "a zebra standing on top of a body of water" + }, + { + "label": "a truck behind the stop sign", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "tagged, black faced sheep in a pen in a livestock yard", + "pred": "cows that are in a barn" + }, + { + "label": "a blue rusted train engine sitting on top of rail tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a train with a yellow front driving on a track", + "pred": "a yellow and black train traveling down train tracks" + }, + { + "label": "a water hydrant on a pavement with cars in the bay", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a train with bright yellow engine on tracks beside tall leafy trees", + "pred": "a yellow and black train traveling down train tracks" + }, + { + "label": "a herd of sheep standing inside of a wooden pen", + "pred": "cows that are in a barn" + }, + { + "label": "a train sitting next to a loading platform with people standing on it", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bench in front of te lake", + "pred": "a bench sitting in the middle of a pond" + }, + { + "label": "zoo animals are walking and having fun in the zoo", + "pred": "giraffes and zebras in a zoo enclosure" + }, + { + "label": "sheep are in a corral together", + "pred": "cows that are in a barn" + }, + { + "label": "a bird standing next to a lot of tall grass", + "pred": "a bird that is standing in the water" + }, + { + "label": "a rusted broken down train sits between vegetation areas", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a fire hydrant with a face drawn on the front", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a bench in a green park overlooks a reflecting pool", + "pred": "a bench sitting in the middle of a pond" + }, + { + "label": "the smaller giraffe is standing next to the larger giraffe", + "pred": "giraffe standing next to each other" + }, + { + "label": "two giraffes in a sanctuary standing close to the wall", + "pred": "giraffe standing next to each other" + }, + { + "label": "a train that has people standing outside of it", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "double-decker buses sit at the curb in front of an old building", + "pred": "a double decker bus driving down a street" + }, + { + "label": "double-decker buses line up at a bus stop", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a bench sits between a pond and the tree line", + "pred": "a bench sitting in the middle of a pond" + }, + { + "label": "two giraffes, one grown and one baby, standing next to each other", + "pred": "giraffe standing next to each other" + }, + { + "label": "train drives down the tracks along the treeline", + "pred": "a yellow and black train traveling down train tracks" + }, + { + "label": "a old train that is on a track with people next to it", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bird that is holding a frog in its beak", + "pred": "a bird that is standing in the water" + }, + { + "label": "a passenger train that has some graffiti on it", + "pred": "a train with graffiti painted on the side of it" + }, + { + "label": "zebras and giraffes together in a zoo cage", + "pred": "giraffes and zebras in a zoo enclosure" + }, + { + "label": "an old rusted train sitting on abandoned train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a giraffe stares out of a glass window", + "pred": "a giraffe standing in front of a tall building" + }, + { + "label": "people are standing next to an old steam locomotive", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bird is eating a frog in a marsh", + "pred": "a bird that is standing in the water" + }, + { + "label": "a blue yellow and black train car with graffiti", + "pred": "a train with graffiti painted on the side of it" + }, + { + "label": "a white bird some sand water rocks and grass", + "pred": "a white surfboard sitting on top of a sandy beach" + }, + { + "label": "the stuffed giraffe is looking out the high rise window", + "pred": "a giraffe standing in front of a tall building" + }, + { + "label": "a train sitting on the tracks next to a mountain side", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a pond with reflection of the surrounding scenery, with a bench and statue surrounded with flowers and trees", + "pred": "a bench sitting in the middle of a pond" + }, + { + "label": "a blue bus driving down a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a white bird sitting on top of a lake", + "pred": "a white surfboard sitting on top of a sandy beach" + }, + { + "label": "tan and white wading bird standing in shallow water, perhaps a swamp", + "pred": "a bird that is standing in the water" + }, + { + "label": "a train with many acts drawn on it", + "pred": "a train with graffiti painted on the side of it" + }, + { + "label": "a picture full of water and some trees around", + "pred": "a bench sitting in the middle of a pond" + }, + { + "label": "a nice bird standing on a bench gazing at", + "pred": "a red bird sitting on top of a wooden table" + }, + { + "label": "a red stop sign sitting next to a light pole", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a very large stuffed giraffe posed looking out a window", + "pred": "a giraffe standing in front of a tall building" + }, + { + "label": "a tall giraffe sitting next to a window", + "pred": "a giraffe standing in front of a tall building" + }, + { + "label": "a bird cleans itself next to a body of water", + "pred": "a white surfboard sitting on top of a sandy beach" + }, + { + "label": "different size trees in the woods", + "pred": "a person sitting on a bench in a wooded area" + }, + { + "label": "a train covered in blue paint and graffiti", + "pred": "a train with graffiti painted on the side of it" + }, + { + "label": "the passenger train has elaborate spray paint on the side", + "pred": "a train with graffiti painted on the side of it" + }, + { + "label": "a large good standing in the dirt near the ocean", + "pred": "a white surfboard sitting on top of a sandy beach" + }, + { + "label": "the sheep with most of it's wool shaved off stands near the herd", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "a traffic light hanging over a road at a cross walk", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a train car with art painted on its side", + "pred": "a train with graffiti on the side of it" + }, + { + "label": "two stop and go lights at an intersection", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a large street with buildings and street lights", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "sheep are walking around bored", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "rusty train sitting on train tracks in high grass", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bench in the middle of a lush, green forest", + "pred": "a person sitting on a bench in a wooded area" + }, + { + "label": "a light blue bird perched on top of a tree branch", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a large blue bus is driving down a crowded street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a swan floating along the water nibbling at itself", + "pred": "a white surfboard sitting on top of a sandy beach" + }, + { + "label": "a plush giraffe is posed to look out a window", + "pred": "a giraffe standing in front of a tall building" + }, + { + "label": "an aerial view of a stop sign and light pole", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a bird is perched on the twig of a tree", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "sheep standing around in the grass", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "a large bird catching a gray from in shallow water near grass", + "pred": "a bird that is standing in the water" + }, + { + "label": "a small bird with brown feathers sitting on a branch next to a green leaf", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "the seven sheep are preparing to be sheered", + "pred": "a herd of sheep standing on top of a dry grass field" + }, + { + "label": "a stop light right across the street from a fire station", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a blue bird is sitting on a tree branch", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a citi bus parked in the street with buildings in teh background", + "pred": "a public transit bus on a city street" + }, + { + "label": "a bird sitting on a tree branch and looking intently", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a sheep inspects a big pile of shaved sheep wool", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "four people standing outside of a steam train", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a small bird on a branch in a tree", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a bird perches on a tree branch, against a clear blue sky", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a city intersection with traffic lights on a stormy day", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a man wearing a top hat and a red tie", + "pred": "a man wearing a hat and a tie" + }, + { + "label": "a bird is sitting on a tree branch spreading its tail-feathers", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a freshly shorn sheep standing near a pile of wool", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a blue bird sitting on the top of a branch with autumn leaves", + "pred": "a small bird perched on top of a tree branch" + }, + { + "label": "a passenger bus that is driving down a street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a person holding a sign", + "pred": "a woman walking down a sidewalk next to a sign" + }, + { + "label": "a blue bus makes its way down a narrow city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a very sharp dressed man with a black top hat", + "pred": "a man wearing a hat and a tie" + }, + { + "label": "people walk on a sidewalk as a man holds a restaurant sign", + "pred": "a woman walking down a sidewalk next to a sign" + }, + { + "label": "a man with black hair and a top hat", + "pred": "a man wearing a hat and a tie" + }, + { + "label": "a man holding a street sign giving directions on a city road", + "pred": "a woman walking down a sidewalk next to a sign" + }, + { + "label": "a man with a top hat and a red tie", + "pred": "a man wearing a hat and a tie" + }, + { + "label": "empty parked train painted with large, colorful graffiti", + "pred": "a train with graffiti on the side of it" + }, + { + "label": "a bus and a car on a city street", + "pred": "a double decker bus parked in front of a building" + }, + { + "label": "a city passenger bus stopping to take on passengers", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a woman with a red backpack is on a bus", + "pred": "people sitting on top of a bus" + }, + { + "label": "a small horse is attached to a cart on the side of a road", + "pred": "a horse pulling a cart down a dirt road" + }, + { + "label": "the train car has been vandalized on the outside", + "pred": "a train with graffiti on the side of it" + }, + { + "label": "a man with an orange backpack standing on a bus", + "pred": "people sitting on top of a bus" + }, + { + "label": "a man wearing a top hate with a red tie and black shirt", + "pred": "a man wearing a hat and a tie" + }, + { + "label": "people walking by a building with a unique drainpipe", + "pred": "people walking down a street next to a tall brick building" + }, + { + "label": "a large long train on a steel track", + "pred": "a train with graffiti on the side of it" + }, + { + "label": "the person with the tye dye shirt is choosing a seat", + "pred": "people sitting on top of a bus" + }, + { + "label": "a woman standing in the center isle of a bus", + "pred": "people sitting on top of a bus" + }, + { + "label": "a man holding on to a pole on a bus", + "pred": "people sitting on top of a bus" + }, + { + "label": "donkeys are pulling a blue cart", + "pred": "a horse pulling a cart down a dirt road" + }, + { + "label": "signs and vehicles on a road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "an aerial view of a stop sign that is attached to a pole and is on the sidewalk", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "an old bus on the road and people boarding it", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a stop sign on a sidewalk next to a street", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a sidewalk with a person holding a subway sign", + "pred": "a woman walking down a sidewalk next to a sign" + }, + { + "label": "a large bus and some people on a city street", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a man holds a sign advertising a deli", + "pred": "a woman walking down a sidewalk next to a sign" + }, + { + "label": "an over head view of a stop sign", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "people walking across a street below a tall building", + "pred": "people walking down a street next to a tall brick building" + }, + { + "label": "detour signs sitting on either side of an orange cone", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a truck driving down the middle of a street next to a crowd of people", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a wet road in a rural neighborhood", + "pred": "a street scene with trees and houses" + }, + { + "label": "a herd of animals grazing on top of a grass field", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "a donkey standing by the road with the blue cart attached to it", + "pred": "a horse pulling a cart down a dirt road" + }, + { + "label": "a bus and some cars parked outside a station", + "pred": "a double decker bus parked in front of a building" + }, + { + "label": "a wooden bench sitting outside of a home", + "pred": "a bench in front of a building with green leaves" + }, + { + "label": "a stormy cloud overshadows houses and a neighborhood intersection", + "pred": "a street scene with trees and houses" + }, + { + "label": "two cars driving on a street near a tree and a fence", + "pred": "a street scene with trees and houses" + }, + { + "label": "two signs with arrows pointing to each other for detour", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "people who are standing outside a bus", + "pred": "a double decker bus driving down a street" + }, + { + "label": "a donkey is pulling a blue cart with no passenger", + "pred": "a horse pulling a cart down a dirt road" + }, + { + "label": "a train that is on a rail over a bridge", + "pred": "a train on a track near a field" + }, + { + "label": "the bench is in a shady area surrounded by plants", + "pred": "a bench in front of a building with green leaves" + }, + { + "label": "a bench that is sitting in the dirt", + "pred": "a bench in front of a building with green leaves" + }, + { + "label": "a bench in the shade of a near by tree", + "pred": "a bench in front of a building with green leaves" + }, + { + "label": "train moving along raised tracks with mountain", + "pred": "a train on a track near a field" + }, + { + "label": "a bus and a car travelling in the same direction on a sunny day", + "pred": "a double decker bus parked in front of a building" + }, + { + "label": "a donkey hooked up to a cart stands on a street", + "pred": "a horse pulling a cart down a dirt road" + }, + { + "label": "a street sign attached to a wooden pole", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a bus on the side of the road in traffic", + "pred": "a double decker bus parked in front of a building" + }, + { + "label": "a grassy field with some animals in it", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "a stop sign has some graffiti on it", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a number of people walking on a side walk near a building", + "pred": "people walking down a street next to a tall brick building" + }, + { + "label": "people walking down a city street lined with brick buildings", + "pred": "people walking down a street next to a tall brick building" + }, + { + "label": "signs that are on a street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a bird is perched on a large rock near the shore", + "pred": "a man standing on top of a rock next to a body of water" + }, + { + "label": "a small bench in front of a building", + "pred": "a bench in front of a building with green leaves" + }, + { + "label": "foot traffic on this street in the city", + "pred": "people walking down a street next to a tall brick building" + }, + { + "label": "a train driving over a small bridge on a green hillside", + "pred": "a train that is sitting on top of a train track" + }, + { + "label": "a man wearing a hat and a gray jacket", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a bench sitting on to of a field of tall grass near water", + "pred": "a bench sitting on top of a lake next to a body of water" + }, + { + "label": "a long road line with lots of houses", + "pred": "a street scene with trees and houses" + }, + { + "label": "two signs show a street is blocked and detoured", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a large bird perched on a rock on a beach next to the ocean", + "pred": "a man standing on top of a rock next to a body of water" + }, + { + "label": "people standing outside of a bus", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "cows laying down, grazing and walking on a farm with birds flying around", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "a passenger train moving down the train on a bridge", + "pred": "a train on a track near a field" + }, + { + "label": "the old fashioned train is going over the bridge", + "pred": "a train that is sitting on top of a train track" + }, + { + "label": "a big river flowing past some dry grass and reeds", + "pred": "a bench sitting on top of a lake next to a body of water" + }, + { + "label": "a large field of grass and cows", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "we are looking at an almost empty street", + "pred": "a street scene with trees and houses" + }, + { + "label": "clouds are forming over a farm field with a horse in it and birds flying in the air", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "empty wooden bench by the shore brush on a lake", + "pred": "a bench sitting on top of a lake next to a body of water" + }, + { + "label": "a man with a suit and tie and a fedora on", + "pred": "a man wearing a suit and tie" + }, + { + "label": "the wooden bench has tall grass around it near the water", + "pred": "a bench sitting on top of a lake next to a body of water" + }, + { + "label": "a man wears a suit with a blue shirt and a multicolored tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a large long train on a steel track", + "pred": "a train that is sitting on top of a train track" + }, + { + "label": "the animal is sitting on the rocks looking at the water", + "pred": "a man standing on top of a rock next to a body of water" + }, + { + "label": "benches on a paved deck overlooking a waterway", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a man in a suit and tie wearing a hat", + "pred": "a man wearing a suit and tie" + }, + { + "label": "traffic sign with graffiti displayed near white building in urban area", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a bird sitting inside of a green bush outside", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a bus parked along the side of a busy street", + "pred": "a double decker bus parked in front of a building" + }, + { + "label": "a bench right next to some tall grass at the edge of a body of water", + "pred": "a bench sitting on top of a lake next to a body of water" + }, + { + "label": "type of park with benches and no people around", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a bird that is sitting on a rock near the water", + "pred": "a man standing on top of a rock next to a body of water" + }, + { + "label": "the car lights are streaking by on the street", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a small bird sitting on a thin tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a train on top of an overpass bridge set of train tracks with fields on both side", + "pred": "a train on a track near a field" + }, + { + "label": "the large bird stands on rocks near the beach", + "pred": "a man standing on top of a rock next to a body of water" + }, + { + "label": "a brown and black bird standing on a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a pretty bird sitting on a branch among some leaves", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a bird perched on the limb of a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a large long train on a steel track", + "pred": "a train on a track near a field" + }, + { + "label": "a picture taken at slow shutter speed on a city street at night", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "an orange truck driving down a street full of men in the back", + "pred": "men riding on the back of a truck" + }, + { + "label": "cars parked on a street near trees", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "two metal benches on the patio", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a city at night with cars driving by on a street", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a number of young people are enjoying themselves around a fountain, not far from a fire hydrant", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "the train is passing over a little bridge", + "pred": "a train that is sitting on top of a train track" + }, + { + "label": "a white bus driving past a tall building", + "pred": "a white and blue bus parked in front of a building" + }, + { + "label": "a giraffe standing on top of a dirt and grass field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "men are riding in the back of a dump truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "people are standing in the rain alongside a bus", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a stop sign a building cars bushes and trees", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "people walking in the rain under an umbrella", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a red stop sign sitting in front of a tall palm tree", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "birds are standing on a branch", + "pred": "two colorful parrots perched on a tree branch" + }, + { + "label": "a yellow and black fire hydrant on the sidewalk", + "pred": "a yellow fire hydrant sitting in front of a building" + }, + { + "label": "a red and yellow fire hydrant near the water fountain", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a man that is in a suite and a tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "park benches on some concrete", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a black and white bus some bushes and building", + "pred": "a white and blue bus parked in front of a building" + }, + { + "label": "two bench's sitting on the ground near a fence", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a yellow and black frisbee sitting on a sidewalk", + "pred": "a yellow fire hydrant sitting in front of a building" + }, + { + "label": "people in the back of a dump-truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "a skinny red fire hydrogen by some people", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a row of wooden benches sitting on the side of a road", + "pred": "a row of wooden boxes sitting on the side of a road" + }, + { + "label": "people are waiting for the bus with umbrellas", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a man sitting in front of a laptop computer in an office", + "pred": "a man sitting at a desk working on a laptop" + }, + { + "label": "bunch of people sitting in the back of a dump truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "a baseball player holding a bat while standing on a field", + "pred": "a man swinging a bat at a ball" + }, + { + "label": "yellow and black fire hydrant near curb in front of store window", + "pred": "a yellow fire hydrant sitting in front of a building" + }, + { + "label": "a city street lined with parked cars at night", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a red and yellow fire hydrant sitting on the side of a road", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "two multicolored exotic birds perched on a wooden branch with trees and flowers behind them", + "pred": "two colorful parrots perched on a tree branch" + }, + { + "label": "a white decorated bus is next to a building", + "pred": "a white and blue bus parked in front of a building" + }, + { + "label": "a train moving on a grassy hill over a wooden cavern", + "pred": "a train that is sitting on top of a train track" + }, + { + "label": "man lining the sides of the dumb truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "a large white bus that is by a building", + "pred": "a white and blue bus parked in front of a building" + }, + { + "label": "two parrots perched on the branch", + "pred": "two colorful parrots perched on a tree branch" + }, + { + "label": "a large bus parked in a parking lot", + "pred": "a white and blue bus parked in front of a building" + }, + { + "label": "a green bus with a smaller bus sitting on top of it", + "pred": "a green double decker bus parked on the side of the road" + }, + { + "label": "people standing together with some umbrellas", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "adults working on projects and computers in office environment", + "pred": "a man sitting at a desk working on a laptop" + }, + { + "label": "a giraffe walking about in a large enclosure", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a black and yellow fire hydrant on a city street", + "pred": "a yellow fire hydrant sitting in front of a building" + }, + { + "label": "a square reflective glass building sitting next to a street light", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "two parrots sitting on a branch side by side", + "pred": "two colorful parrots perched on a tree branch" + }, + { + "label": "a row of wooden raid with various tools on them", + "pred": "a row of wooden boxes sitting on the side of a road" + }, + { + "label": "a dog is sticking it head outside of a car window", + "pred": "a dog sitting in the drivers seat of a car" + }, + { + "label": "a table with two laptops and chairs", + "pred": "a man sitting at a desk working on a laptop" + }, + { + "label": "man works on laptop as three others work on a project", + "pred": "a man sitting at a desk working on a laptop" + }, + { + "label": "a dog in a car on a street near a traffic light", + "pred": "a dog sitting in the drivers seat of a car" + }, + { + "label": "the giraffe is eating grass from the hill side", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a yellow fire hydrant on a sidewalk by a storefront", + "pred": "a yellow fire hydrant sitting in front of a building" + }, + { + "label": "the man is hitting the water balloon with a bat", + "pred": "a man swinging a bat at a ball" + }, + { + "label": "a red fire hydrant is next to a public water fountain", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "tools sit on the wood boundaries of a field", + "pred": "a row of wooden boxes sitting on the side of a road" + }, + { + "label": "a large office building has shining mirrored windows", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a very big building with a lot of windows", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a man is swinging a baseball bat outside", + "pred": "a man swinging a bat at a ball" + }, + { + "label": "yellow poles are on the street", + "pred": "a pile of yellow flowers sitting on top of a sidewalk" + }, + { + "label": "pieces of wood lined up near a lot with several axes around", + "pred": "a row of wooden boxes sitting on the side of a road" + }, + { + "label": "a reflection in a building. the view is from the street", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "two parrots perching on a tree branch in a tropical garden", + "pred": "two colorful parrots perched on a tree branch" + }, + { + "label": "old rusted transit train cars sit on the tracks", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a man typing on a laptop keyboard in a cluttered work environment", + "pred": "a man sitting at a desk working on a laptop" + }, + { + "label": "tools are lying in a road on pieces of thick wood", + "pred": "a row of wooden boxes sitting on the side of a road" + }, + { + "label": "three fire hydrants in front of a huge building", + "pred": "a pile of yellow flowers sitting on top of a sidewalk" + }, + { + "label": "an old train makes its way down the track in the country", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a banner in a metropolitan area reading \"spring in the city\"", + "pred": "a street sign on the corner of a city street" + }, + { + "label": "a van is on the roof of a bus of the same door", + "pred": "a green double decker bus parked on the side of the road" + }, + { + "label": "a dogs head hanging out the window of a vehicle", + "pred": "a dog sitting in the drivers seat of a car" + }, + { + "label": "a baseball player is swinging a bat and some grass", + "pred": "a man swinging a bat at a ball" + }, + { + "label": "people are walking around a plaza that has a sign that reads \"spring in the city\"", + "pred": "a street sign on the corner of a city street" + }, + { + "label": "a train traveling down the track, with power lines in the back", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a little kid is swinging at a water balloon", + "pred": "a man swinging a bat at a ball" + }, + { + "label": "thee copper fire hydrants on a plaza in a large city", + "pred": "a pile of yellow flowers sitting on top of a sidewalk" + }, + { + "label": "a small train is traveling on the railroad", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "the dog holds it's head out of a car window near traffic signals", + "pred": "a dog sitting in the drivers seat of a car" + }, + { + "label": "people and some white sheep in their pens", + "pred": "a man standing in a barn next to a group of sheep" + }, + { + "label": "a rooster is walking on a grassy beach", + "pred": "a bird standing on top of a beach next to a body of water" + }, + { + "label": "a bus driving in a city area with traffic signs", + "pred": "a bus that is driving down the street" + }, + { + "label": "a colorful bus parked in a lot beside a tall building with many windows", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a metal bench resting on a sidewalk with cars on a street", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "a park bench has a persons hat sitting on it", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "two tall giraffes are next to bare trees", + "pred": "giraffe standing next to each other" + }, + { + "label": "a bus that is red white and blue with advertising on it driving down the street", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "the bus is pulling off to the side of the road", + "pred": "a bus that is driving down the street" + }, + { + "label": "a black metal bench with a had hanging on the back of it", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "a sheep standing on top of a rock", + "pred": "a sheep standing on top of a lush green hillside" + }, + { + "label": "people kneeling down beside some sheep", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a small chicken is standing by a bench", + "pred": "a bird standing on top of a wooden bench" + }, + { + "label": "a brown chicken standing on top of a lush green field", + "pred": "a bird standing on top of a beach next to a body of water" + }, + { + "label": "goat standing on top of rock pile with grass growing on it", + "pred": "a sheep standing on top of a lush green hillside" + }, + { + "label": "a big bus in a parking lot next to a big building", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a school bus is parked on the side of the street", + "pred": "a yellow school bus parked on the side of the road" + }, + { + "label": "a bus parked by a curb on the street", + "pred": "a yellow school bus parked on the side of the road" + }, + { + "label": "a train on the tracks out in the country", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a sheep is standing on top of a large rock", + "pred": "a sheep standing on top of a lush green hillside" + }, + { + "label": "the sheep is standing all alone on the rock", + "pred": "a sheep standing on top of a lush green hillside" + }, + { + "label": "a rooster walking on a beach near the ocean", + "pred": "a bird standing on top of a beach next to a body of water" + }, + { + "label": "a extremely long freight train heading south", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a chicken standing below a bench at a park", + "pred": "a bird standing on top of a wooden bench" + }, + { + "label": "an orange fire hydrant with a face and bow tie drawn on it", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a chicken walking around on the ocean shore", + "pred": "a bird standing on top of a beach next to a body of water" + }, + { + "label": "bus coming down the street from the intersection", + "pred": "a bus that is driving down the street" + }, + { + "label": "a long train is driving down the tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a green and white bus is on the street", + "pred": "a public transit bus on a city street" + }, + { + "label": "two women are squatting down and petting brown and white long haired goats", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a school bus parked next to a curb", + "pred": "a yellow school bus parked on the side of the road" + }, + { + "label": "a white and green rusted fire hydrant spewing out frozen water", + "pred": "a fire hydrant in the middle of a park" + }, + { + "label": "a public transit bus on a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a mountain goat stands on top of a rock on a hill", + "pred": "a sheep standing on top of a lush green hillside" + }, + { + "label": "a water hydrant is that frozen with nothing on it", + "pred": "a fire hydrant in the middle of a park" + }, + { + "label": "a public transit bus on a city street", + "pred": "a bus that is driving down the street" + }, + { + "label": "a chicken under a bench near a field", + "pred": "a bird standing on top of a wooden bench" + }, + { + "label": "broken fire hydrant has ice hanging out of it", + "pred": "a fire hydrant in the middle of a park" + }, + { + "label": "a bench on cement in a park", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "the yellow school bus has stopped at the bus stop", + "pred": "a yellow school bus parked on the side of the road" + }, + { + "label": "a fire hydrant has frozen and is covered in icicles", + "pred": "a fire hydrant in the middle of a park" + }, + { + "label": "a bus pulls over to the curb close to an intersection", + "pred": "a bus that is driving down the street" + }, + { + "label": "a train with several cars riding on the track", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a red fire hydrant with a face drawn on it's side", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a school bus on a city street", + "pred": "a yellow school bus parked on the side of the road" + }, + { + "label": "hat sits on empty park bench made of black iron", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "an outdoor place with a bus", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "a city bus in the parking lot of a building", + "pred": "a bus that is parked in front of a building" + }, + { + "label": "rooster walking outside on the sand dunes at the beach", + "pred": "a bird standing on top of a beach next to a body of water" + }, + { + "label": "a wooden park bench with a statue of a chicken under it", + "pred": "a bird standing on top of a wooden bench" + }, + { + "label": "a train traveling down tracks near a train station", + "pred": "a train on a train track at a train station" + }, + { + "label": "an outside district", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "two giraffes near one another", + "pred": "giraffe standing next to each other" + }, + { + "label": "giraffe standing around palm trees", + "pred": "giraffe standing next to each other" + }, + { + "label": "the signs states all directions and points up", + "pred": "a public transit bus on a city street" + }, + { + "label": "an empty city bus travels down a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "an orange fire hydrant with graffiti to look like a face", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "engine and train stopped at an indoor platform", + "pred": "a train on a train track at a train station" + }, + { + "label": "a giraffe in a field with trees", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a giraffe standing on top of a green field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a green and blue bus driving down a street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a train on a track with a sky background", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "two women have stopped to pet the sheep", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "two women are watching some goats get tie down", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a train in the station with people waiting", + "pred": "a train on a train track at a train station" + }, + { + "label": "a fire hydrant with graffiti that makes it appear to be smiling mischievously", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "the encompassing of an outside town in the picture", + "pred": "a herd of sheep standing on top of a road" + }, + { + "label": "a fire hydrant with frozen water coming out of it", + "pred": "a fire hydrant in the middle of a park" + }, + { + "label": "an outside with numerous things in the scene", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a beautiful zebra standing in a green field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a cluster of black and white sheep hang out by a fence", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a giraffe is running around in a green field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a chicken is standing under a bench in a park", + "pred": "a bird standing on top of a wooden bench" + }, + { + "label": "an old passenger bus parked next to a walgreens", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "two giraffes are standing next to a tree trunk", + "pred": "giraffe standing next to each other" + }, + { + "label": "a transit center all lit up at night", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a person holds a bag while walking on train tracks", + "pred": "a person riding a train on a train track" + }, + { + "label": "a man is seen walking on tracks next to a train", + "pred": "a person riding a train on a train track" + }, + { + "label": "rear view of a man with a sack walking on railroad track next to a train", + "pred": "a person riding a train on a train track" + }, + { + "label": "a big building perched atop a hill with a sign", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a man holding something in his hands while walking on the train track while the sun shines on him", + "pred": "a person riding a train on a train track" + }, + { + "label": "on the road a bus and a car are going", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "two women petting a few goats at a petting zoo", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a city skyline after the sun has set", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "two giraffe standing on to of a dry grass covered field", + "pred": "a herd of giraffe standing on top of a dry grass field" + }, + { + "label": "two giraffes on the plains looking opposite directions", + "pred": "a herd of giraffe standing on top of a dry grass field" + }, + { + "label": "a busy street witha a van and a car driving", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "a sign letting readers know that there is a train", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a historic trolley sign is across the street from a large building", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a flock of sheep crossing a road, blocking traffic", + "pred": "a herd of sheep standing on top of a road" + }, + { + "label": "two giraffes are standing by a palm tree", + "pred": "giraffe standing next to each other" + }, + { + "label": "a bus parked in front of a building", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "a man carrying a bag walking down the train tracks", + "pred": "a person riding a train on a train track" + }, + { + "label": "the buses are parked next to the pole", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a city road with buses and people on the sidewalk", + "pred": "a city street filled with lots of traffic at night" + }, + { + "label": "a city street with a road sign next to some buildings", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "sheep are standing behind a fence", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "traffic in front of walgreens on a town street", + "pred": "a bus driving down a street next to a tall building" + }, + { + "label": "a street light on a corner with a red light on it", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "giraffes standing by each other in a field", + "pred": "a herd of giraffe standing on top of a dry grass field" + }, + { + "label": "the road is wet because it has rained", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "close together group of white, beige, and brown sheep, from the rear, standing in grass at fence gate", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a row of buildings and a city street on a hill that is pretty steep", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a herd of sheep all gathered near a fence area", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "two giraffes looking across the plains at sunrise", + "pred": "a herd of giraffe standing on top of a dry grass field" + }, + { + "label": "two giraffes standing in a wide open area", + "pred": "a herd of giraffe standing on top of a dry grass field" + }, + { + "label": "an old train is pulled up to a passenger terminal", + "pred": "a train on a train track at a train station" + }, + { + "label": "a street with traffic and wet roads from the rain", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a herd of sheep on the road and a car", + "pred": "a herd of sheep standing on top of a road" + }, + { + "label": "a statue is sitting on a street bench", + "pred": "a teddy bear sitting on a bench in a park" + }, + { + "label": "a lone giraffe standing in a large grassy field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a herd of sheep are blocking the road", + "pred": "a herd of sheep standing on top of a road" + }, + { + "label": "sheep on the grass", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "herd of sheep standing on roadway in rural area", + "pred": "a herd of sheep standing on top of a road" + }, + { + "label": "a passanger train stopped to pick up passangers at a station", + "pred": "a train on a train track at a train station" + }, + { + "label": "a brown bird perched on top of a metal fence", + "pred": "a small bird perched on top of a fence" + }, + { + "label": "a double decker bus with neon lights at night", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "women wearing hats while standing at a dessert table", + "pred": "two women standing next to each other in front of a cake" + }, + { + "label": "a bus stop sign with a large building", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "women in fancy hats serving cakes at a candle lit table", + "pred": "two women standing next to each other in front of a cake" + }, + { + "label": "red lights are hanging over a road", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a building and a street sign are by a road", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a close shot of a bus stop sign near the building", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a yellow hazard sign sitting on the side of a road", + "pred": "a yellow sign sitting on the side of a road" + }, + { + "label": "a sign is posted that says this bus stop is closed", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "horned mountain goats enjoying green grass next to the snow", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a bird is perched on top of a wire fence", + "pred": "a small bird perched on top of a fence" + }, + { + "label": "a street sign reads \"bus stop not in use\"", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "yellow and grey train near platform at railway station", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a city lined with tall buildings covered in hanging letters", + "pred": "a number of signs on a pole in a city" + }, + { + "label": "a white slope covers the background, while the foreground features a grassy slope with several rams grazing and one measly and underdeveloped evergreen", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a train is moving along the tracks past a traffic signal", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a warning sign for high water is on the side of the road", + "pred": "a yellow sign sitting on the side of a road" + }, + { + "label": "a small bird sitting perched on a chain link fence", + "pred": "a small bird perched on top of a fence" + }, + { + "label": "women standing next to a cake", + "pred": "two women standing next to each other in front of a cake" + }, + { + "label": "three women that are standing in front of a table", + "pred": "two women standing next to each other in front of a cake" + }, + { + "label": "a neon double decker bus is driving by a few pedestrians", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "a red stop light that is over a street", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a bench that has someone in costume sitting on it", + "pred": "a teddy bear sitting on a bench in a park" + }, + { + "label": "a bus that is decked out with multi colored lights on it", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "the sign is a good reminder that there is water on the pavement", + "pred": "a yellow sign sitting on the side of a road" + }, + { + "label": "a train and bus in the cityscape", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a train and a bus in the middle of a city", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a double decker bus driving past very tall buildings", + "pred": "a city bus parked on the side of a street" + }, + { + "label": "a water on pavement sign in a flooded area of a road", + "pred": "a yellow sign sitting on the side of a road" + }, + { + "label": "a train engine carrying carts down a track into a station", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a bird with an orange beak and white stripe on its head", + "pred": "a small bird perched on top of a fence" + }, + { + "label": "a street sign mentioning water on the road", + "pred": "a yellow sign sitting on the side of a road" + }, + { + "label": "statue of caricature sitting on bench near roadway in urban city", + "pred": "a teddy bear sitting on a bench in a park" + }, + { + "label": "a passenger bus on the road with a train on the overpass", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a double decker bus that is parked in front of a big building", + "pred": "a city bus parked on the side of a street" + }, + { + "label": "a stop sign and a white and green street sign and a tree", + "pred": "a street sign on top of a pole" + }, + { + "label": "a bench with a statue stting on one side of it", + "pred": "a teddy bear sitting on a bench in a park" + }, + { + "label": "a freight train riding on tracks through a forested area", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a monorail going down the track as a bus parks by the side of a road", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "people standing around a bright lit up party bus", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "women in hates cutting some cake", + "pred": "two women standing next to each other in front of a cake" + }, + { + "label": "a yellow and gray train some tracks and trees", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "signs displayed in a crowded urban alleyway", + "pred": "a number of signs on a pole in a city" + }, + { + "label": "a road sign on top of a stop sign at an intersection", + "pred": "a street sign on top of a pole" + }, + { + "label": "a bus is passing in front of big buildings and beautiful gardens", + "pred": "a double decker bus driving down a city street" + }, + { + "label": "a person in an outfit is sitting on a bench", + "pred": "a teddy bear sitting on a bench in a park" + }, + { + "label": "the elk have horns and are eating grass", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "dozens of signs with chinese characters hung over the streets of a city", + "pred": "a number of signs on a pole in a city" + }, + { + "label": "the mountain goats are eating the grass on the slope", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "a double decker bus with a giant ipod advertisement plastered over the entire bus", + "pred": "a city bus parked on the side of a street" + }, + { + "label": "a colorful bus decorated with lights is standing on road at night", + "pred": "a double decker bus parked at a bus stop" + }, + { + "label": "the bird has a black head and yellow feathers", + "pred": "a yellow bird perched on top of a tree branch" + }, + { + "label": "a yellow green white and red double decker bus and a building", + "pred": "a city bus parked on the side of a street" + }, + { + "label": "a street signs and buildings", + "pred": "a number of signs on a pole in a city" + }, + { + "label": "a colorful bird holding on to a tree branch", + "pred": "a yellow bird perched on top of a tree branch" + }, + { + "label": "the two young girls are petting the two goats", + "pred": "a little girl and a little boy standing next to each other" + }, + { + "label": "the longhorn sheep are grazing on the mountain", + "pred": "a herd of sheep standing on top of a lush green hillside" + }, + { + "label": "two small children petting animals at a zoo", + "pred": "a little girl and a little boy standing next to each other" + }, + { + "label": "a double decker passenger bus with advertising for a technology product", + "pred": "a city bus parked on the side of a street" + }, + { + "label": "buildings in a city having signs strung across", + "pred": "a number of signs on a pole in a city" + }, + { + "label": "two young girls petting goats in a pen", + "pred": "a little girl and a little boy standing next to each other" + }, + { + "label": "bird sitting on top a chain link fence", + "pred": "a small bird perched on top of a fence" + }, + { + "label": "two girls pet a goat that is in a pen", + "pred": "a little girl and a little boy standing next to each other" + }, + { + "label": "cars are parked in front of a building", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a pole with a street light and signs next to a bare tree", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a colorful bird sits on a tree branch", + "pred": "a yellow bird perched on top of a tree branch" + }, + { + "label": "a yellow bird stands perched on a tree branch", + "pred": "a yellow bird perched on top of a tree branch" + }, + { + "label": "street signs and a traffic light on a pole beneath a tree", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a train traveling under a signal lights on top of tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a yellow traffic light hanging off the side of a pole", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "giraffe standing next to each other on a dirt field", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a yellow and black bird is perched on a tree", + "pred": "a yellow bird perched on top of a tree branch" + }, + { + "label": "a green car has parked on the curb in a parking lot", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "small parking lot of cars in front of a stone building", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "ten giraffes loitering around a building out in the day", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "the fire hydrant has on the side of the road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a black train is coming down some tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "two girls with goats", + "pred": "a little girl and a little boy standing next to each other" + }, + { + "label": "a street sign reads \"bacchanalia\" above a stop sign", + "pred": "a street sign on top of a pole" + }, + { + "label": "a fire hadrian that is out next to a house", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a red stop sign with a green street sign posted above it", + "pred": "a street sign on top of a pole" + }, + { + "label": "a bird walking past a white car in a lot", + "pred": "a white car parked on the side of a road" + }, + { + "label": "a street sign on top of a stop sign near a tree", + "pred": "a street sign on top of a pole" + }, + { + "label": "a traffic light on a metal pole by a tree", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a panoramic shot of several people standing near a plane", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a car parked in a handicap space in a lot", + "pred": "a white car parked on the side of a road" + }, + { + "label": "a white care is sitting in a handicapped parking spot", + "pred": "a white car parked on the side of a road" + }, + { + "label": "walkers are seen while passengers ride in a train", + "pred": "a man riding a bike down the side of a road" + }, + { + "label": "a crowd of people standing in the middle of a street", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a road sign that indicates route sixty six", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a crowd of people are walking through a covered sidewalk", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a street light with a mountain view", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "people gathered around an airplane outdoors", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a giraffe and its herd standing in an enclosure", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "the land, trees, and people passing by as they ride in a vehicle", + "pred": "a man riding a bike down the side of a road" + }, + { + "label": "a street light and sign showing the street names", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a fire hydrant, near a building", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a silver and green train crossing over the tracks", + "pred": "a train that is going under a bridge" + }, + { + "label": "traffic lights over a street with blue sky", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "street lights on a pole over a road", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a train parked next to some train tracks", + "pred": "two people standing next to a train at a train station" + }, + { + "label": "a train passes on a bridge atop a street", + "pred": "a train that is going under a bridge" + }, + { + "label": "two color fire hydrant on cement slab in front of house", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a fire hydrant sits by itself in front of a business", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a large long train on a steel track", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "giraffes are standing in a field", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "trains are on the tracks", + "pred": "two trains are parked next to each other on the tracks" + }, + { + "label": "a passenger train rides on the rails, with another set of rails nearby", + "pred": "two people standing next to a train at a train station" + }, + { + "label": "a large long train on a steel track", + "pred": "a train that is going under a bridge" + }, + { + "label": "a car parked in the handicapped spot", + "pred": "a white car parked on the side of a road" + }, + { + "label": "train with cars in rail yard waiting to load", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "the people was outside about to aboard the plane", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a street light on route 66", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a tiny bird on the branch", + "pred": "a small bird perched on top of a branch" + }, + { + "label": "a bird near a car parked at the bay", + "pred": "a white car parked on the side of a road" + }, + { + "label": "a round intersection on a surburban street with one floor homes", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "men lined up an a runway in a desert greet an arriving jet plane", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "people lined up near an airplane and others in military uniform", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a vehicle is flying past a group of people", + "pred": "a man riding a bike down the side of a road" + }, + { + "label": "a train that is next to a train track", + "pred": "two people standing next to a train at a train station" + }, + { + "label": "birds that are on a branch", + "pred": "a small bird perched on top of a branch" + }, + { + "label": "a green bus traveling down the street, in a city", + "pred": "a green bus is driving down the street" + }, + { + "label": "a small green bus on a busy road", + "pred": "a green bus is driving down the street" + }, + { + "label": "the train is going over the busy urban bridge", + "pred": "a train that is going under a bridge" + }, + { + "label": "a train is traveling quickly as a group of people look on", + "pred": "a man riding a bike down the side of a road" + }, + { + "label": "people walk down a crowded street at a festival", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a green orange and silver train and some cars", + "pred": "a train that is going under a bridge" + }, + { + "label": "a brown gray and black bird sitting on a branch", + "pred": "a small bird perched on top of a branch" + }, + { + "label": "cars are parked on the the street in front of the building", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "the view of a residential neighborhood with an abundance of trees", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a train driving down the tracks near a platform", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a green bus with signage on a city street", + "pred": "a green bus is driving down the street" + }, + { + "label": "two trains parked on the tracks near a platform", + "pred": "two trains are parked next to each other on the tracks" + }, + { + "label": "a woman and a small child watch a train as it passes", + "pred": "a woman holding a child and a suitcase on a train track" + }, + { + "label": "a bird is sitting on a tree branch outside", + "pred": "a small bird perched on top of a branch" + }, + { + "label": "a bird standing on a tree branch by itself", + "pred": "a small bird perched on top of a branch" + }, + { + "label": "a woman and baby at a train platform", + "pred": "a woman holding a child and a suitcase on a train track" + }, + { + "label": "a commuter train traveling down the tracks into the next station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "two trains are parked on the train tracks", + "pred": "two trains are parked next to each other on the tracks" + }, + { + "label": "cars are parked on the street near an old building", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a woman standing on the side walk with her child", + "pred": "a woman holding a child and a suitcase on a train track" + }, + { + "label": "woman standing with backpacks on platform with train", + "pred": "a woman holding a child and a suitcase on a train track" + }, + { + "label": "people on a wilderness path are seen from a train", + "pred": "a man riding a bike down the side of a road" + }, + { + "label": "a small public bus in a hispanic country", + "pred": "a green bus is driving down the street" + }, + { + "label": "a large crowd is walking in the street for a festival", + "pred": "a crowd of people walking down a street" + }, + { + "label": "a white truck parked in a persons driveway", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "the green bus is on a street with other traffic", + "pred": "a green bus is driving down the street" + }, + { + "label": "a fire hydrant sits in the middle of the park", + "pred": "a blue fire hydrant sitting in the middle of a field" + }, + { + "label": "a nice neighborhood with some green grass in it", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "two trains sit idle in a train station", + "pred": "two trains are parked next to each other on the tracks" + }, + { + "label": "suburban street scene showing a curve, houses, and cars in driveway", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "blue fire hydrant in park near tall tree", + "pred": "a blue fire hydrant sitting in the middle of a field" + }, + { + "label": "a train at a rest in a small train station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "two trains at station near group of people on platform", + "pred": "two trains are parked next to each other on the tracks" + }, + { + "label": "people are grouped together in a public area", + "pred": "a crowd of people walking down a street" + }, + { + "label": "signs proclaim the famous haight ashbury intersection and district", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "shadows are cast onto the side of a train because of the sun", + "pred": "two people standing next to a train at a train station" + }, + { + "label": "a blue fire hydrant sitting in the middle of a park", + "pred": "a blue fire hydrant sitting in the middle of a field" + }, + { + "label": "a blue fire hydrant in a clearing of trees", + "pred": "a blue fire hydrant sitting in the middle of a field" + }, + { + "label": "a woman and baby are waiting for the train", + "pred": "a woman holding a child and a suitcase on a train track" + }, + { + "label": "giraffes are gathered together in their enclosure", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a blue and yellow train is parked on the tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a blue fire hydrant standing close to a tree", + "pred": "a blue fire hydrant sitting in the middle of a field" + }, + { + "label": "a pole with street lights, signs and wires attached to it", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a traffic light at the intersection of haight and ashbury", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a traffic sign is shown with traffic signs above it", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "a man prepares to cross the street at a crosswalk", + "pred": "a man standing on the corner of a street with a fire hydrant" + }, + { + "label": "street signs next to a house", + "pred": "a street sign on a pole in front of a house" + }, + { + "label": "giraffes that are reaching to eat", + "pred": "giraffes standing next to each other" + }, + { + "label": "a train station waiting for a passenger", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a street corner with people waiting at the corner", + "pred": "a man standing on the corner of a street with a fire hydrant" + }, + { + "label": "a train sits on the tracks by the platform", + "pred": "two people standing next to a train at a train station" + }, + { + "label": "the street signs and traffic signal are below wires attached to the pole", + "pred": "a traffic light with a street sign attached to it" + }, + { + "label": "these giraffes are feeding on hanging plants in a tree", + "pred": "giraffes standing next to each other" + }, + { + "label": "a yellow and red train is on the tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a long black train sitting on top of railroad tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a city bus is parked on the curb waiting for people", + "pred": "a public transit bus on a city street" + }, + { + "label": "a red stop sign sitting on the side of a road", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "couple of people standing at an intersection waiting to cross", + "pred": "a man is standing on the corner of a street" + }, + { + "label": "row of buildings on empty street near side walk", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "two signs with arrows and a man standing on the sidewalk", + "pred": "a man is standing on the corner of a street" + }, + { + "label": "an old train with graffiti on the tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "four tall giraffe are looking up to eat from a feeder", + "pred": "giraffes standing next to each other" + }, + { + "label": "people are standing on the corner of a street", + "pred": "a man is standing on the corner of a street" + }, + { + "label": "four brown and white giraffes eating greens together", + "pred": "giraffes standing next to each other" + }, + { + "label": "giraffes and a bird behind a chain link fence at a zoo", + "pred": "giraffes standing next to each other" + }, + { + "label": "street signs in front of a hree-story grey frame house with bay windows, dormers, and a porch", + "pred": "a street sign on a pole in front of a house" + }, + { + "label": "this trains station has a white building", + "pred": "a train traveling down train tracks next to tall buildings" + }, + { + "label": "a street sign marks the intersection of 3 streets, while three housed stand", + "pred": "a street sign on a pole in front of a house" + }, + { + "label": "stop sign on a street of a cemetary", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a silver train sitting next to a forest next to a tall building", + "pred": "a train traveling down train tracks next to tall buildings" + }, + { + "label": "a spray painted freight train is parked in a dirty rail yard", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a building lined street with three lanes and light traffic", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "the commuter train is headed toward the tall building", + "pred": "a train traveling down train tracks next to tall buildings" + }, + { + "label": "four giraffes are reaching in the tree for food", + "pred": "giraffes standing next to each other" + }, + { + "label": "an elderly woman sits on a bench with a crowd behind her", + "pred": "a man sitting on a bench next to a crowd of people" + }, + { + "label": "a white bus is sitting by a curb", + "pred": "a public transit bus on a city street" + }, + { + "label": "a brown freightiliner train parked on the tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "an elderly woman with a kerchief on her head sits on the bench", + "pred": "a man sitting on a bench next to a crowd of people" + }, + { + "label": "the freightliner sits on the tracks with graffiti spray-painted on the side", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "green street signs sitting in front of a gray building", + "pred": "a street sign on a pole in front of a house" + }, + { + "label": "the fire hydrant has some writing on its side", + "pred": "a fire hydrant sitting on top of a sidewalk" + }, + { + "label": "a black cat laying in the sun under a bench", + "pred": "a cat sitting on a bench in a park" + }, + { + "label": "an old woman sitting on a bench", + "pred": "a man sitting on a bench next to a crowd of people" + }, + { + "label": "theres a number 41 bus with a green stripe on it", + "pred": "a public transit bus on a city street" + }, + { + "label": "a street with light poles and businesses on both sides", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "a city street with cars and street lights", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "an old person sitting on a bench", + "pred": "a man sitting on a bench next to a crowd of people" + }, + { + "label": "a goat that has a leash on", + "pred": "a sheep standing on the side of a road" + }, + { + "label": "a white train is coming down some metal tracks", + "pred": "a train traveling down train tracks next to tall buildings" + }, + { + "label": "the train engine is followed by a line of open cars", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a train on a track near many trees", + "pred": "a train traveling down train tracks next to tall buildings" + }, + { + "label": "a small animal walking down a rock road", + "pred": "a sheep standing on the side of a road" + }, + { + "label": "giraffe standing next to each other", + "pred": "giraffes standing next to each other" + }, + { + "label": "a road that has some snow all around it", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a red park bench that is by some water", + "pred": "two people sitting on a bench in front of a lake" + }, + { + "label": "a bus sitting on the side of the road", + "pred": "a public transit bus on a city street" + }, + { + "label": "a black cat sitting under a park bench", + "pred": "a cat sitting on a bench in a park" + }, + { + "label": "a black cat sits beneath a bench in the sun", + "pred": "a cat sitting on a bench in a park" + }, + { + "label": "a cat sits under a park bench outside", + "pred": "a cat sitting on a bench in a park" + }, + { + "label": "a street sign on a pole on the side of a snowy highway", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "three people are sitting on a bench looking out at mountains and a lake", + "pred": "two people sitting on a bench in front of a lake" + }, + { + "label": "a view down a street of a couple of buildings and a couple of cars", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a grey house sitting between a couple of other houses", + "pred": "a street sign on a pole in front of a house" + }, + { + "label": "a street with a row of older red brick building on one side", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "fire hydrant sitting in the middle of a hiking area on the side of a gorge", + "pred": "a yellow fire hydrant sitting in the middle of a desert" + }, + { + "label": "a cat lying in the sun by the bench", + "pred": "a cat sitting on a bench in a park" + }, + { + "label": "two giraffes that are together in an enclosure", + "pred": "giraffes standing next to each other" + }, + { + "label": "a red fire hydrant sitting on the side of a road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "people sitting on a bench near a lake", + "pred": "two people sitting on a bench in front of a lake" + }, + { + "label": "two giraffes stare at a crane from behind a fence", + "pred": "giraffes standing next to each other" + }, + { + "label": "a fire hydrant near a hiking trail outside", + "pred": "a yellow fire hydrant sitting in the middle of a desert" + }, + { + "label": "the fire hydrant is painted yellow and orange", + "pred": "a yellow fire hydrant sitting in the middle of a desert" + }, + { + "label": "cars on the street in the distance", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a person with a cane and a roller bag sitting on a bench", + "pred": "a man sitting on a bench next to a crowd of people" + }, + { + "label": "a yellow fire hydrant that is in the wilderness", + "pred": "a yellow fire hydrant sitting in the middle of a desert" + }, + { + "label": "a rusty and old looking fire hydrant sits on the concrete in front of a mural", + "pred": "a fire hydrant sitting on top of a sidewalk" + }, + { + "label": "a road that has a small red stop sign by it", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "lone stop sign at small intersection in a cemetery of castes", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "cars are driving down a city street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a bike and walking path running side by side near a city street", + "pred": "a city street with cars parked on the side of the road" + }, + { + "label": "a red stop sign sitting under a couple of street signs", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a train driving down the tracks under a bridge", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a stop sign is posted next to a parking lot", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a lone stop sign in a row of crypts", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a blue fire hydrant posed on a street corner in a city", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a small animal is being lead on the leash", + "pred": "a sheep standing on the side of a road" + }, + { + "label": "a fire hydrant and sign buried in the snow", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "three people sitting on a bench in front of a lake", + "pred": "two people sitting on a bench in front of a lake" + }, + { + "label": "two giraffes inside of a cage at the zoo", + "pred": "giraffes standing next to each other" + }, + { + "label": "a train is traveling underneath a cement bridge", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a blue water hydrant on a pavement near the road", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a blue and yellow fire hydrant sitting on the sidewalk next to a quiet street", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "various vehicles are driving down a city street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a fire hydrant is near people viewing a canyon", + "pred": "a yellow fire hydrant sitting in the middle of a desert" + }, + { + "label": "an old rusted fire hydrant is on the ground near a painted wall", + "pred": "a fire hydrant sitting on top of a sidewalk" + }, + { + "label": "a white sheep standing on top of a dirt road", + "pred": "a sheep standing on the side of a road" + }, + { + "label": "a city road with cars, truck and traffic lights", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a blue and yellow fire hydrant on the side of a road", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "an orange on the middle of a park bench", + "pred": "an orange sitting on top of a wooden bench" + }, + { + "label": "a sheep being walked on a leash on a path", + "pred": "a sheep standing on the side of a road" + }, + { + "label": "buses parked on a road outside a large bus station", + "pred": "a city street filled with lots of buses" + }, + { + "label": "a cargo train crossing under an overpass and switching tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a road signage giving directions on a road covered with snow", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "three persons seated on a bench near a pool of water", + "pred": "two people sitting on a bench in front of a lake" + }, + { + "label": "a city road with buses and bus park", + "pred": "a city street filled with lots of buses" + }, + { + "label": "buses that are on a empty street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "an urban street with a streetlight, one way sign, and people walking", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a ripe tangerine atop a worn wooden picnic table", + "pred": "an orange sitting on top of a wooden bench" + }, + { + "label": "a top sign sitting in a parking lot full of cars", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a stop sign stands at the corner of sutter street", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a train is sitting along tracks under and overpass", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a stop sign with a street sign above it", + "pred": "a stop sign on the corner of a street" + }, + { + "label": "the view of a metropolitan area behind many buses", + "pred": "a city street filled with lots of buses" + }, + { + "label": "a close up view of a very big pretty city bus", + "pred": "a public transit bus on a city street" + }, + { + "label": "a wide view of a bunch of buses by some buildings", + "pred": "a city street filled with lots of buses" + }, + { + "label": "a street signs is on top of the stop sign", + "pred": "a stop sign on the corner of a street" + }, + { + "label": "people a trash can and a stop and go light", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a city street show cars going up and down the hill", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "railway car on snow covered tracks approaching urban area", + "pred": "a train is coming down the tracks in the snow" + }, + { + "label": "a rusted fire hydrant sits off to the side", + "pred": "a fire hydrant sitting on top of a sidewalk" + }, + { + "label": "parking meters and signage are on the side of the street", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a bus terminal taken from a distance", + "pred": "a city street filled with lots of buses" + }, + { + "label": "an orange is sitting by itself on the bench", + "pred": "an orange sitting on top of a wooden bench" + }, + { + "label": "a train riding on a snow covered track near trees", + "pred": "a train is coming down the tracks in the snow" + }, + { + "label": "a cat outside looking through a window", + "pred": "a black and white dog looking out of a window" + }, + { + "label": "the driver of a double decked bus standing outside", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "two street signs are sitting on top of the pole", + "pred": "a sign on a pole on a city street" + }, + { + "label": "a rusty old fire hydrant on the ground", + "pred": "a fire hydrant sitting on top of a sidewalk" + }, + { + "label": "two old fashioned buses parked on the side of the road", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "very large signs by a buliding", + "pred": "a sign on a pole on a city street" + }, + { + "label": "an orange is sitting on top of a bench", + "pred": "an orange sitting on top of a wooden bench" + }, + { + "label": "a red stop sign with a street sign attached", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a blue bus driving down a street past a park", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a yellow bus travels through a snowy, tree lined street", + "pred": "a train is coming down the tracks in the snow" + }, + { + "label": "a city street lined with very tall buildings", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a double decker bus next to a normal sized bus", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a hill of a street at a stoplight with traffic", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a street that has four lanes of traffic", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a city sidewalk with people walking up and down", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "a two way street has minimal cars on it", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a double decker bus is stopped with a man in a vest looking in", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a row of parking meters in front of a stop sign", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "an old red and black bus is on the street", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a man standing next to a light and a sign", + "pred": "a man standing next to a stop sign" + }, + { + "label": "pedestrians walking passed a traffic light", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "a metro style train speeding down the tracks between evergreen trees", + "pred": "a train is coming down the tracks in the snow" + }, + { + "label": "a cat sitting outside a glass window", + "pred": "a black and white dog looking out of a window" + }, + { + "label": "a sign letting drivers know that they can't stop on the curb", + "pred": "a sign on a pole on a city street" + }, + { + "label": "a man standing next to a traffic light in australia", + "pred": "a man standing next to a stop sign" + }, + { + "label": "a double decker bus that is next to a small bus", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a man that is standing next to a traffic light", + "pred": "a man standing next to a stop sign" + }, + { + "label": "a cat looking in a door from the outside", + "pred": "a black and white dog looking out of a window" + }, + { + "label": "a billboard add on the side of the street", + "pred": "a sign on a pole on a city street" + }, + { + "label": "an orange sitting on top of a wooden table", + "pred": "an orange sitting on top of a wooden bench" + }, + { + "label": "a red sign letting drivers know to stop", + "pred": "a stop sign on the corner of a street" + }, + { + "label": "buildings on both sides next to a street", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a fire hydrant on a sidewalk of a city", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a car is driving down the road near some road signs", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a stop sign and a street sign at the corner", + "pred": "a stop sign on the corner of a street" + }, + { + "label": "a man standing in front of a sign under a street light", + "pred": "a man standing next to a stop sign" + }, + { + "label": "a man in shorts is taking a picture next to a red light", + "pred": "a man standing next to a stop sign" + }, + { + "label": "a street corner with a traffic light in front of a carphone warehouse store with lots of people on the sidewalk", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "a train going down the track near a city", + "pred": "a train that is sitting on a train track" + }, + { + "label": "a train traveling along a forest through the snow", + "pred": "a train is coming down the tracks in the snow" + }, + { + "label": "a row of parking meters line a street in front of a stop sign", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a big long train that has some storage containers on it", + "pred": "a train that is sitting on a train track" + }, + { + "label": "a parking lot with parking meters", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a cat that is looking into a window", + "pred": "a black and white dog looking out of a window" + }, + { + "label": "a cat as sitting outside while looking through a window", + "pred": "a black and white dog looking out of a window" + }, + { + "label": "a small bus traveling down a street", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a little girl walking along a row of orange cones", + "pred": "a little girl standing next to a fire hydrant" + }, + { + "label": "trains that are parked next to each other", + "pred": "a train yard filled with lots of train tracks" + }, + { + "label": "billboards and two traffic signs on one pole", + "pred": "a sign on a pole on a city street" + }, + { + "label": "a sign outside of a closed road redirecting traffic", + "pred": "a sign on a pole with people standing around it" + }, + { + "label": "an electronic sign next to a road sign", + "pred": "a sign on a pole with people standing around it" + }, + { + "label": "a long road with cars on both sides of it", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a red and black big transportation truck or bus parked on the side of a road", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a train passing through a station, in the middle of the day", + "pred": "a train that is sitting on a train track" + }, + { + "label": "a busy intersection in a city features several cars and buildings", + "pred": "a city street filled with lots of tall buildings" + }, + { + "label": "a double-decker bus is stopped along a curb", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "an intersection with traffic and street signs on it", + "pred": "a stop sign on the corner of a street" + }, + { + "label": "a filtered picture shows the top of trains", + "pred": "a train yard filled with lots of train tracks" + }, + { + "label": "a train yard with several parked trains", + "pred": "a train yard filled with lots of train tracks" + }, + { + "label": "a street with a mechanical sign with directions", + "pred": "a sign on a pole with people standing around it" + }, + { + "label": "traffic lights sitting on the side of a road", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "trains sitting in the middle of a day", + "pred": "a train yard filled with lots of train tracks" + }, + { + "label": "the giraffe is walking toward a rock on a trail", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a small older bus parked alongside a roadway and another behind it", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "the man is sitting on the arm of a bench near a woman", + "pred": "a man and a woman sitting on a bench" + }, + { + "label": "a train carrying freight containers is on the tracks", + "pred": "a train that is sitting on a train track" + }, + { + "label": "an orange color photo of many trains on the tracks", + "pred": "a train yard filled with lots of train tracks" + }, + { + "label": "people are walking along a sidewalk in a city", + "pred": "a person walking down the street with an umbrella" + }, + { + "label": "a green bus is out on the road", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "people are sitting on a wood bench", + "pred": "a man and a woman sitting on a bench" + }, + { + "label": "a man and woman sitting on top of benches", + "pred": "a man and a woman sitting on a bench" + }, + { + "label": "the train is crossing a street in the city", + "pred": "a train that is sitting on a train track" + }, + { + "label": "the tall adult giraffe is standing next to a boulder", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "these man are standing near a fire hydrant", + "pred": "two men standing next to a yellow fire hydrant" + }, + { + "label": "a very tall giraffe that is in the wild", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a electric sign sits next to a park", + "pred": "a sign on a pole with people standing around it" + }, + { + "label": "a rain covered terrain after a night of rain", + "pred": "a city street at night with lights on" + }, + { + "label": "a giraffe in a field looking down at something", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a little girl is standing on a runway", + "pred": "a little girl standing next to a fire hydrant" + }, + { + "label": "a city filled with lots of vehicles and pedestrian traffic", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a red traffic light at night next to a christmas tree", + "pred": "a city street at night with lights on" + }, + { + "label": "a large green bird feeder with a bird on it", + "pred": "a bird perched on top of a red bird feeder" + }, + { + "label": "a orange fire hydrant with a couple of men standing around it", + "pred": "two men standing next to a yellow fire hydrant" + }, + { + "label": "a one way sign is located on the traffic light", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "men standing near a fire hydrant", + "pred": "two men standing next to a yellow fire hydrant" + }, + { + "label": "a man at a restaurant using his laptop", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "a giraffe standing in the dirt near trees and rocks", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a two sign sitting on the side of a road", + "pred": "a sign that is on the side of a road" + }, + { + "label": "a man sitting in front of a laptop computer", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "a empty table in a restaurant with a gentleman using a computer by the window", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "houses and stores on this street", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a slanted picture of a woman waiting to cross the street", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a couple sitting on two park benches", + "pred": "a man and a woman sitting on a bench" + }, + { + "label": "a bird that is sitting on a bird feeder", + "pred": "a bird perched on top of a red bird feeder" + }, + { + "label": "a traffic light with a one way sign near a trash can", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "people standing next to a double decker bus", + "pred": "a green double decker bus parked in front of a brick building" + }, + { + "label": "men standing around a yellow fire hydrant", + "pred": "two men standing next to a yellow fire hydrant" + }, + { + "label": "three giraffes stand near the fence of their enclosure", + "pred": "a pair of giraffes standing next to each other" + }, + { + "label": "pedestrians as well as cars are on a busy city street", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "guys in green jackets standing around a fire hydrant", + "pred": "two men standing next to a yellow fire hydrant" + }, + { + "label": "people some buildings cars and a red double decker bus", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "man using a personal laptop computer next to an open breezy window", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "a man sitting at a table and using a lap top", + "pred": "a man sitting at a table in front of a laptop computer" + }, + { + "label": "a street at night time with many different lights", + "pred": "a city street at night with lights on" + }, + { + "label": "three giraffes looking in different directions from each other", + "pred": "a pair of giraffes standing next to each other" + }, + { + "label": "signs on a pole on a city street", + "pred": "a sign that is on the side of a road" + }, + { + "label": "signs are blocking off a street for an art exhibit", + "pred": "a sign on a pole with people standing around it" + }, + { + "label": "people stand near the curb behind a lime green double-decked bus", + "pred": "a green double decker bus parked in front of a brick building" + }, + { + "label": "a red stop sign on this street", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "an empty street at night with lots of lights", + "pred": "a city street at night with lights on" + }, + { + "label": "a car stops while people cross in front of it", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a girl stands on an airport tarmac between orange cones in front of an airplane being boarded", + "pred": "a little girl standing next to a fire hydrant" + }, + { + "label": "a stop sign in the middle of a city", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a stop sign on a pole on a street corner", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "signs attached to a post detail regulations related to parking and other issues", + "pred": "a sign that is on the side of a road" + }, + { + "label": "this woman is sitting on a wood bench", + "pred": "a man and a woman sitting on a bench" + }, + { + "label": "the signs describe which rules will be enforced", + "pred": "a sign that is on the side of a road" + }, + { + "label": "giraffes standing around their pens", + "pred": "a pair of giraffes standing next to each other" + }, + { + "label": "a little girl standing in an airport", + "pred": "a little girl standing next to a fire hydrant" + }, + { + "label": "red stop sign sitting on a pole in the middle of city street", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "people standing in the sidewalk near a bus", + "pred": "a green double decker bus parked in front of a brick building" + }, + { + "label": "group of giraffes standing next to each other in a pen", + "pred": "a pair of giraffes standing next to each other" + }, + { + "label": "different signs on the same street pole", + "pred": "a sign that is on the side of a road" + }, + { + "label": "a little girl is standing between several orange cones", + "pred": "a little girl standing next to a fire hydrant" + }, + { + "label": "a double decked bus sits parked next to a side walk", + "pred": "a green double decker bus parked in front of a brick building" + }, + { + "label": "three giraffes standing in a pen", + "pred": "a pair of giraffes standing next to each other" + }, + { + "label": "a tall giraffe standing on top of a grass covered field", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a bright city street with a stop light and a big christmas tree", + "pred": "a city street at night with lights on" + }, + { + "label": "people standing outside of a double decker bus", + "pred": "a green double decker bus parked in front of a brick building" + }, + { + "label": "a bird perched on top of a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a woman holding a young child in her arms", + "pred": "a woman feeding a giraffe at a zoo" + }, + { + "label": "a red and black bird at a bird feeder", + "pred": "a bird perched on top of a red bird feeder" + }, + { + "label": "a green passenger bus parked in a lot", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a store covered in graffiti on a street corner", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a red and white traffic sign attached to a pole in a city", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a green bus with people driving on a city street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a giraffe is standing in a large field", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a long subway with people in it is lit up", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a bus moving down the road with people inside", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a graffiti covered building with a woman walking past it", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a train is in an overhead structure with lights", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a brown bird has a small yellow head", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a building with so many arts on it", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "people posing for a photograph at a black tie event", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a bird sits on a seed filled bird feeder", + "pred": "a bird perched on top of a red bird feeder" + }, + { + "label": "hipsters kneeling down next to each other", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a bird with brown wings and head perched in a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a well lit and clean subway station", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a bird that is perched in a tree", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "people posing for a photo", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a bird feeder that is attached to a tree", + "pred": "a bird perched on top of a red bird feeder" + }, + { + "label": "people seated on a bench posing for a photo", + "pred": "a large group of people posing for a picture" + }, + { + "label": "one tall giraffe on top of the dry terrain", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "the subway station with bright lights and a subway coming through", + "pred": "a train on the tracks at a train station" + }, + { + "label": "this train station has many lights on the ceiling", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a red stop sign that reads \" eating animals \" below it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a giraffe is standing tall in a dirt field", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a duck swims in some water near some vegetation", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a red. white, and blue fire hydrant on the side of the road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "someone is standing near a train that is parked", + "pred": "a man standing next to a train on a track" + }, + { + "label": "a store on the corner of the street is covered i graffiti", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a fire hydrant is being paint as an u.s.a flag", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a building that has graffiti on it on the side and the front", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "adults and a child are in a photograph", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a duck is floating in the pond next to muddy mounds in the water", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a red bench on a slanted floor has the coca-cola symbol on it", + "pred": "a bench in front of a building with a sign on it" + }, + { + "label": "a duck floating in the water near a bunch of grass and rocks", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a fire hydrant that is painted like an american flag is next to a street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a yellow taxi cab sitting below tall buildings", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a giraffe standing under a leaf filled tree", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a woman holds a baby on her arm and both are looking forward at an enclosed area with two giraffes in it", + "pred": "a woman feeding a giraffe at a zoo" + }, + { + "label": "a bench sitting on the side of a road", + "pred": "a person sitting on a bench in a wooded area" + }, + { + "label": "a train parked inside of a train station next to a person", + "pred": "a man standing next to a train on a track" + }, + { + "label": "a bird sits perched on a tree branch", + "pred": "a bird perched on top of a tree branch" + }, + { + "label": "a woman holding a little child as they look at giraffes", + "pred": "a woman feeding a giraffe at a zoo" + }, + { + "label": "a very cute small red bench by some tall stools", + "pred": "a bench in front of a building with a sign on it" + }, + { + "label": "road signage with sticker displayed near parking area", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a traffic light sitting on the side of a road next to a tree", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "what appears to be a beach-side eatery has an outdoor area with a metal railing and high stools, the whole of which rests on a tilted walk", + "pred": "a bench in front of a building with a sign on it" + }, + { + "label": "an animal is on a pole and next to it is a yellow taxi", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a tall giraffe stretches to reach high leaves on a tree", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a bench and a bridge along a nature trail", + "pred": "a person sitting on a bench in a wooded area" + }, + { + "label": "a bench at the end of a bridge", + "pred": "a person sitting on a bench in a wooded area" + }, + { + "label": "a sidewalk scene with focus on a red bench", + "pred": "a bench in front of a building with a sign on it" + }, + { + "label": "a country road at a traffic light in the sun", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a giraffe that is standing in the grass", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "the giraffe extends upward while eating from the branches of a tree", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a duck that is sitting in the water", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a duck swims across an empty pond outside", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a long locomotive train parked in a station next to a person", + "pred": "a man standing next to a train on a track" + }, + { + "label": "a bird with outstretched blue wings is sitting on some bird feeder", + "pred": "a bird that is sitting on a bird feeder" + }, + { + "label": "yellow signs are near a taxi", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a fire hydrant painted like the american flag", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a train traveling through rural countryside lined with trees", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a road with some trees on both sides of it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a large giraffe is standing near a body of water in a field", + "pred": "a giraffe standing in the middle of a field" + }, + { + "label": "a red train is riding down the tracks", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a blue bus picking up a load of people", + "pred": "people standing on the side of a street" + }, + { + "label": "people don't seem to be able to pass a stop sign without defacing them", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a giraffe reaching up to some tree branches", + "pred": "a giraffe standing on top of a dry grass covered field" + }, + { + "label": "a fire hydrant painted in the american patriotic colors", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a blue bus parked in front of a tall building", + "pred": "people standing on the side of a street" + }, + { + "label": "on a city road there is lots of taxis", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "people that are standing outside of a bus", + "pred": "people standing on the side of a street" + }, + { + "label": "a red bench that is sitting on a sidewalk", + "pred": "a bench in front of a building with a sign on it" + }, + { + "label": "the large red train is attached to wires above it", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a blue train going up the tracks, lots of trees around", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a red trolley car driving down a parking lot", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a stop sign vandalized with an \"eating animals\" sticker below the word \"stop.\"", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "the stop sign has stenciled spray paint on it", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a stop sign with a eating animals sticker on it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a park bench located near a bridge", + "pred": "a person sitting on a bench in a wooded area" + }, + { + "label": "a blue black and white bird a bowl of birdseed", + "pred": "a bird that is sitting on a bird feeder" + }, + { + "label": "a large red electrical passenger train riding down railroad tracks", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a red stop sign with the word \" hammer time \". written on it", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a red train traveling down tracks next to a field", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "red and white train traveling on a train track", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a woman stands next to a parked train", + "pred": "a man standing next to a train on a track" + }, + { + "label": "a person standing next to a green and black train", + "pred": "a man standing next to a train on a track" + }, + { + "label": "a stop sign that is displaying a different meaning than the original one", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a stop light on a road in the middle of a forest", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a woman holding a young child looking at some giraffes", + "pred": "a woman feeding a giraffe at a zoo" + }, + { + "label": "a cat wearing a hat while resting it's paws on top of a chair", + "pred": "a cat wearing a hat" + }, + { + "label": "a train moving along a railway line in the bush", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "people line up to take a city bus", + "pred": "people standing on the side of a street" + }, + { + "label": "a woman and a baby look at giraffes at the zoo", + "pred": "a woman feeding a giraffe at a zoo" + }, + { + "label": "two guiding signs are pictured in front of a busy street", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a train drives down a narrow track surrounded by trees", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "group of people waiting to get onto a bus in the city", + "pred": "people standing on the side of a street" + }, + { + "label": "a black bird sitting next to a couple of people in chairs", + "pred": "a black and white bird sitting on top of a wooden bench" + }, + { + "label": "road signs showing the instructions on the road", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a black and white cat wearing a little purple hat", + "pred": "a black and white cat wearing a pink hat" + }, + { + "label": "a bridge,a bench and lots of trees and branches", + "pred": "a person sitting on a bench in a wooded area" + }, + { + "label": "a bird with its ring span sitting on a bowl with feed in it", + "pred": "a bird that is sitting on a bird feeder" + }, + { + "label": "a road in the middle of a beautiful green forest", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a stop sign with hammertime written on it", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a park with lots of benches under trees", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a silver and blue passenger train traveling through a heavily vegetated area", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a blue bird sitting on top of a bowl of seed", + "pred": "a bird that is sitting on a bird feeder" + }, + { + "label": "a bench on a road side with a quilt covering it", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "a red fire hydrant sitting on the side of a road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a bird is sitting on a bowl of birdseed", + "pred": "a bird that is sitting on a bird feeder" + }, + { + "label": "a black bird standing on the floor in the street", + "pred": "a black and white bird sitting on top of a wooden bench" + }, + { + "label": "pictures that have some people and some fire hyrdons", + "pred": "a series of photos showing a fire hydrant and a group of people" + }, + { + "label": "multiple pictures of fire hydrants, a woman standing near a tree, and people posing in front of a boat", + "pred": "a series of photos showing a fire hydrant and a group of people" + }, + { + "label": "a picture collage with fire hydrants and people", + "pred": "a series of photos showing a fire hydrant and a group of people" + }, + { + "label": "cat wearing a baseball cap with ears sticking out", + "pred": "a cat wearing a hat" + }, + { + "label": "tabby cat with green eyes wearing a hat", + "pred": "a cat wearing a hat" + }, + { + "label": "a trolley car parked in a parking lot", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a bench that has many colors on it", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "a cat peeks over a chair while wearing a hat", + "pred": "a cat wearing a hat" + }, + { + "label": "a fire hydrgen that is next to a street", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a black and white cat has a purple hat on", + "pred": "a black and white cat wearing a pink hat" + }, + { + "label": "a large lizard sitting on stone steps with three birds", + "pred": "a cat sitting on the ground next to a wall" + }, + { + "label": "a small bird is standing on the concrete", + "pred": "a small bird standing on a dirt ground" + }, + { + "label": "a red fire hydrant on the right side of a road", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "two birds flying in the sky over a lake", + "pred": "a seagull flying over a body of water" + }, + { + "label": "a tram like bus in a parking lot", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a red fire hydrant is on a crosswalk intersection", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "the bench sitting on the side of the road is multi-colored", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "a cat with a pink and fuzzy hat on it's head", + "pred": "a black and white cat wearing a pink hat" + }, + { + "label": "a red and black fire hydrant sitting next to a crosswalk", + "pred": "a fire hydrant sitting on the side of a road" + }, + { + "label": "a red passenger bus is on the street", + "pred": "a red and white bus driving down a street" + }, + { + "label": "a bench with a blanket on a street", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "a park bench covered with colorful, patchwork fabric", + "pred": "a park bench sitting on the side of a road" + }, + { + "label": "a brown bird is standing on the ground", + "pred": "a small bird standing on a dirt ground" + }, + { + "label": "a red trolley car that is sitting on pavement", + "pred": "a red and white bus driving down a street" + }, + { + "label": "black borders a rippling water-scape with two birds flying overhead", + "pred": "a seagull flying over a body of water" + }, + { + "label": "park benches next to some trees", + "pred": "a park bench in the middle of a park" + }, + { + "label": "two pictures of a fire hydrant with two pictures of people", + "pred": "a series of photos showing a fire hydrant and a group of people" + }, + { + "label": "a black bird standing behind a group of occupied chairs along a sidewalk", + "pred": "a black and white bird sitting on top of a wooden bench" + }, + { + "label": "a crow walking along the floor next to seated people", + "pred": "a black and white bird sitting on top of a wooden bench" + }, + { + "label": "a sheep standing in grass next to a rock wall", + "pred": "a white sheep standing on top of a lush green field" + }, + { + "label": "a large air plane on a terminal", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a lonely sheep standing in a field in front of a rock wall", + "pred": "a white sheep standing on top of a lush green field" + }, + { + "label": "the birds are standing on the grass and dirt", + "pred": "a pair of birds standing on top of a lush green field" + }, + { + "label": "a white sheep looks at the camera and stands in the grass", + "pred": "a white sheep standing on top of a lush green field" + }, + { + "label": "a close of up a small bird on a dirt ground", + "pred": "a small bird standing on a dirt ground" + }, + { + "label": "a train pulling into the station in a city", + "pred": "a train on a train track at a train station" + }, + { + "label": "a sheep that is standing in a field", + "pred": "a white sheep standing on top of a lush green field" + }, + { + "label": "a bird on the ground next to a person at a table", + "pred": "a black and white bird sitting on top of a wooden bench" + }, + { + "label": "the large lizard is on the steps near the birds", + "pred": "a cat sitting on the ground next to a wall" + }, + { + "label": "the small brown bird is standing on the ground beside another animal", + "pred": "a small bird standing on a dirt ground" + }, + { + "label": "the humongous twin engine airliner is being loaded", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a train traveling down tracks towards a train station", + "pred": "a train on a train track at a train station" + }, + { + "label": "a woman standing next to a princess parking only sign", + "pred": "a woman standing in front of a sign" + }, + { + "label": "the tall, skinny birds are standing in the grass", + "pred": "a pair of birds standing on top of a lush green field" + }, + { + "label": "two birds flying over a flat waveless ocean", + "pred": "a seagull flying over a body of water" + }, + { + "label": "a cat in front of a wooden bench in a garden", + "pred": "a wooden bench sitting in front of a garden" + }, + { + "label": "cat comically wearing a beanie hat looking agitated", + "pred": "a black and white cat wearing a pink hat" + }, + { + "label": "the adult sheep is standing near a stone wall", + "pred": "a white sheep standing on top of a lush green field" + }, + { + "label": "a cat is wearing an orange and brown hat", + "pred": "a cat wearing a hat" + }, + { + "label": "a train traveling down the rail road tracks", + "pred": "a train on a train track at a train station" + }, + { + "label": "a train is coming up to a passenger loading area", + "pred": "a train on a train track at a train station" + }, + { + "label": "a train is shown on the train tracks", + "pred": "a train on a train track at a train station" + }, + { + "label": "a flock of birds standing on top of a lush green field", + "pred": "a pair of birds standing on top of a lush green field" + }, + { + "label": "birds flying over a body of water", + "pred": "a seagull flying over a body of water" + }, + { + "label": "a collage of photos including two which portray colorful fire hydrants", + "pred": "a series of photos showing a fire hydrant and a group of people" + }, + { + "label": "a blue sign giving directions to a public toilet", + "pred": "a blue and white street sign sitting on the side of a road" + }, + { + "label": "a lizard and some bird sitting on some steps", + "pred": "a cat sitting on the ground next to a wall" + }, + { + "label": "an iguana and two birds are sitting on several steps", + "pred": "a cat sitting on the ground next to a wall" + }, + { + "label": "a cat sits near a bench in a garden with many potted plants", + "pred": "a wooden bench sitting in front of a garden" + }, + { + "label": "the red, double decker bus is driving past other buses", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a man holding a small white dog while wearing a black hat", + "pred": "a man wearing a hat with a sheep on it" + }, + { + "label": "a woman sitting on top of a bed with curtains hanging over it", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a woman sitting on top of a park bench in a field", + "pred": "a woman sitting on a bench in a park" + }, + { + "label": "a smiling girl standing beside a sign that says \"princess parking only\"", + "pred": "a woman standing in front of a sign" + }, + { + "label": "a bird standing on the ground looking around", + "pred": "a small bird standing on a dirt ground" + }, + { + "label": "birds with long orange beaks and black and white feathers in a park", + "pred": "a pair of birds standing on top of a lush green field" + }, + { + "label": "a wooden bench surrounded by potted plants in front of a house", + "pred": "a wooden bench sitting in front of a garden" + }, + { + "label": "a red double decker bus driving down a city street", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a train traveling under a rusted bridge on top of tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "an iguana and three pigeons sitting on cement steps", + "pred": "a cat sitting on the ground next to a wall" + }, + { + "label": "two large birds are flying over the calm water", + "pred": "a seagull flying over a body of water" + }, + { + "label": "a red bus is driving on the road", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a sign for a public restroom is in more than one language", + "pred": "a blue and white street sign sitting on the side of a road" + }, + { + "label": "a cat wearing a hat on its head", + "pred": "a black and white cat wearing a pink hat" + }, + { + "label": "a jal jetliner on the tarmac at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a wooden bench surrounded by some potted plants", + "pred": "a wooden bench sitting in front of a garden" + }, + { + "label": "a train traveling past tall white buildings on train tracks", + "pred": "a train on the tracks in front of a building" + }, + { + "label": "a red and white passenger bus with a 'final destination 5' billboard on the side of it", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a woman that is standing near signs smiling", + "pred": "a woman standing in front of a sign" + }, + { + "label": "a blue sign for a public toilet with arrows and figures", + "pred": "a blue and white street sign sitting on the side of a road" + }, + { + "label": "a white cat sitting before a bench surrounded by plants in planters", + "pred": "a wooden bench sitting in front of a garden" + }, + { + "label": "is anyone familiar with this species of bird", + "pred": "a pair of birds standing on top of a lush green field" + }, + { + "label": "a yellow and green train, at stop lights", + "pred": "a train on a train track near a bridge" + }, + { + "label": "two people stroll through a park with benches and a playground", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a large plane is parked at the airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a park with benches and lots of trees", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a street sign points in the direction of the bathroom", + "pred": "a blue and white street sign sitting on the side of a road" + }, + { + "label": "two people that are laying in bunk beds and looking up", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a person that is sitting alone on a park bench", + "pred": "a woman sitting on a bench in a park" + }, + { + "label": "a woman stands near a humorous parking sign", + "pred": "a woman standing in front of a sign" + }, + { + "label": "a commuter train that is in the train yard and is parked", + "pred": "a train on a train track near a bridge" + }, + { + "label": "a yellow and green train traveling under signals", + "pred": "a train on a train track near a bridge" + }, + { + "label": "a green and yellow train is driving on the track", + "pred": "a train on a train track near a bridge" + }, + { + "label": "a yellow and green train is coming down the track", + "pred": "a train on a train track near a bridge" + }, + { + "label": "a man wearing a hat holding a dog wearing a hat", + "pred": "a man wearing a hat with a sheep on it" + }, + { + "label": "a herd of giraffe running across a field", + "pred": "a herd of giraffe standing on top of a lush green field" + }, + { + "label": "a japan airlines plane sits parked at an airport", + "pred": "a large jetliner sitting on top of an airport tarmac" + }, + { + "label": "a herd of giraffes are playing in a field", + "pred": "a herd of giraffe standing on top of a lush green field" + }, + { + "label": "a girl in a blue bowtie standing next to a pink princess parking only sign", + "pred": "a woman standing in front of a sign" + }, + { + "label": "a herd of giraffes are standing together in the grass", + "pred": "a herd of giraffe standing on top of a lush green field" + }, + { + "label": "a pair of people lean out from behind curtains and smile", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a person sits on a park bench overlooking a large field", + "pred": "a woman sitting on a bench in a park" + }, + { + "label": "a person is sitting behind a curtain with another person behind them", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a woman is sitting on a bench in the grass", + "pred": "a woman sitting on a bench in a park" + }, + { + "label": "a guy peeks out from behind a curtain", + "pred": "a woman sitting on a bench next to a fence" + }, + { + "label": "a woman sits by herself on a park bench", + "pred": "a woman sitting on a bench in a park" + }, + { + "label": "a parked bus next to a building and palm trees", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a red and white bus parked in front of a sidewalk", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a dog sticking it's head out of the drivers side window", + "pred": "a dog sitting in the drivers seat of a car" + }, + { + "label": "a city bus sits parked next to a side walk", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "park benches with a brown fence in the background and trees overhead", + "pred": "a park bench in the middle of a park" + }, + { + "label": "a man holding a dog wearing a costume in his arms", + "pred": "a man wearing a hat with a sheep on it" + }, + { + "label": "a double decker bus rolls along the streets", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "a man in period costume holds a dog in period costume", + "pred": "a man wearing a hat with a sheep on it" + }, + { + "label": "a sign advertising the cave restaurant and lounge", + "pred": "a street sign sitting on top of a pole" + }, + { + "label": "a person is bending over to pick something off the ground", + "pred": "a person standing next to a fire hydrant" + }, + { + "label": "a red and white bus parked by the curb near palm trees", + "pred": "a bus is parked on the side of the road" + }, + { + "label": "a family of giraffes running through the bush", + "pred": "a herd of giraffe standing on top of a lush green field" + }, + { + "label": "a stop sign on the corner in front of a row of stores", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a blue sign that is pointing to the restrooms", + "pred": "a blue and white street sign sitting on the side of a road" + }, + { + "label": "people walking around and looking at animals", + "pred": "a man standing in a barn next to a group of sheep" + }, + { + "label": "a sign announcing the season a people walk on the sidewalk", + "pred": "a street sign on the corner of a city street" + }, + { + "label": "an orange and white train makes its way down the track", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a tall building with glass and lots of people walking in front of it and there is a green banner that says spring in the city", + "pred": "a street sign on the corner of a city street" + }, + { + "label": "people at a stock yard looking at animals", + "pred": "a man standing in a barn next to a group of sheep" + }, + { + "label": "group of men spectating a cluster of pigs at fair", + "pred": "a man standing in a barn next to a group of sheep" + }, + { + "label": "a sign in front of a building, in front of a building", + "pred": "a street sign on the corner of a city street" + }, + { + "label": "a giraffe stands in a rocky area, larger rocks behind him", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "fire hyrdants sitting in a line on a sidewalk", + "pred": "a pile of yellow flowers sitting on top of a sidewalk" + }, + { + "label": "poles in the ground that look a bit like fire hydrants", + "pred": "a pile of yellow flowers sitting on top of a sidewalk" + }, + { + "label": "people looking at sheep in a series of indoor pens", + "pred": "a man standing in a barn next to a group of sheep" + }, + { + "label": "giraffe resting while standing in the dirt and grass", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a bus has the top part of a van attached to its roof", + "pred": "a green double decker bus parked on the side of the road" + }, + { + "label": "an old passenger trolley is on the street", + "pred": "a city street with people walking down it" + }, + { + "label": "trolly in the middle of the city next to people", + "pred": "a city street with people walking down it" + }, + { + "label": "brown signs on a pole", + "pred": "a street sign sitting on top of a metal pole" + }, + { + "label": "a truck and a bus on a lawn", + "pred": "a green double decker bus parked on the side of the road" + }, + { + "label": "a traffic light at an intersection", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "two black signs that are on the side of a pole", + "pred": "a street sign on a pole in front of a brick building" + }, + { + "label": "the old fashioned light also serves as a street sign", + "pred": "a street sign on a pole in front of a brick building" + }, + { + "label": "a street light that has some street signs on it", + "pred": "a street sign on a pole in front of a brick building" + }, + { + "label": "a bus that is sitting in the grass near a street", + "pred": "a green double decker bus parked on the side of the road" + }, + { + "label": "a street light with street names attached in front of a brick building", + "pred": "a street sign on a pole in front of a brick building" + }, + { + "label": "the rail trolley is driving in front of other automobiles", + "pred": "a city street with people walking down it" + }, + { + "label": "giraffes that are standing in the grass", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "an intersection sign between green lake drive and one other", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a rail car that is next to a building", + "pred": "a city street with people walking down it" + }, + { + "label": "a herd of giraffe standing on to of a grass covered field", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a cartoon dog is painted on the side of the passenger bus", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "two giraffes that are standing in the grass", + "pred": "a giraffe and a zebra standing next to each other" + }, + { + "label": "a street pole with one ways, except deliveries, street and no walking signs", + "pred": "a street sign sitting on top of a metal pole" + }, + { + "label": "the two street name signs are protruding from a street pole", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a street sign is pictured against a cement wall", + "pred": "a street sign sitting on top of a metal pole" + }, + { + "label": "a bus that is sitting in the street", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "giraffes in a stand of trees stare in the same direction", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a street sign showing the intersection with avenue of the americas, 6th avenue and charlton st", + "pred": "a street sign sitting on top of a metal pole" + }, + { + "label": "the trolley car runs up and down the street on train rails", + "pred": "a city street with people walking down it" + }, + { + "label": "signs are on a pole", + "pred": "a street sign sitting on top of a metal pole" + }, + { + "label": "three giraffes standing on a plain with a few trees", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a decorated, japanese bus drives down the road", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "a small sheep is standing in a pin", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a pole with two street signs attached, in front of some trees", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "three giraffes standing in some tall grass with trees", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "the wholly sheep stands besides others in a cage", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "signs are hanging on a black pole", + "pred": "a street sign in front of a brick building" + }, + { + "label": "a japanese community bus with a cartoon dog on the side", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "giraffes are standing by the rocks", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a stuffed teddy bear covered in dirt on the ground", + "pred": "a stuffed teddy bear sitting on the ground" + }, + { + "label": "sheep in a very small fenced in stall with hay on the floor", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a sheep stands near other sheep in a closed off pen", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a poor little teddy bear smashed and covered with dirt", + "pred": "a stuffed teddy bear sitting on the ground" + }, + { + "label": "a city bus with some art on the side of the bus", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "two giraffe's by large rocks with and ostrich", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "an ostrich has come to see the giraffe", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a sheep that is standing on some hay", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a large statue of an elephant is attached to a business sign", + "pred": "a statue of a man riding on top of an elephant" + }, + { + "label": "a teddy bear lays partially covered with sand", + "pred": "a stuffed teddy bear sitting on the ground" + }, + { + "label": "a statue of an elephant with a box on its back", + "pred": "a statue of a man riding on top of an elephant" + }, + { + "label": "a brown teddy bear lying on sand with a hat", + "pred": "a stuffed teddy bear sitting on the ground" + }, + { + "label": "two giraffes and an ostrich at a zoo enclosure habitat", + "pred": "a giraffe and a zebra in a zoo enclosure" + }, + { + "label": "a streeet sign at an intersection", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a traffic light in front of a tall building with red lights at the top", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a street sign on a pole", + "pred": "a green street sign sitting on top of a pole" + }, + { + "label": "a public transit bus on a city street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a sheep in a field with a dog and people watching", + "pred": "a dog and a group of sheep in a field" + }, + { + "label": "a teddy bear that has been buried in the sand", + "pred": "a stuffed teddy bear sitting on the ground" + }, + { + "label": "an advertising billboard featuring the statue of an elephant with a howdah on its back", + "pred": "a statue of a man riding on top of an elephant" + }, + { + "label": "a tall building lit in red at the top", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a train of many colors is coming down the track", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "green traffic light shown against a tall sky scraper at night", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a red and yellow passenger bus on the road", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a passenger train on the tracks going under a bridge", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a big purple bus parked in a parking spot", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "sheep in the snow behind a barbed wire fence", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "the red bus is driving down the street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "train riding down the train track stopping at the station", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a green stop light with a tall building lighted up in the background at night", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a herd of sheep gather near a fence on a snow covered ground", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "sheep at a fence in winter", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "a traffic light with a street sign near a tall building at night", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "sheep are being herded by a dog as people watch", + "pred": "a dog and a group of sheep in a field" + }, + { + "label": "a purple bus can't be missed on the city streets", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "a big purple public bus called south tyne", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "people watch a man and dog herd sheep", + "pred": "a dog and a group of sheep in a field" + }, + { + "label": "a car that is trying to drive through a flood", + "pred": "a street sign on the side of a road" + }, + { + "label": "a yellow and red bus in the middle of the street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a giant elephant is next to the aurora rents sign", + "pred": "a statue of a man riding on top of an elephant" + }, + { + "label": "a city bus drives through a city area", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "a city bus drives down a quiet road", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a traffic sign that has a picture of a man holding a surfboard on it", + "pred": "a street sign in front of a palm tree" + }, + { + "label": "an eyecatching sign shaped like an elephant holding a billboard", + "pred": "a statue of a man riding on top of an elephant" + }, + { + "label": "a large house is shown", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "city bus driving through pedestrian saturated area near crosswalk", + "pred": "a blue and white bus driving down a street" + }, + { + "label": "the two signs give directions to upcoming cars", + "pred": "a street sign on the side of a road" + }, + { + "label": "a corner street sign with a tow sign and a art piece", + "pred": "a street sign on a pole in front of a tree" + }, + { + "label": "a large bird perched on top of a stick near a window", + "pred": "a bird perched on top of a window sill" + }, + { + "label": "forested area in city with a sign with cartoon character nearby", + "pred": "a street sign on a pole in front of a tree" + }, + { + "label": "tree green lined roadway on a misty day", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a car is driving through a flooded street", + "pred": "a street sign on the side of a road" + }, + { + "label": "a dog is herding sheep in a field", + "pred": "a dog and a group of sheep in a field" + }, + { + "label": "a tree stands net to an old wood house", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a small bird sitting on top of an open book", + "pred": "a small bird sitting on top of a book" + }, + { + "label": "a man standing next to a herd of white sheep", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "an older home with multiple windows, shot from the street", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "two giraffes during day in field of grasses", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a car is driving through a flooded street", + "pred": "a street sign on the side of a road" + }, + { + "label": "a man with an umbrella hat stands next to another man", + "pred": "people with umbrellas on a street" + }, + { + "label": "sheep are standing in the snow behind a wire fence", + "pred": "a herd of sheep standing on top of a snow covered field" + }, + { + "label": "a yellow sign that is at the top of a pole", + "pred": "a street sign on a pole in front of a palm tree" + }, + { + "label": "a green road sign sitting on the side of a road", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a cartoon monster underneath a no parking sign", + "pred": "a street sign on a pole in front of a tree" + }, + { + "label": "a train passing into a station, in a well designed station", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a three-story victorian-era frame house with a peaked roof", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a train pulling red, white and blue cars", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a sign in front of a brick house", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a car driving through a very flooded street", + "pred": "a street sign on the side of a road" + }, + { + "label": "a knot of sheep are huddled close and looking out of a barbed wire fence with a frost-covered landscape behind them", + "pred": "a herd of sheep standing on top of a snow covered field" + }, + { + "label": "street lights and a lit up street sign at an intersection", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "cargo train is traveling on a track next to a forest", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a no parking zone sign, on a street corner", + "pred": "a street sign on a pole in front of a tree" + }, + { + "label": "electric poles and street signs along the street", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "guys standingoutside in the sun talking to each other", + "pred": "people with umbrellas on a street" + }, + { + "label": "a falcon perched on a window looking off in the distance", + "pred": "a bird perched on top of a window sill" + }, + { + "label": "a road that has signs, trees, and telephone poles near it", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a yellow sign of a person carrying a surf board", + "pred": "a street sign on a pole in front of a palm tree" + }, + { + "label": "a train driving down the tracks near several trees", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "two giraffes standing one behind the other among brush", + "pred": "two giraffes standing next to each other in a field" + }, + { + "label": "a fire hydrant with a tire underneath it", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "men standing next to each other on a tennis court", + "pred": "people with umbrellas on a street" + }, + { + "label": "a large bird is sitting on a metal perch", + "pred": "a bird perched on top of a window sill" + }, + { + "label": "a person holding a book with a bird sitting on the book", + "pred": "a small bird sitting on top of a book" + }, + { + "label": "a tiny bird is perched on the top of this book", + "pred": "a small bird sitting on top of a book" + }, + { + "label": "a hawk is perched on a metal bar", + "pred": "a bird perched on top of a window sill" + }, + { + "label": "a locomotive hauling a colorful train of boxcars", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "man holding a bag and a half in the shape of an umbrella", + "pred": "people with umbrellas on a street" + }, + { + "label": "a sign that gives directions to drivers driving down the road", + "pred": "a street sign sitting on the side of a road" + }, + { + "label": "a house is sitting on an empty block", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a red fire hydrant is sitting in the woods near fallen leaves", + "pred": "a red fire hydrant sitting in the middle of a forest" + }, + { + "label": "a wood bench is next to a tree", + "pred": "a cat sitting on a bench outside of a store" + }, + { + "label": "a sign with a person with a surfboard is near a building and palm trees", + "pred": "a street sign on a pole in front of a palm tree" + }, + { + "label": "a train is entering a train station", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "an orange white and black bird and a curtain", + "pred": "a bird perched on top of a window sill" + }, + { + "label": "a black white and red sign grass and a building", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a fire hydrant located in the middle of a woods", + "pred": "a red fire hydrant sitting in the middle of a forest" + }, + { + "label": "a metal pole with a traffic light attached, red right arrow illuminated, with green grass, green trees, and white sky", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a big train passes under a big bridge", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a neglected fire hydrant is standing next to a fence", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "people are boarding a bus parked at a stop", + "pred": "a double decker bus on a city street" + }, + { + "label": "a bicycle tire near an old fire hydrant", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "giraffes stand together feeding on leaves in a large park", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a rusted red fire hydrant encircled by an old tire stands in the bare earth beside a chain link fence", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "the empty bench is sitting next to the potted tree", + "pred": "a cat sitting on a bench outside of a store" + }, + { + "label": "a little finch that landed on the edge of a book", + "pred": "a small bird sitting on top of a book" + }, + { + "label": "two people standing holding bags and wearing hats", + "pred": "people with umbrellas on a street" + }, + { + "label": "red fire hydrant with leizan trees around it", + "pred": "a red fire hydrant sitting in the middle of a forest" + }, + { + "label": "two people sitting on a bench silhouetted against the sea", + "pred": "a woman sitting on a bench in front of the ocean" + }, + { + "label": "a herd of giraffes eat on some tree leafs", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a sign that says \"abbey road nw8 city of westminster\"", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a black blue and red fire hydrant and some leaves and trees", + "pred": "a red fire hydrant sitting in the middle of a forest" + }, + { + "label": "a small bird sits on top of a book page", + "pred": "a small bird sitting on top of a book" + }, + { + "label": "two people are sitting on a bench together in front of water", + "pred": "a woman sitting on a bench in front of the ocean" + }, + { + "label": "a road sign outside of a building in a city", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a giraffe walking around in a fenced area in a zoo", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "an old fire hydrant with a bicycle tire on the ground around it, on the side of a road", + "pred": "a fire hydrant on the side of a road" + }, + { + "label": "a dog wearing a hat while in a car", + "pred": "a dog wearing a hat sitting in the back seat of a car" + }, + { + "label": "a park bench outside a store with a potted tree next to it", + "pred": "a cat sitting on a bench outside of a store" + }, + { + "label": "twilight at a city intersection with lit street signs", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "the silhouette of two people sitting on a bench in front of the water", + "pred": "a woman sitting on a bench in front of the ocean" + }, + { + "label": "their is a hadron and their in this lot", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "a bus stopped at a bus stop, letting people board", + "pred": "a double decker bus on a city street" + }, + { + "label": "a fire hydrant that is sitting in the grass", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "a sign for abbey road in the city of westminster", + "pred": "a sign that is on the side of a building" + }, + { + "label": "two giraffes standing near a large rock inside a gated corral", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a road sign indicating surfers outside a temple", + "pred": "a street sign on a pole in front of a palm tree" + }, + { + "label": "a stop sign that is on the side of a pole", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a dog that is in a car with a hat", + "pred": "a dog wearing a hat sitting in the back seat of a car" + }, + { + "label": "a bird that is flying over the sand", + "pred": "a seagull flying over a beach next to the ocean" + }, + { + "label": "a fire hydrant that is sitting in the leaves", + "pred": "a red fire hydrant sitting in the middle of a forest" + }, + { + "label": "a fire hydrant in a grassy field next to a bush", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "a sign on the side of a busy street outside a shopping center", + "pred": "a sign that is on the side of a building" + }, + { + "label": "double high buses that are in the street", + "pred": "a man standing on a sidewalk next to a double decker bus" + }, + { + "label": "a person trying to open a fire hydrant", + "pred": "a man kneeling down next to a fire hydrant" + }, + { + "label": "a sleepy dog wearing a cowboy hat in the back seat of a car", + "pred": "a dog wearing a hat sitting in the back seat of a car" + }, + { + "label": "a street sign stating no parking and tow away zone", + "pred": "a street sign on a pole in front of a tree" + }, + { + "label": "trees mark the far side of a fence that encloses a large environment space with man made rocks and two giraffes, one close up and very large", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "two giraffe's in a zoo with a large rock", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a dusky evening with a green street light shining", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a couple is sitting on a bench in front of the water", + "pred": "a woman sitting on a bench in front of the ocean" + }, + { + "label": "a giraffe on a dirt ground", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a night scene with silhouettes of buildings and some traffic lights over a street", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a large brown dog wearing a brown hat", + "pred": "a dog wearing a hat sitting in the back seat of a car" + }, + { + "label": "a fire hydrant beside a leafy green bush on a green lawn", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "two public transit buses on a city street", + "pred": "a man standing on a sidewalk next to a double decker bus" + }, + { + "label": "a traffic light on a pole with a grassy hill", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a man covered in blood trying to destroy a fire hydrant", + "pred": "a man kneeling down next to a fire hydrant" + }, + { + "label": "a man who is riding a horse down a brick street", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man walking down a street past a double decker bus", + "pred": "a man standing on a sidewalk next to a double decker bus" + }, + { + "label": "a bench near a potted flower", + "pred": "a cat sitting on a bench outside of a store" + }, + { + "label": "a man that is covered in liquid near a hydrant", + "pred": "a man kneeling down next to a fire hydrant" + }, + { + "label": "a large sign with neon green wording sitting on the side of a road", + "pred": "a sign that is on the side of a building" + }, + { + "label": "sheep that are in the grass", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "people who are on the back of a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a stoplight that is flashing green lights at cars", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "buses that are parked next to each other", + "pred": "a man standing on a sidewalk next to a double decker bus" + }, + { + "label": "hundreds of black face sheep all laying in the pasture", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a couple sits on a park bench and watches the water", + "pred": "a woman sitting on a bench in front of the ocean" + }, + { + "label": "two people about to get on-board a bus", + "pred": "a double decker bus on a city street" + }, + { + "label": "a field that has some sheep in it", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "group of giraffes grazing from same high tree in field", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a stop light that is next to some trees and grass", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "a big bird that is flying over some sand", + "pred": "a seagull flying over a beach next to the ocean" + }, + { + "label": "a number of giraffes in a field near one another", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "a turn signal with a red arrow illuminated on it", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "giraffes that are standing in the grass", + "pred": "giraffes that are standing in the grass" + }, + { + "label": "the bus stopped at the bus stop and people are getting in", + "pred": "a double decker bus on a city street" + }, + { + "label": "two double-decker buses going in opposite directions on a road", + "pred": "a man standing on a sidewalk next to a double decker bus" + }, + { + "label": "oman and group of people on horseback moving down cement path", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a wooden bench sitting in front of a store", + "pred": "a cat sitting on a bench outside of a store" + }, + { + "label": "a fire hydrgon that a man is grabing", + "pred": "a man kneeling down next to a fire hydrant" + }, + { + "label": "a bleeding man leaning against a fire hydrant", + "pred": "a man kneeling down next to a fire hydrant" + }, + { + "label": "a fire hydrant near a tall bush in a field", + "pred": "a fire hydrant sitting in the middle of a grassy field" + }, + { + "label": "outdoor show with sheep prominent on grass field", + "pred": "a dog running in the grass with a frisbee in its mouth" + }, + { + "label": "a white bird is flying over a beach", + "pred": "a seagull flying over a beach next to the ocean" + }, + { + "label": "a big, white seagull flies over a beach", + "pred": "a seagull flying over a beach next to the ocean" + }, + { + "label": "a number of giraffes near one another", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a table that has some bananas on it", + "pred": "a bird sitting on top of a banana tree" + }, + { + "label": "giraffes roam their enclosure at the zoo", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a woman is cutting into a cake with a large knife", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a large blue sign is next to a building", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a woman cutting a cake with a long knife", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a shopping center sign right by a road and a big red building", + "pred": "a sign that is on the side of a building" + }, + { + "label": "people that are walking in some grass", + "pred": "a dog chasing a sheep in a grassy field" + }, + { + "label": "a couple giraffes staring in the same direction", + "pred": "two giraffes standing in the middle of a field" + }, + { + "label": "a sign that is on the side of a pole", + "pred": "a sign that is on the side of a building" + }, + { + "label": "people that are outside a double high bus", + "pred": "a double decker bus on a city street" + }, + { + "label": "goats in a big grassy field out doors", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "an up close shot of a seagull flying in front of the beach", + "pred": "a seagull flying over a beach near the ocean" + }, + { + "label": "a woman in a red dress cutting a cake with a knife", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a dog with a cowboy hat on its head", + "pred": "a dog wearing a hat sitting in a car" + }, + { + "label": "people ride horses on a sidewalk adjacent to trees", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a train that is on a rail road track", + "pred": "people standing on a platform next to a train" + }, + { + "label": "a flock of sheep lie down in a field", + "pred": "a herd of sheep grazing on a lush green field" + }, + { + "label": "not many passengers on the bus", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "birds on a perch with some bananas", + "pred": "a bird sitting on top of a banana tree" + }, + { + "label": "the woman is getting ready to cut a piece of the desert", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a sheep running through the field of an event", + "pred": "a dog chasing a sheep in a grassy field" + }, + { + "label": "a sheep is walking along a wide field", + "pred": "a dog chasing a sheep in a grassy field" + }, + { + "label": "a herd of giraffes in a zoo enclosure", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "the stop sign is visible for everyone to see", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a close up view of a stop sign in a neighborhood", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a stop sign with rain drops on it near some buildings", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "people are riding horses next to the trees", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "various vehicles driving on a road surrounded by trees", + "pred": "a yellow and blue bus driving down a street" + }, + { + "label": "a red stop sign sitting on top of a metal pole", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a sheep is on a field of grass with two men walking around it", + "pred": "a dog chasing a sheep in a grassy field" + }, + { + "label": "giraffes are in a large pin", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a small black and orange bird is perched on a table with banana peels in it", + "pred": "a bird sitting on top of a banana tree" + }, + { + "label": "zebras standing in a close little group by a fence", + "pred": "giraffes that are standing in the dirt" + }, + { + "label": "a bus travels down the street with many cars on a sunny day", + "pred": "a yellow and blue bus driving down a street" + }, + { + "label": "a small black bird is standing on a tray", + "pred": "a bird sitting on top of a banana tree" + }, + { + "label": "a large blue train is coming down some tracks", + "pred": "people standing on a platform next to a train" + }, + { + "label": "a very close-up view of a stop sign", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a yellow and blue bus is on a busy street", + "pred": "a yellow and blue bus driving down a street" + }, + { + "label": "a bus coming around the corner on a city street", + "pred": "a public transit bus on a city street" + }, + { + "label": "a brightly colored train is stopped on the tracks to let passengers on", + "pred": "people standing on a platform next to a train" + }, + { + "label": "green yellow black white and orange birds and some plants", + "pred": "a bird sitting on top of a banana tree" + }, + { + "label": "two giraffes standing in high grass near each other", + "pred": "two giraffes standing in the middle of a field" + }, + { + "label": "traffic moves on a busy urban street with a crane", + "pred": "a yellow and blue bus driving down a street" + }, + { + "label": "a bird that is flying high over the sky", + "pred": "a flock of birds flying over a lush green hillside" + }, + { + "label": "a street light that shows, horse crossing on it", + "pred": "a traffic light on a city street" + }, + { + "label": "a bus traveling down the road, on the tar", + "pred": "a public transit bus on a city street" + }, + { + "label": "buses that are parked next to each other", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a bus that is next to a bunch of cars", + "pred": "a yellow and blue bus driving down a street" + }, + { + "label": "the back of a bus from inside", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "giraffes looking at the camera with alert looks", + "pred": "two giraffes standing in the middle of a field" + }, + { + "label": "a man stands near a passenger train holding a flag", + "pred": "people standing on a platform next to a train" + }, + { + "label": "a gentleman is waving a flag at people passing by in a train", + "pred": "people standing on a platform next to a train" + }, + { + "label": "a lone bird soaring over a lush green valley", + "pred": "a flock of birds flying over a lush green hillside" + }, + { + "label": "a large bird in the air over a heavily forested area", + "pred": "a flock of birds flying over a lush green hillside" + }, + { + "label": "a woman cutting into a cake", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a busy street with several lanes and a crossing sign", + "pred": "a street sign on the side of a road" + }, + { + "label": "fast commuter train moving past an outdoor platform", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a hawk hovering high above a wooded city", + "pred": "a flock of birds flying over a lush green hillside" + }, + { + "label": "a woman is steering a boat with a pole", + "pred": "a man that is standing in the water with an umbrella" + }, + { + "label": "a busy city intersection on a cloudy day", + "pred": "a street sign on the side of a road" + }, + { + "label": "a traffic signal at an intersection depicting \"horse crossing\"", + "pred": "a traffic light on a city street" + }, + { + "label": "a pole that has a couple of signs on it", + "pred": "a street sign on the side of a road" + }, + { + "label": "street signs on a pole on a busy intersection", + "pred": "a street sign on the side of a road" + }, + { + "label": "a bus that is parked outside of some buildings", + "pred": "a public transit bus on a city street" + }, + { + "label": "a pole with stop lights and a horse walking sign", + "pred": "a traffic light on a city street" + }, + { + "label": "a woman sitting on the bow of a boat using a pole to pilot the boat", + "pred": "a man that is standing in the water with an umbrella" + }, + { + "label": "a large bird flying across a valley with a lot of trees in it", + "pred": "a flock of birds flying over a lush green hillside" + }, + { + "label": "a girl is playing with a teddy bear in a bathroom", + "pred": "a person in a kitchen with a plate of food" + }, + { + "label": "the inside of a city bus in a bus depot", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "two white bullet trains parked at a train station", + "pred": "a white and black train sitting on top of a track" + }, + { + "label": "a train on the track pulling by a train station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a bus with destination signs drives around a curve where children stand", + "pred": "a public transit bus on a city street" + }, + { + "label": "a train pulling into a station outside during the day", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a passenger train moving through a rail yard", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a person holding a stick, pushing a boat near a bunch of bamboo reeds", + "pred": "a man that is standing in the water with an umbrella" + }, + { + "label": "a bus drives on a paved road with markings", + "pred": "a public transit bus on a city street" + }, + { + "label": "street sign in the shape of a person riding a horse with a person under", + "pred": "a traffic light on a city street" + }, + { + "label": "the light shows safe for animal crossing on the street", + "pred": "a traffic light on a city street" + }, + { + "label": "the inside of an empty public bus with black seats", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "a little girl reaches for some wipes while her stuffed bear sits on the toilet", + "pred": "a person in a kitchen with a plate of food" + }, + { + "label": "two white trains are parked side by side", + "pred": "a white and black train sitting on top of a track" + }, + { + "label": "a baby giraffe walking away from the shady area", + "pred": "a giraffe standing in a dirt field" + }, + { + "label": "a man is sitting in a boat guiding down the stream", + "pred": "a man that is standing in the water with an umbrella" + }, + { + "label": "a long passenger train pulling up to a station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "signs are on a wood pole", + "pred": "a street sign on the side of a road" + }, + { + "label": "a women who is rowing on a boat", + "pred": "a man that is standing in the water with an umbrella" + }, + { + "label": "two trains on a track near one another", + "pred": "a white and black train sitting on top of a track" + }, + { + "label": "a red and yellow train is shown on the train tracks", + "pred": "a train on a train track at a train station" + }, + { + "label": "a little girl standing next to a teddy bear using a toilet", + "pred": "a person in a kitchen with a plate of food" + }, + { + "label": "a red train pulling into the station under a steel framed roof", + "pred": "a train on a train track at a train station" + }, + { + "label": "a red and yellow train at station under a glass roof", + "pred": "a train on a train track at a train station" + }, + { + "label": "two white trains on tracks next to a station", + "pred": "a white and black train sitting on top of a track" + }, + { + "label": "a train sits running in a modern station", + "pred": "a train on a train track at a train station" + }, + { + "label": "a red train parked under a sheltered station area", + "pred": "a train on a train track at a train station" + }, + { + "label": "a small giraffe standing on top of a dirt field", + "pred": "a giraffe standing in a dirt field" + }, + { + "label": "a little girl shows her stuffed bear how to use the bathroom", + "pred": "a person in a kitchen with a plate of food" + }, + { + "label": "the black street pole has three different signs on it", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a man is riding a horse in an open field", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "a little girl plays at changing her teddy bear's diaper", + "pred": "a person in a kitchen with a plate of food" + }, + { + "label": "a street sign at an intersection of library way and madison avenue", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "two white passenger trains are parked on the tracks, side by side", + "pred": "a white and black train sitting on top of a train track" + }, + { + "label": "cowboy riding a horse in a huge pasture", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "a street sign for library way and madison avenue above a one way arrow", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a man riding a horse in the middle of the mountain range", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "a one-way sign at library way and madison ave", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "people standing around sheep on a field", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "people standing next to sheep and feeding them", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "an old man sitting on top of a horse next to the mountains", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "a man wearing cowboy gear is sitting on a horse", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "a one way sign and two other signs mounted to a pole", + "pred": "a street sign on a pole in front of a building" + }, + { + "label": "a crowd of people by the steps feed sheep", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "birds flying around a couple of waves near the ocean", + "pred": "a person walking on the beach with a flock of birds" + }, + { + "label": "a man standing on the beach watching some sea bird feed", + "pred": "a person walking on the beach with a flock of birds" + }, + { + "label": "a red and white sign a car and some buildings", + "pred": "a no parking sign on a pole on a city street" + }, + { + "label": "a small street sign sits on a pole", + "pred": "a no parking sign on a pole on a city street" + }, + { + "label": "a small giraffe walking around in an exhibit", + "pred": "a giraffe standing in a dirt area next to a fence" + }, + { + "label": "men feed some sheep", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a street light is on at the top of a hilll", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a street sign with groffetti on it on a poll", + "pred": "a no parking sign on a pole on a city street" + }, + { + "label": "a giraffe in its pen some dirt logs and a fence", + "pred": "a giraffe standing in a dirt area next to a fence" + }, + { + "label": "an intersection with a street sign, traffic sign and a street light", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a stop sign and lighted lamp post along a street at dusk", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a city street at dusk with a street light that is on and a stop sign across the street", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "cars travelling on a street with several traffic lights", + "pred": "cars parked on the side of the road" + }, + { + "label": "the woman sits on the curb writing on a notepad near a fire hydrant", + "pred": "a woman sitting on the ground next to a fire hydrant" + }, + { + "label": "two buses in city with other cars and trees", + "pred": "a bus driving down a street next to trees" + }, + { + "label": "a man sitting with headphones on near several birds", + "pred": "a man standing on top of a dock next to a flock of birds" + }, + { + "label": "a woman sitting down with a notepad in her hand", + "pred": "a woman sitting on the ground next to a fire hydrant" + }, + { + "label": "vehicles providing ground transportation are shown in the photo: streetcar, tourbus, classic car and family cars", + "pred": "a bus driving down a street next to trees" + }, + { + "label": "a number of birds flying over a body of water", + "pred": "a person walking on the beach with a flock of birds" + }, + { + "label": "a flock of birds surround a man sitting on a bench", + "pred": "a man standing on top of a dock next to a flock of birds" + }, + { + "label": "a light shining on the street at night time", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a small giraffe walking on a dirt ground", + "pred": "a giraffe standing in a dirt area next to a fence" + }, + { + "label": "an old firetruck sits empty in a parking lot", + "pred": "a red and white fire truck parked in a parking lot" + }, + { + "label": "the man is sitting by the water feeding the birds", + "pred": "a man standing on top of a dock next to a flock of birds" + }, + { + "label": "a sign mounted to a pole that reads \" no stops \"", + "pred": "a no parking sign on a pole on a city street" + }, + { + "label": "an old bus and a trolley car going down the road", + "pred": "a bus driving down a street next to trees" + }, + { + "label": "a woman sitting next to a fire hydrant with a notebook in hand", + "pred": "a woman sitting on the ground next to a fire hydrant" + }, + { + "label": "a young woman sitting on a curb next to a fire hydrant writing on a notepad", + "pred": "a woman sitting on the ground next to a fire hydrant" + }, + { + "label": "a man sitting around many birds", + "pred": "a man standing on top of a dock next to a flock of birds" + }, + { + "label": "a street sign that has been written on", + "pred": "a no parking sign on a pole on a city street" + }, + { + "label": "a fire truck parked in a parking lot with other trucks", + "pred": "a red and white fire truck parked in a parking lot" + }, + { + "label": "a fire engine parked in a parking lot", + "pred": "a red and white fire truck parked in a parking lot" + }, + { + "label": "a number of people standing near a number of sheep", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "cars that are along this street", + "pred": "cars parked on the side of the road" + }, + { + "label": "a man standing on a beach in front of the ocean", + "pred": "a person walking on the beach with a flock of birds" + }, + { + "label": "old style bus and trolley going down a modern street", + "pred": "a bus driving down a street next to trees" + }, + { + "label": "a person sitting on a bench near many birds", + "pred": "a man standing on top of a dock next to a flock of birds" + }, + { + "label": "a woman sitting outside writing and drinking coffee", + "pred": "a woman sitting on the ground next to a fire hydrant" + }, + { + "label": "cars sit parked on the side of a street", + "pred": "cars parked on the side of the road" + }, + { + "label": "a old bus that is next to a trolly on the street", + "pred": "a bus driving down a street next to trees" + }, + { + "label": "a fire truck parked in a lot", + "pred": "a red and white fire truck parked in a parking lot" + }, + { + "label": "a man is standing outside of the water observing the huge flock of birds", + "pred": "a person walking on the beach with a flock of birds" + }, + { + "label": "a fire truck sitting in the stations park lot", + "pred": "a red and white fire truck parked in a parking lot" + }, + { + "label": "cars parked along a street with a street light that is green", + "pred": "cars parked on the side of the road" + }, + { + "label": "a busy traffic area on a street during the day", + "pred": "cars parked on the side of the road" + }, + { + "label": "a white swan is swimming near a docked boat", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a man who is sitting down next to a body of water", + "pred": "a person sitting on a bench next to a body of water" + }, + { + "label": "a bus stops to load and unload passengers", + "pred": "a city bus parked on the side of the road" + }, + { + "label": "three sheep eating grass near a water source", + "pred": "two sheep standing on top of a lush green field" + }, + { + "label": "the man is on the edge to take a picture", + "pred": "a man standing on top of a ledge with a bird flying over him" + }, + { + "label": "the signs are clearly posted on the street for us to see", + "pred": "a street sign on a pole in front of a blue sky" + }, + { + "label": "a yellow and red train riding into a station", + "pred": "a yellow and red train traveling down train tracks" + }, + { + "label": "a giraffe leaned over in a plush field next to some deer", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a red double decker bus that is in the middle of the road", + "pred": "a red double decker bus driving down a street" + }, + { + "label": "sign of arch street fire department saying \"he who laughs last thinks slowest\"", + "pred": "a sign that is on the side of a building" + }, + { + "label": "a bus stops to pick up some passengers", + "pred": "a public transit bus on a city street" + }, + { + "label": "people stand on the sidewalk waiting for the bus to come", + "pred": "a bus that is parked on the side of the street" + }, + { + "label": "a single rainbow is seen between a building and a road sign", + "pred": "a street sign on a pole on a city street" + }, + { + "label": "a street intersection through a window", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "man cradling dog dressed in uniform with it's head resting on his shoulder", + "pred": "a man wearing a hat with a sheep on it" + }, + { + "label": "a corner with a stop sign, a no entry sign and a one way sign in front of a brick wall with graffiti", + "pred": "a street sign with graffiti on it" + }, + { + "label": "a barefoot woman sitting in a chair relaxing", + "pred": "a woman sitting on a chair in front of a window" + }, + { + "label": "the red and white train is waiting at the station", + "pred": "a train is pulling into a train station" + }, + { + "label": "shaggy haired sheep standing beside a building", + "pred": "a herd of sheep standing next to each other" + }, + { + "label": "street signs hanging on a pole", + "pred": "a number of street signs on a pole" + }, + { + "label": "a bus traveling down the road at night", + "pred": "a city bus driving down a city street" + }, + { + "label": "a fire hydrant with several outlets on it by a street side", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a dog sitting in a vehicle with a st. patrick hat on", + "pred": "a dog sitting in the driver's seat of a car" + }, + { + "label": "a stop sign and street signs near mountains", + "pred": "a stop sign and a street sign on a pole" + }, + { + "label": "people expressing their right to protest violence", + "pred": "a large group of people standing in front of a stop sign" + }, + { + "label": "two sheep and a ram stand next to a fence in the yard", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a long row of train carts sitting in a yard of tracks", + "pred": "a train yard filled with lots of train cars" + }, + { + "label": "a cat curled up in a box with a pirates hat on", + "pred": "a cat that is laying down in a box" + }, + { + "label": "a train stops at the station while people hurry to get on", + "pred": "a train that is stopped at a train station" + }, + { + "label": "a small train that is traveling down railroad tracks", + "pred": "a train traveling down train tracks next to a street" + }, + { + "label": "the cars are travelling down the wet road", + "pred": "a street sign on the corner of a street" + }, + { + "label": "a tall giraffe standing in the field", + "pred": "a giraffe standing on top of a lush green field" + }, + { + "label": "a passenger train that is traveling down railroad tracks", + "pred": "a yellow and white train traveling down train tracks" + }, + { + "label": "two children are feeding a giraffe and trees", + "pred": "a young girl feeding a giraffe at a zoo" + }, + { + "label": "people sit on a motorcycle next to a white car", + "pred": "cars are stopped at a red light" + }, + { + "label": "a field of giraffes roaming together", + "pred": "a herd of giraffe standing on top of a lush green field" + }, + { + "label": "dogs running around in a field", + "pred": "a dog standing on top of a grass covered field" + }, + { + "label": "bus stopped at the side of the road", + "pred": "a white and black bus parked next to a fence" + }, + { + "label": "an intersection with a stoplight on a roadway that has no vehicles traveling on it", + "pred": "a traffic light sitting on the side of a road" + }, + { + "label": "two green street lights in front of a building with a lot of windows", + "pred": "a traffic light in front of a tall building" + }, + { + "label": "a sticker has been placed onto a fire hydrant on a sidewalk", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a man getting water from a fire hydrant on a sidewalk", + "pred": "a person standing next to a fire hydrant" + }, + { + "label": "a locomotive train carrying carts down a track", + "pred": "a train on the tracks in front of a building" + }, + { + "label": "a man leans on a pole as he bends down", + "pred": "a person standing next to a fire hydrant" + }, + { + "label": "sign in the snow that warns mountain goers", + "pred": "a sign that is on a pole in the snow" + }, + { + "label": "the woman is bending over to pick something up off of the ground", + "pred": "a person standing next to a fire hydrant" + }, + { + "label": "a street sign with small shops", + "pred": "a street sign on the side of a building" + }, + { + "label": "a building and some signs and street light and phone lines", + "pred": "a street sign sitting on top of a pole" + }, + { + "label": "a person holds on to a post while bending over on a side walk", + "pred": "a person standing next to a fire hydrant" + }, + { + "label": "a yellow and black sign for a restaurant and lounge with red arrow pointing downwards", + "pred": "a street sign sitting on top of a pole" + }, + { + "label": "a train is coming down the tracks near a building", + "pred": "a train on the tracks in front of a building" + }, + { + "label": "a black train with steam coming from underneath, passes by a building", + "pred": "a train on the tracks in front of a building" + }, + { + "label": "a stop sign in front of a large building", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a train sits on train tracks under a bridge", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a stop sign with an arabic translation on it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a stop sign is posted on the corner in two languages", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a train riding on tracks underneath a bridge", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "the blue, yellow, and purple train is running down the track", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a cave sign is next to a restaurant and lounge", + "pred": "a street sign sitting on top of a pole" + }, + { + "label": "a purple train with a yellow front is under neath an over path", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a stop sign on a city street at night", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a freight train passes by drab industrial buildings", + "pred": "a train on the tracks in front of a building" + }, + { + "label": "a large sign that says cave next to a sign that says resturant and lounge", + "pred": "a street sign sitting on top of a pole" + }, + { + "label": "two cows standing and grazing in an open pasture", + "pred": "two brown horses grazing in a grassy field" + }, + { + "label": "two brown cows on a pasture of green grass", + "pred": "two brown horses grazing in a grassy field" + }, + { + "label": "men riding on horses and with other ones", + "pred": "a herd of horses walking down a dirt road" + }, + { + "label": "6 open umbrellas of various colors hanging on a line", + "pred": "colorful umbrellas hanging from the ceiling" + }, + { + "label": "the sun shining through different colored umbrellas", + "pred": "colorful umbrellas hanging from the ceiling" + }, + { + "label": "two animals standing in a grassy field by trees", + "pred": "two brown horses grazing in a grassy field" + }, + { + "label": "multi-colored umbrellas hung like a mobile on a wire", + "pred": "colorful umbrellas hanging from the ceiling" + }, + { + "label": "two cows grazing in a field near some trees", + "pred": "two brown horses grazing in a grassy field" + }, + { + "label": "two men guiding cows while behind on horses", + "pred": "a herd of horses walking down a dirt road" + }, + { + "label": "a man sits on the couch with two cats on his lap", + "pred": "a man sitting on a couch with a cat" + }, + { + "label": "a man resting on a couch with two different colored cats", + "pred": "a man sitting on a couch with a cat" + }, + { + "label": "a burgundy low-rider show-quality, hot rod chevy truck", + "pred": "a red pick up truck parked in a parking lot" + }, + { + "label": "a man sitting on a couch has two cats on his lap", + "pred": "a man sitting on a couch with a cat" + }, + { + "label": "two cows in a meadow with a historic structure", + "pred": "two brown horses grazing in a grassy field" + }, + { + "label": "a man and his two cats sitting on the couch", + "pred": "a man sitting on a couch with a cat" + }, + { + "label": "six umbrellas floating in the air near a building", + "pred": "colorful umbrellas hanging from the ceiling" + }, + { + "label": "two men on horses drive cattle down the road", + "pred": "a herd of horses walking down a dirt road" + }, + { + "label": "umbrellas of different colors are hanging in the sun", + "pred": "colorful umbrellas hanging from the ceiling" + }, + { + "label": "two people on horseback herding cattle through the woods", + "pred": "a herd of horses walking down a dirt road" + }, + { + "label": "an old model red chevrolet truck is on the pavement", + "pred": "a red pick up truck parked in a parking lot" + }, + { + "label": "a classic red truck is parked in the lot", + "pred": "a red pick up truck parked in a parking lot" + }, + { + "label": "a very bright and shinny refurbished red truck", + "pred": "a red pick up truck parked in a parking lot" + }, + { + "label": "a dog sitting on a chair underneath a painting", + "pred": "a dog sitting on a chair in a room" + }, + { + "label": "two dogs are playing together on the grass", + "pred": "two dogs playing with each other in a grassy field" + }, + { + "label": "a man and a dog on a boat in the water", + "pred": "people on a boat in the water" + }, + { + "label": "the black and white locomotive is on the train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a black and brown large dog sits on an upholstered chair", + "pred": "a dog sitting on a chair in a room" + }, + { + "label": "a man standing next to a truck near a forest hillside", + "pred": "a man standing in the middle of a dirt road" + }, + { + "label": "days playing with each other on a green grass covered field", + "pred": "two dogs playing with each other in a grassy field" + }, + { + "label": "a vintage red truck parked in a parking lot under a blue sky", + "pred": "a red pick up truck parked in a parking lot" + }, + { + "label": "a cat sitting by a laptop but staring at a person", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "a dog is sitting on an armchair next to a fridge", + "pred": "a dog sitting on a chair in a room" + }, + { + "label": "small train coming down the rail road tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "gray and white cat sitting next to open laptop", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "two puppies playing in the green grass of their yard", + "pred": "two dogs playing with each other in a grassy field" + }, + { + "label": "a man in a neon green shirt and black pants holding a pink umbrella", + "pred": "a man holding a frisbee while standing on a sidewalk" + }, + { + "label": "a woman with a red umbrella is walking two dogs in the snow", + "pred": "a little girl holding an umbrella in the snow" + }, + { + "label": "a man in a florescent green hoodie holding a fuchsia umbrella", + "pred": "a man holding a frisbee while standing on a sidewalk" + }, + { + "label": "a man on a boat with his dog", + "pred": "people on a boat in the water" + }, + { + "label": "a man sailing a boat with his dog riding in front", + "pred": "people on a boat in the water" + }, + { + "label": "a man and his dog in a boat, on the water", + "pred": "people on a boat in the water" + }, + { + "label": "a train with empty rail cars moving down a train track", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "locomotive engine and cargo cars traveling on train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a dog relaxes on an armchair in a living room", + "pred": "a dog sitting on a chair in a room" + }, + { + "label": "a black and brown dog sits curled in a flowered wing chair", + "pred": "a dog sitting on a chair in a room" + }, + { + "label": "a train traveling down train tracks in the countryside", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "large dog lying on couch with blanket in living room", + "pred": "a dog sleeping on a couch in a living room" + }, + { + "label": "a man holding an umbrella on a sidewalk", + "pred": "a man holding a frisbee while standing on a sidewalk" + }, + { + "label": "a man standing next to a muddy pick up truck", + "pred": "a man standing in the middle of a dirt road" + }, + { + "label": "a cat trying next to his owner who is using the computer", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "a man holding and dancing with an umbrella", + "pred": "a man holding a frisbee while standing on a sidewalk" + }, + { + "label": "a cat looks away from an open computer", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "an animal, curled into a ball, takes a nap", + "pred": "a dog laying on a bed with its head on a pillow" + }, + { + "label": "a person with a white umbrella, with two dogs", + "pred": "a little girl holding an umbrella in the snow" + }, + { + "label": "a grey and white cat sits near a laptop", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "a woman is walking her dogs on the city sidewalks through the newly fallen snow", + "pred": "a little girl holding an umbrella in the snow" + }, + { + "label": "a man stands in front of a pickup truck", + "pred": "a man standing in the middle of a dirt road" + }, + { + "label": "a brindle and a grey and white dog playing on grass", + "pred": "two dogs playing with each other in a grassy field" + }, + { + "label": "two dogs playing with each other in the grass", + "pred": "two dogs playing with each other in a grassy field" + }, + { + "label": "a person looking at a train going by", + "pred": "a man standing on the side of a street next to a train" + }, + { + "label": "a dog laying on a couch in a living room", + "pred": "a dog sleeping on a couch in a living room" + }, + { + "label": "a person with an umbrella and two dogs walking in the snow", + "pred": "a little girl holding an umbrella in the snow" + }, + { + "label": "a street with some trees around it", + "pred": "a street light sitting on the side of a road" + }, + { + "label": "a man holding a pink umbrella standing on his tip toes", + "pred": "a man holding a frisbee while standing on a sidewalk" + }, + { + "label": "a dog relaxing on the couch with a blanket", + "pred": "a dog sleeping on a couch in a living room" + }, + { + "label": "a man and his truck on a trail in a forest", + "pred": "a man standing in the middle of a dirt road" + }, + { + "label": "a man and a dog fishing on a boat in a lake with two boats", + "pred": "people on a boat in the water" + }, + { + "label": "a man walking down the street carrying a suitcase", + "pred": "a man walking down the street with an umbrella" + }, + { + "label": "two currently unused city parking meters", + "pred": "a street light sitting on the side of a road" + }, + { + "label": "a woman is walking two dogs in the snow", + "pred": "a little girl holding an umbrella in the snow" + }, + { + "label": "a man is holding a suitcase at a city intersection", + "pred": "a man walking down the street with an umbrella" + }, + { + "label": "a puppy all curled up taking a nap", + "pred": "a dog laying on a bed with its head on a pillow" + }, + { + "label": "a muddied man standing next to a muddied truck", + "pred": "a man standing in the middle of a dirt road" + }, + { + "label": "a cold dog curled up and going to sleep", + "pred": "a dog laying on a bed with its head on a pillow" + }, + { + "label": "a red boat is along the waters edge with houses on the land", + "pred": "a red and white boat floating on top of a body of water" + }, + { + "label": "a person standing by a light post holding a large suitcase", + "pred": "a man walking down the street with an umbrella" + }, + { + "label": "a dog curled up on a couch with blankets and pillows", + "pred": "a dog sleeping on a couch in a living room" + }, + { + "label": "two old street parking meters surrounded by weeds", + "pred": "a street light sitting on the side of a road" + }, + { + "label": "a red boat is floating near some houses", + "pred": "a red and white boat floating on top of a body of water" + }, + { + "label": "a woman holding a cigarette smiling at the camera on a sunny day", + "pred": "a woman in a pink shirt is holding a pink umbrella" + }, + { + "label": "a man is carrying a suitcase through the street", + "pred": "a man walking down the street with an umbrella" + }, + { + "label": "a black/white photo of a poolside dining area with the umbrellas colored", + "pred": "a row of umbrellas on a rainy day" + }, + { + "label": "people holding umbrellas eating a meal outdoors", + "pred": "people sitting around a table with umbrellas" + }, + { + "label": "the red boat is anchored on the shore of the lake in front of the houses", + "pred": "a red and white boat floating on top of a body of water" + }, + { + "label": "a row of tables with the reflections showing in the water below", + "pred": "a row of umbrellas on a rainy day" + }, + { + "label": "a cat resting on a laptop next to a person", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a short haired dog curled up sleeping contently", + "pred": "a dog laying on a bed with its head on a pillow" + }, + { + "label": "a woman standing next to a table covered with plates of mostly eaten food", + "pred": "people sitting around a table with umbrellas" + }, + { + "label": "a small brown dog curled up in sleep", + "pred": "a dog laying on a bed with its head on a pillow" + }, + { + "label": "a family holding umbrellas at a backyard barbecue", + "pred": "people sitting around a table with umbrellas" + }, + { + "label": "a beautiful lady walking with a pink umbrella holding bottled water and a cigarette", + "pred": "a woman in a pink shirt is holding a pink umbrella" + }, + { + "label": "the parking meter stands unused next to the street", + "pred": "a street light sitting on the side of a road" + }, + { + "label": "a boat on a lake near some houses in an rural area", + "pred": "a red and white boat floating on top of a body of water" + }, + { + "label": "four men sitting on park benches", + "pred": "people sitting on a park bench" + }, + { + "label": "two men walking down a city streen next to a blue pole", + "pred": "a man walking down the street with an umbrella" + }, + { + "label": "a man using his laptop computer while a cat sits on his lap", + "pred": "a man sitting on a couch with a cat on his lap" + }, + { + "label": "multi-colored umbrellas in a black and white picture near the water", + "pred": "a row of umbrellas on a rainy day" + }, + { + "label": "a train is passing by while an onlooker is standing next to track", + "pred": "a man standing on the side of a street next to a train" + }, + { + "label": "an orange cat sunning itself on a lawn chair", + "pred": "a brown and white cat sitting on a chair" + }, + { + "label": "a cat sits on a wicker chair in the sun", + "pred": "a brown and white cat sitting on a chair" + }, + { + "label": "a women smiling posing for a picture", + "pred": "a woman is posing for a picture in front of a fence" + }, + { + "label": "a man sitting in a chair with a cat and a laptop", + "pred": "a man sitting on a couch with a cat on his lap" + }, + { + "label": "a family having lunch in their backyard in the rain", + "pred": "people sitting around a table with umbrellas" + }, + { + "label": "a dark skinned woman posses beneath an umbrella", + "pred": "a woman in a pink shirt is holding a pink umbrella" + }, + { + "label": "a parking meter near the side of the road", + "pred": "a street light sitting on the side of a road" + }, + { + "label": "covered seating in front of a restaurant by a lake", + "pred": "a row of umbrellas on a rainy day" + }, + { + "label": "men playing games on a table in the park", + "pred": "people sitting on a park bench" + }, + { + "label": "a park scene includes men playing chess at folding tables", + "pred": "people sitting on a park bench" + }, + { + "label": "a boat passes by waterfront houses flanked by trees", + "pred": "a red and white boat floating on top of a body of water" + }, + { + "label": "a man standing in front of the amtrak train", + "pred": "a man standing on the side of a street next to a train" + }, + { + "label": "a cat sitting on the man's lap while the man types on the laptop", + "pred": "a man sitting on a couch with a cat on his lap" + }, + { + "label": "a cat laying on the track pad of a laptop", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a cat sitting on a chair outside in the sun", + "pred": "a brown and white cat sitting on a chair" + }, + { + "label": "cat in front of a laptop looking up from the screen", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "an amtrack train is on the railroad tracks", + "pred": "a man standing on the side of a street next to a train" + }, + { + "label": "a woman standing outside under a pink umbrella", + "pred": "a woman in a pink shirt is holding a pink umbrella" + }, + { + "label": "a young woman with a beaded necklace and white shirt", + "pred": "a woman is posing for a picture in front of a fence" + }, + { + "label": "a woman with an umbrella on the street", + "pred": "a woman in a pink shirt is holding a pink umbrella" + }, + { + "label": "an apple user and his faithful cat surf the web", + "pred": "a man sitting on a couch with a cat on his lap" + }, + { + "label": "people around a metal table with umbrellas", + "pred": "people sitting around a table with umbrellas" + }, + { + "label": "a woman smiling and posing for a picture", + "pred": "a woman is posing for a picture in front of a fence" + }, + { + "label": "a cat sitting in a chair enjoying the sun", + "pred": "a brown and white cat sitting on a chair" + }, + { + "label": "a desk with both a laptop computer and a desktop computer", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a man using his laptop while his cat looks at the screen", + "pred": "a man sitting on a couch with a cat on his lap" + }, + { + "label": "a train on train tracks with a person", + "pred": "a man standing on the side of a street next to a train" + }, + { + "label": "a baby elephant having fun playing in a river", + "pred": "a large elephant standing on top of a body of water" + }, + { + "label": "a cat sitting on a wicker chair in the sun", + "pred": "a brown and white cat sitting on a chair" + }, + { + "label": "people sitting in a park doing various things such as playing chess, waiting for something with luggage, or just relaxing", + "pred": "people sitting on a park bench" + }, + { + "label": "4 men play a game on a park bench", + "pred": "people sitting on a park bench" + }, + { + "label": "a woman wearing a white top smiles at the camera", + "pred": "a woman is posing for a picture in front of a fence" + }, + { + "label": "brief cases are piled up on the sidewalks", + "pred": "a man standing next to a pile of suitcases" + }, + { + "label": "pieces of luggage are on display", + "pred": "a man standing next to a pile of suitcases" + }, + { + "label": "a baby elephant walking through a shallow pool of flowing water", + "pred": "a large elephant standing on top of a body of water" + }, + { + "label": "a young elephant in a river with rappids", + "pred": "a large elephant standing on top of a body of water" + }, + { + "label": "a woman in a white shirt standing in front of a fence smiling", + "pred": "a woman is posing for a picture in front of a fence" + }, + { + "label": "an elephant standing near a tree", + "pred": "an elephant that is standing in the grass" + }, + { + "label": "an elephant in a grassy field with trees", + "pred": "an elephant that is standing in the grass" + }, + { + "label": "a brown elephant walking in the moving water", + "pred": "a large elephant standing on top of a body of water" + }, + { + "label": "a large tusked elephant walking in a wooded area", + "pred": "an elephant that is standing in the grass" + }, + { + "label": "a cat is seated in a window sell looking outside the window", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a desk containing a desktop and laptop computers", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a mother and it's calf standing in a field", + "pred": "a black and white cow standing next to a brown and white cow" + }, + { + "label": "a man with a bear sitting with his arms crossed and his tie over his left shoulder", + "pred": "a man that is wearing a neck tie" + }, + { + "label": "a cow and a calf standing in a field", + "pred": "a black and white cow standing next to a brown and white cow" + }, + { + "label": "a cat is sitting on top of a laptop", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a home office desk with a desktop computer, large flat screen monitor, and laptop computer on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "different colored umbrellas on tables", + "pred": "a row of umbrellas on a rainy day" + }, + { + "label": "a girl with blue hair is taking a self portrait", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a cow and calf are standing in a grassy pasture", + "pred": "a black and white cow standing next to a brown and white cow" + }, + { + "label": "an elephant with red on it's face in the water", + "pred": "a large elephant standing on top of a body of water" + }, + { + "label": "a girl with her cell phone tie and blue hair", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a baby cow standing in a pen next to another cow", + "pred": "two cows standing next to each other on a dirt field" + }, + { + "label": "four brown stacked suitcases and a woman with a red purse", + "pred": "a man standing next to a pile of suitcases" + }, + { + "label": "a desk with a computer a laptop and monitor", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a yellow fluffy cat sitting in a window sill next to a window", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a desk with a laptop and a desktop computer", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a man in a shirt and tie sitting on a white chair next to a lamp", + "pred": "a man sitting on a chair in a room" + }, + { + "label": "a stack of suitcases out on the street", + "pred": "a man standing next to a pile of suitcases" + }, + { + "label": "a woman with blue hair holding her phone up", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a cat resting on top of a laptop computer", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a man with a beard in a tie sits with his arms crossed", + "pred": "a man that is wearing a neck tie" + }, + { + "label": "a man with a beard and a gray shirt and tie", + "pred": "a man that is wearing a neck tie" + }, + { + "label": "a woman with blue hair is taking a selfie", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a person sitting in a chair wearing a suit and tie", + "pred": "a man sitting on a chair in a room" + }, + { + "label": "two young elephants stand next to a wooden fence", + "pred": "elephants standing next to each other" + }, + { + "label": "a stack of luggage with an opened one on top", + "pred": "a man standing next to a pile of suitcases" + }, + { + "label": "a man with a tie is staring at something", + "pred": "a man that is wearing a neck tie" + }, + { + "label": "a long-haired cat sits on a window sill and stares outside", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "man in business clothes sits on a chair with his hands crossed", + "pred": "a man sitting on a chair in a room" + }, + { + "label": "two baby elephants take a drink from a trainer in an enclosure", + "pred": "elephants standing next to each other" + }, + { + "label": "a baby cow and a large cow standing next to each other", + "pred": "a black and white cow standing next to a brown and white cow" + }, + { + "label": "two boats are floating on the river near the shore", + "pred": "a number of boats in a body of water" + }, + { + "label": "one cow standing and one laying down within a fence", + "pred": "two cows standing next to each other on a dirt field" + }, + { + "label": "a man dressed with a tie sits in a chair", + "pred": "a man sitting on a chair in a room" + }, + { + "label": "a farm scene showing mother cow with calf in the grassy pasture", + "pred": "a black and white cow standing next to a brown and white cow" + }, + { + "label": "two boats floating next to each other on a lake", + "pred": "a number of boats in a body of water" + }, + { + "label": "an orange cat perched in a window watching outside", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "man wearing slacks and tie sitting in chair", + "pred": "a man sitting on a chair in a room" + }, + { + "label": "two elephants are standing inside of an enclosure", + "pred": "elephants standing next to each other" + }, + { + "label": "a young calf drinks from its mother's udders", + "pred": "a brown cow standing next to a black cow in a field" + }, + { + "label": "a cat sitting on top of a window ledge in the daytime", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "two boats are idly floating on a lake", + "pred": "a number of boats in a body of water" + }, + { + "label": "two elephants in an enclosure at a zoo", + "pred": "elephants standing next to each other" + }, + { + "label": "an elephant is walking through the green shrubs", + "pred": "an elephant that is standing in the grass" + }, + { + "label": "two elephants outside, one being fed, one standing", + "pred": "elephants standing next to each other" + }, + { + "label": "a woman who dyed her hair blue wearing all blue", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a mother cow with a young calf feeding in a grassy area", + "pred": "a brown cow standing next to a black cow in a field" + }, + { + "label": "two elephants walking around inside of a grassy enclosure", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "a brown and black cow is next to a fence", + "pred": "two cows standing next to each other on a dirt field" + }, + { + "label": "an adorable elephant walking through a grass covered forest", + "pred": "an elephant that is standing in the grass" + }, + { + "label": "two elephants walking along their habitat in a zoo", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "basketball players walking on court with coach in wearing dark suit", + "pred": "a large group of people playing a game of basketball" + }, + { + "label": "two people riding a small boat across a massive lake surrounded by mountains", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "people with elephants doing various activities in a river", + "pred": "elephants that are in the water" + }, + { + "label": "two large elephants walking behind a wire fence on green grass", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "a small train traveling down the railroad tracks", + "pred": "a train traveling down train tracks next to a field" + }, + { + "label": "two boats floating on a lake next to a forest", + "pred": "a number of boats in a body of water" + }, + { + "label": "two white boats travel on a wooded waterway", + "pred": "a number of boats in a body of water" + }, + { + "label": "a cow standing next to a calf in the corner of a paddock with a dirt floor", + "pred": "two cows standing next to each other on a dirt field" + }, + { + "label": "a boat in the distance in the ocean with mountains", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "a train on tracks while its snowing outside", + "pred": "a train traveling down train tracks next to a field" + }, + { + "label": "two young elephants graze on a grassy field", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "a man in a shirt and tie motioning with his hand", + "pred": "a man wearing a white shirt and a black tie" + }, + { + "label": "a speedboat sailing on open water on a partly cloudy day", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "two people sitting on a small boat floating over the ocean", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "two brown cows sitting inside a fence staring out", + "pred": "two cows standing next to each other on a dirt field" + }, + { + "label": "three pieces of luggage sitting on a floor in front of a curtain", + "pred": "a pile of luggage sitting on the floor next to a window" + }, + { + "label": "man with beard folding arms with tie over shoulder", + "pred": "a man that is wearing a neck tie" + }, + { + "label": "two elephants grazing in the grass behind a fence", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "a young man wearing a white shirt and tie", + "pred": "a man wearing a white shirt and a black tie" + }, + { + "label": "a commuter train traveling down snow covered train tracks", + "pred": "a train traveling down train tracks next to a field" + }, + { + "label": "a calf suckingling on a cows utters in grass", + "pred": "a brown cow standing next to a black cow in a field" + }, + { + "label": "a train on a train track with a sky background", + "pred": "a train traveling down train tracks next to a field" + }, + { + "label": "a collection of suitcases lined up in front of hotel curtains", + "pred": "a pile of luggage sitting on the floor next to a window" + }, + { + "label": "a baby cattle is being fed by its mother", + "pred": "a brown cow standing next to a black cow in a field" + }, + { + "label": "man in a dress shirt and tie looks in front of him", + "pred": "a man wearing a white shirt and a black tie" + }, + { + "label": "a man in a suit poses for the camera", + "pred": "a man wearing a white shirt and a black tie" + }, + { + "label": "a steel truss bridge carries a roadway over a rail yard", + "pred": "a train is coming down the tracks at a train station" + }, + { + "label": "an elephant walking across a green grass covered field", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "a cat sitting on a window sill behind mini blinds", + "pred": "a cat that is looking out of a window" + }, + { + "label": "a brown calf drinking milk from its mother", + "pred": "a brown cow standing next to a black cow in a field" + }, + { + "label": "a piece of luggage is beside bags, one in plastic", + "pred": "a pile of luggage sitting on the floor next to a window" + }, + { + "label": "the white bridge stretches out over the horizon as the transport train travels below it", + "pred": "a train is coming down the tracks at a train station" + }, + { + "label": "a man in a suit and tie holding up a hand", + "pred": "a man wearing a white shirt and a black tie" + }, + { + "label": "a long bridge with cars has a train going underneath", + "pred": "a train is coming down the tracks at a train station" + }, + { + "label": "duffel bag, plastic travel bag, and suitcase sit on carpet in front of drapes", + "pred": "a pile of luggage sitting on the floor next to a window" + }, + { + "label": "a brown elephant is walking along the grass", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "a herd of cows are standing in a green field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "cows grazing in the field with a house", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "train on railroad tracks in green and white", + "pred": "a train traveling down train tracks next to a field" + }, + { + "label": "an elephant walking alone in a grassy area", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "an elephant walking on a grassy area during the day", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "an elephant walking along a trail next to a grass field", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "cows and steers grazing in an old-english pasture", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a canoe boat with 2 people sailing with mountainous background", + "pred": "a small boat in the middle of a large body of water" + }, + { + "label": "a suitcase as well as other types of luggage are propped up on a carpeted floor indoors", + "pred": "a pile of luggage sitting on the floor next to a window" + }, + { + "label": "cows grazing in a grassy field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a herd of cows are by a brick house", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a very large bridge over lots of train tracks", + "pred": "a train is coming down the tracks at a train station" + }, + { + "label": "a car bridge going over a commuter train", + "pred": "a train is coming down the tracks at a train station" + }, + { + "label": "a teddy bear and a stuffed raccoon sitting on a faded wooden outdoor chair", + "pred": "a teddy bear sitting on top of a wooden bench" + }, + { + "label": "two stuffed teddy bears sitting on a wooden chair in a yard", + "pred": "a teddy bear sitting on top of a wooden bench" + }, + { + "label": "a woman holding a red and white umbrella while standing in a cave", + "pred": "a person standing in the rain with an umbrella" + }, + { + "label": "a cat leans over a desk and paws at an army knife", + "pred": "a black and white cat laying on top of a wooden table" + }, + { + "label": "a cat sits in the window behind the blind and looks outside", + "pred": "a cat that is looking out of a window" + }, + { + "label": "a cat reaching for a knife that has it's blade out", + "pred": "a black and white cat laying on top of a wooden table" + }, + { + "label": "a black and white cat sitting on a bench reaching for a toothbrush on a table", + "pred": "a black and white cat laying on top of a wooden table" + }, + { + "label": "cattle grazing on grass near a lake surrounded by mountain", + "pred": "a herd of animals standing on top of a lush green hillside" + }, + { + "label": "two stuffed animals are sitting on a broken wooden chair", + "pred": "a teddy bear sitting on top of a wooden bench" + }, + { + "label": "lady bent over with red polka dot umbrella inside a brick building", + "pred": "a person standing in the rain with an umbrella" + }, + { + "label": "two stuffed animals in a wooden outdoor chair", + "pred": "a teddy bear sitting on top of a wooden bench" + }, + { + "label": "woman in high heels in a crumbling room", + "pred": "a person standing in the rain with an umbrella" + }, + { + "label": "two little bears sitting on a weathered wood chair", + "pred": "a teddy bear sitting on top of a wooden bench" + }, + { + "label": "cows wandering free in the grass by the ocean", + "pred": "a herd of animals standing on top of a lush green hillside" + }, + { + "label": "woman holding up an umbrella in a rundown building", + "pred": "a person standing in the rain with an umbrella" + }, + { + "label": "girl bending down with hand bag on her shoulder petting two dogs", + "pred": "a woman petting a black and white dog" + }, + { + "label": "cows graze an open field next to the ocean", + "pred": "a herd of animals standing on top of a lush green hillside" + }, + { + "label": "five cows are grazing at a lake next to a road", + "pred": "a herd of animals standing on top of a lush green hillside" + }, + { + "label": "a black and white cat pawing at an object on a table", + "pred": "a black and white cat laying on top of a wooden table" + }, + { + "label": "a field with a bunch of cows grazing", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "cow graze in a field outside of a rural township", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a cat plays with a pocket knife on a table", + "pred": "a black and white cat laying on top of a wooden table" + }, + { + "label": "a girl kneels down to pet two dogs", + "pred": "a woman petting a black and white dog" + }, + { + "label": "a cat perched on top of a window ledge looking outside", + "pred": "a cat that is looking out of a window" + }, + { + "label": "a girl petting three dogs", + "pred": "a woman petting a black and white dog" + }, + { + "label": "man on a marked field holding a frisbee in his hand", + "pred": "a man on a field with a frisbee" + }, + { + "label": "man sitting at a picnic table using a laptop shaded by an umbrella", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "two mini elephants walking toward people on a plank", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "cattle are crossing the road to a beach front", + "pred": "a herd of animals standing on top of a lush green" + }, + { + "label": "a man holding a frisbee prepares to throw it", + "pred": "a man on a field with a frisbee" + }, + { + "label": "a child petting two dogs on the side of the street", + "pred": "a woman petting a black and white dog" + }, + { + "label": "cows grazing in a grassy open field", + "pred": "a herd of cattle grazing in a field" + }, + { + "label": "a young man holding a white ball while running through a field", + "pred": "a man on a field with a frisbee" + }, + { + "label": "a woman in a sheer dress leans down while holding an umbrella", + "pred": "a person standing in the rain with an umbrella" + }, + { + "label": "a little girl kneeling down to pet two dogs on a leash", + "pred": "a woman petting a black and white dog" + }, + { + "label": "a cat is sitting in the window in front of the window blinds", + "pred": "a cat that is looking out of a window" + }, + { + "label": "a small black dog sitting in an orange checkered chair", + "pred": "a dog that is sitting on a chair" + }, + { + "label": "a cute black dog with a white spot sitting on a chair", + "pred": "a dog that is sitting on a chair" + }, + { + "label": "a hotdog stand with outside seating and bright lights", + "pred": "a neon sign on the side of a building" + }, + { + "label": "a here of cattle grazing a field near trees", + "pred": "a herd of cattle grazing in a field" + }, + { + "label": "two elephants standing behind a rope in an enclosure", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "elephants standing next to each other", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "outdoor patio and front of a bar that serves hot dogs", + "pred": "a neon sign on the side of a building" + }, + { + "label": "a woman twirling a floral print parasol umbrella", + "pred": "a person holding a pair of scissors" + }, + { + "label": "three cows standing on a grass field under a cloudy sky", + "pred": "cows are standing in a field" + }, + { + "label": "a plaid couch with a black dog sitting on it", + "pred": "a dog that is sitting on a chair" + }, + { + "label": "parking meters are in front of an eating establishment", + "pred": "a neon sign on the side of a building" + }, + { + "label": "a woman with a striped shirt is holding an umbrella", + "pred": "a person holding a pair of scissors" + }, + { + "label": "a cat is looking out a window in front of some blinds", + "pred": "a cat that is looking out of a window" + }, + { + "label": "a person that is holding an umbrella in her left hand", + "pred": "a person holding a pair of scissors" + }, + { + "label": "cows grazing a on a grass field next to forest", + "pred": "a herd of cattle grazing in a field" + }, + { + "label": "a man sitting at a picnic table using a computer shaded by an umbrella", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a store by a street", + "pred": "a neon sign on the side of a building" + }, + { + "label": "cows that are sitting on the ground", + "pred": "cows are standing in a field" + }, + { + "label": "two large elephants waiting to enter their shelter", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a black and white view of a woman holding an umbrella", + "pred": "a person holding a pair of scissors" + }, + { + "label": "men in costume gather together under their umbrellas", + "pred": "a man walking down a street holding an umbrella" + }, + { + "label": "though not the smartest animals in the world, the cow still has a friendly face", + "pred": "a cow that is looking at the camera" + }, + { + "label": "a young child squats down in front of a bowl", + "pred": "a little boy is sitting in the dirt" + }, + { + "label": "a man sitting at a wooden bench holding a grey umbrella", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "three cows stand in a field behind a barbed wire fence", + "pred": "cows are standing in a field" + }, + { + "label": "a woman twirling an umbrella with flowers on it", + "pred": "a person holding a pair of scissors" + }, + { + "label": "a white dog laying next to a cat on a bed", + "pred": "two dogs laying on top of a bed" + }, + { + "label": "the face of a dairy cow in a pen", + "pred": "a cow that is looking at the camera" + }, + { + "label": "young people dressed in costume carry black umbrellas", + "pred": "a man walking down a street holding an umbrella" + }, + { + "label": "the man with glasses is holding an umbrella and sitting at a picnic table", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "the black dog sits alertly on the vintage chair", + "pred": "a dog that is sitting on a chair" + }, + { + "label": "a dog sitting in an orange chair looking at someone", + "pred": "a dog that is sitting on a chair" + }, + { + "label": "two elephants with a rubber ball are kept in the area with a little chain", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "boys wearing black and red uniforms and black boots carries black umbrellas", + "pred": "a man walking down a street holding an umbrella" + }, + { + "label": "a little boy kneeling down while attempting to stick his hand in a bowl of water", + "pred": "a little boy is sitting in the dirt" + }, + { + "label": "a young boy dressed in a tie plays outside by a water bowl", + "pred": "a little boy is sitting in the dirt" + }, + { + "label": "three cows laying in a field behind a barb wired fence", + "pred": "cows are standing in a field" + }, + { + "label": "the dog is perched on the seat of the car looking out the window", + "pred": "a yellow school bus driving down a street" + }, + { + "label": "a parade of people ij costumes with umbrellas", + "pred": "a man walking down a street holding an umbrella" + }, + { + "label": "costumed performers dance in unison with opened umbrellas", + "pred": "a man walking down a street holding an umbrella" + }, + { + "label": "a city street scene of a restaurant with tables outside", + "pred": "a neon sign on the side of a building" + }, + { + "label": "a cow is in its pen staring with its mouth open", + "pred": "a cow that is looking at the camera" + }, + { + "label": "dog sitting inside the cab of a yellow truck", + "pred": "a yellow school bus driving down a street" + }, + { + "label": "a dog is looking out the window of a yellow truck", + "pred": "a yellow school bus driving down a street" + }, + { + "label": "a cow is laying down with mouth open as if to say something", + "pred": "a cow that is looking at the camera" + }, + { + "label": "nicely dressed little boy gets ready to play in the dirt", + "pred": "a little boy is sitting in the dirt" + }, + { + "label": "a brown and white cow in an enclosure", + "pred": "a cow that is looking at the camera" + }, + { + "label": "two dogs laying in a bed with thick covers", + "pred": "two dogs laying on top of a bed" + }, + { + "label": "a black and white cow at market in her stall", + "pred": "a cow that is standing in a pen" + }, + { + "label": "three cows with hairy heads laying down in a field", + "pred": "cows are standing in a field" + }, + { + "label": "a little boy dipping his hand into water", + "pred": "a little boy is sitting in the dirt" + }, + { + "label": "a black and white cow in a barn next to a man", + "pred": "a cow that is standing in a pen" + }, + { + "label": "guy pedals a bike through a small village", + "pred": "a man riding a bike down the street" + }, + { + "label": "a man playing disk frizbe in a park", + "pred": "a man that is standing in the grass with a frisbee" + }, + { + "label": "a farmer inspecting cattle at a livestock auction", + "pred": "a black and white cow standing next to a crowd of people" + }, + { + "label": "a presenter projected on a large screen at a conference", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "a dog following a man on his horse in a field", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "people watching an on screen presentation of a gentleman in a suit", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "a man rides a horse and his dog follows", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "people watch a man delivering a lecture on a screen", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "a cow licking its side in an enclosure", + "pred": "a black and white cow standing next to a crowd of people" + }, + { + "label": "a person is moving green hay towards an elephant that is inside the back of a white truck", + "pred": "a black and white elephant with a stick in its mouth" + }, + { + "label": "two dogs take a nap on a bed with a blanket", + "pred": "two dogs laying on a bed next to each other" + }, + { + "label": "a dairy cow standing in a stall full of hay", + "pred": "a black and white cow standing next to a crowd of people" + }, + { + "label": "a city street with small carts bing peddled by a men on bikes", + "pred": "a man riding a bike in front of a store" + }, + { + "label": "two dogs sleep on the blankets of a bed", + "pred": "two dogs laying on a bed next to each other" + }, + { + "label": "a man pulls an elephant out of a truck", + "pred": "a black and white elephant with a stick in its mouth" + }, + { + "label": "a dog driving a yellow big rig truck next to a man", + "pred": "a yellow school bus driving down a street" + }, + { + "label": "a young man holding a bottle of beer while wearing a suit", + "pred": "a man in a suit holding a cell phone" + }, + { + "label": "a person leaning up against a metal rail while holding a rainbow colored umbrella", + "pred": "a woman is holding an umbrella over her head" + }, + { + "label": "an elephant in the back of a truck trailer", + "pred": "a black and white elephant with a stick in its mouth" + }, + { + "label": "a dog sits on a seat in a truck", + "pred": "a yellow school bus driving down a street" + }, + { + "label": "a large screen showing a person wearing a suit", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "a dog follows closely behind a man on a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man rides his horse while a dog follows behind", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man drives his bike taxi with luggage in the back", + "pred": "a man riding a bike in front of a store" + }, + { + "label": "a man riding a horse followed by a dog", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "people riding and pushing tricycle carriages down the street", + "pred": "a man riding a bike in front of a store" + }, + { + "label": "a man in a white shirt and a red hat catches a white frisbee", + "pred": "a man that is standing in the grass with a frisbee" + }, + { + "label": "a yellow food truck parked close to a car", + "pred": "a city bus is parked on the side of the street" + }, + { + "label": "an audience is looking at an film of a man taking that is projected onto a wall", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "people use rickshaws to transport luggage down the street", + "pred": "a man riding a bike in front of a store" + }, + { + "label": "an elephant is being fed while in a truck", + "pred": "a black and white elephant with a stick in its mouth" + }, + { + "label": "yellow box truck parked on busy street in city", + "pred": "a city bus is parked on the side of the street" + }, + { + "label": "an elephant in side a truck trying to come out", + "pred": "a black and white elephant with a stick in its mouth" + }, + { + "label": "a cat sitting on top of the desk area", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a cat and a dog both sleeping on a bed", + "pred": "two dogs laying on a bed next to each other" + }, + { + "label": "a person is sitting under a colorful umbrella", + "pred": "a woman is holding an umbrella over her head" + }, + { + "label": "a yellow food truck parked on the side of a city street", + "pred": "a city bus is parked on the side of the street" + }, + { + "label": "a cat sitting on a desk next to a remote control", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "cat sitting on a desk with a computer behind him", + "pred": "a cat sitting on top of a computer desk" + }, + { + "label": "catering truck parked tightly between cars on a city street", + "pred": "a city bus is parked on the side of the street" + }, + { + "label": "a male with a bottled beverage wearing a flower in his lapel", + "pred": "a man in a suit holding a cell phone" + }, + { + "label": "a young cat stands on a computer desk", + "pred": "a cat sitting on top of a computer desk" + }, + { + "label": "a large brown and grey cat sits on top of a desk", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a restaurant with patrons in the outdoor eating area", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a dog licking the top of a beer bottle", + "pred": "a dog laying on the ground next to a bottle of beer" + }, + { + "label": "a man holding a bottle of something to drink", + "pred": "a man in a suit holding a cell phone" + }, + { + "label": "a man in a suit having a beer by the water", + "pred": "a man in a suit holding a cell phone" + }, + { + "label": "a cat sitting on a desk in front of a computer", + "pred": "a cat sitting on top of a computer desk" + }, + { + "label": "cars parked on the side of the road while people eat at tables outside", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a black and orange cat sitting on a wooden counter top", + "pred": "a cat sitting on top of a computer desk" + }, + { + "label": "a large calico cat sitting on a wooden table next to a remote control", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a city street has diners eating on outside tables", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a dog drinks from a bottle of guiness", + "pred": "a dog laying on the ground next to a bottle of beer" + }, + { + "label": "a cat perches on a desk in a bedroom", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "an orange cat laying on a white and brown cat in a bed", + "pred": "two cats laying on top of each other on a bed" + }, + { + "label": "a man is leaning over a fence offering food to an elephant/", + "pred": "a woman is petting an elephant at a zoo" + }, + { + "label": "a woman holding an umbrella while walking in the rain", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a man reaching out to an elephants trunk near a gate", + "pred": "a woman is petting an elephant at a zoo" + }, + { + "label": "a dog laying on the floor with it's mouth on a bottle of beer", + "pred": "a dog laying on the ground next to a bottle of beer" + }, + { + "label": "train with lights on, multiple track area, near over/under pass", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a cat is sitting on a desk next to a computer", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a young man in a suit and tie with a beer in his hand", + "pred": "a man in a suit holding a cell phone" + }, + { + "label": "people sitting at a table next to a traffic filled street", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a man is feeding an elephant over a fence", + "pred": "a woman is petting an elephant at a zoo" + }, + { + "label": "a child in a hat playing on a laptop computer", + "pred": "a little boy sitting on a bed with a laptop" + }, + { + "label": "a small child operating a laptop on a bed", + "pred": "a little boy sitting on a bed with a laptop" + }, + { + "label": "a food tuck parallel parked along a street", + "pred": "a city bus is parked on the side of the street" + }, + { + "label": "a train on the tracks with its lights on", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "street scene with usa and mexican flags flying from building above restaurant tables on sidewalk", + "pred": "a city street filled with lots of parked cars" + }, + { + "label": "a white boat some green hills and water", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a white sail boat moored in a lake near a mountain range", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a colorful chain with a note attached is wrapped around a parking meter's post", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a bright yellow parking meter on a red sidewalk", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "boats docked at a harbor facing the city", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "a very young boy is using a keyboard on a laptop computer", + "pred": "a little boy sitting on a bed with a laptop" + }, + { + "label": "a parking meter has some colored wrap around the pole", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "cat staring at the screen of an open laptop", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "a woman walking through the rain with an umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "something that looks like a parking meter painted yellow on a sidewalk", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a person with a rainbow umbrella looking at the ocean", + "pred": "a woman is holding an umbrella over her head" + }, + { + "label": "a cat is sitting by a computer on a desk", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a parking meter is decorated with a house", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a cat sits on a desk in front of a computer", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "people going down a narrow area on a boat", + "pred": "a boat traveling down a river next to a fence" + }, + { + "label": "two cats lay together on a blanket", + "pred": "two cats laying on top of each other on a bed" + }, + { + "label": "a woman is walking down the street with an umbrella in tow", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a man sitting at a bar being served by a woman", + "pred": "a man standing next to a woman in front of a bar" + }, + { + "label": "a black dog laying on the floor sitting alcohol from a bottle", + "pred": "a dog laying on the ground next to a bottle of beer" + }, + { + "label": "a person walking in the rain holding an open umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a boat is floating along in the deep ocean", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a man sitting at a bar next to another man near a waitress", + "pred": "a man standing next to a woman in front of a bar" + }, + { + "label": "a cat staring at a laptop computer on desk", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "a black and brown dog digging at an object on a dirt ground", + "pred": "a black and white dog with a frisbee in its mouth" + }, + { + "label": "a train with lights on traveling on train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a city's downtown skyline at dusk on the waterfront", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "two cats rest on each other to take a nap", + "pred": "two cats laying on top of each other on a bed" + }, + { + "label": "the little boy is having fun playing at the computer keybord", + "pred": "a little boy sitting on a bed with a laptop" + }, + { + "label": "a white train hauling cargo along a track", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "a dog laying on the carpet licking a bottle", + "pred": "a dog laying on the ground next to a bottle of beer" + }, + { + "label": "an orange and white cat standing in front of a flat screen tv", + "pred": "a cat sitting on top of a flat screen tv" + }, + { + "label": "cute little boy with hat playing on laptop computer", + "pred": "a little boy sitting on a bed with a laptop" + }, + { + "label": "two cats cuddle next to each other on a flowery blanket", + "pred": "two cats laying on top of each other on a bed" + }, + { + "label": "a white and gray cat and an orange tabby cat snuggle on a blanket", + "pred": "two cats laying on top of each other on a bed" + }, + { + "label": "a city ferry sits docked with the city", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "a firetruck is near a brown building off a side street that veers from a main road", + "pred": "a food truck parked on the side of a road" + }, + { + "label": "the father and daughter are under an umbrella on the beach", + "pred": "people sitting under umbrellas on a beach" + }, + { + "label": "a man standing next to train tracks with bags of luggage", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a landscape with water, a boat, trees and mountains", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a man handing an elephant a stick in an enclosure at a zoo", + "pred": "a woman is petting an elephant at a zoo" + }, + { + "label": "a small ferry boat is moored at the end of a dock", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "boats docked on land sitting side by side next to a lake", + "pred": "a row of boats parked next to each other in a field" + }, + { + "label": "a large red and yellow fire truck passed by a white car", + "pred": "a food truck parked on the side of a road" + }, + { + "label": "a man wearing a blue tie with the ten commandments on it", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a herd of gray elephants standing next to each other on a block of cement", + "pred": "elephants standing next to each other" + }, + { + "label": "a cat on a desk next to a keyboard and computer", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "men working on moving luggage at an airport", + "pred": "people standing around a luggage carousel at an airport" + }, + { + "label": "cat staring into the camera in the day time", + "pred": "a cat sitting on top of a computer desk" + }, + { + "label": "lady walking on sidewalk in the rain with an umbrella over her head", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "people lined up at a ticket check in area with luggage", + "pred": "people standing around a luggage carousel at an airport" + }, + { + "label": "a parking meter with a note attached to it", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a yellow parking meter on the side of the street", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "a firetruck with lights on is on a city street", + "pred": "a food truck parked on the side of a road" + }, + { + "label": "a cat is looking at a laptop computer screen", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "nan or woman is enjoying a day of surfboarding on a brown/orange board", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a map of the boston subway printed on a statue of a cow", + "pred": "a statue of a cow sitting on top of a street" + }, + { + "label": "people waiting in line to get food from a food truck", + "pred": "people standing in front of a food truck" + }, + { + "label": "a boat floats in a bay during the day", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "guy with umbrella hat sitting a table with another person", + "pred": "a man sitting at a table with an umbrella" + }, + { + "label": "a cat sits on a computer desk next to a keyboard", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a guy sits at a table with an umbrella hat", + "pred": "a man sitting at a table with an umbrella" + }, + { + "label": "elephants walk together through the grass", + "pred": "a herd of elephants walking across a dry grass field" + }, + { + "label": "people line up to buy food from a food truck", + "pred": "people standing in front of a food truck" + }, + { + "label": "a man reaches out to give the elephant something", + "pred": "a woman is petting an elephant at a zoo" + }, + { + "label": "a highly decorated parking meter", + "pred": "a yellow fire hydrant sitting on the side of a road" + }, + { + "label": "two women holding umbrellas while standing on a city street", + "pred": "two people walking down a street holding umbrellas" + }, + { + "label": "two women under sun umbrellas wait to across an urban street", + "pred": "two people walking down a street holding umbrellas" + }, + { + "label": "two women talk at a beach rental kiosk", + "pred": "a crowd of people standing in front of a sign" + }, + { + "label": "boats at the dock with a city backdrop", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "a picture for rentals with two women walking up to them", + "pred": "a crowd of people standing in front of a sign" + }, + { + "label": "a man has one foot on his skateboard", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a man sits outside in a umbrella hat", + "pred": "a man sitting at a table with an umbrella" + }, + { + "label": "a man is showing off his religious tie", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a fire engine has red and yellow checkers", + "pred": "a food truck parked on the side of a road" + }, + { + "label": "a train going along a pair of train tracks", + "pred": "a train traveling down train tracks next to a forest" + }, + { + "label": "two women hold umbrellas while waiting to cross the street in a city", + "pred": "two people walking down a street holding umbrellas" + }, + { + "label": "a baby elephant stands near to four larger adult elephants", + "pred": "elephants standing next to each other" + }, + { + "label": "a gondola like boat crossing over a bridge", + "pred": "a boat traveling down a river next to a fence" + }, + { + "label": "a small harbor with boats docked and on racks", + "pred": "a row of boats parked next to each other in a field" + }, + { + "label": "elephants, including a baby elephant, gather at a wildlife exhibit", + "pred": "elephants standing next to each other" + }, + { + "label": "a person they sitting down in a chair", + "pred": "a man sitting at a table with an umbrella" + }, + { + "label": "a person on a skateboard", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a bull painted with a map sits on the sidewalk", + "pred": "a statue of a cow sitting on top of a street" + }, + { + "label": "a knit cover and note hang below a parking meter", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "elephants contains a baby one", + "pred": "elephants standing next to each other" + }, + { + "label": "people handing out with lawn chairs under two colorful umbrellas", + "pred": "a crowd of people standing in front of a sign" + }, + { + "label": "a cat is looking at a laptop screen", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "a main sitting at a table being served", + "pred": "a man standing next to a woman in front of a bar" + }, + { + "label": "a goup of elephants in an enclosed area with a lot of trees behind them", + "pred": "elephants standing next to each other" + }, + { + "label": "people by the street", + "pred": "two people walking down a street holding umbrellas" + }, + { + "label": "a person is near a row of luggage carts as one man pushes a cart", + "pred": "people standing around a luggage carousel at an airport" + }, + { + "label": "a person is standing with their foot on a skateboard", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "pack of 6 elephants walking through the native brush", + "pred": "a herd of elephants walking across a dry grass field" + }, + { + "label": "a boat traveling down a narrow canal next to a forest", + "pred": "a boat traveling down a river next to a fence" + }, + { + "label": "people standing in line beside a food truck", + "pred": "people standing in front of a food truck" + }, + { + "label": "the bottom of the skateboard deck shows lots of wear and tear", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a small white boat sits on some calm water under a snow capped mountain", + "pred": "a small boat floating on top of a lake" + }, + { + "label": "a person holding a multicolored umbrella looking at a body of water", + "pred": "a woman is holding an umbrella over her head" + }, + { + "label": "a woman sitting at a table in front of a pile of luggage", + "pred": "a large group of luggage sitting in a room" + }, + { + "label": "people are lined up by a red food truck", + "pred": "people standing in front of a food truck" + }, + { + "label": "people by the beach", + "pred": "people sitting under umbrellas on a beach" + }, + { + "label": "men in blue shirts push carts of luggage in an airport", + "pred": "people standing around a luggage carousel at an airport" + }, + { + "label": "a dark colored cat looking at a laptop screen", + "pred": "a cat sitting on top of a laptop computer" + }, + { + "label": "a man holds out his tie, which has writing on it", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a man standing next to luggage on a railway platform", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "the cow has a map drawn on it", + "pred": "a statue of a cow sitting on top of a street" + }, + { + "label": "a man and a girl under an umbrella at the beach", + "pred": "people sitting under umbrellas on a beach" + }, + { + "label": "a black and white cat sitting on top of a wooden chair", + "pred": "a cat standing on top of a wooden table" + }, + { + "label": "a large blue swimming pool sitting next to a hotel surrounded by palm trees", + "pred": "a pool with a pool table and chairs in it" + }, + { + "label": "a man sits at a table outside wearing an umbrella hat", + "pred": "a man sitting at a table with an umbrella" + }, + { + "label": "a man standing at a train station near a pile of luggage", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a man sanding on a boat next to a beach", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "a herd of elephants walking down a path in some tall grass", + "pred": "a herd of elephants walking across a dry grass field" + }, + { + "label": "a cat laying on the floor next to a keyboard", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a long passenger train traveling over a rail bridge", + "pred": "a train on a train track with smoke coming out of it" + }, + { + "label": "a man stands at a train station with lots of luggage", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "beach goers set up umbrellas next to rental signs while a cop watches", + "pred": "a crowd of people standing in front of a sign" + }, + { + "label": "people sit underneath umbrellas on the beach", + "pred": "people sitting under umbrellas on a beach" + }, + { + "label": "a man is wearing a tie with many words on it", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a close up photo of a parking meter", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "an orange and white cat is laying next to a keyboard and some wires", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a dog sniffs a baseball bat on a baseball field", + "pred": "a dog that is standing on a baseball field" + }, + { + "label": "a firetruck parked outside a building in the city", + "pred": "a food truck parked on the side of a road" + }, + { + "label": "a boat on a still lake in front of a mountain", + "pred": "a small boat floating on top of a lake" + }, + { + "label": "a white dog is sitting in the back of a truck and a mattress", + "pred": "a dog laying in the back of a truck" + }, + { + "label": "a white boat on some water and some mountains", + "pred": "a small boat floating on top of a lake" + }, + { + "label": "people standing near a guard in front of a rental store", + "pred": "a crowd of people standing in front of a sign" + }, + { + "label": "a narrow boat coming down a small water way next to a sidewalk", + "pred": "a boat traveling down a river next to a fence" + }, + { + "label": "a line of food trucks and a group of people stand by", + "pred": "people standing in front of a food truck" + }, + { + "label": "umbrellas are used as parasols to deter the sun on hot streets", + "pred": "two people walking down a street holding umbrellas" + }, + { + "label": "a cat is laying next to a computer keyboard", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a herd of elephants are marching triumphantly through a field", + "pred": "a herd of elephants walking across a dry grass field" + }, + { + "label": "a dog is standing and sniffing an abandoned ball bat", + "pred": "a dog that is standing on a baseball field" + }, + { + "label": "a dog next to a tree playing with a shoe", + "pred": "a black and white dog with a frisbee in its mouth" + }, + { + "label": "cows eat grass together in a field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a cat climbing on top of a shelf with a tv", + "pred": "a cat sitting on top of a flat screen tv" + }, + { + "label": "a cat laying on a floor next to a keyboard", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "people sunbathing near a beach under colorful umbrellas", + "pred": "people sitting under umbrellas on a beach" + }, + { + "label": "a dog playing with something in the woods", + "pred": "a black and white dog with a frisbee in its mouth" + }, + { + "label": "people near carts of luggage at an air port", + "pred": "people standing around a luggage carousel at an airport" + }, + { + "label": "a moving truck with a dog sitting in the back", + "pred": "a dog laying in the back of a truck" + }, + { + "label": "african elephants file through dry grass and shrub growth", + "pred": "a herd of elephants walking across a dry grass field" + }, + { + "label": "the boat sits in the lake below the mountain", + "pred": "a small boat floating on top of a lake" + }, + { + "label": "a lone boats sits on a lake that is adorned with mountainous reflections", + "pred": "a small boat floating on top of a lake" + }, + { + "label": "a cat outside a window looking at a buddha statue", + "pred": "a black cat sitting on a window sill looking out a window" + }, + { + "label": "two different bears fight with each other behind a log", + "pred": "two brown bears standing next to each other on rocks" + }, + { + "label": "a man that has the ten commandments on his tie", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a young man standing with luggage next to the tracks", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "two elephants in a field rubbing their trunks on each other", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "a dog that is sniffing a baseball bat", + "pred": "a dog that is standing on a baseball field" + }, + { + "label": "bearded man in a suit about to enjoy an adult beverage", + "pred": "a man in a suit and tie holding a glass of wine" + }, + { + "label": "a collection of boats behind a fence by a body of water", + "pred": "a row of boats parked next to each other in a field" + }, + { + "label": "a full size dog is smelling a bat on a ballfield", + "pred": "a dog that is standing on a baseball field" + }, + { + "label": "a white and gray cat sitting on a wooden bench", + "pred": "a cat standing on top of a wooden table" + }, + { + "label": "a cat laying on the floor amidst a computer,speakers,cords", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a dog sits on the back of a truck", + "pred": "a dog laying in the back of a truck" + }, + { + "label": "a statue of a cow with a subway map on its side", + "pred": "a statue of a cow sitting on top of a street" + }, + { + "label": "a dog laying in the back of a moving truck", + "pred": "a dog laying in the back of a truck" + }, + { + "label": "a cat looking inside of a window at a statue of buddha", + "pred": "a black cat sitting on a window sill looking out a window" + }, + { + "label": "three cows grazing in a field of green grass", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a dog on a baseball field playing with a baseball bat", + "pred": "a dog that is standing on a baseball field" + }, + { + "label": "man reaches over for his plate at a restaurant counter", + "pred": "a man standing next to a woman in front of a bar" + }, + { + "label": "subway map art cow sculpture on the sidewalk", + "pred": "a statue of a cow sitting on top of a street" + }, + { + "label": "two bears in the water with their mouths open growling at each other", + "pred": "two brown bears standing next to each other on rocks" + }, + { + "label": "two brown bears interacting in a rocky area", + "pred": "two brown bears standing next to each other on rocks" + }, + { + "label": "two bears playing together while swimming near a log", + "pred": "two brown bears standing next to each other on rocks" + }, + { + "label": "two african elephants greeting each other with their trunks", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "a frito lay delivery van parked outside in a parking lot", + "pred": "a white truck parked in a parking lot" + }, + { + "label": "a man in suit and tie is holding a drink", + "pred": "a man in a suit and tie holding a glass of wine" + }, + { + "label": "a thick man in a white suit and tie wearing a name badge", + "pred": "a man in a suit and tie holding a glass of wine" + }, + { + "label": "people sitting under umbrellas drinking beer", + "pred": "people sitting at tables with umbrellas" + }, + { + "label": "a lays potato chip deliver van parked in a parking space", + "pred": "a white truck parked in a parking lot" + }, + { + "label": "a chubby bearded man holding an orange beverage", + "pred": "a man in a suit and tie holding a glass of wine" + }, + { + "label": "a cat peers through a window at a chinese buddha figure", + "pred": "a black cat sitting on a window sill looking out a window" + }, + { + "label": "two brown bears growling at each other while laying on a log", + "pred": "two brown bears standing next to each other on rocks" + }, + { + "label": "a potato chip and snack delivery van in a parking lot", + "pred": "a white truck parked in a parking lot" + }, + { + "label": "a man in a reception hall holds a drink", + "pred": "a man in a suit and tie holding a glass of wine" + }, + { + "label": "boats and surfboards docked at a harbor bay", + "pred": "a row of boats parked next to each other in a field" + }, + { + "label": "bull dog sitting on a furniture pad in a truck", + "pred": "a dog laying in the back of a truck" + }, + { + "label": "three cows two black and one brown grazing in a green field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "an image with a person holding an umbrella", + "pred": "a woman is holding an umbrella over her head" + }, + { + "label": "a cat looking at a buddha statue through a window", + "pred": "a black cat sitting on a window sill looking out a window" + }, + { + "label": "a brown cow and two black cows eating grass in a field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "groups of people seated under shade umbrellas at blue tables and chairs drinking beverages", + "pred": "people sitting at tables with umbrellas" + }, + { + "label": "a cat is standing on top of a shelf and staring down", + "pred": "a cat sitting on top of a flat screen tv" + }, + { + "label": "boats as seen through a chain link fence", + "pred": "a row of boats parked next to each other in a field" + }, + { + "label": "a cat looking at a small buddha statue", + "pred": "a black cat sitting on a window sill looking out a window" + }, + { + "label": "a cat standing in front of a tv on a tv stand", + "pred": "a cat sitting on top of a flat screen tv" + }, + { + "label": "an elephant is walking forward in a field", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a shady spot for cold drinks, including beer in glass bottles", + "pred": "people sitting at tables with umbrellas" + }, + { + "label": "an elephant with tusks walking with a wet trunk", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a cargo van with a chip sign is parked in the lot", + "pred": "a white truck parked in a parking lot" + }, + { + "label": "an elephant with short tusks stands alone in a sandy area", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "two tusked elephants fighting on grass in the wild", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "cows are eating grass in a field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "people in a small boat traveling in water along a walkway", + "pred": "a boat traveling down a river next to a fence" + }, + { + "label": "blue tables sit under blue umbrellas and people sit around the tables", + "pred": "people sitting at tables with umbrellas" + }, + { + "label": "an elephant walks alone through a sandy trail", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "people sitting at different tables under a tent", + "pred": "people sitting at tables with umbrellas" + }, + { + "label": "a happy dog playing with a frisbee by a mossy tree", + "pred": "a black and white dog with a frisbee in its mouth" + }, + { + "label": "a cat laying down on a keyboard", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a businessman is sitting in a chair and smiling for a photo", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "a cat laying on a computer keyboard and a monitor near by", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a couple in a pool at a resort with trees around the side", + "pred": "a pool with a pool table and chairs in it" + }, + { + "label": "a large elephants walks along toward the camera", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a white and black cat laying on a keyboard", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a large elephant scratching it's back on the side of a pole", + "pred": "elephants that are standing in the grass" + }, + { + "label": "a smiling man is wearing a hot pink tie", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "the elephants are touching each other with their trunks", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "altered photograph of a case full of paperback novels", + "pred": "a piece of luggage with a book on top of it" + }, + { + "label": "a basketball couch walking with his team on a court", + "pred": "a large group of people playing a game of basketball" + }, + { + "label": "a suitcase that is full of books", + "pred": "a piece of luggage with a book on top of it" + }, + { + "label": "a luggage bag filled entirely with reading books", + "pred": "a piece of luggage with a book on top of it" + }, + { + "label": "two elephants standing in a field going nose to nose", + "pred": "two elephants standing next to each other in a field" + }, + { + "label": "a man holding a white frisbee walking on top of a green grass covered field", + "pred": "a person in a field with a frisbee" + }, + { + "label": "three soldiers standing next to each other", + "pred": "men in military uniforms standing next to each other" + }, + { + "label": "a small white tow truck parked to another small white tow truck", + "pred": "a dump truck parked on the side of a road" + }, + { + "label": "two people in the middle of the pool", + "pred": "a pool with a pool table and chairs in it" + }, + { + "label": "a cat sleeping on a bed next to a laptop computer", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a man in an office, wearing a shirt and tie, smiles at the camera", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "a cat sitting on a chair looking at the ground", + "pred": "a cat standing on top of a wooden table" + }, + { + "label": "a white and brown cat is laying on top of a keyboard", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "an elephant standing on top of a rocky hillside", + "pred": "a large elephant standing on top of a lush green field" + }, + { + "label": "a large swimming pool in back of a hotel", + "pred": "a pool with a pool table and chairs in it" + }, + { + "label": "the large bear is looking in the direction of the camera", + "pred": "a brown bear standing on top of a lush green field" + }, + { + "label": "a cat that is laying on the side of a computer", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a pool with two people inside is shown", + "pred": "a pool with a pool table and chairs in it" + }, + { + "label": "a huge pile of luggage sits by the door", + "pred": "a large group of luggage sitting in a room" + }, + { + "label": "a white bear stalking in the tall grass", + "pred": "a brown bear standing on top of a lush green field" + }, + { + "label": "a large brown bear walking across a grassy field", + "pred": "a brown bear standing on top of a lush green field" + }, + { + "label": "a man wearing a white shirt and tie standing in a room", + "pred": "a man wearing a black tie and a white shirt" + }, + { + "label": "a large grizzly bear walking through tall grass", + "pred": "a brown bear standing on top of a lush green field" + }, + { + "label": "a dog and cat lying together on an orange couch", + "pred": "a dog laying on top of a couch next to a cat" + }, + { + "label": "man wearing a blue shirt and pink tie posing for a picture sitting by a window", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "a motorized cart fills a train with luggage", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "a man in a blue dress shirt and tie sitting in an office chair", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "books are piled up in an open suitcase", + "pred": "a piece of luggage with a book on top of it" + }, + { + "label": "a dog and a cat curled up together on a couch", + "pred": "a dog laying on top of a couch next to a cat" + }, + { + "label": "a pile of luggage in a room with two women nearby", + "pred": "a large group of luggage sitting in a room" + }, + { + "label": "a small dog is looking out a car window", + "pred": "a dog sitting in the back seat of a car" + }, + { + "label": "a piece of luggage is ready to go with cold wear on top for quick usage", + "pred": "a suitcase that is sitting on the ground" + }, + { + "label": "a cat and dog napping together on the couch", + "pred": "a dog laying on top of a couch next to a cat" + }, + { + "label": "a large number of suitcases in a pile", + "pred": "a large group of luggage sitting in a room" + }, + { + "label": "a black and white dog examines something on the ground", + "pred": "a black and white dog with a frisbee in its mouth" + }, + { + "label": "a cat perches on top of an entertainment center in front of a tv", + "pred": "a cat sitting on top of a flat screen tv" + }, + { + "label": "a dog and cat are sleeping together on an orange couch", + "pred": "a dog laying on top of a couch next to a cat" + }, + { + "label": "a train pulls up along some buildings", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a briefcase full of old used books on sale", + "pred": "a piece of luggage with a book on top of it" + }, + { + "label": "person wearing a black reel big fish tie", + "pred": "a man wearing a black tie and a white shirt" + }, + { + "label": "a guy wearing a tie has his hands in his pockets", + "pred": "a man wearing a black tie and a white shirt" + }, + { + "label": "a water shuttle going down a canal", + "pred": "a small boat in the middle of a river" + }, + { + "label": "a high-speed passenger train is being loaded with luggage", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "a cat and a dog rest together on a hideous orange couch", + "pred": "a dog laying on top of a couch next to a cat" + }, + { + "label": "a person stands and shows his tie off", + "pred": "a man wearing a black tie and a white shirt" + }, + { + "label": "a man walks along his bicycle near the ocean", + "pred": "a man standing next to a pier next to a lighthouse" + }, + { + "label": "a train belches smoke and speeds down a city train track", + "pred": "a train on a train track with smoke coming out of it" + }, + { + "label": "a man stands on a fishing boat as the tide rolls in from the shore on a desolate beach", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "the man is playing frisbee with the young boy", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a dog on a leash looks out the rear window while sitting next to a male passenger", + "pred": "a dog sitting in the back seat of a car" + }, + { + "label": "a small cat sits on a wooden bench watching the ground", + "pred": "a cat standing on top of a wooden table" + }, + { + "label": "a blue lighted bridge over water at night", + "pred": "a large body of water with a couple of boats in it" + }, + { + "label": "a big grizzly bear looks toward the camersa", + "pred": "a brown bear standing on top of a lush green field" + }, + { + "label": "a boat in a river near buildings and trees", + "pred": "a small boat in the middle of a river" + }, + { + "label": "men standing next to train tracks", + "pred": "a man standing next to a train on a train track" + }, + { + "label": "a decorated neck tie saying \"reel big fish\"", + "pred": "a man wearing a black tie and a white shirt" + }, + { + "label": "a luggage for travel is stuffed with a down jacket", + "pred": "a suitcase that is sitting on the ground" + }, + { + "label": "covered canal tour boat in europe on a sunny day", + "pred": "a small boat in the middle of a river" + }, + { + "label": "people standing at a train station while a train arrives", + "pred": "a man standing next to a train on a train track" + }, + { + "label": "a stop sign with two hand written notes taped to it", + "pred": "a vandalized stop sign with graffiti on it" + }, + { + "label": "a newly married couple walking down a street", + "pred": "a man standing next to a woman holding an umbrella" + }, + { + "label": "a piece of luggage sitting on the outside of a white building", + "pred": "a suitcase that is sitting on the ground" + }, + { + "label": "basketball players walking on the court", + "pred": "a large group of people playing a game of basketball" + }, + { + "label": "a dump truck with a dumpster on the back", + "pred": "a dump truck parked on the side of a road" + }, + { + "label": "a carry on rolling luggage with stuff bursting out the top", + "pred": "a suitcase that is sitting on the ground" + }, + { + "label": "a large blue lit bridge spanning over a lake", + "pred": "a large body of water with a couple of boats in it" + }, + { + "label": "asian businessman in a restaurant with one of them being served", + "pred": "a man standing next to a woman in front of a bar" + }, + { + "label": "a cat sitting on a chair looking down", + "pred": "a cat standing on top of a wooden table" + }, + { + "label": "a man in a suit smiling at the camera", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a stop sign that has some papers on it", + "pred": "a vandalized stop sign with graffiti on it" + }, + { + "label": "a person walking a bilk along a road towards a light house", + "pred": "a man standing next to a pier next to a lighthouse" + }, + { + "label": "the woman holds an umbrella for the bride and groom", + "pred": "a man standing next to a woman holding an umbrella" + }, + { + "label": "two men wait for a train at dusk", + "pred": "a man standing next to a train on a train track" + }, + { + "label": "a woman is holding an umbrella over a bride and groom", + "pred": "a man standing next to a woman holding an umbrella" + }, + { + "label": "a cargo truck is loading a train with luggage", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "a man is playing frisbee with a school child", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a cat playing with it's reflection in a mirror", + "pred": "a cat that is looking at itself in a mirror" + }, + { + "label": "a passenger train parked next to a platform", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "a red stop sign with paper with writing on top of it", + "pred": "a vandalized stop sign with graffiti on it" + }, + { + "label": "a pile of luggage rests outside of a train", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "a bridge is covered up in bright lights at night", + "pred": "a large body of water with a couple of boats in it" + }, + { + "label": "a street scene with a bride and groom under an umbrella", + "pred": "a man standing next to a woman holding an umbrella" + }, + { + "label": "a wheel along back pack with a jacket strapped to the top", + "pred": "a suitcase that is sitting on the ground" + }, + { + "label": "people that are playing with a frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "sail boats sail over a body of water while people stand near the shoreline", + "pred": "people standing on top of a beach" + }, + { + "label": "people walk by a boat near a lighted bridge", + "pred": "a large body of water with a couple of boats in it" + }, + { + "label": "sailboats that are in the water", + "pred": "people standing on top of a beach" + }, + { + "label": "food trucks parked in a parking lot", + "pred": "a crowd of people standing around a food truck" + }, + { + "label": "a bridge in the distance with multiple different colored lights", + "pred": "a large body of water with a couple of boats in it" + }, + { + "label": "basketball players walking across a court with their coach", + "pred": "a large group of people playing a game of basketball" + }, + { + "label": "a man holding one frisbee and throwing another", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a stop sign with additional warnings taped to it", + "pred": "a vandalized stop sign with graffiti on it" + }, + { + "label": "a blue train is coming down the tracks", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a small dog in a car standing on his owner", + "pred": "a dog sitting in the back seat of a car" + }, + { + "label": "a herd of cows laying on dry grass", + "pred": "cows are laying down in a barn" + }, + { + "label": "the backsides of people as they wait for a train coming in to the station", + "pred": "a man standing next to a train on a train track" + }, + { + "label": "a train station with the train pulling in", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a blue and yellow train a building and some cars", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "a herd of elephants splashing and playing in a river", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "a stop sign with alot of writing on it", + "pred": "a vandalized stop sign with graffiti on it" + }, + { + "label": "a guy in a business suit and glasses smiling", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a black and white cat laying on a couch", + "pred": "a black and white cat laying on top of a couch" + }, + { + "label": "cars next to a train", + "pred": "a train pulling into a train station next to a platform" + }, + { + "label": "two large elephants standing next to a wire fence", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a man with a bike walks towards a red lighthouse", + "pred": "a man standing next to a pier next to a lighthouse" + }, + { + "label": "two boats on the water in between two mountains", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "a yellow work truck parked in tall grass", + "pred": "a yellow truck is parked in a field" + }, + { + "label": "bride and groom walking under an umbrella held by a woman", + "pred": "a man standing next to a woman holding an umbrella" + }, + { + "label": "people waiting on the side of train tracks as a train with it;s lights on comes down the track", + "pred": "a man standing next to a train on a train track" + }, + { + "label": "a boat that is coming down the river", + "pred": "a small boat in the middle of a river" + }, + { + "label": "a man standing in a boat near shore", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "the yellow truck drives through the tall grass in the forest", + "pred": "a yellow truck is parked in a field" + }, + { + "label": "a game a basketball game going on", + "pred": "a large group of people playing a game of basketball" + }, + { + "label": "the elephant family is walking down the road", + "pred": "elephants standing next to each other" + }, + { + "label": "a smiling man wearing a suit and tie in front of a colorful wall", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "the kitten is pawing its own image while gazing into the hand mirror", + "pred": "a cat that is looking at itself in a mirror" + }, + { + "label": "food trucks are parked around small oval tables", + "pred": "a crowd of people standing around a food truck" + }, + { + "label": "a train traveling on raised tracks near a town", + "pred": "a train on a train track with smoke coming out of it" + }, + { + "label": "a man is on a channel boardwalk by a lighthouse", + "pred": "a man standing next to a pier next to a lighthouse" + }, + { + "label": "black and white cat, with tv remote, laying on couch", + "pred": "a black and white cat laying on top of a couch" + }, + { + "label": "a man and a dog riding in the cab of a pickup truck", + "pred": "a dog sitting in the back seat of a car" + }, + { + "label": "a woman who just caught a frizzebe, and is falling", + "pred": "a person in a field with a frisbee" + }, + { + "label": "an indoor farm area with cows in individual stations sitting and standing on hay", + "pred": "cows are laying down in a barn" + }, + { + "label": "a beach scene with sail boats, a dog, and people wading", + "pred": "people standing on top of a beach" + }, + { + "label": "we see a very old picture of people enjoying the shore", + "pred": "people standing on top of a beach" + }, + { + "label": "a large passenger boat is floating down a canal", + "pred": "a small boat in the middle of a river" + }, + { + "label": "a young man is throwing a frisbee to a boy in a gravel lot with other children and people walking around", + "pred": "young men playing a game of frisbee" + }, + { + "label": "the blue train engine emits black smoke as it speeds down the track", + "pred": "a train on a train track with smoke coming out of it" + }, + { + "label": "four men are posing for a picture at an event", + "pred": "two men standing next to each other in a room" + }, + { + "label": "shot of a person in a wooden boat on the shore of a beach", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "a deer standing next to a small deer in a forest", + "pred": "a small animal standing in the middle of a forest" + }, + { + "label": "man with a bicycle walking the pier to a lighthouse", + "pred": "a man standing next to a pier next to a lighthouse" + }, + { + "label": "a man walking in front of an open umbrella", + "pred": "a person holding an umbrella over their head" + }, + { + "label": "backpacks and luggage bags piled up on top of each other", + "pred": "a large group of luggage sitting in a room" + }, + { + "label": "a big cat laying down on a remote", + "pred": "a black and white cat laying on top of a couch" + }, + { + "label": "a big truck loaded with some items in the back", + "pred": "a dump truck parked on the side of a road" + }, + { + "label": "a middle aged man dressed in a blue suit smiling at the camera", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a black and white cat hoarding the channel control on the couch", + "pred": "a black and white cat laying on top of a couch" + }, + { + "label": "a large elephant rests on a black pole", + "pred": "elephants that are standing in the grass" + }, + { + "label": "four men are standing together behind a group of red chairs", + "pred": "two men standing next to each other in a room" + }, + { + "label": "cows are being housed in milking stations", + "pred": "cows are laying down in a barn" + }, + { + "label": "a truck is sitting in the middle of a wooded area", + "pred": "a yellow truck is parked in a field" + }, + { + "label": "a black and white cat rests on a couch on top of a remote control", + "pred": "a black and white cat laying on top of a couch" + }, + { + "label": "a utility vehicle parked in a wild vegetated field", + "pred": "a yellow truck is parked in a field" + }, + { + "label": "a cute cat is placing its paw on the mirror", + "pred": "a cat that is looking at itself in a mirror" + }, + { + "label": "a yellow truck is sitting in high grass", + "pred": "a yellow truck is parked in a field" + }, + { + "label": "a large black semi parked in a parking lot", + "pred": "a large truck is parked on the side of the road" + }, + { + "label": "older man standing next to each other", + "pred": "two men standing next to each other in a room" + }, + { + "label": "two large trucks are parked near each other", + "pred": "a dump truck parked on the side of a road" + }, + { + "label": "a small kitten lies next to a laptop", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "four gentleman posing for a picture at a cocktail party", + "pred": "two men standing next to each other in a room" + }, + { + "label": "an elephant scratching it's neck on a post", + "pred": "elephants that are standing in the grass" + }, + { + "label": "a dirty dog sits on the front patio of a home", + "pred": "a black and white dog standing next to a bottle of beer" + }, + { + "label": "a man is a blur as he runs to hold something in his hand kneeling towards the grass", + "pred": "a person in a field with a frisbee" + }, + { + "label": "an umbrella is opened over a table at an outdoor market", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "food trucks parked in an area that has tables and some chairs next to it", + "pred": "a crowd of people standing around a food truck" + }, + { + "label": "a white and blue truck parked in the middle of a dirt road", + "pred": "a dump truck parked on the side of a road" + }, + { + "label": "people get a meal from outdoor food trucks", + "pred": "a crowd of people standing around a food truck" + }, + { + "label": "a blue and white training passing houses while emitting smoke", + "pred": "a train on a train track with smoke coming out of it" + }, + { + "label": "a woman walks under an umbrella next to a food stand", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "a cake shaped as a teddy bear on a wooden table", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "the cows are laying in their stalls in the barn", + "pred": "cows are laying down in a barn" + }, + { + "label": "two elephants in a encloseur at a zoo", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a bear shaped birthday cake with candles on a table", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "a decorative frosted teddy bear 30th birthday cake", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "an adult and baby moose step out of a busy thicket in the wild", + "pred": "a small animal standing in the middle of a forest" + }, + { + "label": "aa man walks down a city street next to a shop window", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "cows resting in fresh straw bays at a rodeo", + "pred": "cows are laying down in a barn" + }, + { + "label": "four older men posing for a photo", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a large siamese cat sitting on top of a laptop computer", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "an airport with a woman carrying a piece of luggage", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "elephants are group together", + "pred": "elephants standing next to each other" + }, + { + "label": "a family of three elephants standing next to a forest", + "pred": "elephants standing next to each other" + }, + { + "label": "a little elephant stands between two large, tusked elephants", + "pred": "elephants standing next to each other" + }, + { + "label": "a very large semi truck without any load is parked", + "pred": "a large truck with a trailer attached to it" + }, + { + "label": "small sailboats floating past a beach, with a dog and people on the beach", + "pred": "people standing on top of a beach" + }, + { + "label": "dining trucks are in a parking lot while some people stand or sit in chairs", + "pred": "a crowd of people standing around a food truck" + }, + { + "label": "a black and white dog sits next to a bottle on the ground", + "pred": "a black and white dog sitting on a porch next to" + }, + { + "label": "a shiny, new, low riding semi trailer truck", + "pred": "a large truck with a trailer attached to it" + }, + { + "label": "an antelope walking out of the bushes towards a baby antelope", + "pred": "a cow standing in the middle of a forest" + }, + { + "label": "a head in silhouette in front of a large umbrella", + "pred": "a person holding an umbrella over their head" + }, + { + "label": "an elephant leans against a post in a fenced area", + "pred": "elephants that are standing in the grass" + }, + { + "label": "a large yellow dump truck sitting on green lawn", + "pred": "a large yellow truck parked in a field" + }, + { + "label": "a person standing wearing a suit and tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a herd of elephants cross a shallow river", + "pred": "a herd of elephants walking across a river" + }, + { + "label": "a cat laying on a bed next to a laptop", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "two large brown elephants standing over a small elephant", + "pred": "elephants standing next to each other" + }, + { + "label": "a man walking down a rain soaked road holding an umbrella", + "pred": "a person walking down a street holding an umbrella" + }, + { + "label": "elephants behind a fence at a zoo", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "large brown truck parked on the grass next to an airplane", + "pred": "a large yellow truck parked in a field" + }, + { + "label": "wild animals standing in a forest next to a river", + "pred": "a bear that is standing in the water" + }, + { + "label": "an elephant standing on rocks next to a wood bridge", + "pred": "a large elephant standing next to a rock wall" + }, + { + "label": "an elephant rubbing its head against a large metal pole", + "pred": "elephants that are standing in the grass" + }, + { + "label": "people riding a large gray elephant", + "pred": "people riding on the back of an elephant" + }, + { + "label": "a cake shaped like a teddy bear sits on a platter", + "pred": "a teddy bear that is on a table" + }, + { + "label": "a white and gray kitten pokes its paw at a mirror and looks at its reflection", + "pred": "a cat looking at itself in a mirror" + }, + { + "label": "a kitten is looking into a mirror and touching the mirror with one paw", + "pred": "a cat looking at itself in a mirror" + }, + { + "label": "a dog having his teeth brushed with a novelty electric toothbrush", + "pred": "a person with a toothbrush in their mouth" + }, + { + "label": "a black and white cat in the grass", + "pred": "a cat that is standing in the grass" + }, + { + "label": "two horses stand on rocks near a river", + "pred": "a bear that is standing in the water" + }, + { + "label": "two men and a woman riding on the back of an elephant", + "pred": "people riding on the back of an elephant" + }, + { + "label": "a gray teddy bear cake on top of a wooden bench", + "pred": "a teddy bear that is on a table" + }, + { + "label": "a shadow of a man on an umbrella", + "pred": "a person holding an umbrella over their head" + }, + { + "label": "a person walking down a street in front of a building", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "a person is brushing a dog's teeth and holding a toy", + "pred": "a person brushing a dog's teeth with a brush" + }, + { + "label": "a man riding on the back of an elephant through a city street", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a gray and white cat standing on a lush green field", + "pred": "a cat that is standing in the grass" + }, + { + "label": "a person on a sidewalk walking past a store window", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "a marina filled with boats floating in crystal blue water", + "pred": "a harbor filled with lots of boats on a cloudy day" + }, + { + "label": "an eighteen wheeler truck is parked in a lot", + "pred": "a large truck is parked on the side of the road" + }, + { + "label": "a deer comes out of the bushes for its child", + "pred": "a small animal standing in the middle of a forest" + }, + { + "label": "people riding on an elephant back", + "pred": "people riding on the back of an elephant" + }, + { + "label": "a woman walking the side walk", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "an adult cat sitting on the lap top", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a man walking in the airport", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "a siamese cat is laying across the laptop keys", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a woman in a coat and cat is towing luggage through an airport", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "three people ride on an elephant in front of a forest", + "pred": "people riding on the back of an elephant" + }, + { + "label": "a decorated kite with tail flies in a gray sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "a man bent over in an open grassy field with something in his hand", + "pred": "a person in a field with a frisbee" + }, + { + "label": "a painting of a blue fish flying through the canvas", + "pred": "a kite that is flying in the air" + }, + { + "label": "a blue kite is flying in the sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "three people ride on the back of an elephant", + "pred": "people riding on the back of an elephant" + }, + { + "label": "a person walking by a shop with umbrellas in the window", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "the shadow of a man's head is seen cast on an airbag", + "pred": "a person holding an umbrella over their head" + }, + { + "label": "a dog looking out the back window of a car", + "pred": "a dog sitting in the back seat of a car" + }, + { + "label": "a construction truck sits in a yard near the airport", + "pred": "a large yellow truck parked in a field" + }, + { + "label": "a large black truck in a parking lot", + "pred": "a large truck is parked on the side of the road" + }, + { + "label": "a market street with various goods on display under an umbrella", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "a cat stares as it sits on some grass", + "pred": "a cat that is standing in the grass" + }, + { + "label": "a cat laying next to a laptop", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a dog sitting near a door with a bottle next to it", + "pred": "a black and white dog standing next to a bottle of beer" + }, + { + "label": "a brightly colored kite shaped like a fish flies in a clear sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "a panda bear sitting and eating a plant", + "pred": "a black and white panda bear eating leaves off of a tree" + }, + { + "label": "two dogs walking on rocks next to a creek", + "pred": "a bear that is standing in the water" + }, + { + "label": "a person brushing a dogs teeth with an electric toothbrush", + "pred": "a person brushing a dog's teeth with a brush" + }, + { + "label": "a dirty white and black dog next to a bottle of soda", + "pred": "a black and white dog standing next to a bottle of beer" + }, + { + "label": "a woman sitting on the ground next to luggage", + "pred": "a woman sitting on a sidewalk next to a bag of luggage" + }, + { + "label": "group of people riding on seats on top of elephants", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a cat standing on grass making a funny expression", + "pred": "a cat that is standing in the grass" + }, + { + "label": "a man is charging through a field of grass", + "pred": "a person in a field with a frisbee" + }, + { + "label": "a herd of elephants walking down a river with people riding on their backs", + "pred": "elephants riding on top of a body of water" + }, + { + "label": "a blue colorful kite flying through the gray sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "man riding on the back of a painted elephant", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a big chair with a gray cat laying on top of it next to a black dog", + "pred": "a cat sitting on a couch next to a dog" + }, + { + "label": "a panda sitting in a field and eating", + "pred": "a black and white panda bear eating leaves off of a tree" + }, + { + "label": "a herd of cattle is feeding at the river's edge", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a man watching two elephants behind a wire fence", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "cows next to a body of water in a field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a long red train traveling through snow covered country side", + "pred": "a train that is on the tracks in the snow" + }, + { + "label": "a woman in a hat sitting next to luggage", + "pred": "a woman sitting on the ground with a suitcase" + }, + { + "label": "a woman sitting on stone steps with a suitcase full of books", + "pred": "a woman sitting on a sidewalk next to a bag of luggage" + }, + { + "label": "a girl in a jacket and boots with a black umbrella", + "pred": "a little girl standing in the woods holding an umbrella" + }, + { + "label": "a herd of animals grazing on a dry grass field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "this cat has no intention of giving up the computer keyboard to a human", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a lone woman walks across the terminal with her bags", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "the grey elephant is walking between the rocks", + "pred": "a large elephant standing on top of a lush green field" + }, + { + "label": "outdoor market with many vegetables and food available", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "happy dog poses outside a door with root beer bottle", + "pred": "a black and white dog standing next to a bottle of beer" + }, + { + "label": "a black and white cat on some grass", + "pred": "a cat that is standing in the grass" + }, + { + "label": "a silver and gray parking meter sitting by a tree", + "pred": "a parking meter sitting on top of a wooden bench" + }, + { + "label": "a young woman sits near three suitcases of luggage", + "pred": "a woman sitting on the ground with a suitcase" + }, + { + "label": "a herd of cows grazes in a field near a river", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a herd of elephants are walking through a river", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "a herd of cattle standing in grassy area next to water", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a mans shadow in front of lighting equipment", + "pred": "a person holding an umbrella over their head" + }, + { + "label": "a brown teddy bear sitting in a red chair", + "pred": "a brown teddy bear sitting on a chair" + }, + { + "label": "horses standing in the rocks near the water", + "pred": "a bear that is standing in the water" + }, + { + "label": "a panda bear sits on the ground by a tree", + "pred": "a black and white panda bear eating grass" + }, + { + "label": "a little girl standing in a forest holding a black umbrella", + "pred": "a little girl holding an umbrella in the woods" + }, + { + "label": "an elephant that is standing in an enclosure", + "pred": "a large elephant standing next to a rock wall" + }, + { + "label": "military men are holding awards while standing next to a man in a suit", + "pred": "men in military uniforms standing next to each other" + }, + { + "label": "a cat resting on a laptop keyboard in a bedroom", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "an airport lobby with a woman hauling baggage", + "pred": "a man walking down a hallway with a suitcase" + }, + { + "label": "a harbor with boats is surrounded by mountains", + "pred": "a harbor filled with lots of small boats" + }, + { + "label": "a baby deer and a large deer are standing in the woods", + "pred": "a cow standing in the middle of a forest" + }, + { + "label": "a woman with an umbrella is silhouetted on a foggy road", + "pred": "a person walking down a street holding an umbrella" + }, + { + "label": "a sign stating tree trimming is on a tree by a parking meter", + "pred": "a parking meter next to a wooden bench" + }, + { + "label": "an elephant in captivity with trees", + "pred": "a large elephant standing next to a rock wall" + }, + { + "label": "a large pier holding several boats overlooked by mountains", + "pred": "a harbor filled with lots of small boats" + }, + { + "label": "a man in colorful clothing riding a painted elephant", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a person with a black umbrella standing in the middle of the road", + "pred": "a person walking down a street holding an umbrella" + }, + { + "label": "two large animals walking on rocks along the side of river", + "pred": "a bear that is standing in the water" + }, + { + "label": "two gray elephants standing next to each other on a road", + "pred": "a small elephant standing next to a large elephant" + }, + { + "label": "parketing meter next to a tree with a warning sign on it", + "pred": "a parking meter next to a wooden bench" + }, + { + "label": "a man in a white shirt is riding an elephant and some buildings", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "two men being drug on buggies by dogs", + "pred": "a number of dogs in a field with people" + }, + { + "label": "boats docked by the mountains", + "pred": "a harbor filled with lots of small boats" + }, + { + "label": "a person holds an umbrella in the middle of a rode", + "pred": "a person walking down a street holding an umbrella" + }, + { + "label": "men on bikes are getting pulled by a group of dogs", + "pred": "a number of dogs in a field with people" + }, + { + "label": "a person is standing in the middle of a road while its raining", + "pred": "a person walking down a street holding an umbrella" + }, + { + "label": "an orange cat with pointy ears is on a bed, with a laptop computer nearby", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "people riding elephants in the water", + "pred": "people riding on the backs of elephants" + }, + { + "label": "an overview image of a boat dock by mountains", + "pred": "a harbor filled with lots of small boats" + }, + { + "label": "a yellow hauling truck waits at an airport", + "pred": "a large yellow truck parked in a field" + }, + { + "label": "looking up at elephants in an enclosure at the zoo", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "tourists riding on elephants in a river", + "pred": "people riding on the backs of elephants" + }, + { + "label": "two men in bow ties standing next to steel rafter", + "pred": "a man standing next to a woman in front of a" + }, + { + "label": "people are sitting outside an outdoor market", + "pred": "people sitting around a table eating food" + }, + { + "label": "a parking meeter next to a wall that reads \"tie.\"", + "pred": "a parking meter with graffiti on it" + }, + { + "label": "a dog sits while a person brushes his teeth", + "pred": "a person brushing a dog's teeth with a brush" + }, + { + "label": "elephants line up in a river to take a drink", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "a yellow truck is parked on grass near a jumbo jet on display", + "pred": "a large yellow truck parked in a field" + }, + { + "label": "an old decorated elephant and its colorful rider", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "there's a warning not to park under this tree", + "pred": "a parking meter sitting on top of a wooden bench" + }, + { + "label": "vendors selling various fresh foods at an outdoor market", + "pred": "people sitting around a table eating food" + }, + { + "label": "a woman reads a book while sitting on steps near a suitcase full of books", + "pred": "a woman sitting on a sidewalk next to a bag of luggage" + }, + { + "label": "the woman is setting on the steps with a case of books", + "pred": "a woman sitting on a sidewalk next to a bag of luggage" + }, + { + "label": "a reclined panda bear is sitting by a bush", + "pred": "a black and white panda bear eating leaves off of a tree" + }, + { + "label": "a sign pinned to a tree next to a parking meter", + "pred": "a parking meter sitting on top of a wooden bench" + }, + { + "label": "people cross a river while riding elephants", + "pred": "elephants riding on top of a body of water" + }, + { + "label": "a large panda sitting and eating a bamboo plant", + "pred": "a black and white panda bear eating leaves off of a tree" + }, + { + "label": "a semi truck is driving down a street", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "a dog is laying down and getting his teeth brushed", + "pred": "a person brushing a dog's teeth with a brush" + }, + { + "label": "a teddy bear is sitting on a chair", + "pred": "a brown teddy bear sitting on a chair" + }, + { + "label": "men race on wheeled vehicles towed by a group of husky dogs", + "pred": "a black and white photo of a group of people in a field" + }, + { + "label": "a brown bear walking with rocks", + "pred": "a large brown bear sitting on top of a rock" + }, + { + "label": "the people are sitting and standing at the event in the street", + "pred": "people sitting around a table eating food" + }, + { + "label": "the man is riding a bike led by several dogs", + "pred": "a black and white photo of a group of people in a field" + }, + { + "label": "a girl is playing in a grassy area", + "pred": "a person standing on top of a lush green field" + }, + { + "label": "people are gathering at an outdoor food market", + "pred": "people sitting around a table eating food" + }, + { + "label": "group of people enjoying food at a market", + "pred": "people sitting around a table eating food" + }, + { + "label": "a herd of cattle is near a flock of birds swimming in the water", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "people are riding on elephants in a river", + "pred": "elephants riding on top of a body of water" + }, + { + "label": "a cat sitting on a couch with a dog on the floor", + "pred": "a cat sitting on a couch next to a dog" + }, + { + "label": "a large semi-trailer truck driving through a town area", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "a rowboat with paddles and no passengers is on the beach", + "pred": "a small boat on the shore of a body of water" + }, + { + "label": "a big cow and a smaller cow standing beside a road", + "pred": "two horses standing next to each other on a road" + }, + { + "label": "men in suits talking together in a room", + "pred": "a man standing next to a woman in front of a curtain" + }, + { + "label": "a woman sitting on stairs has a suitcase full of books", + "pred": "a woman sitting on a sidewalk next to a bag of luggage" + }, + { + "label": "a large brown bear standing on a mountain summit", + "pred": "a large brown bear sitting on top of a rock" + }, + { + "label": "people riding elephants by using baskets tied to their backs", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a woman walking down a street holding an orange umbrella", + "pred": "a woman with an umbrella walking down the street" + }, + { + "label": "a herd of elephants is moving across a stream", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "a woman on some grass is throwing a green frisbee", + "pred": "a person standing on top of a lush green field" + }, + { + "label": "a white red and gray boat some people a bird and some water", + "pred": "a small boat on the shore of a body of water" + }, + { + "label": "numerous head of cattle are grazing in the grass", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "two cows stand next to paved road in country", + "pred": "two horses standing next to each other on a road" + }, + { + "label": "a large, blue semi truck drives down a city street with a line of vehicles behind it", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "a blue semi truck drives down the street", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "men race bicycles on grass pulled by sleigh dogs", + "pred": "a black and white photo of a group of people in a field" + }, + { + "label": "a bus and other cars drive on a road past houses", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "teddy bear sitting on wicker chair with red cushion", + "pred": "a brown teddy bear sitting on a chair" + }, + { + "label": "a herd of cows grazing in a grassy field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a cat sitting on the couch with a dog laying on the floor", + "pred": "a cat sitting on a couch next to a dog" + }, + { + "label": "people having fun riding elephants together at a park", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a cat is laying on sofa and the dog is laying on the floor in front", + "pred": "a cat sitting on a couch next to a dog" + }, + { + "label": "an open air market with a variety of foods for sale", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "a stop sign in front of some buildings", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a teddy bear sits and relaxes on a red chair", + "pred": "a brown teddy bear sitting on a chair" + }, + { + "label": "a wig sitting next to a pair of shoes on top of a table", + "pred": "a cat laying on top of a table next to a pair of shoes" + }, + { + "label": "a small white boat floating on the shore of a lake", + "pred": "a small boat on the shore of a body of water" + }, + { + "label": "a young child holding an open umbrella", + "pred": "a little girl standing in the woods holding an umbrella" + }, + { + "label": "people are sitting on elephants with a little chair", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a brown bear is standing on the rocks facing forward", + "pred": "a large brown bear sitting on top of a rock" + }, + { + "label": "three red and black train engines and its cars and snow", + "pred": "a train that is on the tracks in the snow" + }, + { + "label": "a cat sitting on a couch with a dog in front of it", + "pred": "a cat sitting on a couch next to a dog" + }, + { + "label": "a young woman is preparing to throw a green frisbee", + "pred": "a person standing on top of a lush green field" + }, + { + "label": "a large cat sitting in a bathroom sink under a mirror", + "pred": "a cat sitting in a bathroom sink" + }, + { + "label": "a woman is sitting and posing next to luggage", + "pred": "a woman sitting on the ground with a suitcase" + }, + { + "label": "two cats sitting on top of a pair of shoes", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "a parking meter sitting in front of a brick building", + "pred": "a brick wall with a fire hydrant next to it" + }, + { + "label": "a large gray elephant standing on a pool of water", + "pred": "a large elephant standing next to a pool of water" + }, + { + "label": "cows standing next to each other near a street", + "pred": "two horses standing next to each other on a road" + }, + { + "label": "a crowd of people riding on the back of a red and white boat", + "pred": "people on a boat in the water" + }, + { + "label": "a blue piece of luggage sitting up against the side of a building", + "pred": "a red piece of luggage sitting on top of a brick wall" + }, + { + "label": "an outdoor with a patio with chairs and a wooden deck", + "pred": "a white umbrella sitting on top of a wooden table" + }, + { + "label": "elephants are walking around in the dirt", + "pred": "a small elephant standing next to a large elephant" + }, + { + "label": "a train is coming down the tracks on a snowy day", + "pred": "a train that is on the tracks in the snow" + }, + { + "label": "an older man in a tuxedo standing next to a younger man in a tuxedo wearing glasses", + "pred": "a man standing next to a woman in front of a curtain" + }, + { + "label": "a brown dog sitting in a mans back pack", + "pred": "a person with a dog on a leash" + }, + { + "label": "a bus traveling down a street next to a tall building", + "pred": "a woman walking down a street next to a bus" + }, + { + "label": "a girl sitting next to three old suitcases", + "pred": "a woman sitting on the ground with a suitcase" + }, + { + "label": "two cattle are standing by the side of the road", + "pred": "two horses standing next to each other on a road" + }, + { + "label": "two soldiers in uniforms holding plaques in front of them", + "pred": "men in military uniforms standing next to each other" + }, + { + "label": "a boat is on the beach while two men dig in the sand in the distance", + "pred": "a small boat on the shore of a body of water" + }, + { + "label": "a train drives down its tracks next to a snow bank", + "pred": "a train that is on the tracks in the snow" + }, + { + "label": "a table topped with bags of luggage and purses", + "pred": "a pile of luggage sitting on top of a wooden floor" + }, + { + "label": "a woman standing on a lush green park holding a green frisbee", + "pred": "a person standing on top of a lush green field" + }, + { + "label": "two men wearing tuxedos glance at each other", + "pred": "a man standing next to a woman in front of a curtain" + }, + { + "label": "an elephant trying to reach something on the ground with his trunk", + "pred": "a small elephant standing next to a large elephant" + }, + { + "label": "a woman is walking down the street holding an umbrella", + "pred": "a woman with an umbrella walking down the street" + }, + { + "label": "a girl on the ground ready to throw her frisby", + "pred": "a person standing on top of a lush green field" + }, + { + "label": "a man wearing a white lab coat holding a bone saw", + "pred": "a man in a suit and tie holding a knife" + }, + { + "label": "a stop sign in front of two buildings on a street", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a street sign on metal pole next to a street on a sidewalk", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a stop sign leans beside street signs and a light post across from buildings", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a herd of cattle walking across a beach next to the ocean", + "pred": "a herd of cattle standing on top of a beach" + }, + { + "label": "a herd of cattle are standing and grazing in a field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a women in a hat, tank top, argyle boots, and socks sits beside stacked luggage", + "pred": "a woman sitting on the ground with a suitcase" + }, + { + "label": "an adult and a child cow standing on the side of the road", + "pred": "two horses standing next to each other on a road" + }, + { + "label": "row boat at the beach's edge ready to go", + "pred": "a small boat on the shore of a body of water" + }, + { + "label": "a parking lot meter on the street", + "pred": "a parking meter with graffiti on it" + }, + { + "label": "a herd of cattle walking across a sandy beach near the ocean", + "pred": "a herd of animals standing on top of a sandy beach" + }, + { + "label": "a train traveling down tracks next to a brick building", + "pred": "a train traveling down train tracks next to a building" + }, + { + "label": "it's important to protect a baby from the sun", + "pred": "a woman with an umbrella walking down the street" + }, + { + "label": "items are sitting about for chinese dress up fashion", + "pred": "a cat laying on top of a table next to a pair of shoes" + }, + { + "label": "a table has suitcases leaning on it and clothes on top", + "pred": "a pile of luggage sitting on top of a wooden floor" + }, + { + "label": "cows grazing in a field with rocks", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a teddy bear sitting on a chair inside a room", + "pred": "a brown teddy bear sitting on a chair" + }, + { + "label": "two military men being honored with an award", + "pred": "men in military uniforms standing next to each other" + }, + { + "label": "a cluttered collection of various items including a wig, shoes, umbrella and a photo", + "pred": "a cat laying on top of a table next to a pair of shoes" + }, + { + "label": "a tan utility truck with a blue interior", + "pred": "the back of a truck with a picture painted on the side of it" + }, + { + "label": "a stop sign leans to the right at a small town intersection", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "patio with umbrella outside on deck", + "pred": "a white umbrella sitting on top of a wooden table" + }, + { + "label": "two elephants are standing are standing in an enclosure", + "pred": "a small elephant standing next to a large elephant" + }, + { + "label": "a decoratively painted business truck for a motor company", + "pred": "the back of a truck with a picture painted on the side of it" + }, + { + "label": "a pair of sandals, an umbrellas and other items are piled onto a table", + "pred": "a cat laying on top of a table next to a pair of shoes" + }, + { + "label": "a bear is standing on a rock face", + "pred": "a large brown bear sitting on top of a rock" + }, + { + "label": "a herd of cattle grazing on a lush green field", + "pred": "a herd of animals grazing on a lush green field" + }, + { + "label": "a person walking down the street holding an umbrella", + "pred": "a woman with an umbrella walking down the street" + }, + { + "label": "a train in a rural area covered with heavy snow", + "pred": "a train that is on the tracks in the snow" + }, + { + "label": "a truck on a street next to a building", + "pred": "the back of a truck with a picture painted on the side of it" + }, + { + "label": "a man standing behind a truck with a red trailer sitting in front of a building", + "pred": "a truck that is parked in front of a building" + }, + { + "label": "the bear is on all fours, facing the photographer", + "pred": "a large brown bear sitting on top of a rock" + }, + { + "label": "older man in tuxedo sitting next to another younger man in tuxedo", + "pred": "a man standing next to a woman in front of a curtain" + }, + { + "label": "luggage and coats lined up at portable tables", + "pred": "a pile of luggage sitting on top of a wooden floor" + }, + { + "label": "a white and blue truck parked on a street", + "pred": "the back of a truck with a picture painted on the side of it" + }, + { + "label": "an elephant standing under the shade of a tree", + "pred": "a large elephant standing next to a tree" + }, + { + "label": "two elephants standing in a pen in different spots", + "pred": "a small elephant standing next to a large elephant" + }, + { + "label": "a person wearing a suit and tie", + "pred": "a man in a suit and tie standing in front of a train" + }, + { + "label": "a smiling man in a green suit and a hat", + "pred": "a man in a suit and tie standing in front of a train" + }, + { + "label": "a black and white image with a colored british flag umbrella", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a parking meter next to a parking lot", + "pred": "a parking meter with graffiti on it" + }, + { + "label": "a man in a hat is standing near train tracks", + "pred": "a man in a suit and tie standing in front of a train" + }, + { + "label": "suitcases on wheels leaning up against one long table with chairs", + "pred": "a pile of luggage sitting on top of a wooden floor" + }, + { + "label": "a table full of many diffrent house hold items", + "pred": "a cat laying on top of a table next to a pair of shoes" + }, + { + "label": "an elephant standing in the middle of a rocky environment", + "pred": "a large elephant standing next to a tree" + }, + { + "label": "a small truck parked on the side of a street ready to go", + "pred": "the back of a truck with a picture painted on the side of it" + }, + { + "label": "a woman with child pack on holding an umbrella", + "pred": "a woman with an umbrella walking down the street" + }, + { + "label": "a man with a hat standing close to the tracks", + "pred": "a man in a suit and tie standing in front of a train" + }, + { + "label": "the wooden patio deck has plenty of seating", + "pred": "a white umbrella sitting on top of a wooden table" + }, + { + "label": "the guy is standing outside taking his picture in his suit", + "pred": "a man in a suit and tie standing in front of a train" + }, + { + "label": "a man standing next to suitcases and bags", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a man in the ocean with a dog on a surfboard", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a patio with a table and blue and white umbrella", + "pred": "a white umbrella sitting on top of a wooden table" + }, + { + "label": "two cats are outside and perched on someone's sneakers", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "an elephant is alone in a wooded enclosure", + "pred": "a large elephant standing next to a tree" + }, + { + "label": "a lady in a crowd holding an umbrella with a british flag design", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "the young man is outside playing a game of frisbee", + "pred": "a woman holding a frisbee in front of a building" + }, + { + "label": "a surfer has launched his dog across a wave as the dog holds on for dear life", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a black and white cow stands in a paddock with firewood", + "pred": "a black and white cow standing next to a wooden fence" + }, + { + "label": "a train approaching a railroad crossing during the day", + "pred": "a train traveling down train tracks next to a building" + }, + { + "label": "an elegant with a red shawl draped on top of it", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a train track junction with a train on one of the tracks", + "pred": "a train traveling down train tracks next to a building" + }, + { + "label": "people laying in chairs, walking, and playing in the water on the beach", + "pred": "a large group of people sitting on top of a beach" + }, + { + "label": "a large beach filled with many people and umbrellas", + "pred": "a large group of people sitting on top of a beach" + }, + { + "label": "a train is approaching a train signal in an area with several tracks", + "pred": "a train traveling down train tracks next to a building" + }, + { + "label": "two cats are sitting on a pair of shoes outdoors", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "a train drives down rail road tracks next to a brick building", + "pred": "a train traveling down train tracks next to a building" + }, + { + "label": "a row of various types of chairs and umbrella with a bridge", + "pred": "an umbrella sitting on top of a picnic table" + }, + { + "label": "a strange trolley is being pulled through town", + "pred": "a woman walking down a street next to a bus" + }, + { + "label": "people are sitting in lounge chairs on the beach", + "pred": "a large group of people sitting on top of a beach" + }, + { + "label": "cows walking down a beach", + "pred": "a herd of cattle standing on top of a beach" + }, + { + "label": "a trolley with people drives down a street by a building", + "pred": "a woman walking down a street next to a bus" + }, + { + "label": "a suitcase, umbrella, flowers and balloon sitting next to a fence", + "pred": "a red piece of luggage sitting on top of a brick wall" + }, + { + "label": "a beach setting with lots of people and sun umbrellas", + "pred": "a large group of people sitting on top of a beach" + }, + { + "label": "a small boat traveling in the water filled with people holding umbrellas", + "pred": "people on a boat in the water" + }, + { + "label": "grey and white cat sitting in a small sink", + "pred": "a cat sitting in a bathroom sink" + }, + { + "label": "a dog peeks out from the backpack of a man at the airport", + "pred": "a person with a dog on a leash" + }, + { + "label": "an automated pay station for a parking lot", + "pred": "a brick wall with a fire hydrant next to it" + }, + { + "label": "color corrected photograph of a person carrying a red, white and blue umbrella", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "four cows walking down a sandy beach near the water", + "pred": "a herd of cattle standing on top of a beach" + }, + { + "label": "man with a backpack carrying his dog in the pouch", + "pred": "a person with a dog on a leash" + }, + { + "label": "a deck with a chair and a table with umbrella on it", + "pred": "a white umbrella sitting on top of a wooden table" + }, + { + "label": "a polar bear on a rock formation", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a colorful umbrella in the center of a black and white picture of a busy city side walk", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "two striped cats lying with two sneakers on a ledge", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "people in a body of water with some elephants", + "pred": "elephants that are in the water" + }, + { + "label": "four men on at a military awards ceremony", + "pred": "men in military uniforms standing next to each other" + }, + { + "label": "elephants being cleaned by their handlers in a river", + "pred": "elephants that are in the water" + }, + { + "label": "a man is in the ocean waves near his surfboard with a dog on it", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "an elephant standing in a shaded cleaning in a wooded area", + "pred": "a large elephant standing next to a tree" + }, + { + "label": "standing suit cases being stored in a room", + "pred": "a pile of luggage sitting on top of a wooden floor" + }, + { + "label": "a cat sitting in a bathroom sink next to a mirror", + "pred": "a cat sitting in a bathroom sink" + }, + { + "label": "people walking on the street in a city", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a man is holding a yellow frisbee outside", + "pred": "a woman holding a frisbee in front of a building" + }, + { + "label": "people at a beach in lounge chairs and umbrella shades", + "pred": "a large group of people sitting on top of a beach" + }, + { + "label": "an elephant walks alone past some big rocks boulders in an open field", + "pred": "a large elephant standing next to a tree" + }, + { + "label": "a lady is riding the back of a trolley train", + "pred": "a woman walking down a street next to a bus" + }, + { + "label": "people riding and washing elephants in a stream", + "pred": "elephants that are in the water" + }, + { + "label": "an elephant draped with a colorful blanket wearing a decorative head piece", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a small child standing on a rock outdoors in a forest wearing a raincoat, rain boots and an umbrella", + "pred": "a little girl standing in the woods holding an umbrella" + }, + { + "label": "a stop sigh on a post with two buses", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a cat is sitting inside of a bathroom sink", + "pred": "a cat sitting in a bathroom sink" + }, + { + "label": "a black and white cow with horns in front of a woodpile", + "pred": "a black and white cow standing next to a wooden fence" + }, + { + "label": "cows walking along the beach, and people out in the water", + "pred": "a herd of cattle standing on top of a beach" + }, + { + "label": "man starting to climb steps with dog's head sticking out of backpack", + "pred": "a person with a dog on a leash" + }, + { + "label": "a man standing next to a stack of red luggage", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a red balloon tied to a purse with an umbrella and luggage", + "pred": "a red piece of luggage sitting on top of a brick wall" + }, + { + "label": "a polar bear yawning while standing on a rock", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "orange and brown cat sitting on top of white shoes", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "three people riding on the backs of elephants", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a boat filled with many people all holding open umbrellas", + "pred": "people on a boat in the water" + }, + { + "label": "a dog surfing a small wave with his owner swimming behind him", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "cows walk along a beach with a mountain in the distance", + "pred": "a herd of animals standing on top of a sandy beach" + }, + { + "label": "multiple colored bus passing beside a tiered building", + "pred": "a woman walking down a street next to a bus" + }, + { + "label": "a black parking meter next to a brick building", + "pred": "a brick wall with a fire hydrant next to it" + }, + { + "label": "people in the water helping some elephants", + "pred": "elephants that are in the water" + }, + { + "label": "a man helps a dog ride a wave on a surf board", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a cat is staring while sitting in a sink", + "pred": "a cat sitting in a bathroom sink" + }, + { + "label": "a man outside playing frisbee in front of a building", + "pred": "a woman holding a frisbee in front of a building" + }, + { + "label": "a cow is standing next to chopped wood looking at the camera", + "pred": "a black and white cow standing next to a wooden fence" + }, + { + "label": "a road sign sitting in front so a billboard", + "pred": "a parking meter with graffiti on it" + }, + { + "label": "a person in a subway station with a dog in a backpack", + "pred": "a person with a dog on a leash" + }, + { + "label": "a decorated truck is parked at a curb near a building", + "pred": "a truck with graffiti painted on the side of it" + }, + { + "label": "cows walking on a beach and people and a boat in the water", + "pred": "a herd of cattle standing on top of a beach" + }, + { + "label": "a woman pats an elephant as a couple men watch", + "pred": "a man standing next to an elephant next to a fence" + }, + { + "label": "a train of animals in the distance on the beach", + "pred": "a herd of animals standing on top of a sandy beach" + }, + { + "label": "an elephant is standing in the water drinking it", + "pred": "a large elephant standing next to a pool of water" + }, + { + "label": "a polar bear opening its mouth while standing on a rock", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "two cows in this grassy field", + "pred": "a herd of animals grazing on a lush green field" + }, + { + "label": "a boat in the water full of people holding umbrellas", + "pred": "people on a boat in the water" + }, + { + "label": "a double parking meter in front of a building", + "pred": "a parking meter with graffiti on it" + }, + { + "label": "a man dressed in a labcoat and gloves holds a handsaw", + "pred": "a man in a suit and tie holding a knife" + }, + { + "label": "an elephant drinking water in an enclosure at a zoo", + "pred": "a large elephant standing next to a pool of water" + }, + { + "label": "people holding umbrella's riding in a boat", + "pred": "people on a boat in the water" + }, + { + "label": "they'll probably tow your car if you don't pay for parking", + "pred": "a brick wall with a fire hydrant next to it" + }, + { + "label": "is he going to saw somebody's arm off with that thing", + "pred": "a man in a suit and tie holding a knife" + }, + { + "label": "black cattle are grazing in a green field", + "pred": "a herd of animals grazing on a lush green field" + }, + { + "label": "a cow with a bell around its neck standing near a wood pile", + "pred": "a black and white cow standing next to a wooden fence" + }, + { + "label": "a man in a white lab coat holding a hacksaw", + "pred": "a man in a suit and tie holding a knife" + }, + { + "label": "a delivery box truck with a painting going around it", + "pred": "a truck with graffiti painted on the side of it" + }, + { + "label": "the elephant is forced to wear the costume", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "three people standing next to a large elephant", + "pred": "a man standing next to an elephant next to a fence" + }, + { + "label": "4 chairs rest on the concrete outside in front of a fence", + "pred": "an umbrella sitting on top of a picnic table" + }, + { + "label": "an elephant stands while wearing a colorful cloth", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a brightly painted truck on a city street", + "pred": "a truck with graffiti painted on the side of it" + }, + { + "label": "a stop sign and yield sign", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "the male doctor is holding a medical saw", + "pred": "a man in a suit and tie holding a knife" + }, + { + "label": "a black and white cow is standing by a wood pile", + "pred": "a black and white cow standing next to a wooden fence" + }, + { + "label": "a cat outside looking straight ahead with a tree behind it", + "pred": "a cat that is looking at the camera" + }, + { + "label": "a box where you pay for your parking", + "pred": "a brick wall with a fire hydrant next to it" + }, + { + "label": "a young man in black clothes holding a yellow frisbee", + "pred": "a woman holding a frisbee in front of a building" + }, + { + "label": "a stop sign on post with a building", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a polar bear standing on a large rock with its mouth wide open", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "an elephant standing in water and drinking it through his trunk", + "pred": "a large elephant standing next to a pool of water" + }, + { + "label": "animals walking by the water with an island", + "pred": "a herd of animals standing on top of a sandy beach" + }, + { + "label": "a boy is throwing a frisbee outside a building", + "pred": "a woman holding a frisbee in front of a building" + }, + { + "label": "elephant enjoying a drink of water in zoo", + "pred": "a large elephant standing next to a pool of water" + }, + { + "label": "pieces of office furniture sitting outside under an umbrella", + "pred": "an umbrella sitting on top of a picnic table" + }, + { + "label": "a large polar bear stands on rock with an open mouth", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "an elephant walking draped with a colorful blanket", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a person standing next to a pile of luggage bags", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a stop sign sitting on top of a metal column", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a man standing beside several small orange suitcases", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a truck is being towed by a much smaller tow truck", + "pred": "a truck that is parked in front of a building" + }, + { + "label": "nothing is quite as soft as a young puppy", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "abandoned chairs sitting by and umbrella by a fence", + "pred": "an umbrella sitting on top of a picnic table" + }, + { + "label": "a street sign with buildings", + "pred": "a stop sign sitting on the side of a road" + }, + { + "label": "a brown and white puppy laying on a woman", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "a cute cat laying down in a sink", + "pred": "a cat laying in a bathroom sink" + }, + { + "label": "animals standing along the shore in a line", + "pred": "a herd of animals standing on top of a sandy beach" + }, + { + "label": "a cat laying inside of a sink under a fixture", + "pred": "a cat laying in a bathroom sink" + }, + { + "label": "two people riding a motorcycle with chairs and umbrellas near by", + "pred": "an umbrella sitting on top of a picnic table" + }, + { + "label": "a grey and white cat lays in a sink", + "pred": "a cat laying in a bathroom sink" + }, + { + "label": "a balloon is tried to a bag right next to a luggage bag", + "pred": "a red piece of luggage sitting on top of a brick wall" + }, + { + "label": "a very close shot of a cat's face in front of the camera", + "pred": "a cat that is looking at the camera" + }, + { + "label": "a red and white boat floating along a river", + "pred": "a red and white boat sitting on top of a body of water" + }, + { + "label": "the ma is trying to tow a smaller truck", + "pred": "a truck that is parked in front of a building" + }, + { + "label": "a brown cat stares at something in the field", + "pred": "a cat that is looking at the camera" + }, + { + "label": "a medium sized red boat going down a waterway", + "pred": "a red and white boat sitting on top of a body of water" + }, + { + "label": "a black and red truck with artwork is parked near a sidewalk on a street", + "pred": "a truck with graffiti painted on the side of it" + }, + { + "label": "small red and white metal ship near a stone embankment", + "pred": "a red and white boat sitting on top of a body of water" + }, + { + "label": "a boat going through the water with a wall in back", + "pred": "a red and white boat sitting on top of a body of water" + }, + { + "label": "a interesting mural on a truck", + "pred": "a truck with graffiti painted on the side of it" + }, + { + "label": "a cat sitting in the sink in the bathroom", + "pred": "a cat laying in a bathroom sink" + }, + { + "label": "cattle are grazing in a bright green pasture along a river and mountains", + "pred": "a herd of animals grazing on a lush green field" + }, + { + "label": "a brick wall with a balloon, luggage and umbrella next to it", + "pred": "a red piece of luggage sitting on top of a brick wall" + }, + { + "label": "a truck transports another tiny truck on its tow", + "pred": "a truck that is parked in front of a building" + }, + { + "label": "a tawny cat stares wide-eyed into the distance", + "pred": "a cat that is looking at the camera" + }, + { + "label": "a cat resting on an open laptop computer", + "pred": "a black and white cat sitting on top of a microwave" + }, + { + "label": "a woman wearing glasses holding a brown and white dog", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "a truck towing a little dumpster behind it with a hitch", + "pred": "a truck that is parked in front of a building" + }, + { + "label": "a red fishing boat moving through the water", + "pred": "a red and white boat sitting on top of a body of water" + }, + { + "label": "cows grazing in a field near trees", + "pred": "a herd of animals grazing on a lush green field" + }, + { + "label": "a herd of elephants standing next to each other", + "pred": "a herd of elephants standing on top of a lush green field" + }, + { + "label": "a striped cat is laying on the sink and looking at the camera", + "pred": "a cat laying in a bathroom sink" + }, + { + "label": "a black fluffy cat sitting on top of a computer keyboard", + "pred": "a black and white cat sitting on top of a microwave" + }, + { + "label": "a black cat is sitting on a metal platform", + "pred": "a black and white cat sitting on top of a microwave" + }, + { + "label": "a cow stares as it stands next to a body of water", + "pred": "a black and white cow standing on top of a sandy beach" + }, + { + "label": "a replica of a bear and her cub in a glass case in an exhibit", + "pred": "a large black bear standing on top of a table" + }, + { + "label": "three people standing by an elephant behind a fence", + "pred": "a man standing next to an elephant next to a fence" + }, + { + "label": "a cow is standing in sand by some water", + "pred": "a black and white cow standing on top of a sandy beach" + }, + { + "label": "a man driving a small boat with a dog sitting on it's front end", + "pred": "a man and a dog on a boat in the water" + }, + { + "label": "three people and one is petting an elephant", + "pred": "a man standing next to an elephant next to a fence" + }, + { + "label": "an exhibit of a bear and it's cub", + "pred": "a large black bear standing on top of a table" + }, + { + "label": "a orange cat with green eyes and long whiskers", + "pred": "a cat that is looking at the camera" + }, + { + "label": "a woman laying on a couch with a white and brown puppy", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "a dog standing on a boat that a man is piloting through the water", + "pred": "a man and a dog on a boat in the water" + }, + { + "label": "a man driving a boat with his dog looking out over the bow", + "pred": "a man and a dog on a boat in the water" + }, + { + "label": "a large colorful truck with a with a wooden building on it's back", + "pred": "an old truck is parked in a parking lot" + }, + { + "label": "an adult cow standing alone in the sand", + "pred": "a black and white cow standing on top of a sandy beach" + }, + { + "label": "a young dog relaxing with his or her human at the end of the day", + "pred": "a person laying on a couch with a dog" + }, + { + "label": "a bear and cub on a marble display", + "pred": "a large black bear standing on top of a table" + }, + { + "label": "a man and a dog on a small boat", + "pred": "a man and a dog on a boat in the water" + }, + { + "label": "the large cat is resting comfortably behind the laptop screen", + "pred": "a black and white cat sitting on top of a microwave" + }, + { + "label": "people walking through a field under the sun", + "pred": "a man riding on the back of a horse through a field" + }, + { + "label": "a black and white cat relaxing inside a laptop", + "pred": "a black and white cat sitting on top of a microwave" + }, + { + "label": "two men and one woman in front of an elephant", + "pred": "a man standing next to an elephant next to a fence" + }, + { + "label": "an old truck with no passenger door with tires and body painted in different colors", + "pred": "an old truck is parked in a parking lot" + }, + { + "label": "a display of a momma bear and her cub", + "pred": "a large black bear standing on top of a table" + }, + { + "label": "sepia photograph of three elephants in a pen", + "pred": "a herd of elephants standing on top of a lush green field" + }, + { + "label": "a big black bear standing with a baby bear", + "pred": "a large black bear standing on top of a table" + }, + { + "label": "an old truck, painted over blue in the desert", + "pred": "an old truck is parked in a parking lot" + }, + { + "label": "a spooky looking hotel resort in the hills", + "pred": "a row of umbrellas sitting on top of a wooded area" + }, + { + "label": "sepia photograph of small elephants in a wildlife park", + "pred": "a herd of elephants standing on top of a lush green field" + }, + { + "label": "a truck with a barn on its bed painted in various colors", + "pred": "an old truck is parked in a parking lot" + }, + { + "label": "two cows outside one laying down and the other standing near a building", + "pred": "a cow standing on top of a lush green field" + }, + { + "label": "a cow standing on the beach by a body of water", + "pred": "a black and white cow standing on top of a sandy beach" + }, + { + "label": "a cow standing in some sand next to some water", + "pred": "a black and white cow standing on top of a sandy beach" + }, + { + "label": "a row of closed brown umbrellas next to a building", + "pred": "a row of umbrellas sitting on top of a wooded area" + }, + { + "label": "a truck with many painted decorations is parked in a desert", + "pred": "an old truck is parked in a parking lot" + }, + { + "label": "a large group of people riding elephants through the brush", + "pred": "a man riding on the back of a horse through a field" + }, + { + "label": "three elephants in a cage at a green field", + "pred": "a herd of elephants standing on top of a lush green field" + }, + { + "label": "three elephants", + "pred": "a herd of elephants standing on top of a lush green field" + }, + { + "label": "a mother and baby elephant walking in green grass in front of a bond", + "pred": "elephants standing in a grassy field" + }, + { + "label": "a small calf nursing a cow in a pasture", + "pred": "a herd of cattle standing on top of a dry grass field" + }, + { + "label": "a black and white photo shows someone standing on a beach behind a curtain", + "pred": "a man sitting on a beach with an umbrella" + }, + { + "label": "the young cow is standing in the field with the older cows", + "pred": "a herd of cattle grazing in a field" + }, + { + "label": "beach umbrellas folded in front of a large house with lots of windows", + "pred": "a row of umbrellas in the snow" + }, + { + "label": "the white scared cow in a tibetan city", + "pred": "a cow standing in the middle of a field" + }, + { + "label": "groups of people riding on the back of elephants", + "pred": "a man riding on the back of a horse" + }, + { + "label": "a person under a tarp", + "pred": "a man sitting on a beach with an umbrella" + }, + { + "label": "people inside a commuter train, with their luggage and bicycles", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "people taking a ride on a group of elephants", + "pred": "a man riding on the back of a horse" + }, + { + "label": "people are standing outside a large boat", + "pred": "people standing on top of a body of water" + }, + { + "label": "people are standing on a dock with their baggage", + "pred": "people standing on top of a body of water" + }, + { + "label": "people standing around a boat on a river", + "pred": "people standing on top of a body of water" + }, + { + "label": "cattle lie in the grass to chew their cud", + "pred": "cows that are laying down in the grass" + }, + { + "label": "a mother elephant and her baby are in a grassy enclosure", + "pred": "elephants standing in a grassy field" + }, + { + "label": "all of the umbrellas are folded up", + "pred": "a row of umbrellas in the snow" + }, + { + "label": "people with luggage on an airport transfer bus", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "two people walk down the street with umbrellas", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "all umbrellas are closed at he tables outside the hotel", + "pred": "a row of umbrellas in the snow" + }, + { + "label": "three men stand next to a car with its hood open", + "pred": "two men standing next to a blue truck" + }, + { + "label": "men standing next to a truck", + "pred": "two men standing next to a blue truck" + }, + { + "label": "two women with open umbrellas walking down a street", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a man in the desert sits in the shade next to his birdcage", + "pred": "a man sitting on a beach with an umbrella" + }, + { + "label": "a cow standing in a grassy open field", + "pred": "a cow standing in the middle of a field" + }, + { + "label": "a baby cow gets milk from its mother while two other cows stand nearby", + "pred": "a herd of cattle grazing in a field" + }, + { + "label": "a person in white is standing next to a table on sandy ground", + "pred": "a man sitting on a beach with an umbrella" + }, + { + "label": "a woman and a dog sitting on the ground", + "pred": "a woman sitting on the beach with a dog" + }, + { + "label": "rows of boats docked on a body of water", + "pred": "boats are docked in the water" + }, + { + "label": "a woman holding an umbrella sitting on a blanket next to two dogs", + "pred": "a woman sitting on the beach with a dog" + }, + { + "label": "a herd of cattle sitting and standing on a lush green field", + "pred": "a cow standing in the middle of a field" + }, + { + "label": "elephants walking across a lush green field", + "pred": "elephants standing in a grassy field" + }, + { + "label": "men standing next to a truck with it's hood open and a boat", + "pred": "two men standing next to a blue truck" + }, + { + "label": "cows lying down in a field of grass", + "pred": "cows that are laying down in the grass" + }, + { + "label": "groups of people riding on the backs of elephants", + "pred": "a man riding on the back of a horse" + }, + { + "label": "a man in a hat and glasses is sitting on a boat with a dog", + "pred": "two people on a boat in the water" + }, + { + "label": "a woman is playing with her dogs under an umbrella", + "pred": "a woman sitting on the beach with a dog" + }, + { + "label": "a dog is reaching up to grab a frisbee in his mouth", + "pred": "a black and white dog catching a frisbee in" + }, + { + "label": "a boat sitting on top of a beach next to a body of water", + "pred": "a small boat sitting on top of a lake" + }, + { + "label": "two elephants that are standing next to each other", + "pred": "elephants standing next to each other" + }, + { + "label": "a boat is sitting in the sand near the water", + "pred": "a small boat sitting on top of a lake" + }, + { + "label": "a cat peeking it's head out of the blankets", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "two dogs and a cat sleeping on their human's bed", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "two dogs and a cat sleeping on a bed together", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "a kitten on a bad with its arm stretched out toward the camera", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a woman is walking and carrying an umbrella over her head", + "pred": "a person with an umbrella standing in the grass" + }, + { + "label": "a cat laying on a bed in a room", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "young women holding umbrellas while walking down a street", + "pred": "three women walking down a street holding umbrellas" + }, + { + "label": "a row of girls holding umbrellas pose for a picture", + "pred": "three women walking down a street holding umbrellas" + }, + { + "label": "a boat out of the water on the shore with other boats", + "pred": "a small boat sitting on top of a lake" + }, + { + "label": "a person standing with umbrella in front of wall", + "pred": "a person with an umbrella standing in the grass" + }, + { + "label": "a mama elephant and her baby inside a fence", + "pred": "elephants standing next to each other" + }, + { + "label": "a bed with two dogs and a cat lying on it", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "a small boat is beached on the shore", + "pred": "a small boat sitting on top of a lake" + }, + { + "label": "a dog catching a purple frisbee in it's mouth on a green grass covered field", + "pred": "a black and white dog catching a frisbee in" + }, + { + "label": "a large elephant standing next to a smaller elephant", + "pred": "elephants standing next to each other" + }, + { + "label": "women in warm weather clothes with multi-colored parasols", + "pred": "three women walking down a street holding umbrellas" + }, + { + "label": "five women walk down the street, holding umbrellas", + "pred": "three women walking down a street holding umbrellas" + }, + { + "label": "a boat stowed up on the beaches on sand", + "pred": "a small boat sitting on top of a lake" + }, + { + "label": "a cat laying down on a blue comforter with pink sheets", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "elephant mama and baby in their zoo enclosure", + "pred": "elephants standing next to each other" + }, + { + "label": "a girl walking a path holding an orange umbrella", + "pred": "a person with an umbrella standing in the grass" + }, + { + "label": "two dogs and a cat sleeping on a bed", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "a cat laying on a blanket on top of a pillow", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a dog playing with a frisbee", + "pred": "a black and white dog catching a frisbee in" + }, + { + "label": "a black and white dog catching a blue flying disc", + "pred": "a black and white dog catching a frisbee in" + }, + { + "label": "a mother elephant and her baby are standing alongside a dry water pool", + "pred": "elephants standing next to each other" + }, + { + "label": "two dogs and a cat lying on a bed", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "a woman stands in a garden holding an umbrella", + "pred": "a person holding an umbrella in front of a fence" + }, + { + "label": "a woman walking by a fence holding an orange umbrella over her", + "pred": "a person holding an umbrella in front of a fence" + }, + { + "label": "five ladies standing in the street with umbrellas", + "pred": "three women walking down a street holding umbrellas" + }, + { + "label": "three people in a boat with an umbrella in the rain", + "pred": "people sitting on a boat in the water" + }, + { + "label": "people walk on the beach with boats nearby", + "pred": "a large body of water with boats in it" + }, + { + "label": "a gentleman walking in the rain along a river", + "pred": "a person walking on a bridge with an umbrella" + }, + { + "label": "three people on a canoe in the rain with an umbrella up", + "pred": "people sitting on a boat in the water" + }, + { + "label": "a cow stands in a field where other cows are lying down", + "pred": "a black and white cow standing in a field" + }, + { + "label": "a black and white dog jumping up catching a frisbee", + "pred": "a black and white dog catching a frisbee" + }, + { + "label": "elephants are in a ring with a person near bleachers", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "two images of open suitecases full of toiletries", + "pred": "a suitcase full of luggage sitting on the floor" + }, + { + "label": "three people in a small boat holding an umbrella", + "pred": "people sitting on a boat in the water" + }, + { + "label": "three people sitting side by side in a canoe with tow paddling and the middle person holding up an umbrella", + "pred": "people sitting on a boat in the water" + }, + { + "label": "a cow standing in a field with lots of tall grass", + "pred": "a black and white cow standing in a field" + }, + { + "label": "boats in the water that you can see from the beach", + "pred": "a large body of water with boats in it" + }, + { + "label": "cattle standing on a lush green field", + "pred": "cows standing on top of a lush green field" + }, + { + "label": "a cow in front of a camera", + "pred": "a black and white cow standing in a field" + }, + { + "label": "three people are in a small boat in a lake and one woman holds a red and yellow umbrella", + "pred": "people sitting on a boat in the water" + }, + { + "label": "two elephants walking around the center ring of a circus", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "the calf is in the pasture staring at the camera", + "pred": "a black and white cow standing in a field" + }, + { + "label": "with a foggy haze in the valley, some cows lay low on the grassy hillside", + "pred": "cows standing on top of a lush green field" + }, + { + "label": "two row boats are laying upside down in the woods", + "pred": "a boat sitting in the middle of a forest" + }, + { + "label": "one cow walking across a field and another cow laying down on the ground", + "pred": "cows standing on top of a lush green field" + }, + { + "label": "two cows grazing on a green pasture", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "cows grazing on the grass in front of a building", + "pred": "cows standing on top of a lush green field" + }, + { + "label": "two small green boats on a platform in the woods", + "pred": "a boat sitting in the middle of a forest" + }, + { + "label": "a man standing on a street with a umbrella", + "pred": "a person walking on a bridge with an umbrella" + }, + { + "label": "two black and white cows on a green hill", + "pred": "cows standing on top of a lush green field" + }, + { + "label": "a black and white cow is standing in a field", + "pred": "a black and white cow standing in a field" + }, + { + "label": "two cows with spots are grazing in some grass", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a girl in a dress and shirt standing in a field", + "pred": "a woman in a pink dress standing in a field" + }, + { + "label": "a large body of water with boats in the water and various people in the water at the shoreline", + "pred": "a large body of water with boats in it" + }, + { + "label": "boats turned over in a forest", + "pred": "a boat sitting in the middle of a forest" + }, + { + "label": "a cow standing in a field with a smaller cow", + "pred": "a large brown cow standing on top of a dry grass field" + }, + { + "label": "trucks and cars parked in a parking lot", + "pred": "a yellow pick up truck parked in a parking lot" + }, + { + "label": "a number of people in a bod of water", + "pred": "a large body of water with boats in it" + }, + { + "label": "a calf laying in front of a cow", + "pred": "a large brown cow standing on top of a dry grass field" + }, + { + "label": "a briefcase sitting on top of a bed with lots of items in them", + "pred": "a suitcase full of luggage sitting on top of a wooden floor" + }, + { + "label": "long haired cattle in a field with calf", + "pred": "a large brown cow standing on top of a dry grass field" + }, + { + "label": "a man walking with an umbrella near a railing above a river", + "pred": "a person walking on a bridge near a body of water" + }, + { + "label": "a green coat flipped upside down on top of a beach", + "pred": "a boat sitting in the middle of a forest" + }, + { + "label": "an open luggage bag on the ground next to a back pack", + "pred": "a suitcase full of luggage sitting on top of a wooden floor" + }, + { + "label": "a large elephant standing next to a small elephant playing in the water", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "a woman in a red dress standing on top of a lush green field", + "pred": "a woman in a pink dress standing in a field" + }, + { + "label": "two elephants are in the middle of a circus ring", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "a man standing near a river with a umbrella", + "pred": "a person walking on a bridge near a body of water" + }, + { + "label": "boats floating on top of a lake next to shore", + "pred": "a large body of water with boats in it" + }, + { + "label": "two green small boats in the woods", + "pred": "a boat sitting in the middle of a forest" + }, + { + "label": "elephants standing in the water", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "a long horn bull standing next to a sheep on a grass covered field", + "pred": "a large brown cow standing on top of a dry grass field" + }, + { + "label": "opened suitcase displaying many different items in plastic bags", + "pred": "a suitcase full of luggage sitting on top of a wooden floor" + }, + { + "label": "an elephant and a baby elephant are bathing in a river", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "luggage on the floor opened to show it's stuffed contents", + "pred": "a suitcase full of luggage sitting on top of a wooden floor" + }, + { + "label": "the yellow pick up truck is parked on the side of the road", + "pred": "a yellow pick up truck parked in a parking lot" + }, + { + "label": "a man holding an umbrella next to a waterway", + "pred": "a person walking on a bridge near a body of water" + }, + { + "label": "the elephants are about to leave the ring", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "an old yellow truck in a parking lot", + "pred": "a yellow pick up truck parked in a parking lot" + }, + { + "label": "cat sitting up with a fake tie around it's neck", + "pred": "a cat wearing a bow tie sitting on a bed" + }, + { + "label": "a brown and a gray elephant are in a circus ring and the brown elephant is walking behind the gray elephant as well as two people training them are standing nearby", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "a young woman stands still on a grassy patch", + "pred": "a woman in a pink dress standing in a field" + }, + { + "label": "a mother elephant gives her baby a bath", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "a bull standing over a calf in a large open pasture", + "pred": "a large brown cow standing on top of a dry grass field" + }, + { + "label": "a large and small elephant bathing in the river", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "a cat is wearing a tie and sitting on some clothes", + "pred": "a cat wearing a bow tie sitting on a bed" + }, + { + "label": "two black and white cows grazing in a grassy pasture", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a small cat asleep in a pile of stuffed animals", + "pred": "a cat laying on a blanket next to a bunch of stuffed animals" + }, + { + "label": "a kitten sleeps with many stuffed animals on the bed", + "pred": "a cat laying on a blanket next to a bunch of stuffed animals" + }, + { + "label": "a brown bear walking on a ledge with trees", + "pred": "a large brown bear standing on top of a rock" + }, + { + "label": "two black and white cows are in a grass field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a big, yellow truck is parked in a lot near a tree", + "pred": "a yellow pick up truck parked in a parking lot" + }, + { + "label": "a woman wearing a dress and a bow tie in a pasture", + "pred": "a woman in a pink dress standing in a field" + }, + { + "label": "two jersey cows grazing in a green meadow", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "parking lot full of different colored semi trucks", + "pred": "a parking lot filled with lots of parked cars" + }, + { + "label": "this girl is looking down at her shoes", + "pred": "a woman in a pink dress standing in a field" + }, + { + "label": "yellow, white and blue trucks are parked in a parking lot", + "pred": "a parking lot filled with lots of parked cars" + }, + { + "label": "a herd of elephants standing on a pond of water", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "pieces of luggage gathers together, all with tags attached", + "pred": "a row of suitcases stacked on top of each other" + }, + { + "label": "a yellow pickup truck parked in a parking lot", + "pred": "a yellow pick up truck parked in a parking lot" + }, + { + "label": "these elephants are standing in the water outside", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "a pile of stuffed animals sitting on top of a bed", + "pred": "a cat laying on a blanket next to a bunch of stuffed animals" + }, + { + "label": "a herd of grey elephants drinking from a pond", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "a polar bear following a big winged bird", + "pred": "a large white polar bear standing next to a small white polar bear" + }, + { + "label": "a white and grey tabby kitten sleeping with stuffed animals", + "pred": "a cat laying on a blanket next to a bunch of stuffed animals" + }, + { + "label": "a bear walking up on top of a wall", + "pred": "a large brown bear standing on top of a rock" + }, + { + "label": "a large bear landing a large polar bear is in the background preparing to drink from the water", + "pred": "a large white polar bear standing next to a small white polar bear" + }, + { + "label": "a herd of elephants drinking together at a body of water", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "adult elephants and one baby elephant drinking water", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "a cute little kitty laying among stuffed animals", + "pred": "a cat laying on a blanket next to a bunch of stuffed animals" + }, + { + "label": "three teddy bears laying in bed under the covers", + "pred": "a teddy bear sitting on a blanket next to a stuffed animal" + }, + { + "label": "a wharehouse accomodates a vast array of big trucks", + "pred": "a parking lot filled with lots of parked cars" + }, + { + "label": "rows of various colored suitcases at an airport", + "pred": "a row of suitcases stacked on top of each other" + }, + { + "label": "a small cat sitting on top of a couch looking out a window at another cat", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a pile of different colored bags of luggage sitting on a floor", + "pred": "a row of suitcases stacked on top of each other" + }, + { + "label": "a building with many trucks of different colors on a parking lot", + "pred": "a parking lot filled with lots of parked cars" + }, + { + "label": "the big bear is outside walking across the concrete wall", + "pred": "a large brown bear standing on top of a rock" + }, + { + "label": "a parking lot with various trucks in it next to a building", + "pred": "a parking lot filled with lots of parked cars" + }, + { + "label": "a bear doing a tightrope act on a stone wall", + "pred": "a large brown bear standing on top of a rock" + }, + { + "label": "three rows of luggage of various color and size", + "pred": "a row of suitcases stacked on top of each other" + }, + { + "label": "stuffed animals sitting next to each other in bed", + "pred": "a teddy bear sitting on a blanket next to a stuffed animal" + }, + { + "label": "a cat wearing a neck tie sitting on a bed", + "pred": "a cat wearing a bow tie sitting on a bed" + }, + { + "label": "suit cases lined in rows with luggage tags on them", + "pred": "a row of suitcases stacked on top of each other" + }, + { + "label": "a bear walking across a stone wall near trees", + "pred": "a large brown bear standing on top of a rock" + }, + { + "label": "a white, beige and brown baby bear under a beige/white comforter", + "pred": "a teddy bear sitting on a blanket next to a stuffed animal" + }, + { + "label": "a cat standing on a bed and wearing a tie", + "pred": "a cat wearing a bow tie sitting on a bed" + }, + { + "label": "men enthusiastically caught in mid air at the same time", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a zebra grazing on a dry grass field next to elephants", + "pred": "a zebra and an elephant grazing in a field" + }, + { + "label": "a trio of teddy bears bundled up on a bed", + "pred": "a teddy bear sitting on a blanket next to a stuffed animal" + }, + { + "label": "a polar bear and a bird near a small pond", + "pred": "a large white polar bear standing next to a small white polar bear" + }, + { + "label": "two children smiling on top of luggage in parking lot", + "pred": "a woman sitting in a car next to a cart full of food" + }, + { + "label": "three stuffed animals lay in a bed cuddled together", + "pred": "a teddy bear sitting on a blanket next to a stuffed animal" + }, + { + "label": "a bird sitting in front of the water with a bear on the other side", + "pred": "a large white polar bear standing next to a small white polar bear" + }, + { + "label": "a chair in the corner on a boat", + "pred": "a boat sitting on top of a dock next to a body of water" + }, + { + "label": "a ship in the sea on which a chair and carry bags are kept", + "pred": "a boat sitting on top of a dock next to a body of water" + }, + { + "label": "an elephant standing next to a stone in a cage", + "pred": "elephants are standing in a zoo enclosure" + }, + { + "label": "a wicker chair sitting on the end of a wooden pier", + "pred": "a boat sitting on top of a dock next to a body of water" + }, + { + "label": "an elephant playing with a sack handing from a concrete structure", + "pred": "elephants are standing in a zoo enclosure" + }, + { + "label": "a deck area with a chair and two backpacks, looking over a large body of calm water", + "pred": "a boat sitting on top of a dock next to a body of water" + }, + { + "label": "a chair and luggage sitting at a railing on the water", + "pred": "a boat sitting on top of a dock next to a body of water" + }, + { + "label": "two little children on stroller in a parking lot", + "pred": "a woman sitting in a car next to a cart full of food" + }, + { + "label": "a polar bear walks toward water, while a large bird lands on the opposite bank", + "pred": "a large white polar bear standing next to a small white polar bear" + }, + { + "label": "a cat wearing a tie on some cloths", + "pred": "a cat wearing a bow tie sitting on a bed" + }, + { + "label": "two children in a stroller among cars in a rental lot", + "pred": "a woman sitting in a car next to a cart full of food" + }, + { + "label": "a cow grazing on the side of a hill", + "pred": "a brown horse standing on top of a lush green hillside" + }, + { + "label": "a brown cow grazing on grass on a mountain", + "pred": "a brown horse standing on top of a lush green hillside" + }, + { + "label": "a elephant running after a dog on a mud flat", + "pred": "a large elephant standing next to a small elephant" + }, + { + "label": "a beach with two boats and a tractor", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "a tractor and two boats beside the water", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "two orange cats in windows in buildings across from one another", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a cat peeking around a curtain at a cat across the way in a window", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "an elephant reaching for a ball hanging above it", + "pred": "elephants are standing in a zoo enclosure" + }, + { + "label": "a zebra and elephants in a grassy area with sky", + "pred": "a zebra and an elephant grazing in a field" + }, + { + "label": "a cat staring out a window at another cat", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "tow cats laying down looking out of the windows", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "six men jumping in the air on the lawn", + "pred": "young men playing a game of frisbee" + }, + { + "label": "large running mower sitting next to two boats on a ocean side", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "an elephant eating something from a hanging net", + "pred": "elephants are standing in a zoo enclosure" + }, + { + "label": "elephant going after a small animal of prey", + "pred": "a large elephant standing next to a small elephant" + }, + { + "label": "six well dressed men jumping into the air simultaneously", + "pred": "young men playing a game of frisbee" + }, + { + "label": "two children sit atop their parent's luggage in the parking lot", + "pred": "a woman sitting in a car next to a cart full of food" + }, + { + "label": "small girl reaching for her umbrella on a driveway", + "pred": "a little girl that is standing in the street with a pink umbrella" + }, + { + "label": "two kids sitting in a luggage cart together", + "pred": "a woman sitting in a car next to a cart full of food" + }, + { + "label": "the six men wearing ties are jumping outside", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a little girl grabbing for a pink umbrella", + "pred": "a little girl that is standing in the street with a pink umbrella" + }, + { + "label": "an elephan standing around next to some people", + "pred": "elephants are standing in a zoo enclosure" + }, + { + "label": "a small child with an open umbrella on the ground", + "pred": "a little girl that is standing in the street with a pink umbrella" + }, + { + "label": "six adult males outside jumping up in the air", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a zebra and two elephants are on a grassy field", + "pred": "a zebra and an elephant grazing in a field" + }, + { + "label": "an animal grazing on a grassy hill near mountains", + "pred": "a brown horse standing on top of a lush green hillside" + }, + { + "label": "a tractor next to some boats on the beach", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "a tractor on beach next to boats", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "adult elephant running after a small brown dog", + "pred": "a large elephant standing next to a small elephant" + }, + { + "label": "a man in a suit with a blue tie and vest", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a cow is standing on a grassy sloped hill", + "pred": "a brown horse standing on top of a lush green hillside" + }, + { + "label": "a little girl picking up an upside down umbrella by its handle", + "pred": "a little girl that is standing in the street with a pink umbrella" + }, + { + "label": "a dog laying on grass near a flying disc", + "pred": "a black and white dog laying in the grass with a frisbee" + }, + { + "label": "an elephant is chasing a dog around in the dirt", + "pred": "a large elephant standing next to a small elephant" + }, + { + "label": "an elephant and a dog on a dirt field with trees", + "pred": "a large elephant standing next to a small elephant" + }, + { + "label": "a man is wearing a black suit and a printed tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a dog laying in the grass with a frisbee near his arms", + "pred": "a black and white dog laying in the grass with a frisbee" + }, + { + "label": "a large brown cow standing on the side of a lush green hill", + "pred": "a brown horse standing on top of a lush green hillside" + }, + { + "label": "a very young girl is about to grab and upside down umbrella", + "pred": "a little girl that is standing in the street with a pink umbrella" + }, + { + "label": "a tabby cat siting on an orange chair", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "a man is wearing a dark jacket and a silk vest and tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a man standing with a tie and suit on", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a vehicle displays a customized license plate and milk advertisements", + "pred": "a white bus parked on the side of the road" + }, + { + "label": "a cat that is sitting on an orange chair", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "a happy black and white dog next to a frisbee", + "pred": "a black and white dog laying in the grass with a frisbee" + }, + { + "label": "a zebra grazing in a field with elephants", + "pred": "a zebra and an elephant grazing in a field" + }, + { + "label": "a black and white dog laying in the grass with a frisbee", + "pred": "a black and white dog laying in the grass with a frisbee" + }, + { + "label": "a pregnant zebra eating grass close to two elephants", + "pred": "a zebra and an elephant grazing in a field" + }, + { + "label": "a man wears a dark suit with a dark tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a happy dog sitting on the grass next to a frisbee", + "pred": "a black and white dog laying in the grass with a frisbee" + }, + { + "label": "a man's reflection taking a picture through a shop window", + "pred": "a shop window filled with lots of different types of items" + }, + { + "label": "a man taking a picture of items for sale through the front window of a store", + "pred": "a shop window filled with lots of different types of items" + }, + { + "label": "a large black dog with long hair standing on steps", + "pred": "a dog sitting on a wooden bench next to a bunch of logs" + }, + { + "label": "a display on a store front with lots of items on display", + "pred": "a shop window filled with lots of different types of items" + }, + { + "label": "a white milk truck with a license plate that reads \"pro milk.\"", + "pred": "a white bus parked on the side of the road" + }, + { + "label": "two elephants cross tusks in confrontation in a field", + "pred": "elephants standing on top of a lush green field" + }, + { + "label": "a woman carrying her dog on a busy city street", + "pred": "a white bus parked on the side of the road" + }, + { + "label": "a woman holding a dog and a truck", + "pred": "a white bus parked on the side of the road" + }, + { + "label": "a picture looking in to an umbrella shop", + "pred": "a shop window filled with lots of different types of items" + }, + { + "label": "woman is walking with a dog in her hands", + "pred": "a white bus parked on the side of the road" + }, + { + "label": "a cat sitting in an orange chair in a bedroom", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "a cat is sitting on a bright orange chair", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "a display of shoes and umbrellas are in a window", + "pred": "a shop window filled with lots of different types of items" + }, + { + "label": "two elephants standing next to each other in a field", + "pred": "elephants standing on top of a lush green field" + }, + { + "label": "two elephants in a field entwining their trunks", + "pred": "elephants standing on top of a lush green field" + }, + { + "label": "a cat sitting on a chair in a bedroom", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "two elephants wrapping their trunks together in a field", + "pred": "elephants standing on top of a lush green field" + }, + { + "label": "a open field with large elephants standing in it", + "pred": "elephants standing on top of a lush green field" + }, + { + "label": "a colorful train sits on the tracks in the sunshine", + "pred": "red and yellow trains parked next to each other" + }, + { + "label": "colorful train cars are on the track next to some grass", + "pred": "red and yellow trains parked next to each other" + }, + { + "label": "looking out over a bay with many tourist boats moored", + "pred": "boats docked at a marina on a sunny day" + }, + { + "label": "a cow grazing on the grass on the side of a side walk", + "pred": "a brown and white cow eating grass in front of a house" + }, + { + "label": "three large dogs sitting outside near a forested area", + "pred": "a dog sitting on a wooden bench next to a bunch of logs" + }, + { + "label": "boats that is parked in the water and one is docking", + "pred": "boats docked at a marina on a sunny day" + }, + { + "label": "three dogs sitting on the levels of an empty tiered garden", + "pred": "a dog sitting on a wooden bench next to a bunch of logs" + }, + { + "label": "a fleet of naval ships in the ocean", + "pred": "a large group of people on a boat in the water" + }, + { + "label": "men on aircraft carrier with other boats in the distance", + "pred": "a large group of people on a boat in the water" + }, + { + "label": "a large ship floating in the ocean next to other ships", + "pred": "a large group of people on a boat in the water" + }, + { + "label": "dogs in a yard", + "pred": "a dog sitting on a wooden bench next to a bunch of logs" + }, + { + "label": "a white dog sitting on red table next to metal object", + "pred": "a brown and white dog wearing a pink bow tie" + }, + { + "label": "boats are docked in a lake by a road", + "pred": "boats docked at a marina on a sunny day" + }, + { + "label": "two elephants are eating some leaves by the road", + "pred": "elephants walking down a dirt road" + }, + { + "label": "a small dog with orange hair sitting on top of a desk", + "pred": "a brown and white dog wearing a pink bow tie" + }, + { + "label": "a dog with orange hair that is sitting down", + "pred": "a brown and white dog wearing a pink bow tie" + }, + { + "label": "a red stop sign sitting on top of a green planter", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a brown and white cow standing in front of an iron fence", + "pred": "a brown and white cow eating grass in front of a house" + }, + { + "label": "two elephants standing in tall brush", + "pred": "elephants walking down a dirt road" + }, + { + "label": "three dogs are sitting at various levels in grow boxes", + "pred": "a dog sitting on a wooden bench next to a bunch of logs" + }, + { + "label": "a long train filled with nothing but cabooses", + "pred": "red and yellow trains parked next to each other" + }, + { + "label": "men on a boat looking over the side", + "pred": "a large group of people on a boat in the water" + }, + { + "label": "a small white dog looking into a camera", + "pred": "a brown and white dog wearing a pink bow tie" + }, + { + "label": "the men wear hardhats as they work on the aircraft carrier", + "pred": "a large group of people on a boat in the water" + }, + { + "label": "a row of boats parked next to a shore line", + "pred": "boats docked at a marina on a sunny day" + }, + { + "label": "a cat sitting in front of a large computer monitor", + "pred": "a cat sitting on top of a computer monitor" + }, + { + "label": "a cat observing a computer screen next to a laptop and a cordless phone", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "a large long train on a steel track", + "pred": "red and yellow trains parked next to each other" + }, + { + "label": "two elephants standing in some bushes beside a trail", + "pred": "elephants walking down a dirt road" + }, + { + "label": "a cat is sitting and watching a computer screen", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "a herd of elephants walking across a body of water", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "boats are docked near a city with many tall trees", + "pred": "boats docked at a marina on a sunny day" + }, + { + "label": "traffic stop sign with dilapidated building behind it", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a stop sign with dirty edges at a cross walk of a street", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a red stop sign sitting above a no parking sign", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a white truck with a red car sitting in it's back", + "pred": "a large semi truck parked in a parking lot" + }, + { + "label": "a cat sitting in front of a computer monitor", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "graffiti and stickers are plastered on the stop sign and street sign", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "large elephants standing next to a baby elephant", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "stop sign with a \"gentrifying georgetown\" stamp on it", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "a kitten is trying to interact with a kitten that is on television", + "pred": "a cat sitting on top of a computer monitor" + }, + { + "label": "a large stop sign is set against city buildings", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "why would the cow be grazing in front of those homes", + "pred": "a brown and white cow eating grass in front of a house" + }, + { + "label": "a stop sign with graffiti that reads \"gentrifying georgetown.\"", + "pred": "a red stop sign sitting on top of a metal pole" + }, + { + "label": "cute little dog poses for a picture with the top of it's head dyed", + "pred": "a brown and white dog wearing a pink bow tie" + }, + { + "label": "a row of train colors of various colors next to trees", + "pred": "red and yellow trains parked next to each other" + }, + { + "label": "two elephants are facing each other on the side of a dirt road", + "pred": "elephants walking down a dirt road" + }, + { + "label": "those elephants seem to be roaming in the wild", + "pred": "elephants walking down a dirt road" + }, + { + "label": "a cat \"reading\" the text on a computer screen", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "gray cat looking at electronic monitor next to phone", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "a man in a suit is wearing a lit up tie", + "pred": "a man wearing a suit and tie holding a smart phone" + }, + { + "label": "a herd of elephants in rocky area next to water", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "elephants is walking out of the water", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a herd of large elephants in a pool of water", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a man posing for a portrait wearing a lighted tie", + "pred": "a man wearing a suit and tie holding a smart phone" + }, + { + "label": "a large red stop sign on a street", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a old rusty stop sign out sign some buildings", + "pred": "a red stop sign sitting on the side of a street" + }, + { + "label": "a cat curiously looks at a photo of a cat on a computer screen", + "pred": "a cat sitting on top of a computer monitor" + }, + { + "label": "a brown and white cow grazing in yard next to street", + "pred": "a brown and white cow eating grass in front of a house" + }, + { + "label": "a white truck with a red car on its bed", + "pred": "a large semi truck parked in a parking lot" + }, + { + "label": "a man in a suits fixes his tie", + "pred": "a man wearing a suit and tie holding a smart phone" + }, + { + "label": "a small elephant walks underneath a big elephant", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a herd of large elephants get to the other side after crossing a river", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a mother elephant with her baby elephant underneath her", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a cat looking at another cat on the television", + "pred": "a cat sitting on top of a computer monitor" + }, + { + "label": "a baby elephant that is standing underneath an adult elephant", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a specialized transport truck displays a classic car", + "pred": "a large semi truck parked in a parking lot" + }, + { + "label": "a cat sitting in front of a monitor that is displaying a picture of another cat", + "pred": "a cat sitting on top of a computer monitor" + }, + { + "label": "the photo of the double parking meter has a blurry city", + "pred": "a close up view of a side view mirror on a city street" + }, + { + "label": "a man in glasses and a light up tie", + "pred": "a man wearing a suit and tie holding a smart phone" + }, + { + "label": "a brown cow under a tree in a grassy area", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "two parking meter with the sunshine", + "pred": "a close up view of a side view mirror on a city street" + }, + { + "label": "a man with glasses and sideburns straightening his necktie that has lights on it", + "pred": "a man wearing a suit and tie holding a smart phone" + }, + { + "label": "a white truck carrying a small car in the back", + "pred": "a large semi truck parked in a parking lot" + }, + { + "label": "a truck is shown with another car in the back of it", + "pred": "a large semi truck parked in a parking lot" + }, + { + "label": "cow standing under the only tree to catch some shade", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a brown, white and black cat looking at a laptop", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a baby elephant is walking under a larger elephant", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a cow is leashed up to a green pole near the civilians", + "pred": "a cow standing in the middle of a street" + }, + { + "label": "a big brown cow walking down a sidewalk near homes", + "pred": "a brown and white cow eating grass in front of a house" + }, + { + "label": "a double telescope for seeing things that are far away", + "pred": "a close up view of a side view mirror on a city street" + }, + { + "label": "what appears to be two traffic machines", + "pred": "a close up view of a side view mirror on a city street" + }, + { + "label": "two parking meters with the light of the sunset reflecting off one", + "pred": "a close up view of a side view mirror on a city street" + }, + { + "label": "a big black and white cow standing next to a pole", + "pred": "a cow standing in the middle of a street" + }, + { + "label": "a man and a dog riding a surf board in the water", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a cow in a field standing in the shade of a tree", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a cat is watching a picture on a laptop computer", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a man and a dog paddle on a surfboard", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "people gathered in the lobby of a building", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a cat staring at the screensaver on a laptop", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a cow is standing underneath a leaning tree", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "cat in window sill of colored panes on building", + "pred": "a window that is open in front of a building" + }, + { + "label": "wooden boats sitting in the sand", + "pred": "a row of boats sitting on top of a beach" + }, + { + "label": "old boats are lined up on the shore of the beach", + "pred": "a row of boats sitting on top of a beach" + }, + { + "label": "boats are docked on the sand at a beach", + "pred": "a row of boats sitting on top of a beach" + }, + { + "label": "president barack obama walking near a white building", + "pred": "a man in a suit and tie standing in front of a building" + }, + { + "label": "persons of different origin standing in a hall", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a brown cow is standing under a green tree", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a gray cat lying on a desk near a telephone", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a cow is standing on a street corner", + "pred": "a cow standing in the middle of a street" + }, + { + "label": "that president seems to be walking along the sidewalk", + "pred": "a man in a suit and tie standing in front of a building" + }, + { + "label": "those boats look like they may have been washed on shore", + "pred": "a row of boats sitting on top of a beach" + }, + { + "label": "a cat sitting on a window sill in a room", + "pred": "a window that is open in front of a building" + }, + { + "label": "a black cat is sitting on a desk", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a man in shirt and tie standing in lobby next to other people", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a black and white cow on side of street next to people", + "pred": "a cow standing in the middle of a street" + }, + { + "label": "a colorful truck is driving with a full load of sticks and twigs", + "pred": "a truck filled with hay on the side of the road" + }, + { + "label": "old wooden boats in dry dock on a grey dreary day", + "pred": "a row of boats sitting on top of a beach" + }, + { + "label": "a gray cat on a table with a pen and phone handset", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a dark gray kitty laying on a desk", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a cat sitting on a desk with paper and pen", + "pred": "a cat sitting on a desk next to a computer" + }, + { + "label": "a cow in the middle of a busy road", + "pred": "a cow standing in the middle of a street" + }, + { + "label": "a cat watching a laptop computer screen's screensaver", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a dog rides on a surfboard with a person", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a horse in a pasture of tall grass observing an energetic dog", + "pred": "a brown and white dog standing next to a brown and white horse" + }, + { + "label": "men in blue with hats are riding elephants", + "pred": "men riding on the backs of elephants" + }, + { + "label": "a gray cat is sitting in a tall window", + "pred": "a window that is open in front of a building" + }, + { + "label": "a man in a wet suit riding on a surfboard with a dog", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a closet with several suit cases stacked up near some videos", + "pred": "a stack of suitcases stacked on top of each other" + }, + { + "label": "a president in a nice suit walking near a building", + "pred": "a man in a suit and tie standing in front of a building" + }, + { + "label": "a professionally dressed man poses for the camera", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a large group of people riding on top of some elephants", + "pred": "men riding on the backs of elephants" + }, + { + "label": "a woman in black jacket watching a cat eating from pizza box", + "pred": "a man that is standing next to a cat" + }, + { + "label": "the president of the united states walking beside a building", + "pred": "a man in a suit and tie standing in front of a building" + }, + { + "label": "a long wooden table with a woman sitting under an umbrella", + "pred": "people sitting at a table with umbrellas" + }, + { + "label": "a horse and a dog positions for a picture outside", + "pred": "a brown and white dog standing next to a brown and white horse" + }, + { + "label": "a truck loaded with cargo slowly creeps down the street", + "pred": "a truck filled with hay on the side of the road" + }, + { + "label": "a cat looking at a white laptop on a bed", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a black cat sitting in the window sill", + "pred": "a window that is open in front of a building" + }, + { + "label": "a brown horse stands over a light colored dog", + "pred": "a brown and white dog standing next to a brown and white horse" + }, + { + "label": "a grey cat standing in a window with grey lining", + "pred": "a window that is open in front of a building" + }, + { + "label": "a black suitcase with a handle and white background", + "pred": "a piece of luggage sitting on top of a suitcase" + }, + { + "label": "a dog and a horse stand together in a field", + "pred": "a brown and white dog and a brown and white horse" + }, + { + "label": "girl looks back as she fixes flower on boy's suit", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a girl puts a flower on the lapel of a boys coat", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a woman looking at a cat licking pizza grease", + "pred": "a man that is standing next to a cat" + }, + { + "label": "elephants being ridden by people wearing blue", + "pred": "men riding on the backs of elephants" + }, + { + "label": "a lone woman huddles under her umbrella at a picnic table in the rain", + "pred": "people sitting at a table with umbrellas" + }, + { + "label": "a man in suit and tie walking in front of a white building", + "pred": "a man in a suit standing in front of a stone wall" + }, + { + "label": "a rolling suitcase with smaller case attached to the handle of it", + "pred": "a piece of luggage sitting on top of a suitcase" + }, + { + "label": "a truck on a street with hay in the back", + "pred": "a truck filled with hay on the side of the road" + }, + { + "label": "a man and a dog are in the ocean sharing a ride on a surfboard", + "pred": "a man riding a surfboard on top of a wave" + }, + { + "label": "a small white truck on the road next to trees", + "pred": "a truck filled with hay on the side of the road" + }, + { + "label": "a young girl wearing a formal dress, and young man in a tie", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a woman holding a white and brown cat", + "pred": "a man that is standing next to a cat" + }, + { + "label": "men riding on the backs of small elephants", + "pred": "men riding on the backs of elephants" + }, + { + "label": "a horse and a dog stand in a meadow", + "pred": "a brown and white dog and a brown and white horse" + }, + { + "label": "a woman pinning a flower onto a man's blazer", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "bear cubs play among the fallen tree limbs", + "pred": "a black bear standing on top of a log" + }, + { + "label": "a person with a umbrella and a glass at a table", + "pred": "people sitting at a table with umbrellas" + }, + { + "label": "a smaller luggage bag", + "pred": "a piece of luggage sitting on top of a suitcase" + }, + { + "label": "a woman holding an umbrella whiile standing by a counter", + "pred": "people sitting at a table with umbrellas" + }, + { + "label": "a tall stack of suit cases is in the hall way", + "pred": "a stack of suitcases stacked on top of each other" + }, + { + "label": "a small carry-on bag, strapped to the handle of a larger suitcase from the same set of luggage", + "pred": "a piece of luggage sitting on top of a suitcase" + }, + { + "label": "a man standing in a public area near some other people", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "three elephants in a grassy area with trees around", + "pred": "a herd of elephants walking across a lush green field" + }, + { + "label": "a black bag attached to the long handle of a piece of luggage", + "pred": "a piece of luggage sitting on top of a suitcase" + }, + { + "label": "boys with wide hats are riding elephants on the dirt", + "pred": "men riding on the backs of elephants" + }, + { + "label": "a woman and man talking underneath an umbrella", + "pred": "people sitting at a table with umbrellas" + }, + { + "label": "a room with a very tall stack of luggage", + "pred": "a stack of suitcases stacked on top of each other" + }, + { + "label": "a cat sitting beside a laptop on a desk", + "pred": "a black and white cat sitting on top of a computer desk" + }, + { + "label": "two people posing next to a giant suitcase in front of a building", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a doll sitting on top of an open suitcase", + "pred": "a person with a bag of luggage in a room" + }, + { + "label": "a stack of many different types of suitcases", + "pred": "a stack of suitcases stacked on top of each other" + }, + { + "label": "a man sitting at a table with a cat eating food", + "pred": "a man that is standing next to a cat" + }, + { + "label": "elephant walking in a forest", + "pred": "a herd of elephants walking across a lush green field" + }, + { + "label": "a large long train on a steel track", + "pred": "a red and white train traveling down train tracks" + }, + { + "label": "the elephants think they are hiding behind those trees, but i can still see them", + "pred": "a herd of elephants walking across a lush green field" + }, + { + "label": "a curious cat looking upward by a laptop screen", + "pred": "a black and white cat sitting on a computer desk" + }, + { + "label": "a tall stack of vintage suitcases rests precariously against a wall by a bedroom door", + "pred": "a stack of suitcases stacked on top of each other" + }, + { + "label": "a herd of wild animals walking across a dry grass park", + "pred": "a herd of elephants walking across a lush green field" + }, + { + "label": "a red and white train passing by a street", + "pred": "a red and white train traveling down train tracks" + }, + { + "label": "an empty boat in the water near a tree", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "two young black bears playing at the zoo", + "pred": "a black bear standing on top of a log" + }, + { + "label": "packing everything for a trip including a childs barbie doll", + "pred": "a person with a bag of luggage in a room" + }, + { + "label": "a doll in a open suitcase on the ground", + "pred": "a person with a bag of luggage in a room" + }, + { + "label": "the edge of a boat sitting in a body of water", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "a woman looking with shock as a cat eats a pizza", + "pred": "a man that is standing next to a cat" + }, + { + "label": "a grey and white cat laying in window sill next to a curtain", + "pred": "a gray and white cat laying on top of a box" + }, + { + "label": "a girl pins a bouttoniere on the lapel of her date", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "suitcase sitting on the ground with stickers from various countries on it", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a girl doll sitting in a suit case with a bag", + "pred": "a person with a bag of luggage in a room" + }, + { + "label": "doll wearing hat laid up next to open luggage", + "pred": "a person with a bag of luggage in a room" + }, + { + "label": "a black and white cat that is standing on all fours and has an elephant hat on it's head", + "pred": "a cat that is sitting on a table" + }, + { + "label": "a red train going down the track in the city", + "pred": "a red and white train traveling down train tracks" + }, + { + "label": "a black cat with white paws is standing among some wooden boards and a toy", + "pred": "a cat that is sitting on a table" + }, + { + "label": "a cat staring at the ceiling", + "pred": "a black and white cat sitting on a computer desk" + }, + { + "label": "couple of young bears playing together on tree limbs", + "pred": "a black bear standing on top of a log" + }, + { + "label": "a texas longhorn bull grazing on grass", + "pred": "a brown and white cow standing on top of a field" + }, + { + "label": "two people posing next to a giant statue with a suit case", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "the elephants are walking through the trees in the shade", + "pred": "a herd of elephants walking across a lush green field" + }, + { + "label": "couple of cats sleeping on opposite ends of the couch", + "pred": "a cat laying on the floor next to a dog" + }, + { + "label": "a cat is wearing a small elephant hat", + "pred": "a cat that is sitting on a table" + }, + { + "label": "a long red and white train travels near many other tracks", + "pred": "a red and white train traveling down train tracks" + }, + { + "label": "a man sits on the tires of a car that rests on the ground", + "pred": "a man standing next to a white van on a street" + }, + { + "label": "two cats laying on the floor and sleeping", + "pred": "a cat laying on the floor next to a dog" + }, + { + "label": "a green-eyed tabby cat lies on a sunny window ledge", + "pred": "a gray and white cat laying on top of a box" + }, + { + "label": "man in red shirt and black pants standing next to white flatbed truck cab next to a set of new tires", + "pred": "a man standing next to a white van on a street" + }, + { + "label": "red and white commuter train riding down tracks next to the highway", + "pred": "a red and white train traveling down train tracks" + }, + { + "label": "a row of white teddy bears on shelf next to dvds", + "pred": "a pile of teddy bears sitting on top of a wooden table" + }, + { + "label": "a man in red shirt looking at cellphone next to white truck", + "pred": "a man standing next to a white van on a street" + }, + { + "label": "a cat on a window sil", + "pred": "a gray and white cat laying on top of a box" + }, + { + "label": "a white and black cat looking up in the air in front of a desktop computer", + "pred": "a black and white cat sitting on top of a computer desk" + }, + { + "label": "two people standing next to a life size replica of a suitcase", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "two bear cubs are playing on a log", + "pred": "a black bear standing on top of a log" + }, + { + "label": "a striped cat sleeping on a sunny window sill", + "pred": "a gray and white cat laying on top of a box" + }, + { + "label": "a low ride pickup truck with no bed and a man sitting on the rear tire", + "pred": "a man standing next to a white van on a street" + }, + { + "label": "a huge suitcase with a bunch of stickers on it", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "two animals playing outside on a tree branch", + "pred": "a black bear standing on top of a log" + }, + { + "label": "a cat on a stool with something on its head", + "pred": "a cat that is sitting on a table" + }, + { + "label": "cats curled up and lazing on a couch", + "pred": "a cat laying on the floor next to a dog" + }, + { + "label": "an empty row boat sitting in the water", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "a tabby cat lying in a window sill looking up at the photographer", + "pred": "a gray and white cat laying on top of a box" + }, + { + "label": "two cats sleeping on a sofa inside a house", + "pred": "a cat laying on the floor next to a dog" + }, + { + "label": "the inside bow section of a narrow metal boat floating on blue-green water", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "teddy bears leaning against a row of movies", + "pred": "a pile of teddy bears sitting on top of a wooden table" + }, + { + "label": "a man in a red shirt sitting on the tire of a broken down truck", + "pred": "a man standing next to a white van on a street" + }, + { + "label": "three cats are napping on the carpeted floor", + "pred": "a cat laying on the floor next to a dog" + }, + { + "label": "a cow walking on a city street near people", + "pred": "a cow standing on the side of a road" + }, + { + "label": "a boat is on calm water by a tree", + "pred": "a boat floating on top of a body of water" + }, + { + "label": "a large, white cow walking through the streets of a small town", + "pred": "a cow standing on the side of a road" + }, + { + "label": "in the asian market, one can find residents, tourists, and domestic animals", + "pred": "a cow standing on the side of a road" + }, + { + "label": "a row of little white teddy bears lean against a row of movies on a shelf", + "pred": "a pile of teddy bears sitting on top of a wooden table" + }, + { + "label": "the grey and white cat stares up near a laptop", + "pred": "a black and white cat sitting on top of a computer desk" + }, + { + "label": "a white bull walks along the sidewalk near people", + "pred": "a cow standing on the side of a road" + }, + { + "label": "two huge elephant with tusks hidden among the trees", + "pred": "elephants standing next to each other in a forest" + }, + { + "label": "a cat wearing an elephant hat", + "pred": "a cat that is sitting on a table" + }, + { + "label": "a person holds a bottle toward a brown and white baby cow", + "pred": "a person feeding a cow milk from a bottle" + }, + { + "label": "people sitting in chairs under an umbrella", + "pred": "a man and woman are sitting on a bench" + }, + { + "label": "two elephants are walking through trees side by side", + "pred": "elephants standing next to each other" + }, + { + "label": "four teddy bears are lined up in a row on a shelf of books", + "pred": "a collection of stuffed animals on a shelf" + }, + { + "label": "two people sit closely together on chairs under an umbrella", + "pred": "a man and woman are sitting on a bench" + }, + { + "label": "the travelers are all traveling with their best luggage", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "boats in the water docked at a marina", + "pred": "boats are docked in the water" + }, + { + "label": "a cow breastfeeding its calf while other cows stands around in a grass area", + "pred": "a herd of cattle grazing in a field" + }, + { + "label": "people and a long thin boat water and houses", + "pred": "people standing on top of a body of water" + }, + { + "label": "cows lounge in a field with a mountain backdrop", + "pred": "a grassy area with a mountain range" + }, + { + "label": "a very big mountain and animals spread across a farm", + "pred": "a grassy area with a mountain range" + }, + { + "label": "a large open multi- colored umbrella and tree branches", + "pred": "a colorful umbrella sitting on top of a beach" + }, + { + "label": "boats floating in rows at the dock in the river", + "pred": "boats are docked in the water" + }, + { + "label": "brown cows laying down in a field of grass", + "pred": "cows that are laying down in the grass" + }, + { + "label": "people sitting and standing on top of a train", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "empty boats docked on the water in a harbor", + "pred": "boats are docked in the water" + }, + { + "label": "there white cows in grassy area with temples", + "pred": "a cow standing in the middle of a field" + }, + { + "label": "three men are next to a car and a boat", + "pred": "two men standing next to a blue truck" + }, + { + "label": "woman and adoring dog under an umbrella in the sun", + "pred": "a woman sitting on the beach with a dog" + }, + { + "label": "passengers with luggage in an airport \"limo\" bus", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a small cow is getting milk from it's mother", + "pred": "a herd of cattle grazing in a field" + }, + { + "label": "herd animals are on the grass by a mountain", + "pred": "a grassy area with a mountain range" + }, + { + "label": "men looking at something near a boat and a truck with the hood raised", + "pred": "two men standing next to a blue truck" + }, + { + "label": "a person stands under tent on the beach", + "pred": "a man sitting on a beach with an umbrella" + }, + { + "label": "boats anchored on docks in the harbor", + "pred": "boats are docked in the water" + }, + { + "label": "a woman sitting with two dogs", + "pred": "a woman sitting on the beach with a dog" + }, + { + "label": "mother and child elephant in a fenced pastoral field", + "pred": "elephants standing in a grassy field" + }, + { + "label": "cattle on a level pasture in a mountainous area", + "pred": "a grassy area with a mountain range" + }, + { + "label": "a fluffy cat laying on an electronic device", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a cat sitting on top of a d.v.d player", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "an umbrella blocks the sun beside a palm tree", + "pred": "a colorful umbrella sitting on top of a beach" + }, + { + "label": "a person laying on a bed with thigh highs and heels", + "pred": "a woman laying on top of a bed" + }, + { + "label": "people are walking in the street while holding umbrellas", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "two large brown elephants walking in a grassy field", + "pred": "elephants standing in a grassy field" + }, + { + "label": "a little cat looking at itself in a mirror", + "pred": "two cats sitting on top of a wooden bench" + }, + { + "label": "a heard of cows with yellow tags on their ears in a field of grass", + "pred": "cows that are laying down in the grass" + }, + { + "label": "a white and orange cat looking at itself in front of a mirror", + "pred": "two cats sitting on top of a wooden bench" + }, + { + "label": "a mulicolored stripe sun umbrella near a palm tree", + "pred": "a colorful umbrella sitting on top of a beach" + }, + { + "label": "people are gathering with bags near a boat", + "pred": "people standing on top of a body of water" + }, + { + "label": "a woman is sitting in a chair with an umbrella", + "pred": "a woman sitting on the ground holding an umbrella" + }, + { + "label": "young adults walking along a little path carrying a couple umbrellas", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a woman wearing a blue coat holds a furry animal in her arms", + "pred": "a woman holding a black and white dog" + }, + { + "label": "two women walk outside, both holding up umbrellas", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "cattle relax in a pasture located in the mountains", + "pred": "a grassy area with a mountain range" + }, + { + "label": "a brown and white cat looking it itself in a mirror", + "pred": "two cats sitting on top of a wooden bench" + }, + { + "label": "a girl with an umbrella in a chair", + "pred": "a woman sitting on the ground holding an umbrella" + }, + { + "label": "a bear sitting in the grass surrounded by five vultures", + "pred": "a flock of birds standing on top of a lush green" + }, + { + "label": "a multi-colored umbrella that is blocking out the sun", + "pred": "a colorful umbrella sitting on top of a beach" + }, + { + "label": "a brown and white animal laying on top of a bed", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a cat lays down on a dvd player", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "an orange and white cat standing in front of a mirror", + "pred": "two cats sitting on top of a wooden bench" + }, + { + "label": "two people waiting to cross the street under an umbrella", + "pred": "a man and a woman walking down the street" + }, + { + "label": "white and orange fur lays on a white blanket", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "the sun peeking through a colorful umbrella next to a palm tree", + "pred": "a colorful umbrella sitting on top of a beach" + }, + { + "label": "black bear outside with large birds and fallen trees", + "pred": "a flock of birds standing on top of a lush green" + }, + { + "label": "a bear in the grass surrounded by vultures", + "pred": "a flock of birds standing on top of a lush green" + }, + { + "label": "a shipyard with some boats", + "pred": "two boats are docked in a harbor" + }, + { + "label": "old boats sitting in an old ship yard", + "pred": "two boats are docked in a harbor" + }, + { + "label": "a cat on a porch looking at it's reflection", + "pred": "two cats sitting on top of a wooden bench" + }, + { + "label": "a pier with various boats and ships parked", + "pred": "two boats are docked in a harbor" + }, + { + "label": "boats are parked in the middle of a city", + "pred": "boats floating on top of a body of water" + }, + { + "label": "cat hangs it's paw over the edge of the laptop", + "pred": "a cat laying on top of a computer keyboard" + }, + { + "label": "a grass area with fallen tree logs and a black bear sitting down in the middle of the grass and wild turkey's around it", + "pred": "a flock of birds standing on top of a lush green" + }, + { + "label": "people wading around a large body of water", + "pred": "people on the beach with umbrellas" + }, + { + "label": "couple of empty chairs on the beach under an umbrella while people in the ocean", + "pred": "people on the beach with umbrellas" + }, + { + "label": "a man, wearing high heels, stockings, panties and shirt, lies belly-down on a bed", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "different people are doing skateboard tricks and riding", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "fuzzy animal laying on the bed", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "two elephants playing with each other and interlocking their tusks", + "pred": "elephants that are standing next to each other" + }, + { + "label": "a man in a purple shirt and matching tie looking pensive", + "pred": "a man wearing glasses and a tie" + }, + { + "label": "two people under an umbrella standing in the rain", + "pred": "two people standing in the rain with umbrellas" + }, + { + "label": "eleven photos of the legs and feet of skateboarders on skateboards are pieced together to make one photograph", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two elephants touching each other with their trunks and tusks", + "pred": "elephants that are standing next to each other" + }, + { + "label": "woman smiling and holding some type of unique animal", + "pred": "a woman holding a black and white dog" + }, + { + "label": "a shipyard", + "pred": "two boats are docked in a harbor" + }, + { + "label": "a black bear is surrounded by black birds on grass", + "pred": "a flock of black birds standing on top of a lush green field" + }, + { + "label": "a man wearing red shirt, tie and glasses", + "pred": "a man wearing glasses and a tie" + }, + { + "label": "a woman in blue jacket holding a black bear cub", + "pred": "a woman holding a black and white dog" + }, + { + "label": "a man lays on a bed wearing women's clothing complete with stockings and high heels", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "two elephants with their heads close together", + "pred": "elephants that are standing next to each other" + }, + { + "label": "a white woman wearing a blue jacket holding a animal", + "pred": "a woman holding a black and white dog" + }, + { + "label": "a man wearing eyeglasses dressed in a shirt and tie", + "pred": "a man wearing glasses and a tie" + }, + { + "label": "a man that is laying down on a bed", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "four people swimming at the beach on a sunny day", + "pred": "people on the beach with umbrellas" + }, + { + "label": "2 people (a very tall person in a jacket and kilt and a short old man) standing in the rain under a very small black umbrella on a city", + "pred": "two people standing in the rain with umbrellas" + }, + { + "label": "a young asian woman model sitting on a folding chair in a sleeveless dress, high heels and holding an umbrella", + "pred": "a woman sitting on a red bench holding an umbrella" + }, + { + "label": "a woman sitting on chair holding an umbrella", + "pred": "a woman sitting on a red bench holding an umbrella" + }, + { + "label": "multipel pictures of a person on skateboard riding on sidewalk", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "pair of elephants interacting in urban like setting", + "pred": "elephants that are standing next to each other" + }, + { + "label": "people are swimming in the ocean with two empty chairs and an umbrella on the beach", + "pred": "people on the beach with umbrellas" + }, + { + "label": "a man has a frisbee in his hand and is standing up", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a man with thick sunglasses and multiple piercings sits with his mouth open", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "two men standing at a street in the rain", + "pred": "two people standing in the rain with umbrellas" + }, + { + "label": "a man and a woman stand under an umbrella at a street crossing on a rainy day", + "pred": "two people standing in the rain with umbrellas" + }, + { + "label": "a young man holding a frisbee in a throwing position", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "white and grey cat laying down on a white sheet", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a woman holding a wild animal in her arms", + "pred": "a woman holding a black and white dog" + }, + { + "label": "a collage of people's feet on a skateboard", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a guy wearing glasses, a red shirt and a tie", + "pred": "a man wearing glasses and a tie" + }, + { + "label": "an old dock with low water", + "pred": "two boats are docked in a harbor" + }, + { + "label": "buildings surrounding a pond with boats", + "pred": "boats floating on top of a body of water" + }, + { + "label": "a woman poses for a photo as she sits on a chair with an umbrella", + "pred": "a woman sitting on a red bench holding an umbrella" + }, + { + "label": "model of two cars with a man near a blue phonebooth", + "pred": "a green truck is parked in front of a building" + }, + { + "label": "a young man playing out side with a disc", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "elephants with tusks", + "pred": "elephants that are standing next to each other" + }, + { + "label": "the collage shows many different sets of skateboards", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a man with glasses and wearing a tie poses for a profile picture", + "pred": "a man wearing glasses and a tie" + }, + { + "label": "four people are swimming in the sea with chairs on the beach", + "pred": "people on the beach with umbrellas" + }, + { + "label": "river down the middle of a city with many parked boats", + "pred": "boats floating on top of a body of water" + }, + { + "label": "grey cat laying on a green floor near a sandel", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "a herd of cows lay down on some grass", + "pred": "cows that are laying down in the grass" + }, + { + "label": "an up close photo of animals fur while laying on a blanket", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "the young man in jeans is throwing a frisbee", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "cat lying on top of a shelf with its front leg hanging down", + "pred": "a cat laying on top of a desk next to a remote control" + }, + { + "label": "two toy vehicles and a police box are set up in a street scene", + "pred": "a green truck is parked in front of a building" + }, + { + "label": "the grey and white cat is beside a rubber show", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "a young cat on a mat with a flip flop shoe", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "a young man wearing a tie and sunglasses is looking away", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a small gray and white cat laying on the floor", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "a man in large sunglasses and a lose tie", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a canal of water with many small boats", + "pred": "boats floating on top of a body of water" + }, + { + "label": "white and grey kitten lying on a messy green carpet", + "pred": "a cat laying on the ground next to a pair of shoes" + }, + { + "label": "a canal with lots of boats and buildings on either side", + "pred": "boats floating on top of a body of water" + }, + { + "label": "man with terrible glasses and a horrible lip ring", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "the cat is laying down squashing one side of its face", + "pred": "a black and white cat laying on top of a blanket" + }, + { + "label": "the model toys are positioned on the table", + "pred": "a green truck is parked in front of a building" + }, + { + "label": "a green red and white truck a building and a black car", + "pred": "a green truck is parked in front of a building" + }, + { + "label": "a woman is laying on the bed in stockings with her skirt pulled up", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "a person on field with a frisbee in their hand", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "two televisions that are stacked on top of each other", + "pred": "a cat that is sitting on top of a tv" + }, + { + "label": "a stop sign is lit up in the dark of night", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a cat that is standing looking through a glass", + "pred": "a cat sitting in front of a mirror" + }, + { + "label": "a black and white cat sits on a red cloth that is over a television set", + "pred": "a cat that is sitting on top of a tv" + }, + { + "label": "an orange cat looks through a glass plate", + "pred": "a cat sitting in front of a mirror" + }, + { + "label": "a car and a truck on a city street", + "pred": "a green truck is parked in front of a building" + }, + { + "label": "large group of people surrounding a truck on a mountain", + "pred": "a large group of people standing on top of a hill" + }, + { + "label": "the black and white photo shows a truck tilting a large cargo crate", + "pred": "a large group of people standing on top of a hill" + }, + { + "label": "a tow truck pulls a large crate down a mountain pass as crowds watch", + "pred": "a large group of people standing on top of a hill" + }, + { + "label": "a black cat sits upon a television set", + "pred": "a cat that is sitting on top of a tv" + }, + { + "label": "three bears standing in a field outside", + "pred": "two brown and white animals grazing in a grassy field" + }, + { + "label": "orange cat looking in the mirror at his reflection", + "pred": "a cat sitting in front of a mirror" + }, + { + "label": "a man in a suite wearing a pair of sunglasses", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a beige cat looking into a big mirror", + "pred": "a cat sitting in front of a mirror" + }, + { + "label": "a black and white cat lies on a bed and relaxes", + "pred": "a black and white cat laying on top of a blanket" + }, + { + "label": "a man is leading a cow with a ribbon on its neck", + "pred": "a man is petting a brown and white cow" + }, + { + "label": "man with grey hair leading a cow with red ribbon", + "pred": "a man is petting a brown and white cow" + }, + { + "label": "three bears are walking around in a field", + "pred": "two brown and white animals grazing in a grassy field" + }, + { + "label": "tow truck working while people watch", + "pred": "a large group of people standing on top of a hill" + }, + { + "label": "a cat looking directly into a magnifying glass on a table", + "pred": "a cat sitting in front of a mirror" + }, + { + "label": "a black and white cat is lazily laying around", + "pred": "a black and white cat laying on top of a blanket" + }, + { + "label": "a cat laying on top of a couch next to a computer mouse", + "pred": "a cat laying on top of a table next to a mouse" + }, + { + "label": "a boy in a tie holding a small suit case", + "pred": "a young boy standing next to a pile of luggage" + }, + { + "label": "a cat playing with an old computer mouse", + "pred": "a cat laying on top of a table next to a mouse" + }, + { + "label": "a crowd of people walking along a snow covered mountain side", + "pred": "a large group of people standing on top of a hill" + }, + { + "label": "a giant cruise ship next to another giant cruise ship next to a long pier", + "pred": "a beach filled with lots of umbrellas next to a body of water" + }, + { + "label": "a cat is sitting while holding a computer mouse", + "pred": "a cat laying on top of a table next to a mouse" + }, + { + "label": "middle eastern looking stickers decorate a black briefcase", + "pred": "a black umbrella sitting on top of a table" + }, + { + "label": "a cat is relaxing on top of an old television", + "pred": "a cat that is sitting on top of a tv" + }, + { + "label": "a red stop sign sitting on the side of a dark road", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a small kitten inside of a laptop on the floor", + "pred": "a cat that is laying down in a box" + }, + { + "label": "a cat curiously looking sideways at a television", + "pred": "a cat sitting on top of a computer screen" + }, + { + "label": "three bears grazing out in a field of grass", + "pred": "two brown and white animals grazing in a grassy field" + }, + { + "label": "a small child wearing a tie and holding a suitcase with other people", + "pred": "a young boy standing next to a pile of luggage" + }, + { + "label": "a laptop and planner sitting on a cluttered desk", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a red stop sign is glowing against the dark sky", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a cat is playing with a computer mouse", + "pred": "a cat laying on top of a table next to a mouse" + }, + { + "label": "a stop sign on the side of a street", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a black and white cat with one eye open", + "pred": "a black and white cat laying on top of a blanket" + }, + { + "label": "a cat sitting on top of a televsion", + "pred": "a cat that is sitting on top of a tv" + }, + { + "label": "adult elephants with a baby one following along", + "pred": "elephants standing next to each other" + }, + { + "label": "a cat lying down on something", + "pred": "a cat that is laying down in a box" + }, + { + "label": "a cat is sitting in a partially closed laptop", + "pred": "a cat that is laying down in a box" + }, + { + "label": "two cruise ships docked near a beach resort", + "pred": "a beach filled with lots of umbrellas next to a body of water" + }, + { + "label": "suitcase with stickers outside on table in city", + "pred": "a black umbrella sitting on top of a table" + }, + { + "label": "a cat laying down on a blanket", + "pred": "a black and white cat laying on top of a blanket" + }, + { + "label": "a cat laying on a laptop", + "pred": "a cat that is laying down in a box" + }, + { + "label": "a kid standing with a small suitcase on a street", + "pred": "a young boy standing next to a pile of luggage" + }, + { + "label": "a little boy that is standing on a sidewalk with a suitcase", + "pred": "a young boy standing next to a pile of luggage" + }, + { + "label": "a beach area with grass umbrellas and boats in the distance", + "pred": "a beach filled with lots of umbrellas next to a body of water" + }, + { + "label": "a small child wearing a tie stands with his luggage", + "pred": "a young boy standing next to a pile of luggage" + }, + { + "label": "two large elephants together with a baby elephant close by", + "pred": "elephants standing next to each other" + }, + { + "label": "a small cat is standing on a table", + "pred": "a cat that is laying down in a box" + }, + { + "label": "an old man walking a big brown cow around", + "pred": "a man is petting a brown and white cow" + }, + { + "label": "a family of elephants walking through a grassy area", + "pred": "elephants standing next to each other" + }, + { + "label": "a cat and a computer mouse on the ground", + "pred": "a cat laying on top of a table next to a mouse" + }, + { + "label": "a wooden desk that is very cluttered with items", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "elephants walk as a baby walks next to them", + "pred": "elephants standing next to each other" + }, + { + "label": "a cat sleeping on a desk next to an open laptop", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "three bears are wandering in a grassy field", + "pred": "two brown and white animals grazing in a grassy field" + }, + { + "label": "very big furry brown bears in a big grass field", + "pred": "two brown and white animals grazing in a grassy field" + }, + { + "label": "two people are riding elephants beside some trees", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a man that is standing with a cow", + "pred": "a man is petting a brown and white cow" + }, + { + "label": "a suit case sits on a top next to some drink", + "pred": "a piece of luggage sitting on top of a wooden floor" + }, + { + "label": "a quite cluttered desk with a lap and many other office material, plus a cat", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a luggage bag on top of a table", + "pred": "a black umbrella sitting on top of a table" + }, + { + "label": "a cat that is looking at a television screen", + "pred": "a cat sitting on top of a computer screen" + }, + { + "label": "a vandalized stop sign in the dark with a sky background", + "pred": "a red stop sign sitting on top of a pole" + }, + { + "label": "a little cat is sitting on the table and watching tv", + "pred": "a cat sitting on top of a computer screen" + }, + { + "label": "a briefcase with decorated with stickers placed on a table", + "pred": "a black umbrella sitting on top of a table" + }, + { + "label": "a herd of elephants walking across a grass field", + "pred": "elephants standing next to each other" + }, + { + "label": "a large black and beige cat stands near a television", + "pred": "a cat sitting on top of a computer screen" + }, + { + "label": "a metal bucket with a bottle of booze sticking out of it", + "pred": "a piece of luggage sitting on top of a wooden floor" + }, + { + "label": "a cat sits in front of a tv and watches", + "pred": "a cat sitting on top of a computer screen" + }, + { + "label": "a lunch box of some sorts is placed on the table", + "pred": "a black umbrella sitting on top of a table" + }, + { + "label": "a man is walking with a cow who's sporting a red ribbon", + "pred": "a man is petting a brown and white cow" + }, + { + "label": "a boat sits on the side of the dock", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "a boat on the water with a lighthouse", + "pred": "a small boat in the middle of the ocean" + }, + { + "label": "a man in helmet riding an elephant next to trees", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a man that is on the back of a elephant", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a bowl holding a bottle of champagne below a black suitcase", + "pred": "a piece of luggage sitting on top of a wooden floor" + }, + { + "label": "a man rides on top of an elephant's back", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a large white boat in the open water", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "a dog that is jumping in the air looking at a frisbee", + "pred": "a dog chasing a frisbee in a field" + }, + { + "label": "a laptop sitting on a desk with clutter around it", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a white double decker boat n water next to buildings", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "a bottle in a ice bucket sits on a floor next to a luggage rack", + "pred": "a piece of luggage sitting on top of a wooden floor" + }, + { + "label": "a boat is traveling on rough waters in the ocean", + "pred": "a small boat in the middle of the ocean" + }, + { + "label": "a brown curly haired dog chasing after a red frisbee", + "pred": "a dog chasing a frisbee in a field" + }, + { + "label": "a dog runs after a frisbee by a fence", + "pred": "a dog chasing a frisbee in a field" + }, + { + "label": "a sidewalk with sandwich board, table and umbrella", + "pred": "a pink umbrella sitting on a sidewalk next to a building" + }, + { + "label": "a chicago logo boat is traveling in the water", + "pred": "a small boat in the middle of a river" + }, + { + "label": "a suitcase sitting next to a bottle of champagne", + "pred": "a piece of luggage sitting on top of a wooden floor" + }, + { + "label": "a large cruise ship is traveling on the ocean", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "an umbrella is placed outside of a shop", + "pred": "a pink umbrella sitting on a sidewalk next to a building" + }, + { + "label": "people riding on the backs of some elephants", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a large boat in the water just in front of a light house", + "pred": "a small boat in the middle of the ocean" + }, + { + "label": "all of the cows are poking their heads out, eating some hay", + "pred": "a herd of cattle standing next to each other in a barn" + }, + { + "label": "a yacht with people is near a pier on clear water", + "pred": "a small boat on a body of water" + }, + { + "label": "a girl with a black eye and pig tails sits in a suitcase", + "pred": "a woman sitting on top of a chair with a flower in her hair" + }, + { + "label": "a dog chasing a coaster frisbee in a field near a wire fence", + "pred": "a dog chasing a frisbee in a field" + }, + { + "label": "a bench outdoors with an open umbrella", + "pred": "a pink umbrella sitting on a sidewalk next to a building" + }, + { + "label": "a yellow boat with people is in a canal", + "pred": "a small boat in the middle of a river" + }, + { + "label": "people mingle on a yacht beside the coast", + "pred": "a small boat on a body of water" + }, + { + "label": "people are getting off a boat on a rocky island", + "pred": "a small boat on a body of water" + }, + { + "label": "a woman with makeup bruises is in a suitcase", + "pred": "a woman sitting on top of a chair with a flower in her hair" + }, + { + "label": "people aboard and boarding a party boat in the water", + "pred": "a small boat on a body of water" + }, + { + "label": "a port river dolphin cruise ship sits in the water", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "cows in a fenced in area", + "pred": "a herd of cattle standing next to each other in a barn" + }, + { + "label": "a colorful umbrella sitting outside of a pink building", + "pred": "a pink umbrella sitting on a sidewalk next to a building" + }, + { + "label": "the colorful umbrella sits in front of the lavender building", + "pred": "a pink umbrella sitting on a sidewalk next to a building" + }, + { + "label": "people are tanning on the chairs and swimming in the swimming pool", + "pred": "a beach filled with lots of umbrellas next to a body of water" + }, + { + "label": "a woman with a marking under her eye emerging from a suit case", + "pred": "a woman sitting on top of a chair with a flower in her hair" + }, + { + "label": "elephants and one is by some water", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "a cat hides underneath the cover of blankets", + "pred": "a cat laying on top of a bed" + }, + { + "label": "a female in a black shirt is in a suitcase", + "pred": "a woman sitting on top of a chair with a flower in her hair" + }, + { + "label": "a elephant drinks from a stream with several other elephants walking", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "small cat under the blankets on a bed", + "pred": "a cat laying on top of a bed" + }, + { + "label": "a large boat is making waves towards the camera", + "pred": "a small boat in the middle of the ocean" + }, + { + "label": "that looks like it may be hiding under something", + "pred": "a cat laying on top of a bed" + }, + { + "label": "beautiful view of two cruise ships at dock", + "pred": "a beach filled with lots of umbrellas next to a body of water" + }, + { + "label": "a ship is sailing across an ocean filled with waves", + "pred": "a small boat in the middle of the ocean" + }, + { + "label": "a pontoon boat ferry full of passengers pushes off from shore", + "pred": "a small boat on a body of water" + }, + { + "label": "two men sitting in chairs at a table with cell phones in their hands", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "one elephant standing away from the rest of the herd, drinking water", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "a small model yellow boat floating on top of a river", + "pred": "a small boat in the middle of a river" + }, + { + "label": "i am not sure what this image is", + "pred": "a cat laying on top of a bed" + }, + { + "label": "an elephant drinking water while the rest of the herd is walking in dry grass", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "people standing on a sidewalk under an umbrella", + "pred": "people with umbrellas standing in the rain" + }, + { + "label": "couple on sailboat with dog on open waters", + "pred": "a man and a woman on a sailboat in the water" + }, + { + "label": "a very cute cat hiding under a blanket", + "pred": "a cat laying on top of a bed" + }, + { + "label": "a cat is on papers on a computer desk", + "pred": "a cat laying on top of a table next to a computer" + }, + { + "label": "a cat is laying on a table near a laptop and papers", + "pred": "a cat laying on top of a table next to a computer" + }, + { + "label": "two people and a dog on a sail boat with the mast down", + "pred": "a man and a woman on a sailboat in the water" + }, + { + "label": "people standing on a dark street with an umbrella", + "pred": "people with umbrellas standing in the rain" + }, + { + "label": "a dog in the air going to catch a frisbee", + "pred": "a dog chasing a frisbee in a field" + }, + { + "label": "very nicely dressed men sitting at a big table", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "people and a dog are on a sail boat on a lake", + "pred": "a man and a woman on a sailboat in the water" + }, + { + "label": "two men dressed in suits holding their cellphones", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "a man holding an umbrella for other people", + "pred": "people with umbrellas standing in the rain" + }, + { + "label": "a cat laying on a desk", + "pred": "a cat laying on top of a table next to a computer" + }, + { + "label": "elephants with water in front and trees behind", + "pred": "a large elephant standing next to a body of water" + }, + { + "label": "cows that are in this barn", + "pred": "a herd of cattle standing next to each other in a barn" + }, + { + "label": "a woman sitting inside of a open suitcase", + "pred": "a woman sitting on top of a chair with a flower in her hair" + }, + { + "label": "people standing outside in the rain, one holding an umbrella", + "pred": "people with umbrellas standing in the rain" + }, + { + "label": "a yellow and black boat on a narrow river in a city", + "pred": "a small boat in the middle of a river" + }, + { + "label": "business men in suits sitting at a table during a meeting", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "a cat is observing the dishwasher in the kitchen", + "pred": "a cat sitting on the floor next to a stove" + }, + { + "label": "a small cat is looking up at a stove top", + "pred": "a cat sitting on the floor next to a stove" + }, + { + "label": "a sailboat in a river with people and a dog on it", + "pred": "a man and a woman on a sailboat in the water" + }, + { + "label": "penned cows eating hay in indoor facility area", + "pred": "a herd of cattle standing next to each other in a barn" + }, + { + "label": "two people and a dog are on a sailboat", + "pred": "a man and a woman on a sailboat in the water" + }, + { + "label": "a toy smiley face in the middle of a doughnut", + "pred": "a cat sitting next to a stuffed animal" + }, + { + "label": "a cat looks up at the stove and is reflected in the oven's glass", + "pred": "a cat sitting on the floor next to a stove" + }, + { + "label": "the face of a black cat, a yellow smiley doll and doughnut holes", + "pred": "a cat sitting next to a stuffed animal" + }, + { + "label": "people standing in a room", + "pred": "a man standing next to a woman in a suit" + }, + { + "label": "a formal occasion", + "pred": "a man standing next to a woman in a suit" + }, + { + "label": "a cat licks at doughnut holes next to a plastic doll", + "pred": "a cat sitting next to a stuffed animal" + }, + { + "label": "a cat is looking up at an oven", + "pred": "a cat sitting on the floor next to a stove" + }, + { + "label": "elephants are standing in the trees", + "pred": "a herd of elephants walking down a dirt road" + }, + { + "label": "a large building under construction and many parking meters", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a cat laying on the table enjoying the sun", + "pred": "a cat laying on top of a table next to a computer" + }, + { + "label": "a person in a the reflection of a truck mirror", + "pred": "a woman standing in front of a yellow bus" + }, + { + "label": "cars on a city street", + "pred": "a man walking down a street next to a bunch of parked cars" + }, + { + "label": "a man is shaking hands with another man", + "pred": "a man in a suit and tie standing in front of a group of people" + }, + { + "label": "a woman reaching in her purse while holding an umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "two men shake hands at a formal dinner gathering", + "pred": "a man in a suit and tie standing in front of a group of people" + }, + { + "label": "parking meters line the street near a building under construction", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a man holding a brides garter as a woman shows her muscles", + "pred": "a man standing next to a woman in a suit" + }, + { + "label": "large elephants standing on a road", + "pred": "a herd of elephants walking down a dirt road" + }, + { + "label": "a man in a suit that is standing in front of a group of people", + "pred": "a man standing next to a woman in a suit" + }, + { + "label": "a woman holding an umbrella while standing next to a crowd", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "two men standing next to each other holding hands", + "pred": "a man in a suit and tie standing in front of a group of people" + }, + { + "label": "a black cat licks a doughnut in front of a yellow toy", + "pred": "a cat sitting next to a stuffed animal" + }, + { + "label": "cars driving down a street next to a truck", + "pred": "a man walking down a street next to a bunch of parked cars" + }, + { + "label": "a reflection of a woman driving a truck", + "pred": "a woman standing in front of a yellow bus" + }, + { + "label": "a row of parking meters on a curb side", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "numerous parking meters along the side of a street", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a family of elephants standing together in the jungle", + "pred": "a herd of elephants walking down a dirt road" + }, + { + "label": "three asian people are riding on top of an elephant", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "two woman and a man riding on a elephant", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "an elephant messing with a tree trunk", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "elephants carrying their handlers and passengers on their backs", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a large elephant that has people sitting on top", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a cat looking like it is using a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a street scene with vehicles after a rain", + "pred": "a man walking down a street next to a bunch of parked cars" + }, + { + "label": "a post office box is on the side of a busy street", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "people that are dressed up dancing", + "pred": "a man standing next to a woman in a suit" + }, + { + "label": "two women are going for a ride on an elephant", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a herd of elephants is walking together down a dirt trail", + "pred": "a herd of elephants walking down a dirt road" + }, + { + "label": "a cat that is sitting on a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "two women are imposing together as one holds her luggage", + "pred": "two women standing next to each other holding luggage" + }, + { + "label": "three men are walking near passing trucks and cars", + "pred": "a man walking down a street next to a bunch of parked cars" + }, + { + "label": "elephants standing beside each other outside on a road", + "pred": "a herd of elephants walking down a dirt road" + }, + { + "label": "two red mail boxes along a city street", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a small boat in a body of water", + "pred": "a boat sitting on a dock next to a body of water" + }, + { + "label": "two men are shaking hands at a social gathering", + "pred": "a man in a suit and tie standing in front of a group of people" + }, + { + "label": "an orange and white cat, a grey cat and a black cat on a bed with a blue and green cover", + "pred": "a cat laying on top of a bed next to a dog" + }, + { + "label": "a girl making a \"peace sign\" with her hand and a woman holding a big black suitcase", + "pred": "two women standing next to each other holding luggage" + }, + { + "label": "two cats lie on a green blanket near a sitting cat", + "pred": "a cat laying on top of a bed next to a dog" + }, + { + "label": "the black cat with white patches is sleeping on a computer keyboard", + "pred": "a cat laying on the floor next to a computer keyboard" + }, + { + "label": "a small green and white boat parked near the sidewalk near a lake", + "pred": "a boat sitting on a dock next to a body of water" + }, + { + "label": "a large cat is sitting on a laptop computer", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a cat laying on a desk near a keyboard", + "pred": "a cat laying on the floor next to a computer keyboard" + }, + { + "label": "black cat fell asleep on top of someones keyboard", + "pred": "a cat laying on the floor next to a computer keyboard" + }, + { + "label": "no image to be reviewed on this hit", + "pred": "a boat sitting on a dock next to a body of water" + }, + { + "label": "a young redheaded woman in sunglasses and black tank top holds a black leather purse and a white umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a white boat with a canopy at water's edge", + "pred": "a boat sitting on a dock next to a body of water" + }, + { + "label": "the reflection of a women in a mirror", + "pred": "a woman standing in front of a yellow bus" + }, + { + "label": "an elephant that is using it's own trunk to touch a tree trunk", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a girl sitting in a truck is reflected in a mirror", + "pred": "a woman standing in front of a yellow bus" + }, + { + "label": "a cat that is checking into its twitter account to post a tweet", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a gate is near lots and lots of luggage that is all grouped together in different clusters", + "pred": "a large amount of luggage on the side of the road" + }, + { + "label": "a pile of luggage sitting up against a white fence", + "pred": "a large amount of luggage on the side of the road" + }, + { + "label": "a woman holds an umbrella as people walk by", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a man standing near the water with an umbrella", + "pred": "a man holding an umbrella in front of a body of water" + }, + { + "label": "a cat sitting in front of a laptop computer", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a cat that is laying down on a desk", + "pred": "a cat laying on the floor next to a computer keyboard" + }, + { + "label": "a cat sleeping on a keyboard on a table", + "pred": "a cat laying on the floor next to a computer keyboard" + }, + { + "label": "luggage is sorted into groups, and sits outside the fence for pickup", + "pred": "a large amount of luggage on the side of the road" + }, + { + "label": "a person with her hand in her bag and holding an umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "luggage is arranged in groups on a concrete platform", + "pred": "a large amount of luggage on the side of the road" + }, + { + "label": "two girl that are standing next to a suitcase", + "pred": "two women standing next to each other holding luggage" + }, + { + "label": "an tusked elephant playing with a fallen tree at the zoo", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a man dressed in a suit standing next to his bicycle", + "pred": "a man standing next to a bicycle in front of a house" + }, + { + "label": "cats that are sitting on a bed", + "pred": "a cat laying on top of a bed next to a dog" + }, + { + "label": "a formally dressed man holding his bike", + "pred": "a man standing next to a bicycle in front of a house" + }, + { + "label": "a man that is standing next to a bicycle in the grass", + "pred": "a man standing next to a bicycle in front of a house" + }, + { + "label": "a man in a suit standing beside his bicycle", + "pred": "a man standing next to a bicycle in front of a house" + }, + { + "label": "an old man standing on the waters edge with an umbrella", + "pred": "a man holding an umbrella in front of a body of water" + }, + { + "label": "aerial view of suitcases grouped together waiting on a sidewalk", + "pred": "a large amount of luggage on the side of the road" + }, + { + "label": "a man in a red jacket standing next to a river", + "pred": "a man holding an umbrella in front of a body of water" + }, + { + "label": "zoo animals walking in their den", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a lake with boats in it", + "pred": "a boat sitting on a dock next to a body of water" + }, + { + "label": "a man with an umbrella is smiling on a cloudy day", + "pred": "a man holding an umbrella in front of a body of water" + }, + { + "label": "a mail box standing in the street outside apartment buildings", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "an elephant walks around a fenced in area", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a man in a red jacket holding an umbrella outside near a harbor", + "pred": "a man holding an umbrella in front of a body of water" + }, + { + "label": "people are walking in the snow and having fun", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a bed and comforter with three different cats sitting and laying down on the bed", + "pred": "a cat laying on top of a bed next to a dog" + }, + { + "label": "big red metal boxes near a road", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "two girls standing with their bags and in front of a suitcase", + "pred": "two women standing next to each other holding luggage" + }, + { + "label": "a person riding skis on top of a snow covered slope near a dog", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a cat and a dog playing on the floor near shoes", + "pred": "a cat sitting on the floor next to a cat laying on the floor" + }, + { + "label": "a cat and a dog on the floor in a room", + "pred": "a cat sitting on the floor next to a cat laying on the floor" + }, + { + "label": "the people are trying to climb the mountain", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "man and woman walking up a snowy mountainous path, with luggage", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "pieces of very nice looking luggage", + "pred": "two black suitcases sitting next to each other" + }, + { + "label": "a cat observing a dog that's sniffing something on the floor", + "pred": "a cat sitting on the floor next to a cat laying on the floor" + }, + { + "label": "hikers make it past a sign post in snowy conditions", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "obama delivers a speech photoshopped with the ussr flag", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "a man on snow skis with his dog", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "people are standing next to an elephant emerging from the water", + "pred": "a man standing next to an elephant next to a body of water" + }, + { + "label": "people stand beside of a giant elephant", + "pred": "a man standing next to an elephant next to a body of water" + }, + { + "label": "a cat and dog on wooden floor next to a stairwell", + "pred": "a cat and a dog sitting on the floor" + }, + { + "label": "a person on some skis and a dog in the snow", + "pred": "a man standing on skis in the snow" + }, + { + "label": "people and a sign in the snow", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "two different brands but similar looking devices sitting by each other", + "pred": "two black suitcases sitting next to each other" + }, + { + "label": "a dog in a leash harness posing for a photo", + "pred": "a brown and white dog sitting in a purse" + }, + { + "label": "a balloon elephant sits in the middle of a park area", + "pred": "a statue of an elephant in a park" + }, + { + "label": "three tourists pose for a picture next to an elephant", + "pred": "a man and woman standing next to an elephant" + }, + { + "label": "people walking on a sidewalk, with one man holding an umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a person walking while carrying a rainbow umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "three people stand with an elephant in front of a stream", + "pred": "a man and woman standing next to an elephant" + }, + { + "label": "a person is holding up a large colorful umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a man on skis with a dog next to him", + "pred": "a man standing on skis in the snow" + }, + { + "label": "a parking meter sitting next to a street with a very odd looking building next to it", + "pred": "a parking meter on the side of a road" + }, + { + "label": "three people standing next to an elephant along a river", + "pred": "a man and woman standing next to an elephant" + }, + { + "label": "a frisbee that is laying in the grass near a tree", + "pred": "a frisbee that is in the grass" + }, + { + "label": "a ceramic elephant that is standing up on fake water", + "pred": "a statue of an elephant in a park" + }, + { + "label": "the woman walks far away from the frisbee laying near a tree", + "pred": "a frisbee that is in the grass" + }, + { + "label": "the president making a speech with a communist/american flag combo behind him", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "an elephant statue standing on top of a lush green park", + "pred": "a statue of an elephant in a park" + }, + { + "label": "people sitting and standing on the beach", + "pred": "people sitting on top of a sandy beach" + }, + { + "label": "a cat laying on a luggage bag on the ground", + "pred": "a cat laying on top of a suitcase" + }, + { + "label": "people who are laying out on a beach", + "pred": "people sitting on top of a sandy beach" + }, + { + "label": "a frisbee lying next to a tree in a grassy field", + "pred": "a frisbee that is in the grass" + }, + { + "label": "a dog is wearing a harness that reads \"outward hound\"", + "pred": "a brown and white dog sitting in a purse" + }, + { + "label": "a brown cat lying on a black suitcase", + "pred": "a cat laying on top of a suitcase" + }, + { + "label": "a small dog wearing a flower print life vest", + "pred": "a brown and white dog sitting in a purse" + }, + { + "label": "a husky stands by as a skier stands there", + "pred": "a man standing on skis in the snow" + }, + { + "label": "a cow that is leaning under a metal wall", + "pred": "a black and white cow standing in a stable" + }, + { + "label": "the cat is laying on a luggage bag", + "pred": "a cat laying on top of a suitcase" + }, + { + "label": "a cow peaking its head into a room that contains mechanical equipment", + "pred": "a black and white cow standing in a stable" + }, + { + "label": "a sculpture of an elephant, decorated with images of other animals", + "pred": "a statue of an elephant in a park" + }, + { + "label": "a blue frisbee sitting on top of a lush green field", + "pred": "a frisbee that is in the grass" + }, + { + "label": "the puppy is wearing a black, white and pink apparatus", + "pred": "a brown and white dog sitting in a purse" + }, + { + "label": "the person addressing on a microphone and a flag behind", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "two pieces of luggage stand next to each other", + "pred": "two black suitcases sitting next to each other" + }, + { + "label": "a sandy beach topped with lots of lawn chairs and people", + "pred": "people sitting on top of a sandy beach" + }, + { + "label": "a woman walking up to get the freeze bee", + "pred": "a frisbee that is in the grass" + }, + { + "label": "two pieces of hard luggage are seen here", + "pred": "two black suitcases sitting next to each other" + }, + { + "label": "people are seen walking through the airport while waiting for their bags", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "an elephant statue with an opening of various drawings on it", + "pred": "a statue of an elephant in a park" + }, + { + "label": "a person walking down the street carrying a rainbow colored umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a person walking in a square carrying a rainbow colored umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a cat lying on a suit case and looking alertly", + "pred": "a cat laying on top of a suitcase" + }, + { + "label": "a family outside in a yard playing frisbee with their dog", + "pred": "a man and a woman playing frisbee in a" + }, + { + "label": "people lying in the sun on the beach", + "pred": "people sitting on top of a sandy beach" + }, + { + "label": "two black bags placed standing on the ground", + "pred": "two black suitcases sitting next to each other" + }, + { + "label": "a cop standing next to a crowd of people", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "a man on a three wheeler following behind a two dogs and a cow", + "pred": "a man on a farm with two cows" + }, + { + "label": "a man raising a foot over a brief case", + "pred": "a person on a cell phone on a sidewalk" + }, + { + "label": "a cat sleeping on top of a closed suit case", + "pred": "a cat sitting on top of a suitcase" + }, + { + "label": "a president standing at the microphone by a big flag", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "a cow is looking through a gap into some machinery", + "pred": "a black and white cow standing in a stable" + }, + { + "label": "the very pretty sun shining through some big buildings", + "pred": "a parking meter on the side of a road" + }, + { + "label": "the sun is hitting the corner of one of the buildings", + "pred": "a parking meter on the side of a road" + }, + { + "label": "a black and white cow walking across a lush green field", + "pred": "a man on a farm with two cows" + }, + { + "label": "a cat that is sittion on top of the suitcase", + "pred": "a cat laying on top of a suitcase" + }, + { + "label": "a cat laying on top of luggage", + "pred": "a cat sitting on top of a suitcase" + }, + { + "label": "people are walking around with their luggage at an airport", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "people walking thru the airport with luggage", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "people in the airport walking with their luggage", + "pred": "a man walking down the street with a suitcase" + }, + { + "label": "a man is right behind a cow on green grass", + "pred": "a man on a farm with two cows" + }, + { + "label": "a very cute cow by a big metal piece of equipment", + "pred": "a black and white cow standing in a stable" + }, + { + "label": "the pick up truck is plowing the snow", + "pred": "a red truck driving down a snow covered street" + }, + { + "label": "the dog runs near an adult who plays with two children", + "pred": "a man and a woman playing frisbee in a" + }, + { + "label": "a red pick up truck with a plow blade drives down a snowy suburban road", + "pred": "a red truck driving down a snow covered street" + }, + { + "label": "a person on the beach", + "pred": "people sitting on top of a sandy beach" + }, + { + "label": "a truck with a snow plow attached to the front", + "pred": "a red truck driving down a snow covered street" + }, + { + "label": "little elephants standing close to each other", + "pred": "elephants standing next to each other" + }, + { + "label": "city buses that are lined on the street in front of the building", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "women that are laughing under the umbrella", + "pred": "a couple walking down the street with an umbrella" + }, + { + "label": "a red truck that is on the street", + "pred": "a red truck driving down a snow covered street" + }, + { + "label": "a sail boat stuck in the sand on the beach", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "cow looking into the bottom of a machine", + "pred": "a black and white cow standing inside of a stable" + }, + { + "label": "a man on a vehicle in a field and a few animals", + "pred": "a man standing next to a cow in a field" + }, + { + "label": "a man stepping over a briefcase on a sidewalk", + "pred": "a person on a cell phone standing on a sidewalk" + }, + { + "label": "someone is stomping on top of that briefcase", + "pred": "a person on a cell phone standing on a sidewalk" + }, + { + "label": "a cat sleeping on top of a suitcase", + "pred": "a cat sitting on top of a suitcase" + }, + { + "label": "i love the way the sun is creeping behind those two buidings", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a boat that is on a beach by the ocean", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a bus with its serial number that can be seen from the air overlooks a panel truck and another bus", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "three teenage girls hover under an umbrella while they talk and laugh", + "pred": "a couple walking down the street with an umbrella" + }, + { + "label": "a panda bear walking on a field near a tree", + "pred": "a black and white photo of a black and white dog" + }, + { + "label": "the brown cat is lying on a luggage bag", + "pred": "a cat sitting on top of a suitcase" + }, + { + "label": "a person showing a baby panda bear its bottle", + "pred": "a black and white photo of a black and white dog" + }, + { + "label": "a person standing on cement lift his leg over a brief case", + "pred": "a person on a cell phone standing on a sidewalk" + }, + { + "label": "a cow walks as a man on a quad follows it", + "pred": "a man standing next to a cow in a field" + }, + { + "label": "a person is stomping on a black briefcase", + "pred": "a person on a cell phone standing on a sidewalk" + }, + { + "label": "a woman standing next to a brown and white dog", + "pred": "a man with a dog and a frisbee" + }, + { + "label": "a man watches as a dig looks at a toy in the air", + "pred": "a man with a dog and a frisbee" + }, + { + "label": "the plow truck driver is talking to his neighbor", + "pred": "a red truck driving down a snow covered street" + }, + { + "label": "a number of buildings in the distance", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a public bus driving on a city street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "three people standing near one another with an umbrella", + "pred": "a couple walking down the street with an umbrella" + }, + { + "label": "a boat sitting on top of a beach next to the ocean", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a cat sleeping on top of a black suitcase", + "pred": "a cat sitting on top of a suitcase" + }, + { + "label": "a couch sitting on top of a field of grass", + "pred": "a blue couch sitting next to a trash can" + }, + { + "label": "a man, two kids and a dog are playing frisbee", + "pred": "a man and woman playing frisbee in a field" + }, + { + "label": "a busy city street with buses, trucks and cars", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "three girls walking down the sidewalk under a sun umbrella", + "pred": "a couple walking down the street with an umbrella" + }, + { + "label": "young children sitting next to each other", + "pred": "a large group of children posing for a picture" + }, + { + "label": "a black bomb squad truck driving down a road", + "pred": "a white truck driving down a street next to tall buildings" + }, + { + "label": "the panda bear likes to walk in the grass", + "pred": "a black and white photo of a black and white dog" + }, + { + "label": "a train traveling down tracks net to a bridge", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a panda bear that is standing in the grass", + "pred": "a black and white photo of a black and white dog" + }, + { + "label": "a chair,couch and suitcase sitting by the road", + "pred": "a blue couch sitting next to a trash can" + }, + { + "label": "three elephants standing in their pen are looking all around", + "pred": "elephants standing next to each other" + }, + { + "label": "a person holding an object in front of a panda bear", + "pred": "a black and white photo of a black and white dog" + }, + { + "label": "a train going down the train track", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a man standing in a grass field with a dog in front of him and frisbee type toys thrown in the air", + "pred": "a man with a dog and a frisbee" + }, + { + "label": "a man watches as a dog prepares to jump for a frisbee", + "pred": "a man with a dog and a frisbee" + }, + { + "label": "a couch, chair, and luggage sitting on the edge of the curb", + "pred": "a blue couch sitting next to a trash can" + }, + { + "label": "elephants walk around within an enclosure", + "pred": "elephants standing next to each other" + }, + { + "label": "trucks and city buses drive down the crowded street", + "pred": "a bus that is parked on the side of the road" + }, + { + "label": "three young women smile brightly together under a large umbrella", + "pred": "a couple walking down the street with an umbrella" + }, + { + "label": "frisbee in the air, a dog squatting looking up at it, and a man standing behind the dog watching it, on the grass with a tree", + "pred": "a man with a dog and a frisbee" + }, + { + "label": "a herd of elephants standing on top of a dirt field", + "pred": "elephants standing next to each other" + }, + { + "label": "a pack of elephants grazing in a dirt enclosed space", + "pred": "elephants standing next to each other" + }, + { + "label": "police vehicles at an urban crime scene", + "pred": "a white truck driving down a street next to tall buildings" + }, + { + "label": "a vendor selling fruit from the back of a truck", + "pred": "a man standing in front of a fruit stand" + }, + { + "label": "a cat sitting on top of a wooden desk", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "a wood chair, a sofa and cushions, and a roller luggage bag lie by the side of the road", + "pred": "a blue couch sitting next to a trash can" + }, + { + "label": "a freight train running along tracks beneath a bridge", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a man throws a ball with to small boys in a yard as a dog runs around", + "pred": "a man and woman playing frisbee in a field" + }, + { + "label": "a cat sitting in behind a window looking out", + "pred": "a black cat sitting on top of a window sill" + }, + { + "label": "a red and black train on the train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a man is playing catch with two children and a dog", + "pred": "a man and woman playing frisbee in a field" + }, + { + "label": "the large group of children are outside posing for a photo", + "pred": "a large group of children posing for a picture" + }, + { + "label": "a couch, chair, and suitcase sitting on the curb", + "pred": "a blue couch sitting next to a trash can" + }, + { + "label": "a herd of cattle walking down a street near lush green trees", + "pred": "cows standing on the side of a road" + }, + { + "label": "children pose for a class picture", + "pred": "a large group of children posing for a picture" + }, + { + "label": "a sail boat sitting on the sand at the beach", + "pred": "a surfboard sitting on top of a beach next to the ocean" + }, + { + "label": "a bomb squad emergency vehicle has stopped in the middle of an intersection", + "pred": "a white truck driving down a street next to tall buildings" + }, + { + "label": "school children posing for a picture", + "pred": "a large group of children posing for a picture" + }, + { + "label": "baseball players that are walking in the outfield", + "pred": "baseball players standing on top of a field" + }, + { + "label": "girls and boys in front of a building", + "pred": "a large group of children posing for a picture" + }, + { + "label": "two people sit facing each other under an umbrella", + "pred": "a man and woman sitting on a bench under an umbrella" + }, + { + "label": "the old, adult elephant stands near a wire fence", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a line of small teddy bears are in front of several dvd cases", + "pred": "a pile of teddy bears sitting on top of a wooden table" + }, + { + "label": "an ox standing in a busy town area with people going about their normal business", + "pred": "a cow standing on the side of a road" + }, + { + "label": "two elephants behind a tree in a grassy area", + "pred": "elephants standing next to each other in a forest" + }, + { + "label": "an elephant standing next to an electric fence", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "cow being fed a popsicle by a person over a fence", + "pred": "a person feeding a cow milk from a bottle" + }, + { + "label": "the cog is grazing on the grass, he has big horns", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "very artistic photograph of a house, a lake and a wooden boat", + "pred": "a small boat docked in a small body of water" + }, + { + "label": "a small boat floating down a river by a house", + "pred": "a small boat docked in a small body of water" + }, + { + "label": "a kitten napping on the keyboard of a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a texas longhorn bull eating grass by a barbed wire fence", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "a kitten lies down on the keyboard of a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a kitten laying asleep on top of a turned on laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "brown and white cow with long horns standing next to a chain fence", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "two women sitting outside,one holding the others hand", + "pred": "a man and woman sitting on a bench under an umbrella" + }, + { + "label": "elephants peeking through a couple of trees", + "pred": "elephants standing next to each other in a forest" + }, + { + "label": "a kitten laying over a keyboard on a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a canoe in the water near grass and a house", + "pred": "a small boat docked in a small body of water" + }, + { + "label": "two really long horned cows eating in a field", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "elephants make their way through the trees", + "pred": "elephants standing next to each other in a forest" + }, + { + "label": "an elephant at a zoo on a sunny day", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a body of calm water with a wooden canoe docked on the side and a home across the water", + "pred": "a small boat docked in a small body of water" + }, + { + "label": "a house sits next to a swampy river", + "pred": "a small boat docked in a small body of water" + }, + { + "label": "large clock sitting on the side of a large building", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a large bull with horns standing in a grassy field", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "a kitty cat lies down on a computer keyboard", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "the longhorn cattle has an interesting hair growth pattern", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "a man leaning over the back of a truck in front of buildings", + "pred": "a man standing in front of a truck in front of a building" + }, + { + "label": "a man bending into the back of a truck on a street", + "pred": "a man standing in front of a truck in front of a building" + }, + { + "label": "the orange cat is sleepy on the window sill", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "very many travelling bags placed on the floor", + "pred": "a pile of suitcases stacked on top of each other" + }, + { + "label": "a road sign showing to stop on the road near a forest", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a very ugly cow with long horns staring", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "a brown cow sniffing on a person hand", + "pred": "a person feeding a cow milk from a bottle" + }, + { + "label": "a man standing behind a brown horse carrying lots of luggage", + "pred": "a man standing next to a horse on a dirt road" + }, + { + "label": "a hairy brown animal stands on the grass", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "a baby cow is interested in a drink someone has", + "pred": "a person feeding a cow milk from a bottle" + }, + { + "label": "an elephant in a zoo enclosure", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a yak walking through a field going towards a tree", + "pred": "a brown and white cow standing on top of a lush green field" + }, + { + "label": "a baby calf licking on a block of ice with fruit in it", + "pred": "a person feeding a cow milk from a bottle" + }, + { + "label": "a very tall building with sculpture and a clock", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a man standing at a podium at a usindo luncheon", + "pred": "a man standing in front of a podium with a microphone" + }, + { + "label": "a large building with statues at the top of it", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "an elephant standing inside of a dirt pen", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "statues on the second floor of a building, sitting below a clock", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a trail guide stands next to the loaded pack horse", + "pred": "a man standing next to a horse on a dirt road" + }, + { + "label": "a man standing next to a donkey loaded with luggage", + "pred": "a man standing next to a horse on a dirt road" + }, + { + "label": "a herd of elephants walking along a river and a rocky hillside", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a man standing next to a horse in the woods", + "pred": "a man standing next to a horse on a dirt road" + }, + { + "label": "paddle boats parked at the edge of a river or lake", + "pred": "boats are docked in a body of water" + }, + { + "label": "women are sitting under an umbrella", + "pred": "a man and woman sitting on a bench under an umbrella" + }, + { + "label": "a man who is walking across the street", + "pred": "a white truck driving down a city street" + }, + { + "label": "a man standing next to a donkey with a lot of baggage on it", + "pred": "a man standing next to a horse on a dirt road" + }, + { + "label": "a man in a construction outfit leaned over a utility truck", + "pred": "a man standing in front of a truck in front of a building" + }, + { + "label": "a variety of paddle boats on the water near a park", + "pred": "boats are docked in a body of water" + }, + { + "label": "paddleboats are lined up and ready for tourists this morning", + "pred": "boats are docked in a body of water" + }, + { + "label": "a pretty red white and blue parking meter by some shrubs", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "cute elephants gathered together by the water", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a man reaches in the back of a truck", + "pred": "a man standing in front of a truck in front of a building" + }, + { + "label": "a man is reaching for something in the truck bed", + "pred": "a man standing in front of a truck in front of a building" + }, + { + "label": "a man at a podium speaking at an event", + "pred": "a man standing in front of a podium with a microphone" + }, + { + "label": "a busy intersection with an ice cream truck driving by", + "pred": "a white truck driving down a city street" + }, + { + "label": "a man and his friends are standing outside next to a truck", + "pred": "a vintage photo of a vintage truck with a man standing next to it" + }, + { + "label": "a man walks behind an ice cream truck", + "pred": "a white truck driving down a city street" + }, + { + "label": "a dark cat hiding in between a laptop", + "pred": "a cat laying on top of a laptop on a table" + }, + { + "label": "a man is crossing a street near an icecream truck", + "pred": "a white truck driving down a city street" + }, + { + "label": "a cat is laying inside of a half open lap top", + "pred": "a cat laying on top of a laptop on a table" + }, + { + "label": "piles of luggage sit outside on a busy street", + "pred": "a pile of suitcases stacked on top of each other" + }, + { + "label": "a joke stop sign saying go placed before the real stop sign", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a person helping a woman put on a tie", + "pred": "a woman cutting a woman's hair in front of a wall" + }, + { + "label": "a small red train is parked at the station", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a large stack of trunks and luggage on a sidewalk with people behind it", + "pred": "a pile of suitcases stacked on top of each other" + }, + { + "label": "a rural road with three octagonal signs, two are stop signs and one has the word \"go\" painted on it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a sidewalk filled with various bags and cases of luggage", + "pred": "a pile of suitcases stacked on top of each other" + }, + { + "label": "a sidewalk with grass and signs next to it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a cat laying with a laptop on a table", + "pred": "a cat laying on top of a laptop on a table" + }, + { + "label": "the cat on the windowsill is relaxing in the sun", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a cat lies on a laptop between the keyboard and the cover", + "pred": "a cat laying on top of a laptop on a table" + }, + { + "label": "boats sitting next to a dock near a boat house", + "pred": "boats are docked in a body of water" + }, + { + "label": "a man in a suit is talking to a group", + "pred": "a man standing in front of a podium with a microphone" + }, + { + "label": "a black and white photo shows men in a field with a truck", + "pred": "a vintage photo of a vintage truck with a man standing next to it" + }, + { + "label": "a parking meter with a sidewalk and fence", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "three men rest against their truck for a break from work", + "pred": "a vintage photo of a vintage truck with a man standing next to it" + }, + { + "label": "the man is walking behind the concession bus", + "pred": "a white truck driving down a city street" + }, + { + "label": "a parking meter has a sign promoting the end to homelessness", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "elephants are standing on a muddy bank next to water", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a parking meter is on a sidewalk next to some green bushes", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "elephants are standing and lying on a sandy beach", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a parking meter that has a sign to end homelessness on it", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a ferry the is pulling into the dock for off loading", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "a cat that is laying on top of a laptop", + "pred": "a cat laying on top of a laptop on a table" + }, + { + "label": "elephants standing next to some water", + "pred": "a herd of elephants standing next to a body of water" + }, + { + "label": "a woman helping another woman with her tie", + "pred": "a woman cutting a woman's hair in front of a wall" + }, + { + "label": "a woman with a cigarette standing, while a group of people with luggage walk towards a bus", + "pred": "a woman standing in front of a bus waiting for passengers" + }, + { + "label": "a black goat with its mouth open next to a white goat", + "pred": "a cow standing next to a baby cow in a fenced in area" + }, + { + "label": "lots and lots of suitcases stacked up together", + "pred": "a pile of suitcases stacked on top of each other" + }, + { + "label": "a stop sign and someone has vandalized the one beside it", + "pred": "a red stop sign sitting on the side of a road" + }, + { + "label": "a crowd of people outside a terminal boarding buses", + "pred": "a woman standing in front of a bus waiting for passengers" + }, + { + "label": "a person is tying a tie around a girls.neck", + "pred": "a woman cutting a woman's hair in front of a wall" + }, + { + "label": "a woman is having a smoke while waiting for the bus", + "pred": "a woman standing in front of a bus waiting for passengers" + }, + { + "label": "a ginger cat is sleeping next to the window", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "people standing in a large building", + "pred": "a woman standing in front of a bus waiting for passengers" + }, + { + "label": "a ferry in a port with mountains", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "a large clock on the top of a building", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "cats laying on top of a pink blanket", + "pred": "a cat laying on top of a couch next to another cat" + }, + { + "label": "buses lined up letting people aboard them", + "pred": "a woman standing in front of a bus waiting for passengers" + }, + { + "label": "large ship washed up ashore on a long stretch of beach", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "group of paddle boats tied up alongside a pear on the water", + "pred": "boats are docked in a body of water" + }, + { + "label": "a woman that is tying a tie onto another woman", + "pred": "a woman cutting a woman's hair in front of a wall" + }, + { + "label": "an adult standing behind a little girl while holding an umbrella", + "pred": "a little girl standing next to a man holding an umbrella" + }, + { + "label": "a cat sitting on top of a wooden window sill", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a cat is sleeping in a window sill", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a man speaking at a podium during an event", + "pred": "a man standing in front of a podium with a microphone" + }, + { + "label": "a black and a white sheep inside of a fenced area", + "pred": "a cow standing next to a baby cow in a fenced in area" + }, + { + "label": "a metro style train engine passing under a bridge", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a man is speaking at a panel in front of a crowd", + "pred": "a man standing in front of a podium with a microphone" + }, + { + "label": "an older flat bed truck with equipment in it parked in a farm field with three men", + "pred": "a vintage photo of a vintage truck with a man standing next to it" + }, + { + "label": "an old truck in the field with three men", + "pred": "a vintage photo of a vintage truck with a man standing next to it" + }, + { + "label": "a shadow looks like a cat in a living room", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a beach is full of umbrellas and beach chairs", + "pred": "a beach filled with lots of umbrellas on a sunny day" + }, + { + "label": "a woman with a hat, tie and striped halter smoking a long cigarette", + "pred": "a woman wearing a hat and holding a cell phone" + }, + { + "label": "a train on a track next to a set of blue stairs", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a woman is getting her tie adjusted in the city", + "pred": "a woman cutting a woman's hair in front of a wall" + }, + { + "label": "a lady that is smoking something and has a large hat", + "pred": "a woman wearing a hat and holding a cell phone" + }, + { + "label": "two cats laying down with two remotes", + "pred": "a cat laying on top of a couch next to another cat" + }, + { + "label": "a person sleeping on a bed with a cat", + "pred": "a person laying on a bed with a cat" + }, + { + "label": "a black sheep and others in a corral together", + "pred": "a cow and a calf in a fenced in area" + }, + { + "label": "a train with no cars sitting on the train tracks", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a cat that is looking into a computer screen", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a cat that is standing near a computer screen", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a woman with a tie smoking a cigarette with a big smile", + "pred": "a woman wearing a hat and holding a cell phone" + }, + { + "label": "a women dressed in a hat and tie poses for a picture", + "pred": "a woman wearing a hat and holding a cell phone" + }, + { + "label": "a sheep with its mouth open in a pen", + "pred": "a cow and a calf in a fenced in area" + }, + { + "label": "a woman smoking a cigarette", + "pred": "a woman wearing a hat and holding a cell phone" + }, + { + "label": "a bear laying in a canvas type net", + "pred": "a bear that is tied up in a basket" + }, + { + "label": "a big brown bear asleep in a hammock", + "pred": "a bear that is tied up in a basket" + }, + { + "label": "a black and white photo shows a boat sitting on a beach", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "a beach with a lot of lounge chairs under umbrellas", + "pred": "a beach filled with lots of umbrellas and chairs" + }, + { + "label": "a ship anchored to the bay and close to some building", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "the large boat in the water is docked by the buildings", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "a black cat rubbing up against a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a small ferry docked on calm water in norway", + "pred": "a large white boat floating on top of a body of water" + }, + { + "label": "two men smiling and taking a picture together", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "the two people are standing under an umbrella in the rain", + "pred": "a little girl standing next to a man holding an umbrella" + }, + { + "label": "the train is on the tracks in the station", + "pred": "a red and yellow train traveling down train tracks" + }, + { + "label": "a small wooden boat out of water on a beach", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "a young male in a suit jacket and tie", + "pred": "a young boy wearing a suit and tie" + }, + { + "label": "a cat standing next to a laptop computer on top of a table", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a young man wearing a suit and neck tie", + "pred": "a young boy wearing a suit and tie" + }, + { + "label": "a large sandy beach with umbrellas and chairs", + "pred": "a beach filled with lots of umbrellas and chairs" + }, + { + "label": "a small cow in a enclosure with straw on the floor", + "pred": "a cow and a calf in a fenced in area" + }, + { + "label": "two girls under a large umbrella in the rain", + "pred": "a little girl standing next to a man holding an umbrella" + }, + { + "label": "a brown bear is lying asleep in a hammock", + "pred": "a bear that is tied up in a basket" + }, + { + "label": "boats pulled up onto the beach", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "a woman laying down with a cat", + "pred": "a person laying on a bed with a cat" + }, + { + "label": "a sleeping woman cuddling a cat in bed", + "pred": "a person laying on a bed with a cat" + }, + { + "label": "a boat sitting on top of a sandy beach near the ocean", + "pred": "a boat sitting on top of a sandy beach" + }, + { + "label": "a bear sleeps in a hammock made of heavy canvas", + "pred": "a bear that is tied up in a basket" + }, + { + "label": "a photograph portrait of a male teen in coat and tie", + "pred": "a young boy wearing a suit and tie" + }, + { + "label": "two men standing next to one another, and both are smiling and wearing neckties", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "two men in ties smile at the camera", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "people standing with a umbrella", + "pred": "a little girl and a man holding an umbrella" + }, + { + "label": "cows and some birds flying in the sky", + "pred": "cows that are standing in the grass" + }, + { + "label": "a large bear laying down on a leather hammock", + "pred": "a bear that is tied up in a basket" + }, + { + "label": "a man standing next to an elephant with a long trunk", + "pred": "a man standing next to a large elephant" + }, + { + "label": "umbrellas are lined up on the beach at the foot of a city", + "pred": "a beach with many umbrellas on it" + }, + { + "label": "the beach is crowded red and white beach umbrellas", + "pred": "a beach with many umbrellas on it" + }, + { + "label": "a man standing next to a big elephant", + "pred": "a man standing next to a large elephant" + }, + { + "label": "a women in a blue shirt cuddles up with her cat", + "pred": "a person laying on a bed with a cat" + }, + { + "label": "two cats sleeping with a remote control near each of them", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "a woman laying in bed next to a cat", + "pred": "a person laying on a bed with a cat" + }, + { + "label": "man in dress shirt and orange tie standing inside a building", + "pred": "a man wearing a suit and tie" + }, + { + "label": "the young man possesses a very unusual face", + "pred": "a young boy wearing a suit and tie" + }, + { + "label": "a woman sits under the shade of an umbrella at the beach", + "pred": "a person sitting on a beach under an umbrella" + }, + { + "label": "two men standing side by side and smiling", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a boat that is sitting along side the beach shore", + "pred": "a surfboard sitting on top of a beach" + }, + { + "label": "a man standing behind a truck filled with produce", + "pred": "a man standing in front of a fruit stand" + }, + { + "label": "a bomb squad vehicle in the middle of an intersection", + "pred": "a white truck driving down a city street" + }, + { + "label": "a woman lying on her back with knees bent on a beach towel under a multicolored, striped beach umbrella, surrounded by sand, and with clear blue sky", + "pred": "a person sitting on a beach under an umbrella" + }, + { + "label": "a male with a beard and orange tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a woman laying on the beach under an umbrella", + "pred": "a person sitting on a beach under an umbrella" + }, + { + "label": "a herd of elephants standing on top of a dirt road", + "pred": "elephants that are standing in the dirt" + }, + { + "label": "a herd of elephants standing side by side in an enclosed area", + "pred": "elephants that are standing in the dirt" + }, + { + "label": "a man standing with an elephant that has painted markings on it", + "pred": "a man standing next to a large elephant" + }, + { + "label": "cows standing on top of a shore near water", + "pred": "cows that are standing in the grass" + }, + { + "label": "two cats lying near two remotes on a purple sheets", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "a man wearing a neck tie and a white shirt", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a woman in glasses bursking under an umbrella", + "pred": "a person sitting on a beach under an umbrella" + }, + { + "label": "two cats asleep on a sofa with a blanket on it", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "a bomb squad truck turning at a crosswalk", + "pred": "a white truck driving down a city street" + }, + { + "label": "an orange train traveling along train tracks near a train yard", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "baseball players walking across a lush green field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "elephants are roaming around their habitat in the zoo", + "pred": "elephants that are standing in the dirt" + }, + { + "label": "elephants in a cage stand together", + "pred": "elephants that are standing in the dirt" + }, + { + "label": "the baseball team getting ready to walk off the field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a child and person stand under an umbrella", + "pred": "a little girl and a man holding an umbrella" + }, + { + "label": "two men with ties on smiling next to each other", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a man posing for the picture in a building", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a person pets an elephant with markings on it", + "pred": "a man standing next to a large elephant" + }, + { + "label": "a man dressed in a shirt and tie standing in a lobby", + "pred": "a man wearing a suit and tie" + }, + { + "label": "members of a baseball team are walking across a field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a lady laying on a blanket on the beach under an umbrella", + "pred": "a person sitting on a beach under an umbrella" + }, + { + "label": "elephants in a zoo close to buildings", + "pred": "elephants that are standing in the dirt" + }, + { + "label": "a man standing next to an elephant, with his hand touching the trunk", + "pred": "a man standing next to a large elephant" + }, + { + "label": "a portrait picture of a young man in a suit and tie", + "pred": "a young boy wearing a suit and tie" + }, + { + "label": "pedestrians walking on sidewalk with umbrella on rainy day", + "pred": "people walking in the rain with umbrellas" + }, + { + "label": "a man in the back of a truck cutting fruit", + "pred": "a man standing in front of a fruit stand" + }, + { + "label": "a man with fruit on the back of a pickup truck", + "pred": "a man standing in front of a fruit stand" + }, + { + "label": "baseball players walking across a grassy area", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a red and black bnsf train travels along it's tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a cat is sitting in a window that has a dirty exterior", + "pred": "a black cat sitting on a window sill" + }, + { + "label": "two people walking with umbrellas down the sidewalk in the rain", + "pred": "people walking in the rain with umbrellas" + }, + { + "label": "people walking down a wet rain soaked sidewalk", + "pred": "people walking in the rain with umbrellas" + }, + { + "label": "a black cat on a wooden table in front of a laptop", + "pred": "a black cat sitting on top of a laptop" + }, + { + "label": "a cat perches itself near a window, looking outside", + "pred": "a black cat sitting on a window sill" + }, + { + "label": "orange train engine pulling a train in a freight yard", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a man cutting a cold coconut on the back of a truck", + "pred": "a man standing in front of a fruit stand" + }, + { + "label": "three cows standing at a watering hole with birds flying overhead", + "pred": "a herd of cattle standing on top of a grass covered field" + }, + { + "label": "a black cat sitting on a table in front of a laptop", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "an cat sits on the sill of a dilapidated window", + "pred": "a black cat sitting on top of a window sill" + }, + { + "label": "a city street on a rainy day with people taking cover using umbrellas", + "pred": "people walking in the rain with umbrellas" + }, + { + "label": "a train on the tracks near a train station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a parking meter next to a handicap parking space", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "cows walking in the street with cars behind them", + "pred": "cows standing on the side of a road" + }, + { + "label": "people holding onto umbrellas while walking down a wet road", + "pred": "people walking in the rain with umbrellas" + }, + { + "label": "a parking meter that is placed right next to a parking lot", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a parking meter on the side of a road with a red light showing", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "cattle walking down a street in front of a car", + "pred": "cows standing on the side of a road" + }, + { + "label": "a black and white cat sitting by a window and looking outside", + "pred": "a black cat sitting on top of a window sill" + }, + { + "label": "a actress standing near an elephant on a sunny day", + "pred": "a woman is standing next to an elephant" + }, + { + "label": "a herd of cattle crossing the street while cars wait behind them", + "pred": "cows standing on the side of a road" + }, + { + "label": "an older woman is talking in front of an elephant", + "pred": "a woman is standing next to an elephant" + }, + { + "label": "a herd of cows walks down a city street", + "pred": "cows standing on the side of a road" + }, + { + "label": "a cat sits down in front of a laptop", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "the woman is looking at the elephant in amazement", + "pred": "a woman is standing next to an elephant" + }, + { + "label": "cows are grazing in a wet pasture with birds", + "pred": "a herd of cattle standing on top of a grass covered field" + }, + { + "label": "a train on a track with trees", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a large bull by a calf surrounded by many birds", + "pred": "a herd of cattle standing on top of a grass covered field" + }, + { + "label": "a locomotive train that has train cars attached and parked on a set of train tracks", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a very cute cat laying on a rug", + "pred": "a cat laying on the floor next to a stuffed animal" + }, + { + "label": "a black cat sitting on a desk with laptop next to it", + "pred": "a black cat sitting on top of a laptop computer" + }, + { + "label": "the black and brown cat is scratching it's ear", + "pred": "a cat laying on the floor next to a stuffed animal" + }, + { + "label": "a cat sitting on a rug scratching its ear", + "pred": "a cat laying on the floor next to a stuffed animal" + }, + { + "label": "a parking meter decorated with different colors of paper", + "pred": "a parking meter in front of a building" + }, + { + "label": "parking meters on a street", + "pred": "a parking meter in front of a building" + }, + { + "label": "a woman standing behind a fence looking at an elephant", + "pred": "a woman is standing next to an elephant" + }, + { + "label": "a parking meter with a set of different colored papers wrapped around it", + "pred": "a parking meter in front of a building" + }, + { + "label": "a person tossing an orange frisbee on top of a green field", + "pred": "a person catching a frisbee in a park" + }, + { + "label": "the parking meter is decorated in different colors", + "pred": "a parking meter in front of a building" + }, + { + "label": "a black cat laying on a white lap top", + "pred": "a cat sitting on top of a desk next to a computer" + }, + { + "label": "the parking meter in the parking lot has seven fifteen on it", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a cat is watching the clouds on the monitor", + "pred": "a cat sitting on top of a desk next to a computer" + }, + { + "label": "a parket meter sitting next to a parking space", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a person with a tie and a suit", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a dog on a leash trying to ride a skateboard", + "pred": "a dog that is laying down on a skateboard" + }, + { + "label": "a parking meter sitting on the sidewalk in front of a building", + "pred": "a parking meter in front of a building" + }, + { + "label": "a man with a mustache is wearing a tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a blue suitcase some shoes and a wooden table", + "pred": "a cat sitting on top of a wooden floor next to a suitcase" + }, + { + "label": "a cat holding a fake carrot while scratching on a rug", + "pred": "a cat laying on the floor next to a stuffed animal" + }, + { + "label": "a cat scratching his ear while holding a carrot", + "pred": "a cat laying on the floor next to a stuffed animal" + }, + { + "label": "a brown white and black dog is laying on a gray couch", + "pred": "a dog laying on top of a couch" + }, + { + "label": "a small dog standing on top of a skateboard", + "pred": "a dog that is laying down on a skateboard" + }, + { + "label": "an old woman standing besides an elephant smiling", + "pred": "a woman is standing next to an elephant" + }, + { + "label": "the moon shining down on a harbor full of ships", + "pred": "a large body of water with boats in it" + }, + { + "label": "elephants standing on a lush green forest", + "pred": "a large elephant standing in the middle of a grassy field" + }, + { + "label": "a very cute dog standing on a skate board", + "pred": "a dog that is laying down on a skateboard" + }, + { + "label": "a very cute girl with face piercings", + "pred": "a woman in a black and white photo" + }, + { + "label": "two people in a field wearing a dress and a suit and tie", + "pred": "a bride and groom are posing for a picture" + }, + { + "label": "a bald man with glasses stares forward while wearing a robot tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a dog that is sitting on a skate board", + "pred": "a dog that is laying down on a skateboard" + }, + { + "label": "a man with red hair standing next to his bride", + "pred": "a bride and groom are posing for a picture" + }, + { + "label": "a cat sitting in front of a flat screen tv", + "pred": "a living room filled with furniture and appliances" + }, + { + "label": "a dog riding a skate board", + "pred": "a dog that is laying down on a skateboard" + }, + { + "label": "people who are standing together", + "pred": "a crowd of people standing around a table" + }, + { + "label": "painting of girl that has multiple piercings on face", + "pred": "a woman in a black and white photo" + }, + { + "label": "a pair of shoes flips over a skateboard on a road", + "pred": "a pair of skis sitting on top of a street" + }, + { + "label": "a young brunette woman with multiple face piercings", + "pred": "a woman in a black and white photo" + }, + { + "label": "a skateboard turned upside down in a street with shoes hovering over it", + "pred": "a pair of skis sitting on top of a street" + }, + { + "label": "a frisbee is tossed across green field to another person", + "pred": "a person catching a frisbee in a park" + }, + { + "label": "a black cat sitting next to a couple of monitors sitting on top of a table", + "pred": "a cat sitting on top of a desk next to a computer" + }, + { + "label": "the man is waring a colorful tie and a dark jacket", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a lake with a lot of boats on it", + "pred": "a large body of water with boats in it" + }, + { + "label": "a man in a suit with a red tie that has a robot on it", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a cat that is sitting on top of a laptop", + "pred": "a cat sitting on top of a desk next to a computer" + }, + { + "label": "people that are standing up outside", + "pred": "a crowd of people standing around a table" + }, + { + "label": "a suitcase that is next to shoes on a floor", + "pred": "a cat sitting on top of a wooden floor next to a suitcase" + }, + { + "label": "a cat is on a desk looking at the computer screens", + "pred": "a cat sitting on top of a desk next to a computer" + }, + { + "label": "a young woman with green eyes and piercings all over her face", + "pred": "a woman in a black and white photo" + }, + { + "label": "a suitcase and shoes on the floor near a table with two umbrellas on it", + "pred": "a cat sitting on top of a wooden floor next to a suitcase" + }, + { + "label": "a red frisbie flies through the air toward a girl in a park", + "pred": "a person catching a frisbee in a park" + }, + { + "label": "a turquoise suitcase and two pairs of shoes sit by the door", + "pred": "a cat sitting on top of a wooden floor next to a suitcase" + }, + { + "label": "a cat sits in front of a large television", + "pred": "a living room filled with furniture and appliances" + }, + { + "label": "people are all gathered together outside", + "pred": "a crowd of people standing around a table" + }, + { + "label": "a harbor filled with boats under a full moon bathing them in moon light", + "pred": "a large body of water with boats in it" + }, + { + "label": "a blue suitcase sits on the floor in front of 2 pair of shoes", + "pred": "a cat sitting on top of a wooden floor next to a suitcase" + }, + { + "label": "a skateboard flipping over a road with two shoes but no person", + "pred": "a pair of skis sitting on top of a street" + }, + { + "label": "a drawing of a young woman with many facial piercings", + "pred": "a woman in a black and white photo" + }, + { + "label": "a dog laying on a couch and covered with blankets", + "pred": "a dog laying on top of a couch" + }, + { + "label": "a small green boat in a pond outside an office building", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "the cat is setting in front of the tv", + "pred": "a living room filled with furniture and appliances" + }, + { + "label": "a dog sitting on a couch with several blankets", + "pred": "a dog laying on top of a couch" + }, + { + "label": "a frisbee being thrown to a girl in a park", + "pred": "a person catching a frisbee in a park" + }, + { + "label": "the woman in the white dress is standing next to a man", + "pred": "a bride and groom are posing for a picture" + }, + { + "label": "the cat sits directly in front of the television", + "pred": "a living room filled with furniture and appliances" + }, + { + "label": "a dog rests his head on the edge of a boat at sea", + "pred": "a dog sitting on top of a boat" + }, + { + "label": "a large brown dog laying on top of a blue couch", + "pred": "a dog laying on top of a couch" + }, + { + "label": "a green boat floating on top of a body of water", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a small green boa is on a lake", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "a cat is standing in front of a television", + "pred": "a living room filled with furniture and appliances" + }, + { + "label": "an old green row boat is floating out in the middle of a lake", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "an orange disk if flying through the air at a park", + "pred": "a person catching a frisbee in a park" + }, + { + "label": "the boats are in the water for a peaceful night", + "pred": "a large body of water with boats in it" + }, + { + "label": "a dog on a boat", + "pred": "a dog sitting on top of a boat" + }, + { + "label": "two elephants walking in a field near a tree", + "pred": "a large elephant standing in the middle of a grassy field" + }, + { + "label": "a dog looks up while laying on a blue couch", + "pred": "a dog laying on top of a couch" + }, + { + "label": "a german shepard looking out at the water on a ship", + "pred": "a dog sitting on top of a boat" + }, + { + "label": "two women brides getting married standing under and umbrella", + "pred": "a bride and groom are posing for a picture" + }, + { + "label": "a crowd of people gather around the unwrapping of an item", + "pred": "a crowd of people standing around a table" + }, + { + "label": "the two elephants are walking around the trees together", + "pred": "a large elephant standing in the middle of a grassy field" + }, + { + "label": "the street is blocked by a truck and a crane", + "pred": "a car parked on the side of a road next to a truck" + }, + { + "label": "the crowd is looking at something covered in white cloth", + "pred": "a crowd of people standing around a table" + }, + { + "label": "row boat sitting in the middle of a lake by building", + "pred": "a small boat floating on top of a body of water" + }, + { + "label": "man and woman in fancy dress, with a parasol, posed on a lawn", + "pred": "a bride and groom are posing for a picture" + }, + { + "label": "the upturned skateboard is below a floating pair of shoes", + "pred": "a pair of skis sitting on top of a street" + }, + { + "label": "a man is standing at the back of a boat", + "pred": "a person on a surfboard in the water" + }, + { + "label": "a car and a large truck on a city street", + "pred": "a car parked on the side of a road next to a truck" + }, + { + "label": "two elephants outdoors walking on green grass with trees near by", + "pred": "a large elephant standing in the middle of a grassy field" + }, + { + "label": "a tall clear glass window with two cats sitting at the base of it", + "pred": "two cats sitting on a window sill looking out a window" + }, + { + "label": "two men in an odd looking boat", + "pred": "a person on a surfboard in the water" + }, + { + "label": "man at top of boat with another person standing by end holding a long stick", + "pred": "a person on a surfboard in the water" + }, + { + "label": "two elephants walk through a grassy area with trees", + "pred": "a large elephant standing in the middle of a grassy field" + }, + { + "label": "a dog on top of a truck outside", + "pred": "a dog sitting in the back of a pick up truck" + }, + { + "label": "a small dog sitting on top of a truck", + "pred": "a dog sitting in the back of a pick up truck" + }, + { + "label": "a pair of shoes that are next to a skateboard", + "pred": "a pair of skis sitting on top of a street" + }, + { + "label": "the small maroon car drives near two large trucks", + "pred": "a car parked on the side of a road next to a truck" + }, + { + "label": "cats look up and out the widow in a house", + "pred": "two cats sitting on a window sill looking out a window" + }, + { + "label": "a black dog in the air catching a frisbee", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "bird sits atop cattle on snow covered field", + "pred": "a cow standing on top of a snow covered field" + }, + { + "label": "two cats are sitting in a window sill", + "pred": "two cats sitting on a window sill looking out a window" + }, + { + "label": "a brown bear is walking away from a river", + "pred": "a bear that is standing in the water" + }, + { + "label": "two cats sitting in the window looking up at the items on the window", + "pred": "two cats sitting on a window sill looking out a window" + }, + { + "label": "a dog sits on top of a truck", + "pred": "a dog sitting in the back of a pick up truck" + }, + { + "label": "a man standing on the back end of a very long boat", + "pred": "a person on a surfboard in the water" + }, + { + "label": "people and their stuff on a little boat in the ocean", + "pred": "a person on a surfboard in the water" + }, + { + "label": "a dog is jumping in the air toward a disk", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a bird is standing on the back of a cow", + "pred": "a cow standing on top of a snow covered field" + }, + { + "label": "a train sitting idle in an empty train station", + "pred": "a train is stopped at a train station" + }, + { + "label": "a brown bull and a white bird and a hill", + "pred": "a cow standing on top of a snow covered field" + }, + { + "label": "a car sitting in the middle of the road near a construction vehicle", + "pred": "a car parked on the side of a road next to a truck" + }, + { + "label": "a large brown and black dog laying on the back of a boat", + "pred": "a dog sitting on top of a boat" + }, + { + "label": "a brown bear walking along a river filled with rocks", + "pred": "a bear that is standing in the water" + }, + { + "label": "a grizzly bear exiting the water on a rocky shore", + "pred": "a bear that is standing in the water" + }, + { + "label": "a brown dog leaping to catch a flying disc", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a dog leaping into the air to catch a frisbee", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "two cats sitting on top of a window sill", + "pred": "two cats sitting on a window sill looking out a window" + }, + { + "label": "a cat sits on a desk next to a keyboard", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a bird standing on the back of the cow", + "pred": "a cow standing on top of a snow covered field" + }, + { + "label": "a little boy is playing with a suitcase", + "pred": "a young boy is sitting on the floor with a suitcase" + }, + { + "label": "a young boy pulling a brown bag of luggage", + "pred": "a young boy is sitting on the floor with a suitcase" + }, + { + "label": "a red car on street with utility vehicles", + "pred": "a car parked on the side of a road next to a truck" + }, + { + "label": "a little dog sitting on the roof of a club cab truck", + "pred": "a dog sitting in the back of a pick up truck" + }, + { + "label": "a bear is coming out of the water and onto the rocks", + "pred": "a bear that is standing in the water" + }, + { + "label": "a dog that is standing on top of a truck", + "pred": "a dog sitting in the back of a pick up truck" + }, + { + "label": "a cow that has a small white bird on it", + "pred": "a cow standing on top of a snow covered field" + }, + { + "label": "the bear is on the rocks has a fish in the mouth", + "pred": "a bear that is standing in the water" + }, + { + "label": "sail boats in the water at night", + "pred": "a large body of water with boats in it" + }, + { + "label": "a large black dog leaping to get a frisbee", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a dog with its face resting on the side of a boat", + "pred": "a dog sitting on top of a boat" + }, + { + "label": "a herd of cows standing on a grass covered hillside", + "pred": "a herd of cattle grazing on a lush green hillside" + }, + { + "label": "two little girls are dressed in uniform preparing for the day", + "pred": "two little boys wearing ties sitting next to each other" + }, + { + "label": "a very long train parked in front of a train station", + "pred": "a train is stopped at a train station" + }, + { + "label": "a colorful cat is next to a keyoard", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a long white train has a blue pin stripe", + "pred": "a train is stopped at a train station" + }, + { + "label": "a small dog on a harness laying on top of a sandy beach", + "pred": "a dog laying on top of a sandy beach" + }, + { + "label": "a little boy is pulling the luguage in a suit case", + "pred": "a young boy is sitting on the floor with a suitcase" + }, + { + "label": "two baby animals are play fighting with eat other", + "pred": "two black bears are playing together in the grass" + }, + { + "label": "a mother black bear holding a baby black bear", + "pred": "two black bears are playing together in the grass" + }, + { + "label": "two children wearing sweaters shirts and ties", + "pred": "two little boys wearing ties sitting next to each other" + }, + { + "label": "a cat on a desk near a keyboard", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a black bear holds a baby black bear as they lie on the ground", + "pred": "two black bears are playing together in the grass" + }, + { + "label": "a dog with a harness is laying on a rug on the floor", + "pred": "a dog laying on top of a sandy beach" + }, + { + "label": "a young boy pulls a large brown suitcase", + "pred": "a young boy is sitting on the floor with a suitcase" + }, + { + "label": "a cat laying on top of a wooden computer desk", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a mother bear is playing with her baby", + "pred": "two black bears are playing together in the grass" + }, + { + "label": "a woman riding in a boat down a river", + "pred": "a person sitting on a boat in the water" + }, + { + "label": "a dog sleeping in the sand next to a beach mat", + "pred": "a dog laying on top of a sandy beach" + }, + { + "label": "two black bears playfully biting each other on the grass", + "pred": "two black bears are playing together in the grass" + }, + { + "label": "a small boy with a bag of luggage", + "pred": "a young boy is sitting on the floor with a suitcase" + }, + { + "label": "a passenger train on the outer track at a railway station", + "pred": "a train is stopped at a train station" + }, + { + "label": "a dog laying in sand near a mat", + "pred": "a dog laying on top of a sandy beach" + }, + { + "label": "the couple are dressed up and posing for photos", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "the train is traveling down the railroad tracks", + "pred": "a train is stopped at a train station" + }, + { + "label": "cows standing next to a line of laundry drying", + "pred": "a field with a bunch of animals on top of it" + }, + { + "label": "a kitty cat looks up from a desk, near a keyboard", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "people standing in a room in formal wear", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a yellow and red trains engine on its track", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a cat sitting on top of a banana tree", + "pred": "a banana tree with a bunch of bananas hanging from it" + }, + { + "label": "two young girls in uniforms sitting closely together", + "pred": "two little boys wearing ties sitting next to each other" + }, + { + "label": "a man and a women standing next to each other", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a cat is way up in a tree", + "pred": "a banana tree with a bunch of bananas hanging from it" + }, + { + "label": "two cows have horns and one cow does not", + "pred": "a herd of cattle grazing on a lush green hillside" + }, + { + "label": "am empty bowl and three empty beer bottles in front of a man", + "pred": "a man sitting at a table with a bowl of soup" + }, + { + "label": "three white cows are standing in a grassy field", + "pred": "a herd of cattle grazing on a lush green hillside" + }, + { + "label": "a man poses with an empty bowl and two beers", + "pred": "a man sitting at a table with a bowl of soup" + }, + { + "label": "a person is sitting next to a brown table", + "pred": "a man sitting at a table with a bowl of soup" + }, + { + "label": "a lady wearing a straw hat in a boat with oars", + "pred": "a person sitting on a boat in the water" + }, + { + "label": "three cows stand in a pasture on a mountain", + "pred": "a herd of cattle grazing on a lush green hillside" + }, + { + "label": "two small girls wearing blue jackets pose for a photo", + "pred": "two little boys wearing ties sitting next to each other" + }, + { + "label": "the man sits at a table with a bowl and three beer bottles", + "pred": "a man sitting at a table with a bowl of soup" + }, + { + "label": "two men sell ties at an outdoor market", + "pred": "a man standing next to a woman at a table" + }, + { + "label": "a cat intently watching something that caught its interest on tv", + "pred": "a dog sitting in front of a tv" + }, + { + "label": "elephants are standing behind a fence", + "pred": "elephants standing next to each other" + }, + { + "label": "a cat looking up at the telivision that has something interesting on it", + "pred": "a dog sitting in front of a tv" + }, + { + "label": "people with one person holding up a huge different color umbrella", + "pred": "a crowd of people standing around with umbrellas" + }, + { + "label": "a man sitting in front of a computer on top of a desk", + "pred": "a man standing next to a woman at a table" + }, + { + "label": "a dog sitting behind a pair of black shoes", + "pred": "a dog sitting on top of a pair of shoes" + }, + { + "label": "a man wearing a blue shirt catching a white frisbee", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a dog sits on the floor next to some shoes", + "pred": "a dog sitting on top of a pair of shoes" + }, + { + "label": "a cat looking at a tv monitor on a desk", + "pred": "a dog sitting in front of a tv" + }, + { + "label": "a cat stands in front of a television looking at it attentively", + "pred": "a dog sitting in front of a tv" + }, + { + "label": "a little girl is holding an umbrella on a wet day", + "pred": "a little girl standing on a sidewalk holding an umbrella" + }, + { + "label": "a woman pets the cat that is standing on the rocks", + "pred": "a woman is petting a black and white cat" + }, + { + "label": "a small child stands in the rain with an umbrella", + "pred": "a little girl standing on a sidewalk holding an umbrella" + }, + { + "label": "a pack of elephants standing next to each other in a pen", + "pred": "elephants standing next to each other" + }, + { + "label": "a little girl is laying in bed with a book and a cat is next to her", + "pred": "a black cat laying on top of a bed next to a bottle" + }, + { + "label": "a woman laying in bed reading a book with a cat sitting on top", + "pred": "a black cat laying on top of a bed next to a bottle" + }, + { + "label": "a dark colored cat that is looking up at a television that is on and has a program playing on it", + "pred": "a dog sitting in front of a tv" + }, + { + "label": "two men at a table under a tent selling neckties", + "pred": "a man standing next to a woman at a table" + }, + { + "label": "a small elephant walks up to the fence in a zoo", + "pred": "a large elephant standing in front of a building" + }, + { + "label": "a puppy is sitting behind a pair of shoes", + "pred": "a dog sitting on top of a pair of shoes" + }, + { + "label": "a man in a blue shirt playing with a white ball", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a herd of elephants walking into a large body of water", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "three elephants standing inside of a cage at a zoo", + "pred": "elephants standing next to each other" + }, + { + "label": "a girl reading a book in bed with a cat", + "pred": "a black cat laying on top of a bed next to a bottle" + }, + { + "label": "a man catching a frisbee in a park", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a kid and a girl are next to each other", + "pred": "a woman and a child standing next to each other" + }, + { + "label": "a woman standing near a gate made of rock with her black cat", + "pred": "a woman is petting a black and white cat" + }, + { + "label": "a woman past two men in front of the mgm grand", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "a woman watching another woman walk with a suitcase on wheels", + "pred": "a woman standing next to a suitcase on a sidewalk" + }, + { + "label": "docked boats while sun is setting in distance", + "pred": "a harbor filled with lots of boats on a cloudy day" + }, + { + "label": "an elephant looks very much like the elephant in the sign outside his enclosure, that is also directly in front of him, that tells visitors about him", + "pred": "a large elephant standing in front of a building" + }, + { + "label": "a person standing next to a rock wall near a cat standing on it", + "pred": "a woman is petting a black and white cat" + }, + { + "label": "street vendors shows off their selection of ties", + "pred": "a man standing next to a woman at a table" + }, + { + "label": "a woman with a large umbrella in a busy square", + "pred": "a crowd of people standing around with umbrellas" + }, + { + "label": "a girl watching another girl trip while pulling her suitcase", + "pred": "a woman standing next to a suitcase on a sidewalk" + }, + { + "label": "a cat in the rock with a person", + "pred": "a woman is petting a black and white cat" + }, + { + "label": "a cat that is sitting on top of a rock wall", + "pred": "a woman is petting a black and white cat" + }, + { + "label": "people are walking in front of a tall building", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "boats sitting on top of a body of water", + "pred": "a harbor filled with lots of boats on a cloudy day" + }, + { + "label": "a woman carrying a suit case and losing her balance", + "pred": "a woman standing next to a suitcase on a sidewalk" + }, + { + "label": "a little girl laying in bed holding a book next to a black cat", + "pred": "a black cat laying on top of a bed next to a bottle" + }, + { + "label": "three elephants reaching over a metal fence with their trunks", + "pred": "elephants standing next to each other" + }, + { + "label": "elephants are lined up at a metal fence", + "pred": "elephants standing next to each other" + }, + { + "label": "a perfect pose by a little girl with an umbrella in the rain", + "pred": "a little girl standing on a sidewalk holding an umbrella" + }, + { + "label": "a beautiful red haired woman holding a colorful umbrella", + "pred": "a crowd of people standing around with umbrellas" + }, + { + "label": "a girl is having a hard time pulling a suit case", + "pred": "a woman standing next to a suitcase on a sidewalk" + }, + { + "label": "outside view of the mgm grand in las vegas with people sitting and walking", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "two men at a table with ties sitting near a laptop", + "pred": "a man standing next to a woman at a table" + }, + { + "label": "guys are sitting with their luggage bag as a lady walks on", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "a boy holding up an umbrella over a woman's head", + "pred": "a woman and a child standing next to each other" + }, + { + "label": "a woman lies in bed reading a book, and petting a cat", + "pred": "a black cat laying on top of a bed next to a bottle" + }, + { + "label": "people standing next to each other near a ground of people on a green patch fo grass", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "people sit and walk around a large hotel parking lot", + "pred": "a man is walking down the street with his luggage" + }, + { + "label": "the woman is playing frisbee a the family picnic in the park", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a woman holding a multiple colored umbrella in a crowd of people", + "pred": "a crowd of people standing around with umbrellas" + }, + { + "label": "a yellow and red train traveling down train tracks", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "fishing vessels docked at the docks in harbor", + "pred": "a large body of water with boats in it" + }, + { + "label": "people on a bust street area with one person holding a multicolored umbrella over head", + "pred": "a crowd of people standing around with umbrellas" + }, + { + "label": "the shore line of a city on water", + "pred": "a large body of water with boats in it" + }, + { + "label": "a little girl holding an umbrella in the rain", + "pred": "a little girl standing on a sidewalk holding an umbrella" + }, + { + "label": "a child holding an umbrella with a person near him", + "pred": "a woman and a child standing next to each other" + }, + { + "label": "a brown cow grazing on a patch of lush green grass", + "pred": "a black cow standing next to a brown cow in a field" + }, + { + "label": "small sailboats are lit up on the water", + "pred": "a harbor filled with lots of boats on a cloudy day" + }, + { + "label": "an elephant behind a fence near some water", + "pred": "a large elephant standing in front of a building" + }, + { + "label": "a river with several boats in it and a fence around the edge of it", + "pred": "a large body of water with boats in it" + }, + { + "label": "a little girl holding an umbrella while standing outside", + "pred": "a little girl standing on a sidewalk holding an umbrella" + }, + { + "label": "boats parked in dock on the water", + "pred": "a harbor filled with lots of boats on a cloudy day" + }, + { + "label": "a cat laying on top of a black office chair", + "pred": "a white cat laying on top of a chair" + }, + { + "label": "a small dog near a pair of shoes", + "pred": "a dog sitting on top of a pair of shoes" + }, + { + "label": "an elephant standing by a plaque with a description of it", + "pred": "a large elephant standing in front of a building" + }, + { + "label": "a dust cloud has formed in front of an elephant", + "pred": "elephants are walking through a dry field" + }, + { + "label": "teddybear, kitten and calico cat are all taking a nap on the bed", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "an elephant standing in a dust filled field", + "pred": "elephants are walking through a dry field" + }, + { + "label": "a beautiful young lady in short shorts sitting next to a little boy", + "pred": "a woman and a child standing next to each other" + }, + { + "label": "early evening calm at the local boat marina", + "pred": "a harbor filled with lots of boats on a cloudy day" + }, + { + "label": "a train parked at a waiting station where passengers board", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "cat covering it's head as it sleeps in the computer chair", + "pred": "a white cat laying on top of a chair" + }, + { + "label": "a man in a grassy field about to catch a frisbee", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a small black dog sits beside a pair of shoes", + "pred": "a dog sitting on top of a pair of shoes" + }, + { + "label": "the boats are lined up at the dock on the water", + "pred": "a large body of water with boats in it" + }, + { + "label": "boats on the river", + "pred": "a large body of water with boats in it" + }, + { + "label": "a cow is grazing while two cows in the background look on", + "pred": "a black cow standing next to a brown cow in a field" + }, + { + "label": "a cat and a kitten laying down on a bed next to a teddy bear", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "a bike leaning up to a parking meter", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "an elephant in a zoo walks behind the asian elephant sign", + "pred": "a large elephant standing in front of a building" + }, + { + "label": "a young man standing in front of a luggage carousel at an airport", + "pred": "a large group of people waiting for their luggage at an airport" + }, + { + "label": "a cat, kitten and a teddy bear laying on a bed", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "a bed with a cat sleeping on it next to a teddy bear and another cat", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "a picture stacked with various things all inside", + "pred": "a cat and a dog laying on a bed" + }, + { + "label": "a room with distinctive things in the picture", + "pred": "a cat standing on top of a wooden chair" + }, + { + "label": "a large crowd is watching a group who are dressed in old swimming clothes", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "an elephant is standing in a dirt field", + "pred": "elephants are walking through a dry field" + }, + { + "label": "elephants are standing by a body of water", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "the beach is filled with people, whom are expecting someone", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "a young beautiful woman in a short jean skirt", + "pred": "a woman standing next to a suitcase on a sidewalk" + }, + { + "label": "a black and white cat sitting on top of a chair", + "pred": "a cat that is laying down on a table" + }, + { + "label": "an elephant is standing in a dusty dry field", + "pred": "elephants are walking through a dry field" + }, + { + "label": "people that are standing near a train", + "pred": "a train on a train track near a body of water" + }, + { + "label": "a cat that is standing on a wood floor", + "pred": "a cat standing on top of a wooden chair" + }, + { + "label": "a large brown elephant standing on the dirt ground", + "pred": "elephants are walking through a dry field" + }, + { + "label": "a utility truck is parked in the street beside traffic cones", + "pred": "a city street filled with lots of construction equipment" + }, + { + "label": "a coin meter that is next to a ladder with balls on it", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a parking meter is on the street in front of a building", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a train is traveling on the railroad alone", + "pred": "a train on a train track near a body of water" + }, + { + "label": "a stack of balls that is next to a parking meter", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a cat that is standing on a desk", + "pred": "a cat that is laying down on a table" + }, + { + "label": "a herd of elephants standing in a water hole with a crowd of people watching", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "a young boy holds an umbrella for a girl", + "pred": "a woman and a child standing next to each other" + }, + { + "label": "a brown and yellow commuter train with headlights on", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a cat is walking past a chair", + "pred": "a cat standing on top of a wooden chair" + }, + { + "label": "a street with orange cones and a work truck on it", + "pred": "a city street filled with lots of construction equipment" + }, + { + "label": "people watching a large group of elephants walking into the world", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "a happy cat curls its paws under its face while it naps on a chair", + "pred": "a white cat laying on top of a chair" + }, + { + "label": "a close-up picture of a man wearing a tie", + "pred": "a man that is wearing a suit and tie" + }, + { + "label": "a cat is lying down in a chair", + "pred": "a white cat laying on top of a chair" + }, + { + "label": "a parking meter next to a ladder with bowling balls on each rung", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a large crowd gathered watching another smaller crowd", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "cows walking on the side of the road", + "pred": "a herd of cattle walking down a road" + }, + { + "label": "a passanger train stopped on the railroad tracks", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a passanger train stopped on the railroad tracks at a station", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a herd of elephants being herded into a river while tourists take photos", + "pred": "a herd of elephants walking across a body of water" + }, + { + "label": "a cat walking on the wood floor beside a chair", + "pred": "a cat standing on top of a wooden chair" + }, + { + "label": "a rocking chair with a cat walking past", + "pred": "a cat standing on top of a wooden chair" + }, + { + "label": "two people waking past a black and yellow train car", + "pred": "a train on a train track near a body of water" + }, + { + "label": "a cow staring into a camera standing on a field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "dark clouds moving in over a harbor full of moored sailboats", + "pred": "a number of small boats docked in a large body of water" + }, + { + "label": "a trolley train is traveling on a track along the beach", + "pred": "a train on a train track near a body of water" + }, + { + "label": "a yellow dump truck driving past a forest", + "pred": "trucks are parked on the side of the road" + }, + { + "label": "somebody is in the photograph not certain who that individual is", + "pred": "a man that is wearing a suit and tie" + }, + { + "label": "a big heard of cows walking down a road in a row with green tags on their ears", + "pred": "a herd of cattle walking down a road" + }, + { + "label": "a black and white cat sitting at a desk", + "pred": "a cat that is laying down on a table" + }, + { + "label": "a man in a shirt and tie standing up", + "pred": "a man that is wearing a suit and tie" + }, + { + "label": "here is a image of an zoo animals", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "nice open stretches of land that is alive", + "pred": "a number of small boats docked in a large body of water" + }, + { + "label": "an individual is taken in this very picture", + "pred": "a large group of people waiting for their luggage at an airport" + }, + { + "label": "sailboats at a dock waiting for a storm to pass", + "pred": "a number of small boats docked in a large body of water" + }, + { + "label": "performers doing a show in front of spectators", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "a cat stands with its paws against a desk", + "pred": "a cat that is laying down on a table" + }, + { + "label": "a small dog is laying on a couch with a shoe", + "pred": "a dog laying on top of a couch next to a pair of shoes" + }, + { + "label": "a cat is looking at a cluttered computer desk", + "pred": "a cat that is laying down on a table" + }, + { + "label": "a black and white dog and a red shoe", + "pred": "a dog laying on top of a couch next to a pair of shoes" + }, + { + "label": "construction stucks pared on the side of the road", + "pred": "trucks are parked on the side of the road" + }, + { + "label": "a man is sitting on the back of an elephant", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a cat is sleeping in a chair with its leg curled around its head", + "pred": "a white cat laying on top of a chair" + }, + { + "label": "a yellow truck and a white truck and a road and trees", + "pred": "trucks are parked on the side of the road" + }, + { + "label": "a young man with suitcases on the conveyor belt in an airport", + "pred": "a large group of people waiting for their luggage at an airport" + }, + { + "label": "a puppy cuddles with a shoe on a couch", + "pred": "a dog laying on top of a couch next to a pair of shoes" + }, + { + "label": "traffic cones at the entrance of a lot where there is construction", + "pred": "a city street filled with lots of construction equipment" + }, + { + "label": "a white dump truck is going around a corner", + "pred": "a white truck driving down a street next to a fence" + }, + { + "label": "a person waits for their luggage at an airport", + "pred": "a large group of people waiting for their luggage at an airport" + }, + { + "label": "two large trucks are travelling along a tree-lined roadway", + "pred": "trucks are parked on the side of the road" + }, + { + "label": "cows travel down the side of a street", + "pred": "a herd of cattle walking down a road" + }, + { + "label": "large work trucks sitting on the side of the street", + "pred": "trucks are parked on the side of the road" + }, + { + "label": "a white service truck passes a neighborhood intersection", + "pred": "a white truck driving down a street next to a fence" + }, + { + "label": "a herd of cattle standing next to a tree together", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "brown and black cows are eating grass by a fence", + "pred": "a black cow standing next to a brown cow in a field" + }, + { + "label": "two people walking along a side walk next to a train on the tracks", + "pred": "a train on a train track near a body of water" + }, + { + "label": "boston terrier sitting on a couch with a shoe", + "pred": "a dog laying on top of a couch next to a pair of shoes" + }, + { + "label": "a floor filled with the contents of a woman's bag", + "pred": "a variety of items are laid out on a bed" + }, + { + "label": "a man wearing a casual shirt and tie", + "pred": "a man that is wearing a suit and tie" + }, + { + "label": "a small group of cows standing in front of the camera", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a herd of cattle walking down a country road", + "pred": "a herd of cattle walking down a road" + }, + { + "label": "a big truck going around a curb", + "pred": "a white truck driving down a street next to a fence" + }, + { + "label": "a very large elephant standing next to a baby elephant", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a man's striped dress shirt and patterned tie", + "pred": "a man that is wearing a suit and tie" + }, + { + "label": "front view of train with lights on next to a sidewalk", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a herd of cattle walking down a road being followed by a cowboy", + "pred": "a herd of cattle walking down a road" + }, + { + "label": "a dog lying on a chair with a dress shoe", + "pred": "a dog laying on top of a couch next to a pair of shoes" + }, + { + "label": "a baby elephant stands next to an adult elephant", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "not really a good choice for this shirt and tie combination", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a truck drives in the middle of a neighborhood road", + "pred": "a white truck driving down a street next to a fence" + }, + { + "label": "a man has a checked shirt and striped tie", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a broken suitcase is on the side of the road", + "pred": "a piece of luggage sitting on top of a patch of grass" + }, + { + "label": "a baby elephant standing at the feet of its chained parent", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a man riding on the back of a tusked elephant by a muddy river", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a man wearing a collar shirt with a blue tie", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a man wearing a shirt and a pixilated looking neck tie", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a construction truck is in front of the huge building", + "pred": "a city street filled with lots of construction equipment" + }, + { + "label": "a young man is taking a \"selfie\" of himself", + "pred": "a man wearing a blue shirt and a blue tie" + }, + { + "label": "a blue piece of luggage sitting on the side of a road", + "pred": "a piece of luggage sitting on top of a patch of grass" + }, + { + "label": "a dark cloud looms behind boats docked in a harbor", + "pred": "a number of small boats docked in a large body of water" + }, + { + "label": "sailboats are docked at a lake under cloudy skies", + "pred": "a number of small boats docked in a large body of water" + }, + { + "label": "a garbage truck on a residential street with navigational icons in the corner", + "pred": "a white truck driving down a street next to a fence" + }, + { + "label": "beat up blue suitcase lying on side of road", + "pred": "a piece of luggage sitting on top of a patch of grass" + }, + { + "label": "adult standing at luggage carousel in airport area", + "pred": "a large group of people waiting for their luggage at an airport" + }, + { + "label": "the train has it's headlights on and is ready to leave the station", + "pred": "a yellow train traveling down train tracks next to a platform" + }, + { + "label": "a black cow grazes on lush green grass", + "pred": "a black cow standing next to a brown cow in a field" + }, + { + "label": "a man riding on the back of an elephant along a dirt road", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "cow eating grass while a bull watches nearby", + "pred": "a black cow standing next to a brown cow in a field" + }, + { + "label": "cows standing in the grass", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a dog that is standing on the side of a boat", + "pred": "a white and black dog standing on top of a white boat" + }, + { + "label": "closed suit case laying on the ground next to a plant", + "pred": "a piece of luggage sitting on top of a patch of grass" + }, + { + "label": "a dog on a boat with a person in the water", + "pred": "a white and black dog standing on top of a white boat" + }, + { + "label": "adult and young elephants walking", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "man riding an elephant up a hill near a field", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "assorted items sitting neatly on a bed", + "pred": "a variety of items are laid out on a bed" + }, + { + "label": "orange cones sitting in the road", + "pred": "a city street filled with lots of construction equipment" + }, + { + "label": "a dog stands on the bow of a white sailboat in the water", + "pred": "a white and black dog standing on top of a white boat" + }, + { + "label": "gathering items to pack for an work seminar", + "pred": "a variety of items are laid out on a bed" + }, + { + "label": "the family of elephants is looking for some good food", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "a dog walks on the deck of a sail boat", + "pred": "a white and black dog standing on top of a white boat" + }, + { + "label": "a dog is walking on the front of a boat", + "pred": "a white and black dog standing on top of a white boat" + }, + { + "label": "a small elephant is standing by a large one", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "the man is riding the elephants near the water", + "pred": "a man riding on the back of an elephant" + }, + { + "label": "a baby elephant stands near its mother", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a assortment of things lined up on a bed including writing utensils", + "pred": "a variety of items are laid out on a bed" + }, + { + "label": "a baby and a young elephant walk in front of the herd", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "a parking meter sitting next to a tall tree", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a large cow with horns by some bushes", + "pred": "a brown cow standing on top of a lush green field" + }, + { + "label": "an animal with horns wears a rope from its nose and ear to its neck", + "pred": "a brown cow standing on top of a lush green field" + }, + { + "label": "a domestic farm animal in a shaded area of vegetation", + "pred": "a brown cow standing on top of a lush green field" + }, + { + "label": "a dual parking meter near the grassy area of a residential area", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "shoes, a cap, an ipod, a name tag and other items", + "pred": "a variety of items are laid out on a bed" + }, + { + "label": "a discarded piece of blue luggage on an asphalt walk", + "pred": "a piece of luggage sitting on top of a patch of grass" + }, + { + "label": "a mother looks after a baby elephant in the wild", + "pred": "a baby elephant standing next to a larger elephant" + }, + { + "label": "two parking meters on roadside and a road sign", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "the man plays on the beach with his two dogs, one of which is a black standard poodle", + "pred": "a dog standing on a dirt ground with a frisbee in its mouth" + }, + { + "label": "a large elephant and a baby elephant walking in tall grass", + "pred": "a baby elephant standing next to a larger elephant" + }, + { + "label": "a man and two dogs playing with an object", + "pred": "a dog standing on a dirt ground with a frisbee in its mouth" + }, + { + "label": "adults and their young offspring standing together in the woods", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "two meters on a curb", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a big elephant and a little elephant walking", + "pred": "a baby elephant standing next to a larger elephant" + }, + { + "label": "a man and two dogs on the beach", + "pred": "a small brown dog walking with a large brown dog" + }, + { + "label": "an orange and white cat laying on top of a sink", + "pred": "a cat sitting on top of a counter top" + }, + { + "label": "a street scene with a parking meter on the side", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "elephants that are walking together", + "pred": "a herd of elephants standing next to each other" + }, + { + "label": "steer in the woods with rope on its face", + "pred": "a brown cow standing on top of a lush green field" + }, + { + "label": "two black cows facing each other with woods behind them", + "pred": "two black cows standing next to each other" + }, + { + "label": "the animal is standing next to a fallen tree", + "pred": "a brown cow standing on top of a lush green field" + }, + { + "label": "a mother elephant with her young one walking around", + "pred": "a baby elephant standing next to a larger elephant" + }, + { + "label": "an orange cat sitting on top of a computer desk", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a cat laying on a table next to a stack of papers", + "pred": "a cat sitting on top of a counter top" + }, + { + "label": "luggage and a back back sitting on teh ground next to a lap top", + "pred": "a desk with a laptop and a suitcase on it" + }, + { + "label": "elephants that are walking in some grass", + "pred": "a baby elephant standing next to a larger elephant" + }, + { + "label": "a young woman in an orange dress holds a black umbrella", + "pred": "a woman in a pink dress holding an umbrella" + }, + { + "label": "a large black bear walking across a field", + "pred": "a bear that is standing in the grass" + }, + { + "label": "a black bear is standing outdoors in the wild", + "pred": "a bear that is standing in the grass" + }, + { + "label": "a person stands between two dogs on a beach, one of them holding a frisbee", + "pred": "a small brown dog walking with a large brown dog" + }, + { + "label": "an orange cat rests on a white counter top", + "pred": "a cat sitting on top of a counter top" + }, + { + "label": "a dog and its owner playing frisbee, in the dirt", + "pred": "a small brown dog walking with a large brown dog" + }, + { + "label": "a cat sleeping on a table with its paw extended out", + "pred": "a cat sitting on top of a counter top" + }, + { + "label": "people riding in the back of a truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "a yellow cat is on the desk sniffing a computer keyboard", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "a cow and another playing next to a tree", + "pred": "two black cows standing next to each other" + }, + { + "label": "a suitcase and a laptop sit on a bedroom floor", + "pred": "a desk with a laptop and a suitcase on it" + }, + { + "label": "a polar bear standing on a rock formation in an enclosure", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a white bear is standing out on the rocks", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a young bald man dressed sharply smiles happily", + "pred": "a man wearing a green shirt and a blue tie" + }, + { + "label": "a boat is sitting next to a dock", + "pred": "a boat is docked in the water" + }, + { + "label": "a city street filled with lots of traffic and lined with buildings", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a vintage photo of a boat parked next to a peer", + "pred": "a boat is docked in the water" + }, + { + "label": "this boat has docked next to a wooden pier", + "pred": "a boat is docked in the water" + }, + { + "label": "a bear is walking in an area with a lot of foliage", + "pred": "a bear that is standing in the grass" + }, + { + "label": "this man has a paper flower and a green tie", + "pred": "a man wearing a green shirt and a blue tie" + }, + { + "label": "a large white bear standing near a rock", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a polar bear walking on the rocks near a fence", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "two pieces of luggage sitting near a dresser and laptop", + "pred": "a desk with a laptop and a suitcase on it" + }, + { + "label": "a woman smiling and holding an umbrella high", + "pred": "a woman in a pink dress holding an umbrella" + }, + { + "label": "semi carrying cars on busy road in city near white car", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "a large blue truck is driving down the street", + "pred": "a dump truck parked on the side of a street" + }, + { + "label": "the men and women was sitting in the back of the truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "young men wearing sunglasses are crowded into the back of a truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "a red and black train is coming down the tracks", + "pred": "a train that is going down the tracks" + }, + { + "label": "black cows in the woods", + "pred": "two black cows standing next to each other" + }, + { + "label": "an elephant is carrying some plants in its tusk", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "a woman wearing an orange dress holding a black lace umbrella", + "pred": "a woman in a pink dress holding an umbrella" + }, + { + "label": "polar bear licking rock near ball and fence", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "the antique card shows the ship in the bay", + "pred": "a boat is docked in the water" + }, + { + "label": "a woman holding a umbrella in the middle of the day", + "pred": "a woman in a pink dress holding an umbrella" + }, + { + "label": "a boat parked next to the dock", + "pred": "a boat is docked in the water" + }, + { + "label": "a high speed train in movement, with workers", + "pred": "a train that is going down the tracks" + }, + { + "label": "one black cow sniffing another black cows head", + "pred": "two black cows standing next to each other" + }, + { + "label": "a train speeding down tracks through a rural field", + "pred": "a train that is going down the tracks" + }, + { + "label": "a keyboard an orange and white cat a desk and a monitor", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "an animal laying down on top of some rocks", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "traffic is traveling both ways on the busy streeet", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "people are walking in the rain holding umbrellas", + "pred": "a number of umbrellas on a street" + }, + { + "label": "different opened umbrellas all located near each other", + "pred": "a number of umbrellas on a street" + }, + { + "label": "plaid and red umbrellas opened on a dreary day", + "pred": "a number of umbrellas on a street" + }, + { + "label": "a black bear walking in the grass and leaves", + "pred": "a bear that is standing in the grass" + }, + { + "label": "a large group of men traveling on the back of a truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "graffiti decorates the wall in front of a parking meter", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a lone cat lounging on top of a counter", + "pred": "a cat sitting on top of a counter top" + }, + { + "label": "a gigantic black bear roams around with his head hanging low", + "pred": "a bear that is standing in the grass" + }, + { + "label": "traffic can be seen far down the road in this photograph", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "opened up umbrellas in different colors and patterns", + "pred": "a number of umbrellas on a street" + }, + { + "label": "people in the back of the truck", + "pred": "men riding on the back of a truck" + }, + { + "label": "a cave on a side of a rocky hill", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "a garbage truck on the street next to a building", + "pred": "a dump truck parked on the side of a street" + }, + { + "label": "a bedroom with a laptop, suitcase and backpack on the floor", + "pred": "a desk with a laptop and a suitcase on it" + }, + { + "label": "an elephant is shown wearing a platform for riding", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "garbage truck parked in back alley of large office building", + "pred": "a dump truck parked on the side of a street" + }, + { + "label": "a old wall that has some writing on it", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "garbage and police trucks on a city street", + "pred": "a dump truck parked on the side of a street" + }, + { + "label": "a busy highway is being viewed from a distance", + "pred": "a city street filled with lots of traffic" + }, + { + "label": "corner of a bedroom with a laptop and luggage on a floor", + "pred": "a desk with a laptop and a suitcase on it" + }, + { + "label": "people that are standing on a beach", + "pred": "people on the beach with surfboards" + }, + { + "label": "the people are sitting outside under a large umbrella", + "pred": "two men sitting next to each other under an umbrella" + }, + { + "label": "the young woman is standing in the rain under her umbrella", + "pred": "a woman holding an umbrella standing in the rain" + }, + { + "label": "a large elephant standing next to a bunch of trees", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "sanitation trucks on roadway in large city area", + "pred": "a dump truck parked on the side of a street" + }, + { + "label": "people on a beach looking towards the water", + "pred": "people on the beach with surfboards" + }, + { + "label": "people are shown sitting in the sand at the beach", + "pred": "people on the beach with surfboards" + }, + { + "label": "a woman holds an umbrella in the air", + "pred": "a woman in a pink dress holding an umbrella" + }, + { + "label": "umbrellas in different styles can be seen with rain on them", + "pred": "a number of umbrellas on a street" + }, + { + "label": "a cave located on the side of a mountain side", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "man with green tie with white polka dots stands at outdoor event", + "pred": "a man wearing a green shirt and a blue tie" + }, + { + "label": "a man getting a kiss on the neck from an elephant's trunk", + "pred": "a man is standing next to an elephant" + }, + { + "label": "a young lady under an umbrella by a train", + "pred": "a woman holding an umbrella standing in the rain" + }, + { + "label": "black cows standing next to a tree", + "pred": "two black cows standing next to each other" + }, + { + "label": "a yellow tabby cat is shown smelling a keyboard", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "two rusty parking meters are displayed with graffiti", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a cave in a rock wall near a body of water", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "a big burly grizzly bear is show with grass", + "pred": "a brown bear sitting on top of a lush green field" + }, + { + "label": "a woman and man sit under what appears to be a large blue umbrella on a grassy lot", + "pred": "two men sitting next to each other under an umbrella" + }, + { + "label": "a man being kiss by a baby elephant with it's trunk", + "pred": "a man is standing next to an elephant" + }, + { + "label": "a man wearing glasses and a green tie", + "pred": "a man wearing a green shirt and a blue tie" + }, + { + "label": "a man throws his head back as an elephant touches his face with its trunk", + "pred": "a man is standing next to an elephant" + }, + { + "label": "graffiti is on the wall next to the parking meter", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a very nice looking toy train and some workers on the tracks", + "pred": "a train that is going down the tracks" + }, + { + "label": "an elephant with a saddle eats some food", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "an adult elephant is pictured walking with a baby elephant", + "pred": "elephants standing next to each other" + }, + { + "label": "a man that has a shirt and a tie", + "pred": "a man posing for a picture in front of a brick wall" + }, + { + "label": "a parking meter in front of a wall that has been written on", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a man with dark hair, a shirt and a tie posing for a picture", + "pred": "a man posing for a picture in front of a brick wall" + }, + { + "label": "two people smile as they sit on coolers under a huge umbrella", + "pred": "two men sitting next to each other under an umbrella" + }, + { + "label": "an elephant wearing a saddle holds leaves in it's trunk", + "pred": "an elephant that is standing in the dirt" + }, + { + "label": "two people sitting in a field with open umbrellas", + "pred": "two men sitting next to each other under an umbrella" + }, + { + "label": "aer of people sitting down on a beach near water", + "pred": "people on the beach with surfboards" + }, + { + "label": "children siting posing for a photo", + "pred": "a small group of boys posing for a picture" + }, + { + "label": "a woman that is holding an umbrella near a building", + "pred": "a woman holding an umbrella standing in the rain" + }, + { + "label": "man and woman with umbrella hats sitting on top of a bridge", + "pred": "people with umbrellas on a pier" + }, + { + "label": "cows are seen grazing in a field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "people are sitting on the sand at the beach", + "pred": "people on the beach with surfboards" + }, + { + "label": "a man wearing a tie poses for a photo", + "pred": "a man posing for a picture in front of a brick wall" + }, + { + "label": "a couple equipped with umbrella hats taking a break from walking their dog on a bridge on a rainy day", + "pred": "people with umbrellas on a pier" + }, + { + "label": "the girl is standing under a clear umbrella", + "pred": "a woman holding an umbrella standing in the rain" + }, + { + "label": "baby bear climbing large rock near pine tree", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "a cat is on a table next to a remote", + "pred": "a black and white cat laying next to a remote control" + }, + { + "label": "a baby elephant walks with an older elephant", + "pred": "elephants standing next to each other" + }, + { + "label": "a metallic suit case in front of a couch", + "pred": "a black suitcase sitting on top of a wooden floor" + }, + { + "label": "an elephant using his truck to cuddle with a man", + "pred": "a man is standing next to an elephant" + }, + { + "label": "school boys sit cross legged in front of a chalkboard sign in a vintage black and white photo", + "pred": "a small group of boys posing for a picture" + }, + { + "label": "a guy in a suit and tie is posing for the camera", + "pred": "a man wearing a tie sitting in a chair" + }, + { + "label": "a baby bear that is laying on a rock", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "two people in ridiculous looking umbrella hats", + "pred": "people with umbrellas on a pier" + }, + { + "label": "a man that has a green tie and white shirt", + "pred": "a man wearing a green shirt and a blue tie" + }, + { + "label": "a red and black train is traveling down the tracks", + "pred": "a train that is going down the tracks" + }, + { + "label": "two people with umbrella hats near one another", + "pred": "people with umbrellas on a pier" + }, + { + "label": "man in shirt and tie leaning back in chain in office", + "pred": "a man wearing a tie sitting in a chair" + }, + { + "label": "a herd of cattle stand in the field with a mountain", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "cows spread out and graze throughout a wide-open pasture", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "kind of animal that is on a rock", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "the large brown bear has a black nose", + "pred": "a brown bear sitting on top of a lush green field" + }, + { + "label": "a pair of friends sit beneath a massive blue umbrella", + "pred": "two men sitting next to each other under an umbrella" + }, + { + "label": "a young woman is waiting in the rain", + "pred": "a woman holding an umbrella standing in the rain" + }, + { + "label": "a man poses for a picture against a brick wall", + "pred": "a man posing for a picture in front of a brick wall" + }, + { + "label": "a male", + "pred": "a man posing for a picture in front of a brick wall" + }, + { + "label": "a large bag that is sitting on awood floor", + "pred": "a black suitcase sitting on top of a wooden floor" + }, + { + "label": "the couple walks down the wet sidewalk with an umbrella", + "pred": "two people walking on a beach with umbrellas" + }, + { + "label": "the black cat with white patches is sitting beside a remote control", + "pred": "a black and white cat laying next to a remote control" + }, + { + "label": "a man seated in a tie and glasses", + "pred": "a man wearing a tie sitting in a chair" + }, + { + "label": "a wheeled suitcase sits on a wooden floor in front of a sofa", + "pred": "a black suitcase sitting on top of a wooden floor" + }, + { + "label": "a cave is situated in a rocky wall", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "a man is playing with an elephant in a field", + "pred": "a man is standing next to an elephant" + }, + { + "label": "a man and woman are walking in the rain with an umbrella", + "pred": "two people walking on a beach with umbrellas" + }, + { + "label": "cows graze peacefully in a field with a dormant volcano in the distance", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "school class photo from the boys school of standard south carolina", + "pred": "a small group of boys posing for a picture" + }, + { + "label": "a grey suitcase sits in front of a couch", + "pred": "a black suitcase sitting on top of a wooden floor" + }, + { + "label": "boys in suits holding a chalkboard", + "pred": "a small group of boys posing for a picture" + }, + { + "label": "young schoolboys", + "pred": "a small group of boys posing for a picture" + }, + { + "label": "people wearing umbrella hats next to the ocean", + "pred": "people with umbrellas on a pier" + }, + { + "label": "a large grey suitcase is places near a tan sofa", + "pred": "a black suitcase sitting on top of a wooden floor" + }, + { + "label": "a baby elephant walks between the legs of its mother", + "pred": "elephants standing next to each other" + }, + { + "label": "a cat sniffs the keyboard of a computer", + "pred": "a cat sitting on top of a computer keyboard" + }, + { + "label": "two people with an umbrella walking on street in rain", + "pred": "two people walking on a beach with umbrellas" + }, + { + "label": "a black and white cat laying on white blanket next to a remote", + "pred": "a black and white cat laying next to a remote control" + }, + { + "label": "a baby elephant walking along the same path as its mother", + "pred": "elephants standing next to each other" + }, + { + "label": "a parking meter on the side of the street with a ring for attaching bicycles", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "a boat with a rainbow umbrella sitting in water", + "pred": "people on a boat in a body of water" + }, + { + "label": "a black and white cat laying next to a remote control", + "pred": "a black and white cat laying next to a remote control" + }, + { + "label": "a black and red parking meter on sidewalk next to a street", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "a large black bear laying on top of a large rock", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "a brown bear sitting in a grassy area", + "pred": "a brown bear sitting on top of a lush green field" + }, + { + "label": "a crowded airport filled with people carrying luggage", + "pred": "people are walking through an airport terminal" + }, + { + "label": "a man sits in a chair with his legs crossed and hands folded", + "pred": "a man wearing a tie sitting in a chair" + }, + { + "label": "elephants are standing together in a pin", + "pred": "elephants standing next to each other" + }, + { + "label": "cows walking around the grass", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "three people preparing to launch a small boat in a river", + "pred": "people on a boat in a body of water" + }, + { + "label": "travelers making their way through a busy transport hub", + "pred": "people are walking through an airport terminal" + }, + { + "label": "a bear cub struggles to scale a boulder", + "pred": "a large black bear sitting on top of a rock" + }, + { + "label": "a double parking meter stands on the street", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "a cat sits in front of a remote control", + "pred": "a black and white cat laying next to a remote control" + }, + { + "label": "a parking meter in front of building windows", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "a man and woman that is under an umbrella", + "pred": "two people walking on a beach with umbrellas" + }, + { + "label": "the man in the business suit wears a striped blue and white tie", + "pred": "a man in a suit and tie standing next to a tree" + }, + { + "label": "tug boats do a good job handling water emergencies", + "pred": "a small boat in the middle of a body of water" + }, + { + "label": "two green shoes lined up on a bed", + "pred": "two pairs of blue shoes sitting on top of a bed" + }, + { + "label": "an airport lobby in which several people stroll by with their luggage", + "pred": "people are walking through an airport terminal" + }, + { + "label": "the man is sitting down posing for a picture", + "pred": "a man wearing a tie sitting in a chair" + }, + { + "label": "a man and a women walking under an umbrella", + "pred": "two people walking on a beach with umbrellas" + }, + { + "label": "a blue dog sitting on a striped couch", + "pred": "a brown dog sitting on top of a couch" + }, + { + "label": "a large bear that is sitting on grass", + "pred": "a brown bear sitting on top of a lush green field" + }, + { + "label": "a man in a tie stand in front of a tree", + "pred": "a man in a suit and tie standing next to a tree" + }, + { + "label": "an airport terminal with many people carrying their luggage", + "pred": "people are walking through an airport terminal" + }, + { + "label": "three people one in the water with two boats one with an umbrella", + "pred": "people on a boat in a body of water" + }, + { + "label": "a tugboat is pulling another boat in the middle of a water", + "pred": "a small boat in the middle of a body of water" + }, + { + "label": "boats sitting on top of a body of water", + "pred": "a small boat in the middle of a body of water" + }, + { + "label": "a man wearing glasses and a lavender shirt", + "pred": "a man in a suit and tie standing next to a tree" + }, + { + "label": "a dog that is sitting on a couch", + "pred": "a brown dog sitting on top of a couch" + }, + { + "label": "a pair of sneakers lined up on a bed", + "pred": "two pairs of blue shoes sitting on top of a bed" + }, + { + "label": "a pair of running shoes sit on the end of a bed", + "pred": "two pairs of blue shoes sitting on top of a bed" + }, + { + "label": "a close up picture of a brown bear's face", + "pred": "a brown bear sitting on top of a lush green field" + }, + { + "label": "bright green sneakers on a bed with a gingham bedspread", + "pred": "two pairs of blue shoes sitting on top of a bed" + }, + { + "label": "a double parking meter on a pole with a bicycle rack", + "pred": "a parking meter sitting on the side of a street" + }, + { + "label": "people in uniforms stand in formation next to a bus", + "pred": "a crowd of people standing next to a train" + }, + { + "label": "a busy airport with many people walking around", + "pred": "people are walking through an airport terminal" + }, + { + "label": "a pair of green sneakers on a single bed with a nightstand next to it", + "pred": "two pairs of blue shoes sitting on top of a bed" + }, + { + "label": "a man in a striped suit stands in front of palm trees", + "pred": "a man in a suit and tie standing next to a tree" + }, + { + "label": "a business man with a striped blue tie standing in front of a palm tree", + "pred": "a man in a suit and tie standing next to a tree" + }, + { + "label": "a man holds an umbrella for a new bride", + "pred": "a woman standing next to a man holding an umbrella" + }, + { + "label": "a cool doggy sitting on the couch", + "pred": "a brown dog sitting on top of a couch" + }, + { + "label": "a large group of animals standing in a large grassy field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a bride and a man wearing a suit holding an umbrella for the bride", + "pred": "a woman standing next to a man holding an umbrella" + }, + { + "label": "two boats beside each other with people holding on to the boats", + "pred": "people on a boat in a body of water" + }, + { + "label": "a large brown dog sitting on top of a couch", + "pred": "a brown dog sitting on top of a couch" + }, + { + "label": "a fire fire truck parked in a parking lot", + "pred": "a fire truck driving down a street next to a fire hydrant" + }, + { + "label": "a blue boat is sitting in the water", + "pred": "people on a boat in a body of water" + }, + { + "label": "a woman with a tattoo is sitting on the train tracks", + "pred": "a woman sitting on top of a train track" + }, + { + "label": "a womman sitting on railroad tracks with a suitcase beside her", + "pred": "a woman sitting on top of a train track" + }, + { + "label": "a pair of fire trucks performing work in a residential area", + "pred": "a fire truck driving down a street next to a fire hydrant" + }, + { + "label": "a small boat makes its way across the water on an overcast day", + "pred": "a small boat in the middle of a body of water" + }, + { + "label": "a tub boat pulling a small barge through the water", + "pred": "a small boat in the middle of a body of water" + }, + { + "label": "people in military uniform stand outside a bus", + "pred": "a crowd of people standing next to a train" + }, + { + "label": "a number of emergency vehicles at the scene of an incident", + "pred": "a fire truck driving down a street next to a fire hydrant" + }, + { + "label": "a man standing next to an elephant next to his trunk", + "pred": "a man standing next to a brown elephant" + }, + { + "label": "a smiling man in green next to a large elephant", + "pred": "a man standing next to a brown elephant" + }, + { + "label": "a smiling man standing very close to a cute elephant", + "pred": "a man standing next to a brown elephant" + }, + { + "label": "young servicemen and servicewomen stand next to a blue bus with luggage", + "pred": "a crowd of people standing next to a train" + }, + { + "label": "a man walking up the beach after finishing parasailing", + "pred": "a man and a dog on the beach with a surfboard" + }, + { + "label": "a very cute looking small dog by some food", + "pred": "a dog sitting on top of a wooden table" + }, + { + "label": "a person with a dog in the water", + "pred": "a man and a dog on the beach with a surfboard" + }, + { + "label": "three fire trucks parked outside a residential area", + "pred": "a fire truck driving down a street next to a fire hydrant" + }, + { + "label": "a woman wearing a skirt shows off her tatttoos", + "pred": "a woman sitting on top of a train track" + }, + { + "label": "a dog that is seated at the table with a frosted cup cake in front of the dog", + "pred": "a dog sitting on top of a wooden table" + }, + { + "label": "a man holds the umbrella over the bride", + "pred": "a woman standing next to a man holding an umbrella" + }, + { + "label": "people in uniform standing in front of a bus", + "pred": "a crowd of people standing next to a train" + }, + { + "label": "a cat laying on clothes that are in a suitcase", + "pred": "a cat that is laying in a suitcase" + }, + { + "label": "a dog is sitting in a chair at a table", + "pred": "a dog sitting on top of a wooden table" + }, + { + "label": "a dog is sitting on a couch with a ball and two cushions in back", + "pred": "a brown dog sitting on top of a couch" + }, + { + "label": "an umbrella and rain boots sitting on a rug in a corner", + "pred": "a red and white fire hydrant sitting next to a wall" + }, + { + "label": "a man and his dog are coming out of the water", + "pred": "a man and a dog on the beach with a surfboard" + }, + { + "label": "an umbrella and rain boots in a corner", + "pred": "a red and white fire hydrant sitting next to a wall" + }, + { + "label": "a cat that is laying in a piece of luggage", + "pred": "a cat that is laying in a suitcase" + }, + { + "label": "a man and wife on there wedding day", + "pred": "a woman standing next to a man holding an umbrella" + }, + { + "label": "firefighters and three firetrucks are parked on a street", + "pred": "a fire truck driving down a street next to a fire hydrant" + }, + { + "label": "people sitting under an umbrella", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a elephant reaching out with some thing with its nose", + "pred": "elephants standing on top of a wooden platform" + }, + { + "label": "a man holding an umbrella under a fat bride", + "pred": "a woman standing next to a man holding an umbrella" + }, + { + "label": "a polar bear swimming in the water", + "pred": "two polar bears swimming in a body of water" + }, + { + "label": "a man in a green shirt is standing next to an elephant", + "pred": "a man standing next to a brown elephant" + }, + { + "label": "a dog that is sitting at a table with some cake", + "pred": "a dog sitting on top of a wooden table" + }, + { + "label": "people in a field working with some big animals", + "pred": "a man is leading a herd of cattle down a dirt road" + }, + { + "label": "a man standing next to an elephant smiling", + "pred": "a man standing next to a brown elephant" + }, + { + "label": "people standing on the shore next to a body of water", + "pred": "a man walking down a dirt road next to a group of people" + }, + { + "label": "an elderly woman is holding onto the arm of an elderly man", + "pred": "a man and woman standing next to each other" + }, + { + "label": "very cute big elephants by some people", + "pred": "elephants standing on top of a wooden platform" + }, + { + "label": "the herd of cattle stand beneath the overcast sky", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a cat looking forward while laying down on a green cushion", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a pair of boots sitting in a corner, with an umbrella", + "pred": "a red and white fire hydrant sitting next to a wall" + }, + { + "label": "a herd of cows in a field on a cloudy day", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "military people getting off and on the train", + "pred": "a crowd of people standing next to a train" + }, + { + "label": "two men walking two ox on a dirt road", + "pred": "a man is leading a herd of cattle down a dirt road" + }, + { + "label": "a man that is in some water with a kite", + "pred": "a man and a dog on the beach with a surfboard" + }, + { + "label": "an older woman standing next to an older man", + "pred": "a man and woman standing next to each other" + }, + { + "label": "a cat is laying in an open suitcase on top of some clothes", + "pred": "a cat that is laying in a suitcase" + }, + { + "label": "a woman sitting on the railroad tracks", + "pred": "a woman sitting on top of a train track" + }, + { + "label": "cows that are dragging some metal", + "pred": "a man is leading a herd of cattle down a dirt road" + }, + { + "label": "a polar bear pokes his head and one paw out of the water", + "pred": "two polar bears swimming in a body of water" + }, + { + "label": "a man is using two cows to plow a field", + "pred": "a man is leading a herd of cattle down a dirt road" + }, + { + "label": "old people standing with each other", + "pred": "a man and woman standing next to each other" + }, + { + "label": "a herd of cattle grazing in a field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a pair of tall black boots and a closed red umbrella in the corner", + "pred": "a red and white fire hydrant sitting next to a wall" + }, + { + "label": "a windsurfer and a dog walk along an ocean beach", + "pred": "a man and a dog on the beach with a surfboard" + }, + { + "label": "a woman is sitting with a suitcase on some train tracks", + "pred": "a woman sitting on top of a train track" + }, + { + "label": "a man plowing with oxen on a dirt road", + "pred": "a man is leading a herd of cattle down a dirt road" + }, + { + "label": "elephants that can be seen here in the wild", + "pred": "elephants standing on top of a wooden platform" + }, + { + "label": "a cat laying on a pillow on a couch", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "an older man has a woman standing next to him", + "pred": "a man and woman standing next to each other" + }, + { + "label": "a small brown dog sitting with its paws on a table", + "pred": "a dog sitting on top of a wooden table" + }, + { + "label": "the woman holding an umbrella smiles on the narrow street beside the sidewalk", + "pred": "a woman holding an umbrella standing in front of a building" + }, + { + "label": "a woman with a purple umbrella stands on a brick street", + "pred": "a woman holding an umbrella standing in front of a building" + }, + { + "label": "a large white polar bear playing in water", + "pred": "two polar bears swimming in a body of water" + }, + { + "label": "the man is working on his laptop while he waits for the train", + "pred": "a man sitting on a bench next to a train" + }, + { + "label": "a polar bear is swimming in a pool of water", + "pred": "two polar bears swimming in a body of water" + }, + { + "label": "a cat lying in a open suitcase", + "pred": "a cat that is laying in a suitcase" + }, + { + "label": "a woman holding a man by the arm, with a tie", + "pred": "a man and woman standing next to each other" + }, + { + "label": "people and cattle come to the edge of the water on a lake", + "pred": "a man walking down a dirt road next to a group of people" + }, + { + "label": "two men sitting underneath an umbrella on a sidewalk", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a woman in a bikini laying under a red umbrella", + "pred": "a large umbrella sitting on top of a sandy beach" + }, + { + "label": "people getting ready to go in the water, near horses", + "pred": "a man walking down a dirt road next to a group of people" + }, + { + "label": "the kitten lies on it's side beside a yellow pillow", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a cow getting relief as it is being milked", + "pred": "cows standing next to each other" + }, + { + "label": "livestock grazing in a field under a cloudy sky", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a polar bear cooling off in the water", + "pred": "two polar bears swimming in a body of water" + }, + { + "label": "a pair of black boots stand next to a red umbrella", + "pred": "a red and white fire hydrant sitting next to a wall" + }, + { + "label": "the woman lies next to a man on the beach under an umbrella", + "pred": "a large umbrella sitting on top of a sandy beach" + }, + { + "label": "a smiling woman stands outside of a brick building in the rain while holding an umbrella", + "pred": "a woman holding an umbrella standing in front of a building" + }, + { + "label": "beach goes lay out underneath a red umbrella", + "pred": "a large umbrella sitting on top of a sandy beach" + }, + { + "label": "an orange and white cat laying on top of a bag of luggage", + "pred": "a cat that is laying in a suitcase" + }, + { + "label": "a woman stands on a cobblestone walkway carrying an umbrella", + "pred": "a woman holding an umbrella standing in front of a building" + }, + { + "label": "people and cattle standing at the waters edge on a bright sunny day", + "pred": "a man walking down a dirt road next to a group of people" + }, + { + "label": "an elephant that is putting its trunk over a fence", + "pred": "elephants standing on top of a wooden platform" + }, + { + "label": "a woman standing on a cobbled street holding a pink umbrella", + "pred": "a woman holding an umbrella standing in front of a building" + }, + { + "label": "a man in a button up shirt sitting by himself", + "pred": "a man sitting on a bench next to a train" + }, + { + "label": "a young man and woman holding their heads close to each other", + "pred": "a man and a woman are posing for a picture" + }, + { + "label": "a man and woman look into each others eyes while getting married", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "the adult elephant is stretching it's long trunk over the fence", + "pred": "elephants standing on top of a wooden platform" + }, + { + "label": "a cow is being milked by a machine", + "pred": "cows standing next to each other" + }, + { + "label": "boats that are parked at this dock", + "pred": "a harbor filled with lots of boats on a sunny day" + }, + { + "label": "a man is spraying an elephant with a water hose", + "pred": "a man spraying an elephant with a hose" + }, + { + "label": "two people on the beach laying under a red umbrella", + "pred": "a large umbrella sitting on top of a sandy beach" + }, + { + "label": "a dock with some boats parked there", + "pred": "a harbor filled with lots of boats on a sunny day" + }, + { + "label": "a vintage photo of some people sitting under an umbrella", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "two men sitting under an umbrella on the sidewalk", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a man and woman are being married to one another", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a dairy cow suffering in confinement hooked up to a milking machine", + "pred": "cows standing next to each other" + }, + { + "label": "a elephant standing next to an enclosure getting washed", + "pred": "a man spraying an elephant with a hose" + }, + { + "label": "a cat lays down on a soft blanket", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "people under a large umbrella", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "the bride and groom stand at the alter near a priest", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "people standing out at a watery ledge with horses", + "pred": "a man walking down a dirt road next to a group of people" + }, + { + "label": "a man and woman getting married in a church", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "people lay under an umbrella on a beach", + "pred": "a large umbrella sitting on top of a sandy beach" + }, + { + "label": "woman and man preparing to be married with a pastor", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a kitten is laying on a green throw pillow", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "sailboats docked at the pier of a town marina", + "pred": "a harbor filled with lots of boats on a sunny day" + }, + { + "label": "a boat that is sitting near a pier", + "pred": "a harbor filled with lots of boats on a sunny day" + }, + { + "label": "a man sprays an elephant with a water hose", + "pred": "a man spraying an elephant with a hose" + }, + { + "label": "the black and white photograph of a classroom of schoolchildren is a bit out of focus on the right side of the picture", + "pred": "a large group of children posing for a picture" + }, + { + "label": "students are posing for a class picture", + "pred": "a large group of children posing for a picture" + }, + { + "label": "animals trying to either move or go around fallen tree branches", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a dairy cow is being milked by machine", + "pred": "cows standing next to each other" + }, + { + "label": "small cow sitting on a milking machine in a dirty area", + "pred": "cows standing next to each other" + }, + { + "label": "an elephant looking at the camera in a pin", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a man sprays an elephant with a water hose", + "pred": "a man spraying an elephant with a hose" + }, + { + "label": "a man who is hosing down an elephant", + "pred": "a man spraying an elephant with a hose" + }, + { + "label": "a male in a white shirt a bicycle and an orange and white train", + "pred": "a man sitting on a bench next to a train" + }, + { + "label": "a woman that is standing up in the grass", + "pred": "a woman standing in a field next to a tree" + }, + { + "label": "small children are posing together in the black and white photo", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a harbor with several boats docked and buildings", + "pred": "a harbor filled with lots of boats on a sunny day" + }, + { + "label": "these people are walking together down a road", + "pred": "people standing on top of a dirt field" + }, + { + "label": "a man operates a laptop at a table in a train station", + "pred": "a man sitting on a bench next to a train" + }, + { + "label": "three men who are walking in the sand", + "pred": "people standing on top of a dirt field" + }, + { + "label": "a vintage school picture of grade school aged children", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a man sitting at a table using a lap top", + "pred": "a man sitting on a bench next to a train" + }, + { + "label": "a cat sitting on top of a bed", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a person walking down a street while holding an umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "an older pickup truck with decorative murals painted on", + "pred": "an old green truck parked in a field" + }, + { + "label": "a little girl stands, hand to face on the edge of a field", + "pred": "a woman standing in a field next to a tree" + }, + { + "label": "a couple standing together and posing for a photo", + "pred": "a man and a woman are posing for a picture" + }, + { + "label": "a guy and a girl posing for a picture", + "pred": "a man and a woman are posing for a picture" + }, + { + "label": "a closeup picture of a couple is seen here", + "pred": "a man and a woman are posing for a picture" + }, + { + "label": "family and friends are together at the beach", + "pred": "people sitting on the beach with umbrellas" + }, + { + "label": "kids", + "pred": "a large group of people posing for a picture" + }, + { + "label": "an antique green pickup truck is parked in the grass", + "pred": "an old green truck parked in a field" + }, + { + "label": "two elephants in a zoo behind a wire fence", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a made up bed with a pile of newspapers on it", + "pred": "a bed that has a book on it" + }, + { + "label": "a cat with blue eyes sitting on a pink bed", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a cat sitting on a white bed", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a cat sitting on top of a bed on the comforter", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "people walking down a road", + "pred": "people standing on top of a dirt field" + }, + { + "label": "two people standing side by side smiling and one wearing a tie", + "pred": "a man and a woman are posing for a picture" + }, + { + "label": "a girl standing in a field in a dress", + "pred": "a woman standing in a field next to a tree" + }, + { + "label": "truck viewed from the back with vans and trucks visible in the background of the image", + "pred": "an old green truck parked in a field" + }, + { + "label": "a white pillow white sheets and an orange and tan bedspread", + "pred": "a bed that has a book on it" + }, + { + "label": "a man standing along side of a truck trailer", + "pred": "a man standing next to a truck on a road" + }, + { + "label": "a truck painted green with designs parked by other vehicles", + "pred": "an old green truck parked in a field" + }, + { + "label": "a elephant with a cart on its back", + "pred": "a large elephant standing on top of a dirt ground" + }, + { + "label": "a persona nd a umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "this person is leaving footprints in the snow", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "people at a beach water and a colored umbrella", + "pred": "people sitting on the beach with umbrellas" + }, + { + "label": "people standing next to each other on a field", + "pred": "people standing in a field with a frisbee" + }, + { + "label": "two males a truck some cars and trees", + "pred": "a man standing next to a truck on a road" + }, + { + "label": "a bed with a yellow blanket and a white pillow", + "pred": "a bed that has a book on it" + }, + { + "label": "a cat that is laying on top of a pink bed sheet", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a man spraying a trick with water", + "pred": "a man standing next to a truck on a road" + }, + { + "label": "children standing next to each other", + "pred": "a large group of people posing for a picture" + }, + { + "label": "a gray elephant walking past a person standing on a wooden structure", + "pred": "a large elephant standing on top of a dirt ground" + }, + { + "label": "a herd of black and white cattle standing on a lush green hillside", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a wooden table with an inverted umbrella on it", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a person is walking down a sidewalk holding an umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a green truck parked in grass", + "pred": "an old green truck parked in a field" + }, + { + "label": "a man standing next to a truck with some stuff on it", + "pred": "a man standing next to a truck on a road" + }, + { + "label": "a man standing beside a large truck in a parking lot", + "pred": "a man standing next to a truck on a road" + }, + { + "label": "kids standing together for a school picture", + "pred": "a large group of children posing for a picture" + }, + { + "label": "a woman standing in a grassy field next to a tree", + "pred": "a woman standing in a field next to a tree" + }, + { + "label": "a woman standing under trees by a field", + "pred": "a woman standing in a field next to a tree" + }, + { + "label": "three young people walking behind a large crowd", + "pred": "people standing on top of a dirt field" + }, + { + "label": "a man is walking in the rain with an umbrella held close to his head", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "children standing and sitting beside each other", + "pred": "a large group of people posing for a picture" + }, + { + "label": "seats placed on top of an elephant that is standing outside", + "pred": "a large elephant standing on top of a dirt ground" + }, + { + "label": "a newspaper spread out on a made bed with a quilt and pillow", + "pred": "a bed that has a book on it" + }, + { + "label": "elephants with large tusks, standing around behind a fence", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "a number of newspapers lay on an empty bed", + "pred": "a bed that has a book on it" + }, + { + "label": "animal in shadows of woods surrounded by foliage", + "pred": "a black bear walking through a tree filled forest" + }, + { + "label": "an elephant walks around his exhibit at the zoo", + "pred": "a large elephant standing next to a fence" + }, + { + "label": "people are walking and one is holding an umbrella", + "pred": "people standing on top of a dirt field" + }, + { + "label": "four black and white cows are on grass", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a beige outdoor umbrella is blown upside down", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a man that is walking down the street with a umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a man and a woman on a sidewalk standing in front of several suitcases", + "pred": "a man sitting on top of a suitcase next to a woman" + }, + { + "label": "people that are under a umbrella", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a large group of people are posing on grass with a frisbee", + "pred": "people standing in a field with a frisbee" + }, + { + "label": "an elephant walking with a harness on it's back where people are able to sit", + "pred": "a large elephant standing on top of a dirt ground" + }, + { + "label": "are standing outside a building with suitcases", + "pred": "people sitting on top of an airport tarmac" + }, + { + "label": "a cat sitting on a table next to a tv in a living room", + "pred": "a cat sitting on top of a tv next to a christmas tree" + }, + { + "label": "leafy trees are hiding a black bear", + "pred": "a black bear walking through a tree filled forest" + }, + { + "label": "a small sheep is laying in a field", + "pred": "a dog laying in the grass next to a tree" + }, + { + "label": "a white animal is in the short grass by a tree", + "pred": "a dog laying in the grass next to a tree" + }, + { + "label": "a man is grabbing the tie of another person that appears in the mirror", + "pred": "a man adjusting his tie in front of a mirror" + }, + { + "label": "one cat sitting in front of the television screen", + "pred": "a cat sitting on top of a tv next to a christmas tree" + }, + { + "label": "a black bear standing on top of a tree", + "pred": "a black bear walking through a tree filled forest" + }, + { + "label": "a cat sitting in front of a flat screen tv", + "pred": "a cat sitting on top of a tv next to a christmas tree" + }, + { + "label": "a grassy field with several cows laying down", + "pred": "a dog laying in the grass next to a tree" + }, + { + "label": "cat sitting on cabinet in front of large screen television", + "pred": "a cat sitting on top of a tv next to a christmas tree" + }, + { + "label": "two dogs laying down on a brown couch", + "pred": "a dog and a cat laying on a couch" + }, + { + "label": "young children sitting next to each other", + "pred": "a large group of children posing for a picture" + }, + { + "label": "people are getting of a plane", + "pred": "people sitting on top of an airport tarmac" + }, + { + "label": "two large dogs sleeping on the couch", + "pred": "a dog and a cat laying on a couch" + }, + { + "label": "two large boats that are in the water", + "pred": "a large boat floating on top of a body of water" + }, + { + "label": "a cat that is sitting in front of a tv", + "pred": "a cat sitting on top of a tv next to a christmas tree" + }, + { + "label": "a statue of a large brown bear tearing off a cars door", + "pred": "a brown dog sitting on top of a red fire hydrant" + }, + { + "label": "a couple standing outside of a restaurant on a sidewalk", + "pred": "a man sitting on top of a suitcase next to a woman" + }, + { + "label": "a small black bear is walking through the woods", + "pred": "a black bear walking through a tree filled forest" + }, + { + "label": "a cat sitting in a chair looking up", + "pred": "a cat that is sitting on a chair" + }, + { + "label": "two people stand with their luggage in front of a building", + "pred": "a man sitting on top of a suitcase next to a woman" + }, + { + "label": "two men that are pulling their ties", + "pred": "a man adjusting his tie in front of a mirror" + }, + { + "label": "very nice looking boats in the water", + "pred": "a large boat floating on top of a body of water" + }, + { + "label": "a man pulling himself out of a mirror by his own tie", + "pred": "a man adjusting his tie in front of a mirror" + }, + { + "label": "a statue of a bear on a car used as a warning about the bears", + "pred": "a brown dog sitting on top of a red fire hydrant" + }, + { + "label": "people and luggage on a airport tarmac", + "pred": "people sitting on top of an airport tarmac" + }, + { + "label": "two black and white cows and two white cows grazing in the grass", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a white umbrella that has been blown up the wrong way", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "cows sitting out in the grass of a green pasture", + "pred": "a dog laying in the grass next to a tree" + }, + { + "label": "cows are gathered together in a grassy field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "an umbrella on a backyard patio is upturned from the wind", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a red and black boat floating on top of water", + "pred": "a boat that is sitting in the water" + }, + { + "label": "gray cat lying on seat cushion on outdoor wooden chair", + "pred": "a cat that is sitting on a chair" + }, + { + "label": "a red boat floating in front of a city scape", + "pred": "a boat that is sitting in the water" + }, + { + "label": "two large ferries passing by each other in a city scape", + "pred": "a large boat floating on top of a body of water" + }, + { + "label": "a big boat on a river with a cityscape", + "pred": "a boat that is sitting in the water" + }, + { + "label": "a young cow is resting in a grass field next to a tree", + "pred": "a dog laying in the grass next to a tree" + }, + { + "label": "this cat is looking up from a chair", + "pred": "a cat that is sitting on a chair" + }, + { + "label": "small bear cub walking on log in dense forest", + "pred": "a black bear walking through a tree filled forest" + }, + { + "label": "a large group of people standing together in a field", + "pred": "people standing in a field with a frisbee" + }, + { + "label": "people who are placing luggage on a runway", + "pred": "people sitting on top of an airport tarmac" + }, + { + "label": "a gray and white cat looking up from a chair", + "pred": "a cat that is sitting on a chair" + }, + { + "label": "dogs are laying on a coach", + "pred": "a dog and a cat laying on a couch" + }, + { + "label": "people are gathered for a photograph", + "pred": "a large group of children posing for a picture" + }, + { + "label": "a man and a women posing next to one another in front of a table", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "black and white spotted cows in green grass", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a patio umbrella pointed inside out over a picnic table", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "an airport and plane unloading passengers with luggage", + "pred": "people sitting on top of an airport tarmac" + }, + { + "label": "people standing and sitting on top of a field", + "pred": "a crowd of people sitting on the grass with umbrellas" + }, + { + "label": "a tourist unfolds an umbrella near ancient ruins", + "pred": "a man standing next to a stone wall next to a pile of rocks" + }, + { + "label": "a woman holding a umbrella walking in the snow", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a woman is sitting with an umbrella outside", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "adults standing on carved stone display overlooking large city", + "pred": "a man standing next to a stone wall next to a pile of rocks" + }, + { + "label": "people are gathered together sitting for an event", + "pred": "a crowd of people sitting on the grass with umbrellas" + }, + { + "label": "a woman sitting on a bench holding a pink umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "two people smile while posing behind luggage suitcases on the sidewalk", + "pred": "a man sitting on top of a suitcase next to a woman" + }, + { + "label": "a man and woman hugging in a restaurant", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "two long boats are sailing near a large bridge", + "pred": "a large boat floating on top of a body of water" + }, + { + "label": "a large group of people lounge on a lawn for an event", + "pred": "a crowd of people sitting on the grass with umbrellas" + }, + { + "label": "a woman is walking down the street with an umbrella", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "a boat that is sitting in the water", + "pred": "a boat that is sitting in the water" + }, + { + "label": "an elephant with a chair on top of it and a man standing on a balcony", + "pred": "a large elephant standing on top of a dirt ground" + }, + { + "label": "a large ship in the middle of the ocean", + "pred": "a boat that is sitting in the water" + }, + { + "label": "a group holding frisbees pose for a picture", + "pred": "people standing in a field with a frisbee" + }, + { + "label": "two men with ties taking a creepy looking photo", + "pred": "a man adjusting his tie in front of a mirror" + }, + { + "label": "a green utility truck is parked on a street while a man climbs inside", + "pred": "a green truck driving down a city street" + }, + { + "label": "two men accidentally get their ties too tied up", + "pred": "a man adjusting his tie in front of a mirror" + }, + { + "label": "the crowd is sitting under the umbrella at the beach", + "pred": "people sitting on the beach with umbrellas" + }, + { + "label": "a family standing in the yard to take a picture", + "pred": "people standing in a field with a frisbee" + }, + { + "label": "a statue depicting a bear breaking into a car", + "pred": "a brown dog sitting on top of a red fire hydrant" + }, + { + "label": "a man and woman standing next to a table", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a man and woman who are standing in the snow", + "pred": "people walking down a street with umbrellas" + }, + { + "label": "people sitting on the grassy ground with coolers and umbrellas", + "pred": "a crowd of people sitting on the grass with umbrellas" + }, + { + "label": "a yellow red umbrella in a crowd of people", + "pred": "a crowd of people sitting on the grass with umbrellas" + }, + { + "label": "a happy man and woman pose for a picture", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a man and woman that are standing next to rocks", + "pred": "a man standing next to a stone wall next to a pile of rocks" + }, + { + "label": "scenic boats daily travel the thames in england", + "pred": "a large boat floating on top of a body of water" + }, + { + "label": "two black dogs on a couch sleeping peacefully", + "pred": "a dog and a cat laying on a couch" + }, + { + "label": "people sitting on top of a green truck as another man tries to get in it", + "pred": "a green truck driving down a city street" + }, + { + "label": "men holding a black umbrella", + "pred": "a man standing next to a stone wall next to a pile of rocks" + }, + { + "label": "yes, bears can rip open cars and hurt the occupants", + "pred": "a brown dog sitting on top of a red fire hydrant" + }, + { + "label": "a person sitting on a bench under an umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "the train engine number 6309 is operated by bnsf", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a woman holding an umbrella while standing on top of a wooden deck", + "pred": "a woman holding an umbrella in front of a building" + }, + { + "label": "a lady explains the process of milking a cow", + "pred": "a man standing in front of a crowd of people" + }, + { + "label": "a long orange train traveling along a tree filled forest", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a large truck on a city street with two works sitting on top and one worker climbing in through door", + "pred": "a green truck driving down a city street" + }, + { + "label": "people lay on blankets and sit in chairs on the beach under an umbrella", + "pred": "people sitting on the beach with umbrellas" + }, + { + "label": "a cat that is laying down on a chair", + "pred": "a cat that is sitting on a chair" + }, + { + "label": "two men on old architecture pull out umbrella and securing their belongings", + "pred": "a man standing next to a stone wall next to a pile of rocks" + }, + { + "label": "an orange bnse train riding on the tracks near a forest", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a large brown dog holding a neon frisbee in his mouth", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a man poses with a picture of a bear and a car", + "pred": "a brown dog sitting on top of a red fire hydrant" + }, + { + "label": "a man and woman posing for a picture in a sports bar", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "two dogs are lying on the brown couch", + "pred": "a dog and a cat laying on a couch" + }, + { + "label": "people in high visibility jackets putting suitcases onto a conveyer belt from a container", + "pred": "people loading and unloading luggage on an airport tarmac" + }, + { + "label": "a man in a white suit standing in front of some bushes", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a black orange and yellow train on its track and some trees", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a man with a beard wearing a white suit standing near a garden", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "the freight train is painted orange and yellow", + "pred": "a train traveling down train tracks next to trees" + }, + { + "label": "a lady sitting on a bench on the side of a street holding an umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a woman next to a cow is giving an explanation of milking to a crowd", + "pred": "a man standing in front of a crowd of people" + }, + { + "label": "a man and a woman are standing behind some suitcases", + "pred": "a man sitting on top of a suitcase next to a woman" + }, + { + "label": "a woman standing next to a herd of animals", + "pred": "a woman standing next to a group of people holding umbrellas" + }, + { + "label": "a man holding an umbrella in a hallway", + "pred": "a person standing in the rain holding an umbrella" + }, + { + "label": "sailboats sit in the water in front of some trees", + "pred": "boats are docked in the water" + }, + { + "label": "the person is holding a treat for the cats", + "pred": "a cat sitting on the floor next to a person" + }, + { + "label": "a man is sitting on top of a green truck", + "pred": "a green truck driving down a city street" + }, + { + "label": "people at the airport offloading the baggage with their names on", + "pred": "people loading and unloading luggage on an airport tarmac" + }, + { + "label": "young men standing on top of a sandy beach", + "pred": "a cow standing on top of a sandy beach" + }, + { + "label": "people sitting at the beach watching the waves roll in", + "pred": "people sitting on the beach with umbrellas" + }, + { + "label": "a parking meter sitting in the middle of a flooded street", + "pred": "a dog running in the water with a surfboard" + }, + { + "label": "a woman with an umbrella standing on a deck", + "pred": "a woman holding an umbrella in front of a building" + }, + { + "label": "a woman sitting on a bench with an umbrella on her head", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a man wearing a suit and standing on a field of grass", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a young man stands inside with an umbrella pouring rain", + "pred": "a person standing in the rain holding an umbrella" + }, + { + "label": "a row of cows standing behind a metal fence", + "pred": "a herd of cows standing in a barn" + }, + { + "label": "two elephants with their trunks attached to each other", + "pred": "two elephants are playing with each other in the dirt" + }, + { + "label": "a woman walks out of the ocean towards a beach chair and umbrella", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a grey cat in a room very disorganized with shoes all over", + "pred": "a cat sitting on the floor next to a person" + }, + { + "label": "a man and a woman sitting on a small boat", + "pred": "a man and a woman on a boat in the water" + }, + { + "label": "a woman is holding a black umbrella and smiling", + "pred": "a woman holding an umbrella in front of a building" + }, + { + "label": "two elephants holding their trunks together like they were hugging", + "pred": "two elephants are playing with each other in the dirt" + }, + { + "label": "men loading luggage onto an airplane", + "pred": "people loading and unloading luggage on an airport tarmac" + }, + { + "label": "a woman holding an umbrella at the park", + "pred": "a woman standing next to a group of people holding umbrellas" + }, + { + "label": "boats parked next to a dock in the water", + "pred": "a row of boats sitting on top of a body of water" + }, + { + "label": "a woman holding an umbrella near a sculpture", + "pred": "a woman holding an umbrella in front of a building" + }, + { + "label": "a man and woman in a boat on a river", + "pred": "a man and a woman on a boat in the water" + }, + { + "label": "a man sitting in the back of a truck", + "pred": "a man sitting on the side of a road next to a truck" + }, + { + "label": "a woman holding an umbrella next to a wall", + "pred": "a woman holding an umbrella in front of a building" + }, + { + "label": "a man standing in the grass with his hands in his pockets", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "a little girl sitting on her dads lap", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a woman standing in front of a cow explaining a milking machine to a group of people", + "pred": "a man standing in front of a crowd of people" + }, + { + "label": "a man with a little girl sitting on his lap", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a truck with an open door and two people sitting on top", + "pred": "a green truck driving down a city street" + }, + { + "label": "a man and woman riding on top of a red boat", + "pred": "a man and a woman on a boat in the water" + }, + { + "label": "two elephants locking noses on a dirt surface", + "pred": "two elephants are playing with each other in the dirt" + }, + { + "label": "baby elephants snugging trunks while standing on a dirt field", + "pred": "two elephants are playing with each other in the dirt" + }, + { + "label": "a man riding on the back of a giant bull", + "pred": "a woman sitting on top of an elephant statue" + }, + { + "label": "cats sitting on top of a counter", + "pred": "a cat sitting on the floor next to a person" + }, + { + "label": "these two elephants look like they are fighting", + "pred": "two elephants are playing with each other in the dirt" + }, + { + "label": "people on the beach playing with a brown cow", + "pred": "a cow standing on top of a sandy beach" + }, + { + "label": "a sunset view of a marina with boats docked", + "pred": "boats are docked in the water" + }, + { + "label": "a chair and a umbrella that is on a beach", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "boats in the water with their sails down", + "pred": "boats are docked in the water" + }, + { + "label": "workers at an airport transporting luggage from the plane", + "pred": "people loading and unloading luggage on an airport tarmac" + }, + { + "label": "a man that is in a suit that is outside", + "pred": "a man in a suit and tie posing for a picture" + }, + { + "label": "fishing boats tied to a dock", + "pred": "a row of boats sitting on top of a body of water" + }, + { + "label": "a woman standing in the rain with an umbrella with a herd of deer behind her", + "pred": "a woman standing next to a group of people holding umbrellas" + }, + { + "label": "water covering a lot of stuff in the streer", + "pred": "a dog running in the water with a surfboard" + }, + { + "label": "two people riding in a boat in a river", + "pred": "a man and a woman on a boat in the water" + }, + { + "label": "people that are next to some bags", + "pred": "people loading and unloading luggage on an airport tarmac" + }, + { + "label": "a smiling man and a very cute small girl sitting together", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "two tug boats tied up to the dock", + "pred": "a row of boats sitting on top of a body of water" + }, + { + "label": "a person that is feeding a cat that is standing up", + "pred": "a cat sitting on the floor next to a person" + }, + { + "label": "people running around some kind of animal", + "pred": "a cow standing on top of a sandy beach" + }, + { + "label": "a bull is running freely on the beach with other boys", + "pred": "a cow standing on top of a sandy beach" + }, + { + "label": "two cats in front of a woman holding something in her hand, one of the cats is reaching for it with its paws", + "pred": "a cat sitting on the floor next to a person" + }, + { + "label": "two people in a red boat on water", + "pred": "a man and a woman on a boat in the water" + }, + { + "label": "an elvis look-alike is seated on the back of a statue of what appears to be a bull, or water buffalo, against a backdrop of green", + "pred": "a woman sitting on top of an elephant statue" + }, + { + "label": "a little girl sitting on a man's lap in an old photograph", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "on a rainy day at the zoo umbrellas are frequently seen", + "pred": "a woman standing next to a group of people holding umbrellas" + }, + { + "label": "a dog lying on the ground holds a chew toy in its mouth", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a dog holding a donut like toy in its mouth", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "boats that are by a dock in some water", + "pred": "a row of boats sitting on top of a body of water" + }, + { + "label": "a person poses with a open umbrella indoors", + "pred": "a person standing in the rain holding an umbrella" + }, + { + "label": "elvis impersonator sitting atop a metal sculpture of a bull", + "pred": "a woman sitting on top of an elephant statue" + }, + { + "label": "a woman holding a milking attachment and standing in front of a cow, with a group of people in the audience", + "pred": "a man standing in front of a crowd of people" + }, + { + "label": "woman demonstrating equipment used in conjunction with cow", + "pred": "a man standing in front of a crowd of people" + }, + { + "label": "a man and child pose for a picture together", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "cows that are lined up next to one another", + "pred": "a herd of cows standing in a barn" + }, + { + "label": "a tugboat sits beside a ferry on placid water with a mountain in the distance", + "pred": "a row of boats sitting on top of a body of water" + }, + { + "label": "people holding umbrellas and standing next to deer", + "pred": "a woman standing next to a group of people holding umbrellas" + }, + { + "label": "a pair of well dressed men kick a soccer ball on the sidewalk", + "pred": "a man and a woman playing soccer on a city street" + }, + { + "label": "a passenger train travels down the tracks at a stop", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a large blue and yellow train stops near a fairly-non urban train-station", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a man is sitting in the flatbed of a truck", + "pred": "a man sitting on the side of a road next to a truck" + }, + { + "label": "a boxer dog sitting in the grass with a chew toy in its mouth", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "young men playing on the beach with a cow", + "pred": "a cow standing on top of a sandy beach" + }, + { + "label": "a street that has been very flooded", + "pred": "a dog running in the water with a surfboard" + }, + { + "label": "a person standing next to cows behind containers", + "pred": "a herd of cows standing in a barn" + }, + { + "label": "cows stand in line at a far as people look at them", + "pred": "a herd of cows standing in a barn" + }, + { + "label": "a man standing in a hallway with an umbrella and rain coming down", + "pred": "a person standing in the rain holding an umbrella" + }, + { + "label": "a man holding an umbrella in a hallway", + "pred": "a person standing in the rain holding an umbrella" + }, + { + "label": "a dog laying down and chewing on a dog toy", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a flooded street with just the top of a parking meter, a bench and couple of poles visible", + "pred": "a dog running in the water with a surfboard" + }, + { + "label": "an old man sits in the back of a truck", + "pred": "a man sitting on the back of a truck" + }, + { + "label": "a chair and umbrella that is sitting near an ocean", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "this veteran traveler is satisfied with the lift, riding in the back of a pickup truck", + "pred": "a man sitting on the back of a truck" + }, + { + "label": "a beach chair and umbrella in the sand on the beach", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a large body of water with three boats floating on top of it", + "pred": "boats are docked in the water" + }, + { + "label": "a train pulling up to an out door train depot", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "the older man is sitting in the bed of a truck", + "pred": "a man sitting on the back of a truck" + }, + { + "label": "a semi truck pulling a chain of three trailers", + "pred": "a large semi truck driving down a rural road" + }, + { + "label": "a huge fed ex truck with three different containers that the truck is pulling", + "pred": "a large semi truck driving down a rural road" + }, + { + "label": "a woman in a straw hat takes photos of brown cows inside a barn", + "pred": "a herd of cows standing in a barn" + }, + { + "label": "a woman in lingerie is laying on a soft bed", + "pred": "a naked woman laying on top of a bed" + }, + { + "label": "posts and the top of a bench are in high water", + "pred": "a dog running in the water with a surfboard" + }, + { + "label": "black bulls are walking down the street", + "pred": "a herd of cattle walking down a street" + }, + { + "label": "the bulls are walking down the street in front of cars", + "pred": "a herd of cattle walking down a street" + }, + { + "label": "a harbor with several boats floating in it", + "pred": "boats are docked in the water" + }, + { + "label": "a herd of cows walking down a city street", + "pred": "a herd of cattle walking down a street" + }, + { + "label": "a woman in lingerie laying on a bed", + "pred": "a naked woman laying on top of a bed" + }, + { + "label": "fedex truck hauling two extra trailers driving through the desert", + "pred": "a large semi truck driving down a rural road" + }, + { + "label": "a chair and umbrella sitting on a beach near a person", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "a woman wearing a dress and holding an umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a train traveling down train tracks under parking lights", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "the woman in the pink skirt is holding an umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "two men kicking a ball on a city street", + "pred": "a man and a woman playing soccer on the street" + }, + { + "label": "a fedex truck drives in front of hills", + "pred": "a large semi truck driving down a rural road" + }, + { + "label": "a cat drinking out of a glass on top of a table", + "pred": "a cat drinking water from a cup on a table" + }, + { + "label": "a woman in lingerie is bound to a bed", + "pred": "a naked woman laying on top of a bed" + }, + { + "label": "guys are playing ball on a side walk", + "pred": "a man and a woman playing soccer on the street" + }, + { + "label": "men kicking around a soccer ball", + "pred": "a man and a woman playing soccer on the street" + }, + { + "label": "people are waiting beside the blue train pulling beside the platform", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "young woman erotically bound on top of bed", + "pred": "a naked woman laying on top of a bed" + }, + { + "label": "cows walking in front of several cars", + "pred": "a herd of cattle walking down a street" + }, + { + "label": "a blue truck drives down a narrow street", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "a delivery truck travels along the road by a hill side", + "pred": "a large semi truck driving down a rural road" + }, + { + "label": "a blue rubbish removal truck and two vehicles behind it", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "an elvis impersonator riding on top of a statue", + "pred": "a woman sitting on top of an elephant statue" + }, + { + "label": "the woman is walking carefully through the leaves", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a blue garbage truck outside a big house", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "two men are kicking a soccer ball on the city sidewalk", + "pred": "a man and a woman playing soccer on the street" + }, + { + "label": "a delivery truck is traveling down the street", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "a wall with a bunch of graffiti on it", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a cat stands on a table drinking water out of a glass", + "pred": "a cat drinking water from a cup on a table" + }, + { + "label": "a woman in a dress has a handbag and is holding an umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a dog wears a tie while on the steps", + "pred": "a black dog wearing a red bow tie" + }, + { + "label": "a dog sits on a step perking its ears up", + "pred": "a black dog wearing a red bow tie" + }, + { + "label": "the dog is curious about what is behind the camera", + "pred": "a black dog wearing a red bow tie" + }, + { + "label": "blue truck rolling down the side of a city street", + "pred": "a blue and white truck driving down a street" + }, + { + "label": "a graffiti covered wall and parking meter are seen in this image", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a woman lays on a bed in her underwear", + "pred": "a naked woman laying on top of a bed" + }, + { + "label": "a dog wearing a red tie and standing on a pair of stairs", + "pred": "a black dog wearing a red bow tie" + }, + { + "label": "a parking meter has graffiti on it near a graffiti wall", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a dog sitting on top of stairs.] with a red bow tie", + "pred": "a black dog wearing a red bow tie" + }, + { + "label": "little girls sitting next to each other", + "pred": "two little boys wearing ties sitting next to each other" + }, + { + "label": "a man dressed as elvis sitting on top of a bull statue", + "pred": "a woman sitting on top of an elephant statue" + }, + { + "label": "a parking meter and wall that has graffiti on it", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "a cat drinking ice water out of a glass", + "pred": "a cat drinking water from a cup on a table" + }, + { + "label": "a grey colored cat that is drinking from a glass of water", + "pred": "a cat drinking water from a cup on a table" + }, + { + "label": "people is standing outside of a tram", + "pred": "a man standing on a platform next to a train" + }, + { + "label": "a cat is drinking something from a glass", + "pred": "a cat drinking water from a cup on a table" + }, + { + "label": "a young female in a pink skirt is holding an umbrella", + "pred": "a woman walking down the street with an umbrella" + }, + { + "label": "a man in a suit sitting a table with an empty bowl and empty beer bottles", + "pred": "a man sitting at a table with a bowl of soup" + }, + { + "label": "a train riding on a track near a platform", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a small cat sitting in the top of a banana tree", + "pred": "a banana tree with a bunch of bananas hanging from it" + }, + { + "label": "elephant displayed in window of city building near roadway", + "pred": "a large elephant standing in front of a window" + }, + { + "label": "a multi-colored black dog laying on top of the sand", + "pred": "a dog laying on top of a sandy beach" + }, + { + "label": "bovine look out over the hills on a cloudless sunny day", + "pred": "a herd of cattle grazing on a lush green hillside" + }, + { + "label": "a woman with a straw style hat sitting on a small row boat in the water and accessory items hanging behind her on the land area", + "pred": "a person sitting on a boat in the water" + }, + { + "label": "a train engine is on the railroad tracks", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "a person sits in a small boat on the water", + "pred": "a person sitting on a boat in the water" + }, + { + "label": "a clothes line with clothes hanging from it and cattle", + "pred": "a field with a bunch of animals on top of it" + }, + { + "label": "a statue of an elephant through a window in a store", + "pred": "a large elephant standing in front of a window" + }, + { + "label": "cows through a cloths line", + "pred": "a field with a bunch of animals on top of it" + }, + { + "label": "a person in a boat rowing away from shore", + "pred": "a person sitting on a boat in the water" + }, + { + "label": "clothes hanging on rope in third world country", + "pred": "a field with a bunch of animals on top of it" + }, + { + "label": "a cat sitting in a tree, staring at the camera", + "pred": "a banana tree with a bunch of bananas hanging from it" + }, + { + "label": "a man is walking his dog through the city", + "pred": "a man walking down a sidewalk with a dog" + }, + { + "label": "a stuffed elephant standing in a museum window", + "pred": "a large elephant standing in front of a window" + }, + { + "label": "a cat resting in the top of a palm tree on a clear day", + "pred": "a banana tree with a bunch of bananas hanging from it" + }, + { + "label": "a man walks his dog down the sidewalk", + "pred": "a man walking down a sidewalk with a dog" + }, + { + "label": "a man is walking a dog on a sidewalk", + "pred": "a man walking down a sidewalk with a dog" + }, + { + "label": "a couple is dressed in black and the male has a drink", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a yellow and burgundy train that is on tracks", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "washed clothing is hung out on a clothesline in a cattle enclosure", + "pred": "a field with a bunch of animals on top of it" + }, + { + "label": "a man walking his dog down a sidewalk", + "pred": "a man walking down a sidewalk with a dog" + }, + { + "label": "a man standing next to a woman in a gray dress", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a man walks a dog past rows of chairs outside a store", + "pred": "a man walking down a sidewalk with a dog" + }, + { + "label": "suitcases that are on a cart", + "pred": "a pile of luggage sitting on top of a building" + }, + { + "label": "a woman is carrying many packages in an office building", + "pred": "people are standing in an airport waiting for their luggage" + }, + { + "label": "a street with a shop that has a fake elephant in the window", + "pred": "a large elephant standing in front of a window" + }, + { + "label": "the view of an elephant's head through a display window", + "pred": "a large elephant standing in front of a window" + }, + { + "label": "a little green cart filled with assorted suitcases", + "pred": "a pile of luggage sitting on top of a building" + }, + { + "label": "yellow and brown train on the tracks looks it has eyes", + "pred": "a yellow and blue train traveling down train tracks" + }, + { + "label": "adults in public area with luggage and carts near stairway", + "pred": "people are standing in an airport waiting for their luggage" + }, + { + "label": "the man is loading luggage suitcases onto the cart in the parking lot", + "pred": "a man pushing a cart full of luggage" + }, + { + "label": "a little girl that is standing with an umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "seven suitcases are stacked on top of a dolly", + "pred": "a pile of luggage sitting on top of a building" + }, + { + "label": "a fat orange cat on a couch beside a tv remote", + "pred": "a cat sitting on top of a couch next to a laptop" + }, + { + "label": "a woman carrying luggage and many boxes in an airport", + "pred": "people are standing in an airport waiting for their luggage" + }, + { + "label": "a man who is lifting up a piece of luggage", + "pred": "a man pushing a cart full of luggage" + }, + { + "label": "group of men taking their suitcases out of a car", + "pred": "a man pushing a cart full of luggage" + }, + { + "label": "man unloading luggage onto an airport cart from a car", + "pred": "a man pushing a cart full of luggage" + }, + { + "label": "a little girl walking down a driveway carrying a pink umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a pile of suitcases that are stacked on a green roller", + "pred": "a pile of luggage sitting on top of a building" + }, + { + "label": "a person carrying a large stack of luggage", + "pred": "people are standing in an airport waiting for their luggage" + }, + { + "label": "two headless mannequins display fashionable clothing in front of a pink background", + "pred": "a man and a woman walking down a street" + }, + { + "label": "a woman pushing some luggage at the airport", + "pred": "people are standing in an airport waiting for their luggage" + }, + { + "label": "a grey cat laying down on a bed", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a cat sitting by a window watching the rain", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a cat lays down on a bed", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a green cart with old luggage on it standing by", + "pred": "a pile of luggage sitting on top of a building" + }, + { + "label": "tabby cat rests head on magenta pillow and looks at camera", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a cat on a window sill looking out the window", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a close shot of a cat laying on purple sheets", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "the bear is inside of the river stream", + "pred": "a brown bear swimming in a body of water" + }, + { + "label": "a parking meter at the edge of the ocean with a boat behind it", + "pred": "a parking meter sitting on top of a beach" + }, + { + "label": "a cat sitting in a window watching the rain drip on the window glass", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a cat laying in a bed", + "pred": "a cat that is laying down on a blanket" + }, + { + "label": "a parking meter sits next to the water", + "pred": "a parking meter sitting on top of a beach" + }, + { + "label": "a baby elephant being fed a bottle of milk", + "pred": "a man feeding a baby elephant with a bottle" + }, + { + "label": "the ocean sits near a sidewalk and viewing contraption", + "pred": "a parking meter sitting on top of a beach" + }, + { + "label": "a man is frowning while standing in an empty room", + "pred": "a man in a suit and tie standing in a room" + }, + { + "label": "when looking at mannequins without heads the clothing is superficial", + "pred": "a man and a woman walking down a street" + }, + { + "label": "a parking meter near a body of water", + "pred": "a parking meter sitting on top of a beach" + }, + { + "label": "a man in formal business attire stands in an office and looks angry", + "pred": "a man in a suit and tie standing in a room" + }, + { + "label": "a parking meter beside a walkway near the water", + "pred": "a parking meter sitting on top of a beach" + }, + { + "label": "a cat sits on a couch beside a notebook computer", + "pred": "a cat sitting on top of a couch next to a laptop" + }, + { + "label": "two men handling luggage in a parking structure", + "pred": "a man pushing a cart full of luggage" + }, + { + "label": "the bear standing in water is shaking it's fur", + "pred": "a brown bear swimming in a body of water" + }, + { + "label": "an elephant drinking from a white square bottle", + "pred": "a man feeding a baby elephant with a bottle" + }, + { + "label": "black cows standing in the grass of a pasture", + "pred": "cows standing in a grassy field" + }, + { + "label": "a little girl dressed in pink also has a pink umbrella", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "two mannequins featuring a display of fashionable clothing", + "pred": "a man and a woman walking down a street" + }, + { + "label": "a beach chair and umbrella sit for another day at the beach", + "pred": "a beach umbrella sitting on top of a sandy beach" + }, + { + "label": "a passenger train sitting on a track next to a building", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a train is in the train station with the lights on", + "pred": "a train on the tracks at a train station" + }, + { + "label": "the sun is about set on the beach", + "pred": "a beach umbrella sitting on top of a sandy beach" + }, + { + "label": "the man is feeding the elephant with milk", + "pred": "a man feeding a baby elephant with a bottle" + }, + { + "label": "a small girl is holding an umbrella over her head", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "black cows standing on the top of a grassy hill", + "pred": "cows standing in a grassy field" + }, + { + "label": "two cows in a large green grassy field", + "pred": "cows standing in a grassy field" + }, + { + "label": "headless statues show of clothing beneath a colored background", + "pred": "a man and a woman walking down a street" + }, + { + "label": "a brown bear shakes water off while swimming", + "pred": "a brown bear swimming in a body of water" + }, + { + "label": "young kitten along windowpane watching the rain tap on the glass", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a orange cat is laying on a grey sofa", + "pred": "a cat sitting on top of a couch next to a laptop" + }, + { + "label": "a brown bear shaking the water off his body", + "pred": "a brown bear swimming in a body of water" + }, + { + "label": "a baby elephant drinking milk out of a bottle", + "pred": "a man feeding a baby elephant with a bottle" + }, + { + "label": "a young girl carries and open unbrella while walking down an alley", + "pred": "a woman walking down a street holding an umbrella" + }, + { + "label": "a cat on a couch in front of a laptop", + "pred": "a cat sitting on top of a couch next to a laptop" + }, + { + "label": "a passenger sign on the tracks at a station", + "pred": "a train on the tracks at a train station" + }, + { + "label": "a cat sitting on a sill looking out a window", + "pred": "a cat sitting on a window sill looking out" + }, + { + "label": "a cat lying on a sofa in front of a computer", + "pred": "a cat sitting on top of a couch next to a laptop" + }, + { + "label": "cows that are wandering around a lot of pigeons", + "pred": "a flock of birds standing on top of a building" + }, + { + "label": "cat lethargically on comfy computer chair looking relaxed", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "a large brown cow standing in the middle of a flock of birds", + "pred": "a flock of birds standing on top of a building" + }, + { + "label": "a empty chair on the beach is under a parasol", + "pred": "a beach umbrella sitting on top of a sandy beach" + }, + { + "label": "a cat sitting on top of a black leather chair", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "an hand pets a cat in a suitcase", + "pred": "a black cat laying on top of a piece of luggage" + }, + { + "label": "a man speaks to some children on a farm", + "pred": "a man standing in front of a group of people" + }, + { + "label": "a plaza filled with a lot of birds and some cows", + "pred": "a flock of birds standing on top of a building" + }, + { + "label": "a train that is at a train station at night time", + "pred": "a train on the tracks at a train station" + }, + { + "label": "passenger rail train traveling through tunnel with lights in", + "pred": "a train on the tracks at a train station" + }, + { + "label": "the child smiles brightly while being handed a pink umbrella", + "pred": "a little girl holding an umbrella over her head" + }, + { + "label": "man in vest and tie standing in room", + "pred": "a man in a suit and tie standing in a room" + }, + { + "label": "birds that are around cows", + "pred": "a flock of birds standing on top of a building" + }, + { + "label": "a little girl that is standing under an umbrella", + "pred": "a little girl holding an umbrella over her head" + }, + { + "label": "an office view shows cubicles and overhead lights in the background, and to the front, a serious looking man with a beard, vest and colorful tie", + "pred": "a man in a suit and tie standing in a room" + }, + { + "label": "two cows are in a pasture and one is reaching his head to the side", + "pred": "cows standing in a grassy field" + }, + { + "label": "large canoe with many people on lake with trees lining shore", + "pred": "people on a boat in the water" + }, + { + "label": "a little girl smiling for the camera with an umbrella behind her", + "pred": "a little girl holding an umbrella over her head" + }, + { + "label": "a man wearing a gray vest and a red stripe tie", + "pred": "a man in a suit and tie standing in a room" + }, + { + "label": "a smiling child stands under a pink and red umbrella", + "pred": "a little girl holding an umbrella over her head" + }, + { + "label": "a woman walking a small white dog down a street", + "pred": "a woman walking down the street with a dog" + }, + { + "label": "what has attracted this many birds to the plaza", + "pred": "a flock of birds standing on top of a building" + }, + { + "label": "a cat sitting in an office chair", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "a cat that is laying down on a chair", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "a black puppy playing with a hand as it stands in a black suitcase", + "pred": "a black cat laying on top of a piece of luggage" + }, + { + "label": "a man talking to a group of kids as a cow stands in a cage", + "pred": "a man standing in front of a group of people" + }, + { + "label": "a child with a backpack underneath an umbrella", + "pred": "a little girl holding an umbrella over her head" + }, + { + "label": "a beach chair and umbrella sit empty near the water", + "pred": "a beach umbrella sitting on top of a sandy beach" + }, + { + "label": "green fields with shrubs and gentle rises and dips in the terrain has a large black cow standing on it, face-front, and a second one that is", + "pred": "cows standing in a grassy field" + }, + { + "label": "the bear is bathing in the cool mountain stream", + "pred": "a brown bear swimming in a body of water" + }, + { + "label": "people paddle a long canoe in a clear lake bordered by pine woods", + "pred": "people on a boat in the water" + }, + { + "label": "a woman is walking with a dog trailing behind her on a leash", + "pred": "a woman walking down the street with a dog" + }, + { + "label": "the sat is sitting in the computer chair", + "pred": "a cat sitting on a chair in a room" + }, + { + "label": "woman walking a small white dog behind her", + "pred": "a woman walking down the street with a dog" + }, + { + "label": "people in a large rowboat with oars", + "pred": "people on a boat in the water" + }, + { + "label": "a person reading a brown elephant a bottle filled with milk", + "pred": "a man feeding a baby elephant with a bottle" + }, + { + "label": "a woman in a halter top and bellbottoms is walking her dog", + "pred": "a woman walking down the street with a dog" + }, + { + "label": "a beach chair with an umbrella on a beach by the water", + "pred": "a beach umbrella sitting on top of a sandy beach" + }, + { + "label": "a grass yard area that has several open umbrellas laid on the grass and various people around the roadway area", + "pred": "people standing on top of a lush green field" + }, + { + "label": "an outdoor area with a large bear and two smaller bears facing the wooded tree area", + "pred": "a bear that is standing in the woods" + }, + { + "label": "the person has a bag and some magazines laying on the table", + "pred": "a black cat laying on top of a piece of luggage" + }, + { + "label": "the man is talking to the crowd of people", + "pred": "a man standing in front of a group of people" + }, + { + "label": "two fashion mannequins dressed in garments on a runway", + "pred": "a man and a woman walking down a street" + }, + { + "label": "a woman with headphones in walking her white dog", + "pred": "a woman walking down the street with a dog" + }, + { + "label": "a man pets a cat over a bag", + "pred": "a black cat laying on top of a piece of luggage" + }, + { + "label": "a man talks in front of a group of kids", + "pred": "a man standing in front of a group of people" + }, + { + "label": "people are sitting on a trolly outside", + "pred": "a man is sitting in the back of a bus" + }, + { + "label": "umbrellas it in a park area", + "pred": "people standing on top of a lush green field" + }, + { + "label": "bears stand on a tree log", + "pred": "a bear that is standing in the woods" + }, + { + "label": "a person's hand is wrapped around the head of a puppy", + "pred": "a black cat laying on top of a piece of luggage" + }, + { + "label": "a man stands and holds his hands out in front of him", + "pred": "a man standing in front of a group of people" + }, + { + "label": "photography equipment and a light sitting in a room", + "pred": "a black and white cat sitting under an open umbrella" + }, + { + "label": "a big boat with some luggage inside of it", + "pred": "a man is sitting in the back of a bus" + }, + { + "label": "an adult and two baby elephants standing near a fence", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a big boat full of a lot of people", + "pred": "people on a boat in the water" + }, + { + "label": "a large umbrella set up with a black light", + "pred": "a black and white cat sitting under an open umbrella" + }, + { + "label": "three women wearing long dresses standing behind a dog", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "an elephant leads a baby elephant towards a door", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "women wearing distinctive clothing standing behind a dog", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "a big elephant is being followed by two little elephants", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a family of elephants walking next to each other", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "a light that is sitting underneath a umbrella", + "pred": "a black and white cat sitting under an open umbrella" + }, + { + "label": "it is a lighting rig setup by a photographer", + "pred": "a black and white cat sitting under an open umbrella" + }, + { + "label": "a park with yellow umbrellas on the grass and onlookers", + "pred": "people standing on top of a lush green field" + }, + { + "label": "bears walking over downed trees in a forest", + "pred": "a bear that is standing in the woods" + }, + { + "label": "a digital camera beside an umbrella type photography lighting equipment", + "pred": "a black and white cat sitting under an open umbrella" + }, + { + "label": "people are standing next to a dog", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "women that are behind a dog", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "a truck that is sitting in the street", + "pred": "a semi truck driving down a street next to a fence" + }, + { + "label": "a thick evergreen forest marks the boundary of a dark expanse of water, on which rests a long boat with packages at the rear and people to the fore", + "pred": "people on a boat in the water" + }, + { + "label": "a covered area with a guitar and other luggage", + "pred": "a man is sitting in the back of a bus" + }, + { + "label": "two people in a wooden boat with sails on some water", + "pred": "a sailboat floating on top of a body of water" + }, + { + "label": "a lush green field full of yellow umbrellas", + "pred": "people standing on top of a lush green field" + }, + { + "label": "a family of bears walking through a forest with lots of trees", + "pred": "a bear that is standing in the woods" + }, + { + "label": "a skateboarder's airborne feet and skateboard near a curb", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a herd of elephants standing on top of a field", + "pred": "elephants walking through a grassy field" + }, + { + "label": "a man that is sailing on a boat in the water", + "pred": "a sailboat floating on top of a body of water" + }, + { + "label": "a boat that is sitting in the water with a sail", + "pred": "a sailboat floating on top of a body of water" + }, + { + "label": "a number of horses standing near one another", + "pred": "elephants walking through a grassy field" + }, + { + "label": "a herd of black and white cows eating dry grass", + "pred": "a herd of cattle eating hay from a trough" + }, + { + "label": "black and yellow umbrellas open on the grass of a park", + "pred": "people standing on top of a lush green field" + }, + { + "label": "forest creatures near a downed tree in the woods", + "pred": "a bear that is standing in the woods" + }, + { + "label": "two elephants that are pressing their heads together", + "pred": "elephants walking through a grassy field" + }, + { + "label": "three women in long skirts and a dog standing near a christmas tree", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "a person standing close to an elephant", + "pred": "a woman standing next to an elephant at a zoo" + }, + { + "label": "a person jumping a skate board in the air", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "elephants standing in the grass", + "pred": "elephants walking through a grassy field" + }, + { + "label": "a man that has glasses and a hat", + "pred": "a man wearing a suit and tie" + }, + { + "label": "cows that are standing in the grass", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "sail boat of older design, in middle of expansive bay", + "pred": "a sailboat floating on top of a body of water" + }, + { + "label": "stylish man looking into camera with blurred background", + "pred": "a man wearing a suit and tie" + }, + { + "label": "people who are riding on a sail boat", + "pred": "a sailboat floating on top of a body of water" + }, + { + "label": "a man wearing a cat and sunglasses with a red neck tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "a number of cows behind a fence near one another", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "cows and a horse are eating hay", + "pred": "a herd of cattle eating hay from a trough" + }, + { + "label": "skateboard in middle of maneuver in the air with rider", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "an adult giraffe standing next to a small elephant", + "pred": "a baby elephant standing next to an adult elephant" + }, + { + "label": "duffel bags and other equipment on a long boat", + "pred": "a man is sitting in the back of a bus" + }, + { + "label": "a person wearing a bow tie", + "pred": "a man wearing a bow tie posing for a picture" + }, + { + "label": "elephants out in a large field", + "pred": "elephants walking through a grassy field" + }, + { + "label": "a white truck pulling double orange trailers down the road", + "pred": "a semi truck driving down a street next to a fence" + }, + { + "label": "a cat sitting on the back of a sofa looking out a window", + "pred": "a cat that is sitting on top of a couch" + }, + { + "label": "a man in a blue shirt and red tie", + "pred": "a man wearing a suit and tie" + }, + { + "label": "cows are in a grassy field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "cows and ponies are eating hay in the barn", + "pred": "a herd of cattle eating hay from a trough" + }, + { + "label": "people riding on top of a train", + "pred": "a man is sitting in the back of a bus" + }, + { + "label": "a man posing for a selfie in a jacket and bow tie", + "pred": "a man wearing a bow tie posing for a picture" + }, + { + "label": "a man that has a suit and a bow tie", + "pred": "a man wearing a bow tie posing for a picture" + }, + { + "label": "a man does a trick on his skate board", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a tractor truck carrying an extra trailer down a street", + "pred": "a semi truck driving down a street next to a fence" + }, + { + "label": "a guy looking to the side and smiling", + "pred": "a man wearing a bow tie posing for a picture" + }, + { + "label": "a man is posing for a camera in a room", + "pred": "a man wearing a bow tie posing for a picture" + }, + { + "label": "a man with a plaid hat, tie, dress shirt and glasses on", + "pred": "a man wearing a suit and tie" + }, + { + "label": "an elephant in a zoo walks around slowly", + "pred": "a woman standing next to an elephant at a zoo" + }, + { + "label": "a large elephant that is next to a curb", + "pred": "a woman standing next to an elephant at a zoo" + }, + { + "label": "a woman is watching an elephant in an enclosure", + "pred": "a woman standing next to an elephant at a zoo" + }, + { + "label": "a woman looking at an elephant in its enclosure", + "pred": "a woman standing next to an elephant at a zoo" + }, + { + "label": "the animals are grazing on the wheat grain", + "pred": "a herd of cattle eating hay from a trough" + }, + { + "label": "a horse and several cows feed on hay", + "pred": "a herd of cattle eating hay from a trough" + }, + { + "label": "a kitten that is sitting down by a door", + "pred": "a person holding a piece of paper next to a door" + }, + { + "label": "cat perched on the sofa looking out of the window", + "pred": "a cat that is sitting on top of a couch" + }, + { + "label": "a cat that is looking out the window", + "pred": "a cat that is sitting on top of a couch" + }, + { + "label": "a woman in business attire riding a bicycle", + "pred": "a woman riding a bicycle down a street" + }, + { + "label": "the men are checking in on the herd of cows", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a cat looks at a person holding a bottle", + "pred": "a person holding a piece of paper next to a door" + }, + { + "label": "the cat is laying in the sun by the open door", + "pred": "a person holding a piece of paper next to a door" + }, + { + "label": "the woman is riding a bike in a dress", + "pred": "a woman riding a bicycle down a street" + }, + { + "label": "a person in a dress rides on a bike", + "pred": "a woman riding a bicycle down a street" + }, + { + "label": "a cat that is laying on a couch", + "pred": "a cat that is sitting on top of a couch" + }, + { + "label": "a man with a guitar in front of a microphone", + "pred": "a man in a red shirt is playing a guitar" + }, + { + "label": "a hand holding a water bottle in front of a cat", + "pred": "a person holding a piece of paper next to a door" + }, + { + "label": "a white and red truck is driving down the road", + "pred": "a semi truck driving down a street next to a fence" + }, + { + "label": "a guy plays guitar on the stage center", + "pred": "a man in a red shirt is playing a guitar" + }, + { + "label": "a cat is rinsed off with soap and aqua", + "pred": "a person holding a piece of paper next to a door" + }, + { + "label": "two men are standing near the pasture of cows", + "pred": "a herd of cattle standing in a field" + }, + { + "label": "a man is playing a guitar on a stage", + "pred": "a man in a red shirt playing a guitar" + }, + { + "label": "a black and tan dog sits in an easy chair near a window with a polka dot shade", + "pred": "a dog that is laying down on a couch" + }, + { + "label": "a person that is standing on a skateboard", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "cows grazing in a field near a body of water", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a truck with two trailers moves down a road", + "pred": "a large semi truck driving down a street" + }, + { + "label": "animals standing in the grass near a lake", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "three little kids that have different ties on", + "pred": "two young men are playing frisbee together" + }, + { + "label": "large dog in a brown chair by a window", + "pred": "a dog that is laying down on a couch" + }, + { + "label": "a dogs tongue is sticking out and smiling while sitting on a chair", + "pred": "a dog that is laying down on a couch" + }, + { + "label": "man wearing a white shirt and black tie playing a guitar", + "pred": "a man in a red shirt playing a guitar" + }, + { + "label": "the dog is sitting on a brown easy chair beside a window", + "pred": "a dog that is laying down on a couch" + }, + { + "label": "graham black cat sitting on an orange couch looking out the window", + "pred": "a cat that is laying down on a couch" + }, + { + "label": "an older woman rides a bicycle down the street", + "pred": "a woman riding a bicycle down a street" + }, + { + "label": "cows grazing on grass near water with trees", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a young man singing and playing the guitar", + "pred": "a man in a red shirt playing a guitar" + }, + { + "label": "a woman wearing a dress is riding a bike", + "pred": "a woman riding a bicycle down a street" + }, + { + "label": "a windblown inverted umbrella mounted on a pole with city buildings behind", + "pred": "a red umbrella sitting on top of a building" + }, + { + "label": "a jumping boy wearing three different neck ties", + "pred": "two young men are playing frisbee together" + }, + { + "label": "an elephant in a field near many bushes", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "brown and black dog sitting on the brown couch by itself", + "pred": "a dog that is laying down on a couch" + }, + { + "label": "a herd of cows graze lazily by the pond", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a dog is laying with a remote controller", + "pred": "a dog laying on a couch with a remote" + }, + { + "label": "a herd of cattle grazing on top of a grass covered field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a red train is docked at the station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "men in ties are outside", + "pred": "a man and woman standing next to each other" + }, + { + "label": "two trucks parked next to each other on a dirt road", + "pred": "a truck is parked on the side of the road" + }, + { + "label": "a large elephant moving through the grassy plains", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "two commercial trucks trucks parked next to each other", + "pred": "a truck is parked on the side of the road" + }, + { + "label": "a dog is laying down with the remote control", + "pred": "a dog laying on a couch with a remote" + }, + { + "label": "a brown and black cat laying on laptop next to a chair", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a little girl holds up a big blue umbrella", + "pred": "a little girl holding an umbrella in the rain" + }, + { + "label": "a cat is curled up next to a laptop computer", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "three boys jumping in the air while wearing ties", + "pred": "two young men are playing a game of frisbee" + }, + { + "label": "the elephant walks on a big grass field", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "people stand by a train in a train station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "an elephant in a grassy area with trees around", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "a cat sleeping on the edge of a laptop computer", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a big elephant makes its way across the road with onlookers in the car", + "pred": "a large elephant walking down a road next to a car" + }, + { + "label": "a car on road passing by an elephant with mountains", + "pred": "a large elephant walking down a road next to a car" + }, + { + "label": "a big elephant walks on the road during a safari", + "pred": "a large elephant walking down a road next to a car" + }, + { + "label": "two utility trucks on pavement with sky", + "pred": "a tow truck is parked on the side of the road" + }, + { + "label": "a person looks at a very big computer monitor", + "pred": "a person sitting in front of a computer screen" + }, + { + "label": "a red and yellow train on a track at a platform", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a royal mail train sits in a train yard", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "a young girl stands with her arms wrapped around a large blue umbrella", + "pred": "a little girl holding an umbrella in the rain" + }, + { + "label": "a train covered in black dirt sitting in a fancy train station", + "pred": "a train that is sitting on the tracks" + }, + { + "label": "an elephant walking down the road, with a car next to it", + "pred": "a large elephant walking down a road next to a car" + }, + { + "label": "two men wearing ties cross the street at night", + "pred": "a man and woman standing next to each other on a sidewalk" + }, + { + "label": "a car on a road passes a standing elephant", + "pred": "a large elephant walking down a road next to a car" + }, + { + "label": "a stuffed animal is in front of a notebook computer", + "pred": "a person sitting in front of a computer screen" + }, + { + "label": "a cat curled up by the keyboard of a laptop", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a small elephant standing on top of a grass covered field", + "pred": "a large elephant standing in a grassy field" + }, + { + "label": "two formally dressed guys are crossing the street", + "pred": "a man and woman standing next to each other on a sidewalk" + }, + { + "label": "a bear is sitting in front of a computer", + "pred": "a person sitting in front of a computer screen" + }, + { + "label": "a sculpture resembling an umbrella stands in the middle of a plaza", + "pred": "a red umbrella hanging from the side of a building" + }, + { + "label": "a teddy bear sitting in front of an open laptop computer", + "pred": "a person sitting in front of a computer screen" + }, + { + "label": "an umbrella sculpture is displayed on a post", + "pred": "a red umbrella hanging from the side of a building" + }, + { + "label": "three boys dressed in jeans and ties pose", + "pred": "two young men are playing a game of frisbee" + }, + { + "label": "a dog lies down holding a remote control in its paws", + "pred": "a dog laying on a couch with a remote" + }, + { + "label": "two men walking through a crosswalk at night", + "pred": "a man and woman standing next to each other on a sidewalk" + }, + { + "label": "a cat sleeping with its head resting on a sneaker", + "pred": "a cat laying on top of a pair of shoes" + }, + { + "label": "a herd of elephants walking away from a watering hole", + "pred": "a herd of elephants standing on top of a dirt field" + }, + { + "label": "a person who is sitting and looking up at a computer monitor", + "pred": "a person sitting in front of a computer screen" + }, + { + "label": "a cat that is laying with its head upon a sneaker", + "pred": "a cat laying on top of a pair of shoes" + }, + { + "label": "a close up from knees up front view of an elephant with trunk forward, outside on dirt, with other elephants, grass, bushes and white-blue sky", + "pred": "a herd of elephants standing on top of a dirt field" + }, + { + "label": "two men standing on the street wearing a suit and tie", + "pred": "a man and woman standing next to each other on a sidewalk" + }, + { + "label": "the cog is getting cozy with the remote control", + "pred": "a dog laying on a couch with a remote" + }, + { + "label": "the three boys are creating their own dance moves", + "pred": "two young men are playing a game of frisbee" + }, + { + "label": "a cat sleeping on the ground using a shoe as a pillow", + "pred": "a cat laying on top of a pair of shoes" + }, + { + "label": "a red umbrella is inside out in a city", + "pred": "a red umbrella hanging from the side of a building" + }, + { + "label": "couple of white trucks are parked outside together", + "pred": "a tow truck is parked on the side of the road" + }, + { + "label": "garbage trucks sitting in a landfill", + "pred": "a tow truck is parked on the side of the road" + }, + { + "label": "a cat is laying on a white shoe", + "pred": "a cat laying on top of a pair of shoes" + }, + { + "label": "an inside out umbrella sculpture on a city street", + "pred": "a red umbrella hanging from the side of a building" + }, + { + "label": "a nat naps with his head on a sneaker", + "pred": "a cat laying on top of a pair of shoes" + }, + { + "label": "a girl in a pink shirt holding a blue umbrella", + "pred": "a little girl holding an umbrella in the rain" + }, + { + "label": "a dog sitting on a couch with its head cocked to the side", + "pred": "a brown dog laying on top of a couch" + }, + { + "label": "an elephant is seen head on amongst other elephants", + "pred": "a herd of elephants standing on top of a dirt field" + }, + { + "label": "a dog laying on its side with a remote control under its paw", + "pred": "a dog laying on a couch with a remote" + }, + { + "label": "cat sleeping in front of a powered on laptop computer", + "pred": "a cat laying on top of a laptop computer" + }, + { + "label": "a little girl who is holding an umbrella", + "pred": "a little girl holding an umbrella in the rain" + }, + { + "label": "a brown dog looking sad while laying on a couch", + "pred": "a brown dog laying on top of a couch" + }, + { + "label": "a little girl with a big, blue umbrella", + "pred": "a little girl holding an umbrella in the rain" + }, + { + "label": "a dog that is wearing a dog collar smiling", + "pred": "a brown and black dog standing next to a person" + }, + { + "label": "elephants walking along a dirt path next to water", + "pred": "a herd of elephants standing on top of a dirt field" + }, + { + "label": "elephants walking together in a line near water", + "pred": "a herd of elephants standing on top of a dirt field" + }, + { + "label": "the dog is laying down on the couch in the room", + "pred": "a brown dog laying on top of a couch" + }, + { + "label": "a black and brown dog is wearing a heavy metal collar", + "pred": "a brown and black dog standing next to a person" + }, + { + "label": "a dog is looking at the camera sadly", + "pred": "a brown dog laying on top of a couch" + }, + { + "label": "an orange dog sitting on a couch or chair, looking at the camera", + "pred": "a brown dog laying on top of a couch" + }, + { + "label": "a medium sized dog is standing with some people", + "pred": "a brown and black dog standing next to a person" + }, + { + "label": "a black and brown dog wearing a chain around it's neck", + "pred": "a brown and black dog standing next to a person" + }, + { + "label": "a big dog next to a person's leg", + "pred": "a brown and black dog standing next to a person" + }, + { + "label": "a dog lying on a couch with blankets and pillows", + "pred": "a dog sleeping on a couch in a living room" + }, + { + "label": "united states president barack obama gives a speech in front of american and russian flags", + "pred": "a man in a suit talking on a microphone" + }, + { + "label": "a black cat licks some sugared doughnut holes", + "pred": "a cat sitting next to a stuffed animal" + }, + { + "label": "a man standing outside a building holding a bicycle", + "pred": "a man standing next to a bicycle in front of a house" + }, + { + "label": "men in white outfits are near very old cars", + "pred": "a man walking down a street next to a bunch of parked cars" + }, + { + "label": "women worker looking at rear view mirror smiling", + "pred": "a woman standing in front of a yellow bus" + }, + { + "label": "a brown cat is sitting on a wood floor", + "pred": "a cat sitting on the floor next to a stove" + }, + { + "label": "a postbox sitting on the side of a street", + "pred": "a red fire hydrant sitting on the side of a road" + }, + { + "label": "a young child who is holding an umbrella", + "pred": "a little girl standing in the woods holding an umbrella" + }, + { + "label": "a cat lying in the sun on a table", + "pred": "a cat laying on top of a table next to a computer" + }, + { + "label": "the men sit at a table with their phones in their hands", + "pred": "a man in a suit and tie sitting at a table" + }, + { + "label": "a man holding a large umbrella with some girls and a woman underneath", + "pred": "people with umbrellas standing in the rain" + }, + { + "label": "a small yellow boat on the water carrying passengers", + "pred": "a small boat in the middle of a river" + }, + { + "label": "a big truck with some branches in the back of it", + "pred": "a truck filled with hay on the side of the road" + }, + { + "label": "three cats hanging out on a teal comforter", + "pred": "a cat laying on top of a bed next to a dog" + }, + { + "label": "a man sits on a couch with a couple of cats", + "pred": "a man sitting on a couch with a cat" + }, + { + "label": "a dairy cow sticking its tongue out from inside its stall", + "pred": "a herd of cattle standing next to each other in a barn" + }, + { + "label": "a cat looking at a dog as it sniffs the floor", + "pred": "a cat sitting on the floor next to a cat laying on the floor" + }, + { + "label": "two men shaking hands after a dinner speech", + "pred": "a man in a suit and tie standing in front of a group of people" + }, + { + "label": "bulls riding on the street along with cars and buses and a man on a bike giving an girl a ride", + "pred": "a herd of cattle walking down a street" + }, + { + "label": "a woman and girl standing with luggage and giving a peace sign", + "pred": "two women standing next to each other holding luggage" + }, + { + "label": "the red suitcases are setting in a corner, waiting to be bought for a trip", + "pred": "a man standing next to a pile of luggage" + }, + { + "label": "a man sitting at a wooden bench and table with an open umbrella sitting on the table", + "pred": "a man sitting on a bench under an umbrella" + }, + { + "label": "the street is lined with parking meters", + "pred": "a parking meter sitting on the side of a road" + }, + { + "label": "a coin meter that has paint all over it", + "pred": "a graffiti covered wall with graffiti on it" + }, + { + "label": "people that are riding some horses", + "pred": "a herd of horses walking down a dirt road" + }, + { + "label": "a train station with people standing on a platform beside a train", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "a black brown and white dog wearing a pink and white jacket", + "pred": "a brown and white dog sitting in a purse" + }, + { + "label": "a yellow train next to a platform with two men wearing orange jackets and another man standing next to them", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "rail workers stand on a platform where a train is waiting", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "two men in orange vests are next to a train", + "pred": "a man standing next to a train at a train station" + }, + { + "label": "a van parked in a outdoor parking lot", + "pred": "a white truck parked in a parking lot" + }, + { + "label": "a sheepdog runs around a herd of cows in a fenced-in field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a border collie runs around a small herd of cows in the yard", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a dog and some cattle by a fence", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a dog runs around a herd of cows in a field", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "cows in a field being rounded up by a herding dog", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "the men are up to their knees in the water", + "pred": "a man and a woman playing frisbee in the water" + }, + { + "label": "a young man performing tricks on a skateboard", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "baseballs players sliding to base and jumping during the game", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "a polar bear standing by rocks in a grassy habitat", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "three men are wading in water reaching for a frisbee", + "pred": "a man and a woman playing frisbee in the water" + }, + { + "label": "a woman stands on a snow covered hill", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a horse standing in a field by a fence", + "pred": "a horse standing on top of a lush green field" + }, + { + "label": "a skier on a snow covered mountain resort", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "pictures of different types of prepared food containing beans", + "pred": "a collage of photos of different foods" + }, + { + "label": "a teenager doing skateboard tricks at a skate park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "baseball players, one on the ground, one in the air", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "three pictures of entrees with tomatoes, black beans, and broccoli", + "pred": "a collage of photos of different foods" + }, + { + "label": "a collage of a skateboarders trick on his skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a young man skateboarding at a public park", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a kid skateboarding while other kids stand and watch", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "two men playing frisbee in the water. one man walking away", + "pred": "a man and a woman playing frisbee in the water" + }, + { + "label": "a white bear standing beside some large rocks and a waterfall", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "three pictures of plates with salads, including beans, fish and vegetables", + "pred": "a collage of photos of different foods" + }, + { + "label": "a teenager is doing a wheelie on a skateboard", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "the skier is at the bottom of the mountain in the snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a cross country skier move across a snow covered ground", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "different types of foods and vegetables side by side", + "pred": "a collage of photos of different foods" + }, + { + "label": "a skier in a white jacket stands on a snowy slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a brown horse with blonde hair standing in an open field", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "two boys skateboarding on a ramp at a skate park", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a boy on a skateboard at a skatepark", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a single horse leaning against a wooden fence", + "pred": "a horse standing on top of a lush green field" + }, + { + "label": "woman poses during a cross country ski run", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "dog smiles while sleeping in a bed room", + "pred": "a dog laying on a blanket on a bed" + }, + { + "label": "two skateboarders doing tricks at a skate park", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a woman wearing skis on a snowy mountain posing for the camera", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "the shirtless man plays frisbee in the water", + "pred": "a man and a woman playing frisbee in the water" + }, + { + "label": "a man in shallow water bending over to pick up a frisbee", + "pred": "a man and a woman playing frisbee in the water" + }, + { + "label": "people riding on a double decker bus on a bridge", + "pred": "a man standing on a platform next to a train" + }, + { + "label": "a boy on a bike watches a boy on a skateboard go over a ramp", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a brown horse walking outside in the grass", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a horse looking over a fence on a snowy day", + "pred": "a horse standing on top of a lush green field" + }, + { + "label": "a boy is doing a trick on his skateboard", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a polar bear is standing next to a rock", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a skate boarding teenagers goes airborne on his skate board", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "three different pictures of bean salad on a plate", + "pred": "a collage of photos of different foods" + }, + { + "label": "baseball scene with player sliding in and a catcher jumping up in mid air", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "a skier stands on skis on a snowy path", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a horse in a snowy paddock looking over the fence", + "pred": "a horse standing on top of a lush green field" + }, + { + "label": "a horse standing in a snowy pasture looking over a fence", + "pred": "a horse standing on top of a lush green field" + }, + { + "label": "a white polar bear is standing in the grass", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a woman is on skis on the ski slope", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a large boxer dog takes a nap on the bed", + "pred": "a dog laying on a blanket on a bed" + }, + { + "label": "a polar bear standing near a rock and grass", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "two women playing with a frisbee in a field", + "pred": "a man and a woman playing frisbee in a field" + }, + { + "label": "a lone horse walking through a grassy field", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a person riding a brown horse with blonde hair in a green field", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "baseball players slide, and jump near a base", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "a street car filled with people is stopped on a bridge", + "pred": "a man standing on a platform next to a train" + }, + { + "label": "group of people standing on a train behind a white horse", + "pred": "a man standing on a platform next to a train" + }, + { + "label": "woman sitting ontop of a large brown and white horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "people riding a trolley being pulled by a horse", + "pred": "a man standing on a platform next to a train" + }, + { + "label": "two baseball players one catching the ball the other sliding into base", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "horse with odd striped head and white body in a sanctuary", + "pred": "a white and black horse standing next to a fence" + }, + { + "label": "a smiling woman is on a brown horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a brown horse with a white mane is on the grass", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "the child sits on the horse in the pasture", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "two stuffed animal dogs reading a picture book about dogs", + "pred": "a teddy bear sitting on top of a pile of books" + }, + { + "label": "a woman on a horse smiling in a green grass", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "stuffed animals looking a pictures of other animals in a book", + "pred": "a teddy bear sitting on top of a pile of books" + }, + { + "label": "a man is at the bottom a ski slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a zebra with a striped face and pure white neck and mane", + "pred": "a white and black horse standing next to a fence" + }, + { + "label": "a boy skate boarding high into the air", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a skateboarder executing a jump trick at a park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "two stuffed dogs under a blanket looking at a picture book", + "pred": "a teddy bear sitting on top of a pile of books" + }, + { + "label": "a dog sleeps on a bed with some blankets", + "pred": "a dog laying on a blanket on a bed" + }, + { + "label": "two teenagers playing in a grassy field while a fribee flies their way", + "pred": "a man and a woman playing frisbee in a field" + }, + { + "label": "two girls playing frisbee out in the sun", + "pred": "a man and a woman playing frisbee in a field" + }, + { + "label": "an animal with stripes like a zebra on it's head, and a white body", + "pred": "a white and black horse standing next to a fence" + }, + { + "label": "a dog sleeping on a bed on top of fluffy blankets", + "pred": "a dog laying on a blanket on a bed" + }, + { + "label": "a zebra but the everything after the head is pure white", + "pred": "a white and black horse standing next to a fence" + }, + { + "label": "three fish and vegetables on a silver tray", + "pred": "a plate of fish and vegetables on a table" + }, + { + "label": "a boy who is skateboarding does a trick", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a person skiing in an open area of snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a tray of fish, with a side of vegetables", + "pred": "a plate of fish and vegetables on a table" + }, + { + "label": "a pitcher about to pitch in a baseball game", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a baseball pitcher standing on the pitcher's mound palming a ball", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "cooked fish in a tray", + "pred": "a plate of fish and vegetables on a table" + }, + { + "label": "an older man is skiing down a snowy mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "an older man downhill skiing down a slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a very green hillside in the day time", + "pred": "a herd of animals grazing on a lush green hillside" + }, + { + "label": "three people on a field of green grass", + "pred": "a man and a woman playing frisbee in a field" + }, + { + "label": "a woman with a rope leading a horse", + "pred": "a woman standing next to a white horse" + }, + { + "label": "two stuffed animals posed looking at book with other animals", + "pred": "a teddy bear sitting on top of a pile of books" + }, + { + "label": "a foil plate holding fried fish and vegetables", + "pred": "a plate of fish and vegetables on a table" + }, + { + "label": "a professional baseball pitches is taking the mound", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a woman walking a horse on some property with trees", + "pred": "a woman standing next to a white horse" + }, + { + "label": "a woman in high heels is leading a white horse with a rope", + "pred": "a woman standing next to a white horse" + }, + { + "label": "a large dog sleeps on a duvet comforter", + "pred": "a dog laying on a blanket on a bed" + }, + { + "label": "a man skiing down a snowy hill alone", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two stuffed animals are posed on an open book", + "pred": "a teddy bear sitting on top of a pile of books" + }, + { + "label": "a woman leading a horse through an exercise yard", + "pred": "a woman standing next to a white horse" + }, + { + "label": "a boston red sox pitcher standing on the mound", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a zebra is next to fences standing on white ground", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a zebra standing in an enclosed area with fences", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a skateboarder is riding along the top of a rail", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "an attractive young woman leads a grey horse through a paddock", + "pred": "a woman standing next to a white horse" + }, + { + "label": "animals are grazing in a large field", + "pred": "a herd of animals grazing on a lush green hillside" + }, + { + "label": "parkour while skating on a rail in urban", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "a skateboarder is grinding on a black rail", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "a skater is attempting a rail grind", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "the stripes on the zebra almost disappear on its legs", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a man riding a skateboard down a metal hand rail next to some buildings", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "one girl trying to block another girl from catching a frisbee", + "pred": "a man and a woman playing frisbee in a field" + }, + { + "label": "people standing around each other in skis", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a half eaten banana being held by a human hand", + "pred": "a person holding a banana in their hand" + }, + { + "label": "a grassy hill side with some animals in the distance", + "pred": "a herd of animals grazing on a lush green hillside" + }, + { + "label": "a lush green valley surrounded by tall mountains", + "pred": "a herd of animals grazing on a lush green hillside" + }, + { + "label": "a opened peeld banana half way eatened", + "pred": "a person holding a banana in their hand" + }, + { + "label": "a partially eaten and peeled banana being held by someone", + "pred": "a person holding a banana in their hand" + }, + { + "label": "a zebra standing on the ground inside a fence", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a mob of skier skiing down a snow covered mountain side", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a zebra standing over a puddle in an enclosure", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "three snow skiers and two are shaking hands", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a scenic view of a valley with mountains in the distance", + "pred": "a herd of animals grazing on a lush green hillside" + }, + { + "label": "two skiers giving each other a high five", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a man and a woman cutting up a big sheet cake", + "pred": "two men in uniform cutting a cake together" + }, + { + "label": "a large group of people skiing along a snowy ridge", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a woman's hand holding a half peeled banana with a large bite out of it", + "pred": "a person holding a banana in their hand" + }, + { + "label": "servers cut and plate some birthday cake slices", + "pred": "two men in uniform cutting a cake together" + }, + { + "label": "a table filled with a cake and paper plates with ice cream and cake", + "pred": "a person sitting on a bench with a bunch of food on it" + }, + { + "label": "a plate filled with a bowl of vegetables and two slices of bread with a spread on them", + "pred": "a plate of food on a table" + }, + { + "label": "people with ski and snowboard equipment shaking hands", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a skateboarder performing a trick on a skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a vase of red flowers sits on a bathroom countertop", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a skateboarder performing a trick down a concrete staircase", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "broccoli in a bowl and two crackers with spreads on a plate", + "pred": "a plate of food on a table" + }, + { + "label": "a skateboarder doing a trick next to steps", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "someone holding a half eaten banana in their hand", + "pred": "a person holding a banana in their hand" + }, + { + "label": "a skateboarder wearing a dc shirt is doing tricks on a rail", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a pizza is prepared with cheese, tomato sauce, and broccoli", + "pred": "a pizza sitting on top of a pan on a table" + }, + { + "label": "a healthy plate of guacamole, broccoli, and toast", + "pred": "a plate of food on a table" + }, + { + "label": "military personnel cutting up pieces of cake to be passed out", + "pred": "two men in uniform cutting a cake together" + }, + { + "label": "two people are cutting into a large cake", + "pred": "two men in uniform cutting a cake together" + }, + { + "label": "cather preparing to catch ball in an empty field", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a young man riding a skateboard down a rail", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "skiers greeting each other on the slope", + "pred": "a number of people on skis in the snow" + }, + { + "label": "zebras walking away from trees", + "pred": "zebra standing next to each other" + }, + { + "label": "a pizza is split down the middle is shown", + "pred": "a pizza sitting on top of a pan on a table" + }, + { + "label": "an empty plate with a fork is shown in between two children", + "pred": "a person sitting on a bench with a bunch of food on it" + }, + { + "label": "a table with a large cake and small plates of cake", + "pred": "a person sitting on a bench with a bunch of food on it" + }, + { + "label": "three zebras stand side by side looking at the camera", + "pred": "zebra standing next to each other" + }, + { + "label": "a plate with a bowl filled with broccoli and two crackers with a spread", + "pred": "a plate of food on a table" + }, + { + "label": "a large group of skiers gather at the top of a hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "plate containing bread covered in some type of spread and cooked broccoli", + "pred": "a plate of food on a table" + }, + { + "label": "a baseball player on a baseball field fielding a baseball", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a pizza covered with lots of broccoli sitting on a kitchen counter", + "pred": "a pizza sitting on top of a pan on a table" + }, + { + "label": "the skiers stood on top of the mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a baseball player wearing a catchers mitt in a baseball field", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a pair of military personnel cutting and serving a cake", + "pred": "two men in uniform cutting a cake together" + }, + { + "label": "two military personnel cutting and serving cake", + "pred": "two men in uniform cutting a cake together" + }, + { + "label": "a half broccoli half cheese pizza that needs to be cooked", + "pred": "a pizza sitting on top of a pan on a table" + }, + { + "label": "red flowers sitting in a vase with a red wall behind them", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "three zebra standing side by side on a dirt field next to a flowery forest", + "pred": "zebra standing next to each other" + }, + { + "label": "an aquarium full of water and fish", + "pred": "a bird perched on top of a bunch of fish" + }, + { + "label": "a baseball player standing on the field in uniform", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "the vanity is decorated with a red flower arrangement and glass candles and perfume bottles", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "tied together broccoli inside an aquarium with fish", + "pred": "a bird perched on top of a bunch of fish" + }, + { + "label": "three zebra facing the camera in a field", + "pred": "zebra standing next to each other" + }, + { + "label": "the baseball player is waiting for the ball", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "an aquarium with some blue black and yellow fish", + "pred": "a bird perched on top of a bunch of fish" + }, + { + "label": "a superman toy is lying face down on the table next to an empty plate of food", + "pred": "a person sitting on a bench with a bunch of food on it" + }, + { + "label": "broccoli is tied on a piece of plastic in an aquarium", + "pred": "a bird perched on top of a bunch of fish" + }, + { + "label": "a man getting ready to catch a baseball", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "baseball player preparing to put gloves on during a game", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "an unbaked pizza with cheese and herbs on one half and broccoli on the second", + "pred": "a pizza sitting on top of a pan on a table" + }, + { + "label": "a brown bear lays down in the woods", + "pred": "a bear that is laying down in the grass" + }, + { + "label": "three zebras look towards the camera in their habitat", + "pred": "zebra standing next to each other" + }, + { + "label": "a team of skiers rides intently across the snow", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a woman about to ski down a hill", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a black bear lying down in the grass next to trees", + "pred": "a bear that is laying down in the grass" + }, + { + "label": "a field with a lot of dead trees", + "pred": "a bear that is laying down in the grass" + }, + { + "label": "baseball player looking to his left while other players stand and sit around talking", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "underwater picture of blue and yellow fish and other sea creatures", + "pred": "a bird perched on top of a bunch of fish" + }, + { + "label": "a vase full of red flowers sits in a room with red walls and red decorations", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a smiling woman snow skier is dressed in purple", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a black bear lying down near many trees", + "pred": "a bear that is laying down in the grass" + }, + { + "label": "the men are playing baseball in the field", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "a big black bear laying in the grass surrounded by trees", + "pred": "a bear that is laying down in the grass" + }, + { + "label": "three people in the snow trying to walk up the hill in skiis", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "five men skiing in the snow in the same direction", + "pred": "a number of people on skis in the snow" + }, + { + "label": "five skiers race each other on the snow", + "pred": "a number of people on skis in the snow" + }, + { + "label": "lots of people standing on skis at the top of a hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a large zebra and baby zebra standing inside an enclosure eating", + "pred": "a zebra standing next to a baby zebra in a field" + }, + { + "label": "people and dishes from cake at a children's party", + "pred": "a person sitting on a bench with a bunch of food on it" + }, + { + "label": "three skiers climb up a snow covered hill", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a smiling skier poses in the snow before making her run", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "cross country skiers travel through the snow during a race", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a dog eyeballing something cooking in the oven", + "pred": "a dog standing in front of an open oven" + }, + { + "label": "skiers on a ski slope; one laying on the ground", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a downhill skier smiles from the top of a mountain", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a vase full of flowers on a bathroom sink counter", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "two zebras eat grass in a fenced field", + "pred": "a zebra standing next to a baby zebra in a field" + }, + { + "label": "four men ski down a snowy cliff in team clothing", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a woman in plaid pants posing for a picture on skis", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "three zebras standing next to each other in a meadow with other zebras visible behind them", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a table full of different foods, such as pizza, fries, and a sandwich", + "pred": "a table topped with plates of food and bowls of food" + }, + { + "label": "a man is doing a trick on a skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "three zebras stand in a field near a tree", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a teenager attempting a jump on his skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a table full of food served in baskets", + "pred": "a table topped with plates of food and bowls of food" + }, + { + "label": "a herd of zebra standing next to each other on a green grass covered field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "three people are skiing on the snowy mountain", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a man flying through the air while skiing", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a person playing frisbee on a field in sport wear", + "pred": "a person in a field with a frisbee" + }, + { + "label": "baskets of food, including a pizza, some vegetables and dip, and a sandwich", + "pred": "a table topped with plates of food and bowls of food" + }, + { + "label": "a mother and baby zebra grazing on grass", + "pred": "a zebra standing next to a baby zebra in a field" + }, + { + "label": "one person on a skateboard does a jump while another watches", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man riding a skateboard in the air above a skateboard ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a skateboarder attempts a trick above ground while his friend watches", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man holding up a bunch of root vegetables for sale", + "pred": "a man standing next to a pile of carrots" + }, + { + "label": "plates of hamburger and pizza in takeaway baskets set on a table", + "pred": "a table topped with plates of food and bowls of food" + }, + { + "label": "a dog is looking into an oven to see what's cooking", + "pred": "a dog standing in front of an open oven" + }, + { + "label": "a herd of zebras on a grassy plain", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "zebras out in the wild", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a dog watches something cooking in an oven", + "pred": "a dog standing in front of an open oven" + }, + { + "label": "two pieces of broccoli being held up on a fork", + "pred": "a fork and a piece of broccoli on a plate" + }, + { + "label": "a dog watching food cook in an oven", + "pred": "a dog standing in front of an open oven" + }, + { + "label": "baseball player number 22 holding batting gloves and wearing helmet", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "a young man holding a frisbee in his hand while standing on a field", + "pred": "a person in a field with a frisbee" + }, + { + "label": "a man in the stance to throw a frisbee", + "pred": "a person in a field with a frisbee" + }, + { + "label": "the dog stares at the food inside the oven", + "pred": "a dog standing in front of an open oven" + }, + { + "label": "a person on skis flies through the air on a rope", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a fork holding some cooked broccoli", + "pred": "a fork and a piece of broccoli on a plate" + }, + { + "label": "fork holding the contents of different types of vegetables", + "pred": "a fork and a piece of broccoli on a plate" + }, + { + "label": "a guy gets ready to throw a frisbee during a game", + "pred": "a person in a field with a frisbee" + }, + { + "label": "veggies and dip in a red tray, a sandwich and fries in a red tray and a pizza", + "pred": "a table topped with plates of food and bowls of food" + }, + { + "label": "broccoli on the end of fork tines", + "pred": "a fork and a piece of broccoli on a plate" + }, + { + "label": "a piece of broccoli on a metal fork", + "pred": "a fork and a piece of broccoli on a plate" + }, + { + "label": "two giraffe standing on a field together grazing on green grass", + "pred": "a zebra standing next to a baby zebra in a field" + }, + { + "label": "a young man doing a flip on a skateboard in the middle of a busy street", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "man at street market with table full of bananas", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "bunches of bananas are piled up at a market with some shoppers looking around", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "a man holding a flying disc while kneeling", + "pred": "a person in a field with a frisbee" + }, + { + "label": "two zebras graze in a field of short grass", + "pred": "a zebra standing next to a baby zebra in a field" + }, + { + "label": "an open market has a large table of bananas", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "a skier is clearing a jump at the top of a slope", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "man selling yellow and red carrots at a vegetable stand", + "pred": "a man standing next to a pile of carrots" + }, + { + "label": "the zebras are standing around and grazing in the pasture", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a man holding a bunch of carrots behind a display of carrots", + "pred": "a man standing next to a pile of carrots" + }, + { + "label": "a man looking over a full stand of bananas", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "an older businessman standing by bunches of bananas", + "pred": "a man standing in front of a bunch of bananas" + }, + { + "label": "three people on horseback ride along the beach while waves come in", + "pred": "people riding surfboards on top of a body of water" + }, + { + "label": "a herd of zebras is grazing on the plains in the sunshine", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "street vendor selling produce in a street display", + "pred": "a man standing next to a pile of carrots" + }, + { + "label": "a person on skis off the ground attached to a cable in a snowy field", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a vegetable vendor organizing his food for sale", + "pred": "a man standing next to a pile of carrots" + }, + { + "label": "mini bananas are hanging above a bowl of apples and oranges", + "pred": "a fruit stand with bananas, oranges, and apples" + }, + { + "label": "two young kids interacting in the grocery store produce section", + "pred": "a grocery store filled with lots of fruits and vegetables" + }, + { + "label": "two kids play in the fresh produce section of a busy grocery store", + "pred": "a grocery store filled with lots of fruits and vegetables" + }, + { + "label": "a restaurant table with a plate of vegetable pizza and garnishment", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a man is doing a skateboard trick in a city", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "people traveling up a hill wearing snow gear", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a skateboarder grinds down a railing in front of buildings", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "zebra grazing grass with a backdrop of bushes", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "people walking and holding ski boards on snow covered ski slopes", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "skiers line up for the starting gate at a race", + "pred": "a pair of skiers pose for a picture in front of a ski lodge" + }, + { + "label": "a person riding a skate board on a city side walk", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a person eating a banana sitting at a table", + "pred": "a woman sitting at a table eating a banana" + }, + { + "label": "zebras eating grass in a field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a family of giraffes by a few zebras and a gazelle", + "pred": "giraffes and zebras in a field" + }, + { + "label": "people standing around some on skies facing the ski slope", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "apples and oranges and a tree with bananas in front of potted plants", + "pred": "a fruit stand with bananas, oranges, and apples" + }, + { + "label": "a skate boarder 50/50 grinds a hand rail", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "an equestrian riding a horse jumping an obstacle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a skier getting ready to go out the gate", + "pred": "a pair of skiers pose for a picture in front of a ski lodge" + }, + { + "label": "a snow skier is standing on the snow", + "pred": "a person on skis in the snow" + }, + { + "label": "a person riding skis on a snowy slope", + "pred": "a person on skis in the snow" + }, + { + "label": "a teenager is on the snow with his skis", + "pred": "a person on skis in the snow" + }, + { + "label": "people with skis standing in the snow", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "horses and riders galloping along a beach", + "pred": "people riding surfboards on top of a body of water" + }, + { + "label": "a small ham and pineapple pizza on a plate next to a spicy pepper shaker", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a skier is in the air holding on to some ropes", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "bananas are resting on a stand", + "pred": "a fruit stand with bananas, oranges, and apples" + }, + { + "label": "a small pizza sitting on a blue table", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a man is doing skateboard tricks off the side of a busy street", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "zebras grazing in the grass", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "multiple skiers and snow boards on a mountain", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a skier standing on a snowy mountain with trees", + "pred": "a person on skis in the snow" + }, + { + "label": "a woman throwing a frisbee in a green field", + "pred": "a woman jumping in the air to catch a frisbee" + }, + { + "label": "a man sitting down with his mouth full holding a partially eaten banana", + "pred": "a woman sitting at a table eating a banana" + }, + { + "label": "a man doing a leap on a skateboard on a city sidewalk", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a woman is on the side of a mountain in ski gear", + "pred": "a person on skis in the snow" + }, + { + "label": "skiers stand on a flat portion of the mountain", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a man sitting in a chair and eating a donut outside near some shrubbery", + "pred": "a woman sitting at a table eating a banana" + }, + { + "label": "the over ripe bananas are hanging from a stand", + "pred": "a fruit stand with bananas, oranges, and apples" + }, + { + "label": "full course dinner served on large plate including drinks and dessert", + "pred": "a plate of food on a table" + }, + { + "label": "apples and oranges are stacked near to each other", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a person on a horse jumping over a obstacle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a pizza on a plate on a table", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "an extreme close up of fruits with a white background", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a handful of apples and oranges sit in a bowl", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a whole freshly made pizza in a restaurant", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a woman on the grass is playing frisbee", + "pred": "a woman jumping in the air to catch a frisbee" + }, + { + "label": "a table topped with apples, oranges and bananas", + "pred": "a fruit stand with bananas, oranges, and apples" + }, + { + "label": "three dogs on a field of green grass", + "pred": "two dogs fighting over a frisbee in a grassy field" + }, + { + "label": "a person standing in the snow on skies", + "pred": "a person on skis in the snow" + }, + { + "label": "three dogs playing outdoors during a sunny day in the grass", + "pred": "two dogs fighting over a frisbee in a grassy field" + }, + { + "label": "apples and oranges", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a person on a ski slope getting ready to ski down", + "pred": "a person on skis in the snow" + }, + { + "label": "a jockey riding and jumping with a horse in an obstacle course", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a bowl of broccoli and apples with a utensil", + "pred": "a bowl of broccoli on a table" + }, + { + "label": "people and a dog stand in front of a fruit stand", + "pred": "a grocery store filled with lots of fruits and vegetables" + }, + { + "label": "a woman getting her horse to jump over a couple of poles", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "three people in the distance riding horses along the beach", + "pred": "people riding surfboards on top of a body of water" + }, + { + "label": "plates loaded with thanksgiving dinner and dessert with two glasses", + "pred": "a plate of food on a table" + }, + { + "label": "three zebras standing in front of a wall", + "pred": "zebra standing next to each other" + }, + { + "label": "a woman throws a frisbee while at the park", + "pred": "a woman jumping in the air to catch a frisbee" + }, + { + "label": "a person on skis with ski poles standing at the top of a hill", + "pred": "a pair of skiers pose for a picture in front of a ski lodge" + }, + { + "label": "a detailed close up view of ripe fruit", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "zebras stand together by a rock wall", + "pred": "zebra standing next to each other" + }, + { + "label": "a zebra standing on a dirty rocky field", + "pred": "a zebra standing on top of a dry grass covered field" + }, + { + "label": "young man skate boarding on railing in urban setting", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "zebra in a zoo", + "pred": "zebra standing next to each other" + }, + { + "label": "four dogs play outside in the grass with each other", + "pred": "two dogs fighting over a frisbee in a grassy field" + }, + { + "label": "giraffes drink water in the wilderness", + "pred": "giraffes and zebras in a field" + }, + { + "label": "a man in white grinding on a skateboard", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "a family shopping at a farmers marked with their dog", + "pred": "a grocery store filled with lots of fruits and vegetables" + }, + { + "label": "three people on horses riding on the beach", + "pred": "people riding surfboards on top of a body of water" + }, + { + "label": "giraffe and zebra grazing in a field next to plants", + "pred": "giraffes and zebras in a field" + }, + { + "label": "a woman just threw a flying disc in the field", + "pred": "a woman jumping in the air to catch a frisbee" + }, + { + "label": "people and a dog in a supermarket in the fruit section", + "pred": "a grocery store filled with lots of fruits and vegetables" + }, + { + "label": "giraffes and zebras walking in a dirt field", + "pred": "giraffes and zebras in a field" + }, + { + "label": "a person on skis standing behind a starting gate", + "pred": "a pair of skiers pose for a picture in front of a ski lodge" + }, + { + "label": "zebras and giraffes by a water hole", + "pred": "giraffes and zebras in a field" + }, + { + "label": "a bowl with broccoli and apple slices on a placemat", + "pred": "a bowl of broccoli on a table" + }, + { + "label": "small child standing on his skis in the snow", + "pred": "a person on skis in the snow" + }, + { + "label": "a man performs a trick on a skateboard over a rail", + "pred": "a man riding a skateboard up the side of a building" + }, + { + "label": "a egyptian painting with 4 black horses on it", + "pred": "a painting of a vase sitting on top of a table" + }, + { + "label": "two zebras standing in a rocky area in the wild", + "pred": "a zebra standing on top of a dry grass covered field" + }, + { + "label": "a cross country skier stretches on an open field of snow", + "pred": "a person on skis in the snow" + }, + { + "label": "a lone zebra stands outside on a rocky hillside", + "pred": "a zebra standing on top of a dry grass covered field" + }, + { + "label": "a bowl of broccoli has green apples in it", + "pred": "a bowl of broccoli on a table" + }, + { + "label": "a zebra nestled in the woods surrounded by rocks", + "pred": "a zebra standing on top of a dry grass covered field" + }, + { + "label": "a zebra is standing on some rocky brown land", + "pred": "a zebra standing on top of a dry grass covered field" + }, + { + "label": "a dinner plate containing meat with gravy, carrots, bread, and cranberry sauce", + "pred": "a plate of food on a table" + }, + { + "label": "a pitcher spins as the ball flies by", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a little girl looking down the hill with her skies", + "pred": "a person on skis in the snow" + }, + { + "label": "skiers coming out of a building in ski attire", + "pred": "a pair of skiers pose for a picture in front of a ski lodge" + }, + { + "label": "a man eating a banana and smiling at the camera", + "pred": "a woman sitting at a table eating a banana" + }, + { + "label": "two plates of assorted food and two beverages are shown on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a table with a plate of dinner and something to drink", + "pred": "a plate of food on a table" + }, + { + "label": "three people riding horses on the shore", + "pred": "people riding surfboards on top of a body of water" + }, + { + "label": "a rider and horse are a third of the way into a jump", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a yellow dog runs to grab a yellow frisbee in the grass", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "men are playing sports on a field near some trees, wall, bus, and several buildings", + "pred": "people playing a game of frisbee" + }, + { + "label": "a woman in the park throwing a frisbee across the field", + "pred": "a woman jumping in the air to catch a frisbee" + }, + { + "label": "four black horses being driven across the sky on this ancient vase", + "pred": "a painting of a vase sitting on top of a table" + }, + { + "label": "kids on a field play soccer", + "pred": "people playing a game of frisbee" + }, + { + "label": "a boy is sitting and eating a banana while smiling", + "pred": "a woman sitting at a table eating a banana" + }, + { + "label": "man in mid air reaching between his legs to reach a frisbee", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "a decorative vase with several black horses and a rider", + "pred": "a painting of a vase sitting on top of a table" + }, + { + "label": "dogs in a grassy field playing", + "pred": "two dogs fighting over a frisbee in a grassy field" + }, + { + "label": "men playing soccer on a field at dusk", + "pred": "people playing a game of frisbee" + }, + { + "label": "these platters display healthy food choices of two entrees with a side vegetable and fruit", + "pred": "a lunch box filled with vegetables and fruits" + }, + { + "label": "people playing a game on green grass in front of a building", + "pred": "people playing a game of frisbee" + }, + { + "label": "a white bowl with green broccoli and green apples", + "pred": "a bowl of broccoli on a table" + }, + { + "label": "a pack of dogs are playing outside in the grass", + "pred": "two dogs fighting over a frisbee in a grassy field" + }, + { + "label": "a dog is on the grass playing frisbee", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "a vase with a painting of a man riding a horse drawn carriage", + "pred": "a painting of a vase sitting on top of a table" + }, + { + "label": "a baseball pitcher throws a baseball from a pitcher's mound", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a man is doing tricks with a frisbee", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "a small bowl of broccoli with some slices of apple and a lemon wedge", + "pred": "a bowl of broccoli on a table" + }, + { + "label": "a cream based soup in a while bowl with a chopped green vegetable on top", + "pred": "a white bowl filled with broccoli on top of a white plate" + }, + { + "label": "a brown vase has four black horses on it", + "pred": "a painting of a vase sitting on top of a table" + }, + { + "label": "a baseball player is on the pitchers mound in action", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a served tray filled with smaller plates of food", + "pred": "a lunch box filled with vegetables and fruits" + }, + { + "label": "a lunch tray with multiple compartments filled with food", + "pred": "a lunch box filled with vegetables and fruits" + }, + { + "label": "four zebras stand together in the mud against a wall", + "pred": "zebra standing next to each other" + }, + { + "label": "an almost empty plate with a lemon slice on it", + "pred": "a slice of orange sitting on top of a white plate" + }, + { + "label": "guys playing a game on a field", + "pred": "people playing a game of frisbee" + }, + { + "label": "a baseball pitcher throwing a baseball during a baseball game", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a person is jumping with a frisbee in the air", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "four plastic containers filled with food on a table", + "pred": "a lunch box filled with vegetables and fruits" + }, + { + "label": "a herd of zebra standing next to each other against a stone wall", + "pred": "zebra standing next to each other" + }, + { + "label": "a person jumping in the air while playing with a frisbee", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "a sliced orange on a plate by a fork", + "pred": "a slice of orange sitting on top of a white plate" + }, + { + "label": "a person skiing next to blue check points", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a pitcher follows through with his pitching motion", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "beef and vegetables on a plate sitting on a table", + "pred": "a plate of food sitting on top of a wooden table" + }, + { + "label": "a dog in the grass catching a frisbee", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "a man in mid air attempting to catch a frisbee", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "a tan dog leaping to catch a frisbee", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "a white plate filled with meat and vegetables", + "pred": "a plate of food sitting on top of a wooden table" + }, + { + "label": "a bowl of soup with green vegetables floating on top of it", + "pred": "a white bowl filled with broccoli on top of a white plate" + }, + { + "label": "a person riding skis down a snow covered slope past a flag", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a four compartment tray holding various food items", + "pred": "a lunch box filled with vegetables and fruits" + }, + { + "label": "a white bowl of broccoli cheese soup looks delicious", + "pred": "a white bowl filled with broccoli on top of a white plate" + }, + { + "label": "a white bowl which has soup an broccoli in it", + "pred": "a white bowl filled with broccoli on top of a white plate" + }, + { + "label": "a delicious looking meal of meat and potatoes", + "pred": "a plate of food sitting on top of a wooden table" + }, + { + "label": "a slice of orange laying on a mostly clean plate", + "pred": "a slice of orange sitting on top of a white plate" + }, + { + "label": "a plate with an orange and a fork", + "pred": "a slice of orange sitting on top of a white plate" + }, + { + "label": "a woman on skis stands on a flat snowy surface", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "orange slice with fork and various greens on plate", + "pred": "a slice of orange sitting on top of a white plate" + }, + { + "label": "a lady is trying to go ice skating/skiing", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a woman is attempting to ski on flat ground while others in the background are playing around", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a meal is ready to be eaten with its silverware", + "pred": "a plate of food sitting on top of a wooden table" + }, + { + "label": "a table with plates of food with drinks in the middle", + "pred": "a plate of food sitting on top of a wooden table" + }, + { + "label": "a man skiing down the mountain slope on skis", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a person that is snowboarding in some snow", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "food on a plate on a table", + "pred": "a white bowl filled with broccoli on top of a white plate" + }, + { + "label": "a pizza covered in cheese dripping down onto the bottom of an oven burning", + "pred": "a turkey is being cooked in an oven" + }, + { + "label": "a woman attempting to ski on a flat hill", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a dog is opening his mouth to catch a frisbee", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "a person riding skis on a snowy slope", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a person skiing down a hill maneuvers around a flag", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a boy catches a ball as a player slides to the base", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "a boy baseball player running to steal a base while another boy stops him", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "the pizza is beginning to melt in the oven", + "pred": "a turkey is being cooked in an oven" + }, + { + "label": "a man with skis and ski poles is standing next to a hill covered in snow", + "pred": "a person on skis in the snow" + }, + { + "label": "a pizza in the oven that has melted onto the bottom", + "pred": "a turkey is being cooked in an oven" + }, + { + "label": "the young girl wearing red and black rides atop the white pony", + "pred": "a person riding a horse next to a body of water" + }, + { + "label": "small horse standing behind a large group of horses eating", + "pred": "a herd of horses standing on top of a dirt field" + }, + { + "label": "a brown desk with a wooden chair in a classroom", + "pred": "a wooden table with a book on top of it" + }, + { + "label": "three large horses eating hay while a small horse stands behind", + "pred": "a herd of horses standing on top of a dirt field" + }, + { + "label": "the elderly man on skis is making his way down the edge of the snow-covered road", + "pred": "a person on skis in the snow" + }, + { + "label": "a collection of various food pictures mostly of desert type items", + "pred": "a collage of photos of different types of food" + }, + { + "label": "a market display case filled with different colored vegetables", + "pred": "a pile of carrots and other vegetables on a table" + }, + { + "label": "a young girl riding a horse next to a lake", + "pred": "a person riding a horse next to a body of water" + }, + { + "label": "a pizza in an oven that had a lot of cheese melted off of it", + "pred": "a turkey is being cooked in an oven" + }, + { + "label": "horses and a baby horse eat hay at a farm", + "pred": "a herd of horses standing on top of a dirt field" + }, + { + "label": "a display of healthy vegetables on a stand", + "pred": "a pile of carrots and other vegetables on a table" + }, + { + "label": "a girl on a horse rides past a lake", + "pred": "a person riding a horse next to a body of water" + }, + { + "label": "a small white dog catching a green frisbee on a lush green field", + "pred": "a dog playing with a frisbee in the grass" + }, + { + "label": "multiple pictures of treats and desserts for eating", + "pred": "a collage of photos of different types of food" + }, + { + "label": "a man walking next to a snowy hill", + "pred": "a person on skis in the snow" + }, + { + "label": "a food being cooked in an oven that has overflown", + "pred": "a turkey is being cooked in an oven" + }, + { + "label": "horses gathered around eating hay", + "pred": "a herd of horses standing on top of a dirt field" + }, + { + "label": "a person on skis riding down a snowy slope", + "pred": "a person on skis in the snow" + }, + { + "label": "pictures featuring different scenes of baked goods sitting on tables", + "pred": "a collage of photos of different types of food" + }, + { + "label": "a cross country skier traveling down a slight slope", + "pred": "a person on skis in the snow" + }, + { + "label": "three zebras outside with two grazing next to each other", + "pred": "zebra standing next to each other" + }, + { + "label": "baskets are displaying carrots, leafy greens, and other vegetables", + "pred": "a pile of carrots and other vegetables on a table" + }, + { + "label": "a third baseman tries to tag a runner", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "a man covering his eyes next to cases of bananas", + "pred": "a man standing in front of a bunch of boxes of bananas" + }, + { + "label": "a small dog trying to grab a frisbee from someone", + "pred": "a dog playing with a frisbee in the grass" + }, + { + "label": "horses gathered around a feeder", + "pred": "a herd of horses standing on top of a dirt field" + }, + { + "label": "an outdoor baseball game with a runner being tagged at base", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "three trapped, captive zebras standing around a food or water trough", + "pred": "zebra standing next to each other" + }, + { + "label": "a collaboration of pictures of various food items", + "pred": "a collage of photos of different types of food" + }, + { + "label": "assorted vegetables are arranged in baskets on display", + "pred": "a pile of carrots and other vegetables on a table" + }, + { + "label": "a wooden teacher's desk with books stacked on it and a blackboard", + "pred": "a wooden table with a book on top of it" + }, + { + "label": "a baseball player pushing another player on to the field", + "pred": "a baseball player sliding into a base during a game" + }, + { + "label": "zebras socialize on some rocks in an artificial habitat", + "pred": "zebra standing next to each other" + }, + { + "label": "three zebras standing close together behind a fence", + "pred": "zebra standing next to each other" + }, + { + "label": "a man in a suit tossing a frisbee", + "pred": "a man standing on top of a lush green field" + }, + { + "label": "a small girl riding a horse along a river", + "pred": "a person riding a horse next to a body of water" + }, + { + "label": "a dusty old chalkboard fills the background of this image, which features a wooden teacher's desk that has blue books, a red apple, and a bell placed", + "pred": "a wooden table with a book on top of it" + }, + { + "label": "a large number of fresh vegetables have been stacked together", + "pred": "a pile of carrots and other vegetables on a table" + }, + { + "label": "a classroom with a chalkboard, desk, and books", + "pred": "a wooden table with a book on top of it" + }, + { + "label": "a person covering his face next to many boxes of bananas", + "pred": "a man standing in front of a bunch of boxes of bananas" + }, + { + "label": "a collage displays colorful deserts and fresh vegetables", + "pred": "a collage of photos of different types of food" + }, + { + "label": "three zebras interacting in a zoo zebra enclosure", + "pred": "zebra standing next to each other" + }, + { + "label": "small dog waiting for green frisbee to be thrown", + "pred": "a dog playing with a frisbee in the grass" + }, + { + "label": "zebras standing and grazing in a grass field", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "ornate wedding cake ready at the hotel reception", + "pred": "a large white wedding cake sitting on top of a table" + }, + { + "label": "a small dog jumping up to reach a frisbee", + "pred": "a dog playing with a frisbee in the grass" + }, + { + "label": "a young girl rides a pony by a river on a sunny day", + "pred": "a person riding a horse next to a body of water" + }, + { + "label": "a young man participates in a frisbee game", + "pred": "a man standing on top of a lush green field" + }, + { + "label": "a little dog jumping up towards a frisbee someone is holding", + "pred": "a dog playing with a frisbee in the grass" + }, + { + "label": "an adult black bear let's his long tongue protrude", + "pred": "a large black bear sitting on top of a log" + }, + { + "label": "a desk in a classroom with a blackboard behind it", + "pred": "a wooden table with a book on top of it" + }, + { + "label": "two small bears playing in the water together", + "pred": "two bears are swimming in the water together" + }, + { + "label": "mother zebra in grassy pen with young ones feeding", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "plates with sandwiches on them sitting next to an open can of spam", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "two bears are playing together in the water", + "pred": "two bears are swimming in the water together" + }, + { + "label": "three zebras gather to stand and graze in their enclosure", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "a chubby black pony in a pasture looking ahead", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "two baby bears are playing with each other in the lake", + "pred": "two bears are swimming in the water together" + }, + { + "label": "a tall multi layer cake sitting on top of a blue table cloth", + "pred": "a large white wedding cake sitting on top of a table" + }, + { + "label": "gross ass vegetables that look slimy af", + "pred": "a plate of food with broccoli on it" + }, + { + "label": "two brown bears swimming in a lake next to green and yellow plants", + "pred": "two bears are swimming in the water together" + }, + { + "label": "a meal of broccoli, meat, and sauce on a plate", + "pred": "a plate of food with broccoli on it" + }, + { + "label": "a man standing beside a display of bananas in boxes", + "pred": "a man standing in front of a bunch of boxes of bananas" + }, + { + "label": "three men celebrating some kind of personal victory", + "pred": "two men standing next to each other holding a frisbee" + }, + { + "label": "plates with sandwiches next to a can of spam", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a wedding cake with flowers in a banquet hall", + "pred": "a large white wedding cake sitting on top of a table" + }, + { + "label": "herd of zebras grazing on some green vegetation", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a large black bear with a long tongue hanging out of it's mouth", + "pred": "a large black bear sitting on top of a log" + }, + { + "label": "a wok on a stove cooking some food", + "pred": "a pan filled with vegetables on top of a stove" + }, + { + "label": "red, yellow and orange fruit mixed together", + "pred": "a pile of different colored apples sitting on top of each other" + }, + { + "label": "man cross country skiing on slight down hill slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "friends laughing together and licking out there tongue", + "pred": "two men standing next to each other holding a frisbee" + }, + { + "label": "a large grey horse is behind a wooden fence", + "pred": "a horse standing in a fenced in area next to a fence" + }, + { + "label": "yellow and orange fruits in a pile", + "pred": "a pile of different colored apples sitting on top of each other" + }, + { + "label": "three brown bears looking out a cage at the ground below", + "pred": "two brown bears standing next to each other" + }, + { + "label": "three men celebrating as they play a frisbee game", + "pred": "two men standing next to each other holding a frisbee" + }, + { + "label": "a bear sitting on a log with a really long tongue", + "pred": "a large black bear sitting on top of a log" + }, + { + "label": "two men one getting ready to throw a freebie", + "pred": "a man standing on top of a lush green field holding a frisbee" + }, + { + "label": "a man on cross country skis at the edge of a trail", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a large black horse has a long mane of hair", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "zebras eating in a n enclosure", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "yellow and orange fruit in varied sizes", + "pred": "a pile of different colored apples sitting on top of each other" + }, + { + "label": "thin-striped zebras huddle near the wall of their zoo enclosure", + "pred": "two zebras standing next to each other in front of a building" + }, + { + "label": "two zebras are standing in the shade of a building", + "pred": "two zebras standing next to each other in front of a building" + }, + { + "label": "three men playing frisbee with a blue sky", + "pred": "two men standing next to each other holding a frisbee" + }, + { + "label": "a man standing with his hands over his eyes by a fruit stand", + "pred": "a man standing in front of a bunch of boxes of bananas" + }, + { + "label": "the large dog is asleep on a couch", + "pred": "a man laying on a bed with his hands in his pockets" + }, + { + "label": "a skillet filled with a bunch of vegetables being cooked", + "pred": "a pan filled with vegetables on top of a stove" + }, + { + "label": "a horse standing near a wood fence being looked at through a camera lens", + "pred": "a horse standing in a fenced in area next to a fence" + }, + { + "label": "a large dogs comfortably sleeping on someones bed", + "pred": "a man laying on a bed with his hands in his pockets" + }, + { + "label": "three adult zebras walk calmly along close together", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a man on skis standing in the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "three bears stand together near a fence", + "pred": "two brown bears standing next to each other" + }, + { + "label": "a can of spam next to sandwiches on a plate", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a man covering his eyes while standing next to multiple boxes filled with bananas", + "pred": "a man standing in front of a bunch of boxes of bananas" + }, + { + "label": "nicely decorated three tier wedding cake with topper", + "pred": "a large white wedding cake sitting on top of a table" + }, + { + "label": "looking through a circle at a horse as it stands near a fence", + "pred": "a horse standing in a fenced in area next to a fence" + }, + { + "label": "a horse standing next to a fence being seen through a lens", + "pred": "a horse standing in a fenced in area next to a fence" + }, + { + "label": "a zebra is lying on the ground with other zebras", + "pred": "a zebra that is laying down in the grass" + }, + { + "label": "two people are playing in sand with a frisbee", + "pred": "a woman catching a frisbee on a beach" + }, + { + "label": "two bear cubs are playing together in water", + "pred": "two bears are swimming in the water together" + }, + { + "label": "a bear extends its long tongue while yawning", + "pred": "a large black bear sitting on top of a log" + }, + { + "label": "a man riding skis while flying through the air", + "pred": "a skier jumping in the air on top of a snow covered slope" + }, + { + "label": "a man riding skis while holding two ski poles", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "an apple computer is on a table with supplies", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "two sandwiches and some spam on a table", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a man throwing a white frisbee in a tree covered park", + "pred": "a man standing on top of a lush green field holding a frisbee" + }, + { + "label": "a person standing snow wearing a snow suit and skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a large black horse standing on a field filled with green and brown grass", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "the skier is on the flat with front ski edges together and holding ski poles", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "three zebra standing next to each other on a dirt hillside", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "kids play on a grassy area and lift their arms up as a frisbee is just above their heads", + "pred": "people standing on top of a lush green field" + }, + { + "label": "two zebra standing on a sidewalk next to a wall", + "pred": "two zebras standing next to each other in front of a building" + }, + { + "label": "two zebras stand on concrete in the shade", + "pred": "two zebras standing next to each other in front of a building" + }, + { + "label": "three people are celebrating after winning a frisbee game", + "pred": "two men standing next to each other holding a frisbee" + }, + { + "label": "a young man riding a skateboard on a stone wall", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a family of bears in front of a fence at a humane facility", + "pred": "two brown bears standing next to each other" + }, + { + "label": "two friends throwing a frisbee on a sandy lot", + "pred": "a woman catching a frisbee on a beach" + }, + { + "label": "a boy standing on skis in the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two very sexy women in bikinis riding horses in the ocean", + "pred": "two women riding horses on top of a beach" + }, + { + "label": "a zebra lays down in a leafy field", + "pred": "a zebra that is laying down in the grass" + }, + { + "label": "a white macintosh next to duct tape and red scissors", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a man riding a skateboard up the side of a cement ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "an old man making duck lips while holding an orange", + "pred": "a man holding an orange in his right hand" + }, + { + "label": "a ballplayer on deck practicing for his turn at bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a wok with a cooked broccoli meal in it", + "pred": "a pan filled with vegetables on top of a stove" + }, + { + "label": "a small boy skiing down a snowy hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a skateboarder doing tricks on the rim of a pit", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "zebras munch on feed in a brick and stucco structure", + "pred": "two zebras standing next to each other in front of a building" + }, + { + "label": "a person in a black snow suit on a pair of skis in the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "people sit in a carriage pulled by a horse", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "a plate with flower print and broccoli on it", + "pred": "a plate of food with broccoli on it" + }, + { + "label": "couple playing frisbee on the beach in summer", + "pred": "a woman catching a frisbee on a beach" + }, + { + "label": "a person practices batting during a baseball game", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a sun bear yawns and extends its long tongue", + "pred": "a large black bear sitting on top of a log" + }, + { + "label": "a man trowing a frisbee", + "pred": "a man standing on top of a lush green field" + }, + { + "label": "a can of spam and two sandwiches sit on a table", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a boy on skis standing in the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a child is doing a trick on a skateboard", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "people that are on a horse", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "pears and oranges have dirt and brown spots", + "pred": "a pile of different colored apples sitting on top of each other" + }, + { + "label": "three zebras walk along close to each other", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a boy riding his skateboard on a ledge in a park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "food on a plate", + "pred": "broccoli and other vegetables on a white plate" + }, + { + "label": "a horse taken through a circular window", + "pred": "a horse standing in a fenced in area next to a fence" + }, + { + "label": "the vegetables are cooking in the skillet on the stove", + "pred": "a pan filled with vegetables on top of a stove" + }, + { + "label": "a man puckering his lips holding an orange", + "pred": "a man holding an orange in his right hand" + }, + { + "label": "an animal on the ground", + "pred": "a zebra that is laying down in the grass" + }, + { + "label": "the meal of chicken and rice has green brocolli with it", + "pred": "a plate of food with broccoli on it" + }, + { + "label": "a fork cutting into a piece of cake", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "fruit on a table", + "pred": "a pile of different colored apples sitting on top of each other" + }, + { + "label": "food in the kitchen", + "pred": "a pan filled with vegetables on top of a stove" + }, + { + "label": "a man dressed in black snow gear stands on skis in the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a laptop computer sits near a roll of tape and a laptop computer", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a horse pulls a small carriage in which two people are riding", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "three brown bears are looking outside their enclosure", + "pred": "two brown bears standing next to each other" + }, + { + "label": "animals that are standing in the grass together", + "pred": "two white horses standing next to each other" + }, + { + "label": "a little kid that is snowboarding in the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "young children riding skis down a snow covered mountain", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a little kid that is doing a skateboard trick in the air", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "brown bears standing around looking at a metal fence", + "pred": "two brown bears standing next to each other" + }, + { + "label": "a person in a green jacket skiing down a slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a computer and some items on the table", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a pair of people ride a small, horse drawn buggy near a large puddle of water", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "a lazy zebra lays in the straw near a rocky field", + "pred": "a zebra that is laying down in the grass" + }, + { + "label": "people playing with a frisbee", + "pred": "people standing on top of a lush green field" + }, + { + "label": "a woman in a yellow shirt is about to catch a white frisbee", + "pred": "a woman catching a frisbee on a beach" + }, + { + "label": "zebras laying down in a rocky field", + "pred": "a zebra that is laying down in the grass" + }, + { + "label": "a plate topped with broccoli and vegetables on a table", + "pred": "a plate of food with broccoli on it" + }, + { + "label": "two dogs in the backyard with blowup toys", + "pred": "a dog standing on top of a lush green field" + }, + { + "label": "a very ornate, three layered wedding cake in a banquet room", + "pred": "a large white wedding cake sitting on top of a table" + }, + { + "label": "a horse drawn carriage being pulled through the mud", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "a llama and white horse standing next to each other in a grassy field", + "pred": "two white horses standing next to each other" + }, + { + "label": "a brown dog sitting in a yard looking at a black and white dog", + "pred": "a dog standing on top of a lush green field" + }, + { + "label": "a white plate topped with orange peel slices", + "pred": "a slice of orange sitting on a white plate" + }, + { + "label": "two zebra grazing on grass next to each other", + "pred": "a zebra standing next to another zebra in a field" + }, + { + "label": "two zebras made of lego stand in a field", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "a small dog is looking at a larger barking dog", + "pred": "a dog standing on top of a lush green field" + }, + { + "label": "a laptop computer sits on a desk with scissors", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a horse and a lama are standing next to each other", + "pred": "two white horses standing next to each other" + }, + { + "label": "skateboarder grinding his board on the side of a pavement course", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man riding skis down the side of a snow covered ski slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two animals in an open field", + "pred": "two white horses standing next to each other" + }, + { + "label": "a white dog is on a sandy beach while the sea foam washes ashore behind it", + "pred": "a white dog standing on a beach next to the ocean" + }, + { + "label": "a young lady and a young man playing frisbee on the sand", + "pred": "a woman catching a frisbee on a beach" + }, + { + "label": "a person riding skis on a snowy surface", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "large dog laying down on a blanket next to a table", + "pred": "a man laying on a bed with his hands in his pockets" + }, + { + "label": "a white horse and a white llama in a grassy field", + "pred": "two white horses standing next to each other" + }, + { + "label": "a teen boy is skateboarding on the edge of a cement wall", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a street scene with a horse pulling a white carriage", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "two women in bikinis on horses in the ocean", + "pred": "two women riding horses on top of a beach" + }, + { + "label": "a baseball player practicing his swing at a baseball game", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a young person on skis posing for a picture", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a bowl filled with food on top of a wooden table", + "pred": "a bowl filled with fruit on top of a wooden table" + }, + { + "label": "a brown and white dog standing next to another dog", + "pred": "a dog that is standing in the grass" + }, + { + "label": "people are playing frisbee in a park", + "pred": "people standing on top of a lush green field" + }, + { + "label": "a piece of cake sitting on top of a blue and white paper plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a black and white dog and a brown dog on some grass", + "pred": "a dog standing on top of a lush green field" + }, + { + "label": "boy on a skate board taking a jump down a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "two women in swimsuits riding horses in the water", + "pred": "two people riding horses on top of a beach" + }, + { + "label": "people on a field reaching for a frisbee", + "pred": "people standing on top of a lush green field" + }, + { + "label": "an assortment of broccoli and cauliflower is arranged", + "pred": "broccoli and other vegetables on a white plate" + }, + { + "label": "youngsters contend for a frisbee in a park-like setting", + "pred": "people standing on top of a lush green field" + }, + { + "label": "two women in bikinis ride horses into the sea", + "pred": "two women riding horses on top of a beach" + }, + { + "label": "a man and lady taking a horse and carriage ride", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a female horse rider mounted near a body of water and mountains", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a skateboarder does an impressive trick in the air", + "pred": "a man doing a trick on a skateboard in a skate park" + }, + { + "label": "young man on skate board balancing on concrete barrier near sidewalk with small park area near by", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man on a skateboard doing tricks at the park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a person riding a snow board falling to the ground", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "bald man making a face and pursing lips looking at orange", + "pred": "a man holding an orange in his right hand" + }, + { + "label": "two dogs are in a backyard playground area equipped with a kiddie pool", + "pred": "a dog standing on top of a lush green field" + }, + { + "label": "a number of people skiing down ski slopes", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a man is falling on his back while snowboarding", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a mixture of broccoli and cauliflower on a white platter", + "pred": "broccoli and other vegetables on a white plate" + }, + { + "label": "skateboarders watching a skateboarder doing a trick in a skate park", + "pred": "a man doing a trick on a skateboard in a skate park" + }, + { + "label": "a man puckers up as he holds a large orange in his hand", + "pred": "a man holding an orange in his right hand" + }, + { + "label": "a small bowl filled with chopped vegetables and spoon", + "pred": "a bowl filled with fruit on top of a wooden table" + }, + { + "label": "a happy skier skis down a trail of fresh snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two zebras, one grazing and one staring straight ahead in a grassy field", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "medium sized white dog enjoying a trot on the beach", + "pred": "a white dog standing on a beach next to the ocean" + }, + { + "label": "a person riding a horse", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "orange wedges sit on a white plate", + "pred": "a slice of orange sitting on a white plate" + }, + { + "label": "a dog is sleeping on a plaid blanket", + "pred": "a man laying on a bed with his hands in his pockets" + }, + { + "label": "cut up orange peels on the white plate", + "pred": "a slice of orange sitting on a white plate" + }, + { + "label": "snow boarder sliding down the hill after falling in the snow", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "seven pieces of orange peel on a white plate", + "pred": "a slice of orange sitting on a white plate" + }, + { + "label": "a young boy jumping in the air on a skateboard", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a baseball player holding a baseball bat during a game", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a white dish filled with broccoli and cauliflower", + "pred": "broccoli and other vegetables on a white plate" + }, + { + "label": "a white dog running in the sand along the beach", + "pred": "a white dog standing on a beach next to the ocean" + }, + { + "label": "a woman in tight blue jeans standing next to a brown horse", + "pred": "a woman standing next to a brown horse in a field" + }, + { + "label": "a person snowboarding outside while the sun is setting", + "pred": "a skier jumping in the air on top of a snow covered slope" + }, + { + "label": "a large white dog trotting along the beach", + "pred": "a white dog standing on a beach next to the ocean" + }, + { + "label": "a tall sandwich with pickle on a white plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a woman wearing a cowboy hat posing with a horse", + "pred": "a woman standing next to a brown horse in a field" + }, + { + "label": "the man has a bat in his hands", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "the two bowls have a salad in them", + "pred": "a bowl of broccoli and meat on a table" + }, + { + "label": "a half sandwich sitting on a paper plate located on a table", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "children skiing down a slope", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a dog is running on the beach sand", + "pred": "a white dog standing on a beach next to the ocean" + }, + { + "label": "two bikini clad women riding horses in an ocean", + "pred": "two people riding horses on top of a beach" + }, + { + "label": "a bowl full of meat and vegetables ready to eat", + "pred": "a bowl of broccoli and meat on a table" + }, + { + "label": "the skier falls down into the snow while skiing", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a man riding a snowboard on a snow covered slope", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "slices of orange peels on a white plate", + "pred": "a slice of orange sitting on a white plate" + }, + { + "label": "a plate with a banana and slices of cheese", + "pred": "a banana and a piece of bread on a plate" + }, + { + "label": "a large half a sandwich sitting on a plate next to a pepperocini", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a horse pulling a large carriage down the street with several people on the carriage", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a man with a hat is on a horse by a dry lake", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "broccoli and cauliflower florets cut into small pieces and spread around", + "pred": "broccoli and other vegetables on a white plate" + }, + { + "label": "zebras walk along the sand", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a person that is doing a trick in the air", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a boy on a skateboard in the air during a trick", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a banana sitting on top of a white plate next to a pastry", + "pred": "a banana and a piece of bread on a plate" + }, + { + "label": "a skier skis down a hill past a sparse evergreen", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man purses his lips while holding up an orange in front of his face", + "pred": "a man holding an orange in his right hand" + }, + { + "label": "a skier dressed in white performing an aerial maneuver", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "food that are in some baskets", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "two bowls of a meat and vegetable dish", + "pred": "a bowl of broccoli and meat on a table" + }, + { + "label": "an open carriage with people in it being drawn by a horse", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "two zebra standing on top of a grass covered field", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "a smiling young woman posing with a sleek brown horse", + "pred": "a woman standing next to a brown horse in a field" + }, + { + "label": "a skier performing a backflip with the sky as background", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a midsized horse in a field with her rider standing", + "pred": "a woman standing next to a brown horse in a field" + }, + { + "label": "the skier is upside down in the air", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "two white bowls with vegetables, meats and herbs and chopsticks nearby", + "pred": "a bowl of broccoli and meat on a table" + }, + { + "label": "a person on a horse and some snow on some mountains", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a skateboarder in a black shirt is doing a trick", + "pred": "a man doing a trick on a skateboard in a skate park" + }, + { + "label": "two bowls of stir fried beef and broccoli with chopsticks next to the bowls", + "pred": "a bowl of broccoli and meat on a table" + }, + { + "label": "two equestrians riding their horses on the beach together", + "pred": "two people are riding horses on the beach" + }, + { + "label": "two people riding horeses on the beach shore", + "pred": "two people are riding horses on the beach" + }, + { + "label": "skiers heading down a slope", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a person riding a skate board on a skate park", + "pred": "a man doing a trick on a skateboard in a skate park" + }, + { + "label": "a colorful display of vegetables and produce at a market", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a young male skateboarder is high in the air", + "pred": "a man doing a trick on a skateboard in a skate park" + }, + { + "label": "the snow skier is performing a flip in the air", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "two women ride horses in the water at the beach", + "pred": "two women riding horses on top of a beach" + }, + { + "label": "two people riding horses on the beach with waves coming in across the rocks on the shoreline", + "pred": "two people are riding horses on the beach" + }, + { + "label": "a banana is couple with sliced cheese on a plate", + "pred": "a banana and a piece of bread on a plate" + }, + { + "label": "a pretty young woman is posing with her horse", + "pred": "a woman standing next to a brown horse in a field" + }, + { + "label": "three zebras walking in a line in dirt", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "two zebras are in a field and one is eating the grass", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "a banana and two pieces of cheese on a plate", + "pred": "a banana and a piece of bread on a plate" + }, + { + "label": "skiers skiing on the snow", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "two women in bikinis on horses stand in the ocean", + "pred": "two people riding horses on top of a beach" + }, + { + "label": "a produce stand in an open air market with different veggies", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a skateboarder is doing a trick on the edge of a ledge", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a piece of yellow cake with white frosting on a paper plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a dog sleeping on a plaid bedspread", + "pred": "a man laying on a bed with his hands in his pockets" + }, + { + "label": "a bowl of food sits prepared with eating utensils", + "pred": "a bowl filled with fruit on top of a wooden table" + }, + { + "label": "a pair of skiers on the top of a ski slope with clouds and large mountain", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a sandwich on a plate with a pickle and peppers", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a couple skiers on a snowy mountain side", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a person skating on some pieces of wood", + "pred": "a person riding a skateboard on top of a wooden bench" + }, + { + "label": "a white plate with two slices of cheese and a whole banana unpealed", + "pred": "a banana and a piece of bread on a plate" + }, + { + "label": "fruits and vegetables are being sold in a market", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "legs on a skateboard going down a small ramp", + "pred": "a person riding a skateboard on top of a wooden bench" + }, + { + "label": "a man is skiing in fresh powder past a tree", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a person is riding a horse by the water", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a dog with a collar standing on the grass", + "pred": "a dog that is standing in the grass" + }, + { + "label": "two people on skies on a snowy mountain slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a very tall sandwich is cut in half", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a majestic scene of a snow capped mountain with skiers", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a boy riding a skateboard on the edge of a wall", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "people skiing down the side of a snow covered mountain", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a person wearing sneakers balancing on a skateboard on a wooden platform", + "pred": "a person riding a skateboard on top of a wooden bench" + }, + { + "label": "a man holding an apple between his fingers", + "pred": "a man holding an apple in one hand and an orange in the other" + }, + { + "label": "a pair of bears climb up in a tree", + "pred": "a bear that is standing in the snow" + }, + { + "label": "a person on a horse with large snow capped mountains", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "two fake zebras are composed of materials and placed on grass", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "a baseball player pitching a baseball on a field", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a family standing next to each other while holding frisbees", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "two people on a snowy mountain in skis", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "two men smile as they ride horses on the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a cats sits on the table with a dog outside", + "pred": "a dog and a cat sitting on a table" + }, + { + "label": "two bears are perched on trees out in the fog", + "pred": "a bear that is standing in the snow" + }, + { + "label": "guy sitting down holding a peach between fingers", + "pred": "a man holding an apple in one hand and an orange in the other" + }, + { + "label": "two guys horseback riding and playing on the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a dog and a cat are watching the plants on the table", + "pred": "a dog and a cat sitting on a table" + }, + { + "label": "a man skiing down a hill with a tree behind him", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a little dog looking at another dog in the yard", + "pred": "a dog that is standing in the grass" + }, + { + "label": "a small dog looking at a larger dog", + "pred": "a dog that is standing in the grass" + }, + { + "label": "two men are riding horses along the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "an orange on the side of the road", + "pred": "an orange sitting on the side of a road" + }, + { + "label": "two people riding horses along the ocean beach", + "pred": "two people are riding horses on the beach" + }, + { + "label": "a black horse in the ground in a hilly area", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "zebras in a dirt field", + "pred": "a zebra standing next to another zebra in a field" + }, + { + "label": "two bears in the trees with snow falling", + "pred": "a bear that is standing in the snow" + }, + { + "label": "two beautiful women riding horses in the ocean in bikinis", + "pred": "two people riding horses on top of a beach" + }, + { + "label": "a man riding a skateboard on piece of concrete in a park", + "pred": "a person riding a skateboard on top of a wooden bench" + }, + { + "label": "an outdoor stall sells tomatoes, bell peppers, green beans, carrots, zucchini, eggplants, and turnips", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a small dog with a chain collar looking at another dog", + "pred": "a dog that is standing in the grass" + }, + { + "label": "a crowd of people standing on snow covered ground", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a man holding a ball in his hand in a room", + "pred": "a man holding an apple in one hand and an orange in the other" + }, + { + "label": "a zebra-print futon with red cushions in a student's room", + "pred": "a bed with a stuffed animal on top of it" + }, + { + "label": "a brown horse standing next to a woman in front of a house", + "pred": "a brown and white horse standing next to a man" + }, + { + "label": "skiers are in a line for the chair lift", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "an orange is on the white line on a street and some cars", + "pred": "an orange sitting on the side of a road" + }, + { + "label": "a dog looks through a window at a cat sitting on a table", + "pred": "a dog and a cat sitting on a table" + }, + { + "label": "a cat sitting on a table next to plants and a dog outside of a sliding glass door, looking in", + "pred": "a dog and a cat sitting on a table" + }, + { + "label": "a young man with long hair, wearing all black, doing stunts on a skateboard", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a horse drawn buggy sits in front of pyramid shaped mosques", + "pred": "a horse pulling a carriage down a dirt road" + }, + { + "label": "a man is holding fruit between his fingers", + "pred": "a man holding an apple in one hand and an orange in the other" + }, + { + "label": "skiers wait to take a lift up a snowy hill", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a guy holding an apple", + "pred": "a man holding an apple in one hand and an orange in the other" + }, + { + "label": "a horse hitched to a cart standing in front of a temple", + "pred": "a horse pulling a carriage down a dirt road" + }, + { + "label": "two people on horseback are posing while the horses gallop on a beach shore", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "the horse stands attached to an empty carriage", + "pred": "a horse pulling a carriage down a dirt road" + }, + { + "label": "two riders guide their horses along a rock strewn sandy beach", + "pred": "two people are riding horses on the beach" + }, + { + "label": "two people on horses on a beach readying for a picture", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "dog looking in a window at a cat next to plants", + "pred": "a dog and a cat sitting on a table" + }, + { + "label": "a glass of wine on a table", + "pred": "a glass of orange juice sitting on a table" + }, + { + "label": "reading materials are stowed above a zebra themed bed for relaxation", + "pred": "a bed with a stuffed animal on top of it" + }, + { + "label": "a horse pulling a carriage", + "pred": "a horse pulling a carriage down a dirt road" + }, + { + "label": "a bedroom done in animal prints with red and black pillows", + "pred": "a bed with a stuffed animal on top of it" + }, + { + "label": "the skate boarder is doing a jumping trick", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a horse carriage is sitting idly in the dessert", + "pred": "a horse pulling a carriage down a dirt road" + }, + { + "label": "the bedroom is is decorated in various zebra prints", + "pred": "a bed with a stuffed animal on top of it" + }, + { + "label": "stemmed glass of amber liquid on a counter", + "pred": "a glass of orange juice sitting on a table" + }, + { + "label": "a bedroom with a blanket and some pillows", + "pred": "a bed with a stuffed animal on top of it" + }, + { + "label": "a cocktail being served with lemon in a wine glass", + "pred": "a glass of orange juice sitting on a table" + }, + { + "label": "an orange on a city street", + "pred": "an orange sitting on the side of a road" + }, + { + "label": "a skateboarder careening off concrete in a park", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "an orange sitting in the middle of a road", + "pred": "an orange sitting on the side of a road" + }, + { + "label": "a person standing next to a horse next to a building", + "pred": "a brown and white horse standing next to a man" + }, + { + "label": "two monkeys are sitting on some tree branches", + "pred": "a bear that is standing in the snow" + }, + { + "label": "a person skiing on a hill", + "pred": "a skier jumping in the air on top of a snow covered slope" + }, + { + "label": "an orange lying near the white stripe of a highway", + "pred": "an orange sitting on the side of a road" + }, + { + "label": "skiers are waiting to ride a chair lift", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a bowl with a bunch of food in it sitting on a table", + "pred": "a bowl filled with fruit on top of a wooden table" + }, + { + "label": "a zebra foraging near a pile of branches", + "pred": "a zebra standing next to another zebra in a field" + }, + { + "label": "a cooler attached to a sled near some skiers", + "pred": "two people standing in the snow with a snowboard" + }, + { + "label": "a woman stands beside a large brown horse", + "pred": "a brown and white horse standing next to a man" + }, + { + "label": "two draft horses pulling plow, color, under cloudy skies with trees and other horses", + "pred": "two horses pulling a carriage on a field" + }, + { + "label": "a man riding a skateboard up a wooden ramp", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a farmer with draught horses uses a plow to furrow", + "pred": "two horses pulling a carriage on a field" + }, + { + "label": "a large, totally black horse standing in a field", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "people each holding a frisbee", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "a man is grinding a ramp on a skateboard", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a plate topped with vegetables, meat and fruit", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "two small dogs on leashes walking on a brick pathway", + "pred": "two dogs playing with each other on a leash" + }, + { + "label": "two men with backpacks on, one of which is fastening skis to a sled", + "pred": "two people standing in the snow with a snowboard" + }, + { + "label": "grainy photograph of thinly sliced fruit in a bowl", + "pred": "a bowl filled with fruit on top of a wooden table" + }, + { + "label": "a white plate topped with food on a counter", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "the fruit are arranges on the surface in a brown wicker basket", + "pred": "a basket filled with fruit on top of a wooden table" + }, + { + "label": "two bears up in a tree during a snow storm", + "pred": "a bear that is standing in the snow" + }, + { + "label": "sunset with a skiers feet and skis", + "pred": "a skier jumping in the air on top of a snow covered slope" + }, + { + "label": "a white plate containing a serving of food", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "skate boarder doing stunts in front of graffiti covered building", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a full glass sitting on the table", + "pred": "a glass of orange juice sitting on a table" + }, + { + "label": "the woman stands next to the large brown horse", + "pred": "a brown and white horse standing next to a man" + }, + { + "label": "a man rides to the top of a skateboard ramp", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a boy skateboards on a home made ramp", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a horse with blinder and a colorful harness in the woods", + "pred": "a brown horse standing in the middle of a forest" + }, + { + "label": "a person that is doing a trick on a skateboard", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "the vegetable are laid out neatly at the table", + "pred": "a wooden table topped with lots of different types of vegetables" + }, + { + "label": "a person on skis skiing down a mountain slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a brown horse walking through a leaf covered forest", + "pred": "a brown horse standing in the middle of a forest" + }, + { + "label": "a store display filled with ripe, unripe bananas and other fruit", + "pred": "bunches of bananas on display in a grocery store" + }, + { + "label": "a horse that is in the dirt by trees", + "pred": "a brown horse standing in the middle of a forest" + }, + { + "label": "two different colored dogs standing on a brick walkway", + "pred": "two dogs playing with each other on a leash" + }, + { + "label": "a plate of food containing carrots, potatoes and meat", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a woman hold a brown horse while a woman watches", + "pred": "a brown and white horse standing next to a man" + }, + { + "label": "a basket of fruit is sitting on a table", + "pred": "a basket filled with fruit on top of a wooden table" + }, + { + "label": "a man is airborne on a skateboard pointing to the sky behind him", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a black and white dog and a brown and white dog both on leashes", + "pred": "two dogs playing with each other on a leash" + }, + { + "label": "two large brown horses pulling a plow as a farmer guides them", + "pred": "two horses pulling a carriage on a field" + }, + { + "label": "a bridled mule stands in front of trees and leaves", + "pred": "a brown horse standing in the middle of a forest" + }, + { + "label": "a glass filled with alcohol sitting on a white table", + "pred": "a glass of orange juice sitting on a table" + }, + { + "label": "a variety of fruits in a woven basket", + "pred": "a basket filled with fruit on top of a wooden table" + }, + { + "label": "a fork cutting a piece of cake on a plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a black and white small dog sitting next to a brown and white small dog", + "pred": "two dogs playing with each other on a leash" + }, + { + "label": "this skateboarder is riding the cityscape at night when traffic is minimal", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "a basket with a red bow is filled with fruit", + "pred": "a basket filled with fruit on top of a wooden table" + }, + { + "label": "two brown horses pull a plow, steered by a man behind", + "pred": "two horses pulling a carriage on a field" + }, + { + "label": "a white plate full of cooked meat and vegetables", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "an upclose photo of a cake with chocolate pieces", + "pred": "a loaf of bread sitting on top of a white plate" + }, + { + "label": "people are skiing on the mountain", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a man is skiing on the snow slopes", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two pet dogs are on a leash", + "pred": "two dogs playing with each other on a leash" + }, + { + "label": "two zebras grazing in the grass", + "pred": "a zebra standing next to another zebra in a field" + }, + { + "label": "the skateboarder does an aerial stunt onto the road", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "horse with blinders on walking through wooded area", + "pred": "a brown horse standing in the middle of a forest" + }, + { + "label": "a baseball player kneeling to speak to a child", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a man is plowig a field with two large horses", + "pred": "two horses pulling a carriage on a field" + }, + { + "label": "a skier is in the snow going downhill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a little girl wearing pajamas is riding on a skateboard", + "pred": "a little girl riding a skateboard down a street" + }, + { + "label": "grilled chicken on a plate with spinach, broccoli, zucchini, and carrots", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "a zebra grazing in a field near a pile of branches", + "pred": "a zebra standing next to another zebra in a field" + }, + { + "label": "two skiers prepare to make their way past an embankment", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "a piece of cake on a plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a husky dog has an orange frisbee in it's mouth", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a cake that is sitting on a white plate", + "pred": "a loaf of bread sitting on top of a white plate" + }, + { + "label": "a basket of fresh fruit is adorned with a red ribbon", + "pred": "a basket filled with fruit on top of a wooden table" + }, + { + "label": "a round plate of food with meat, onions, vegetables and other items", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "different vegetables laid out on a pallet", + "pred": "a wooden table topped with lots of different types of vegetables" + }, + { + "label": "two zebras graze on grass inside of an enclosure", + "pred": "zebra standing next to each other in a field" + }, + { + "label": "a plate full of different types of foods", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "skiers are walking and skiing around the snow", + "pred": "a number of people on skis in the snow" + }, + { + "label": "people on skis skiing on a snowy mountain", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "a man kneeling down over piles of bananas", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "two zebras at the zoo eating some grass", + "pred": "zebra standing next to each other in a field" + }, + { + "label": "bowls of bananas and apples for sale in a cafe", + "pred": "a counter top with a bunch of bananas on top of it" + }, + { + "label": "a chocolate dessert cake ready on a plate with a fork", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "people posting in front of a camera for a picture", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "a person with green skis skiing down a big hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "bananas and apples sitting next to each other on a counter", + "pred": "a counter top with a bunch of bananas on top of it" + }, + { + "label": "a black dog running with a red round frisbee", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a man skiing down a snow covered slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a black and brown doberman carries a frisbee", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a little girl riding a skateboard down a road", + "pred": "a little girl riding a skateboard down a street" + }, + { + "label": "a man flying through the air while riding a skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "people riding horses partially submerged in a body of water", + "pred": "two people riding horses on top of a beach" + }, + { + "label": "a white plate with a slice of cake on top of it", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "people walking through a market filled with food", + "pred": "a fruit stand with bunches of bananas on display" + }, + { + "label": "a small black and brown dog with a frisbee in it's mouth", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a dog is in the grass with a frisbee in its mouth", + "pred": "a dog with a frisbee in its mouth" + }, + { + "label": "a pallet holds a display of fresh vegetables", + "pred": "a wooden table topped with lots of different types of vegetables" + }, + { + "label": "a man riding skis down a snow covered slope", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "a person on skis is skiing down a snowy hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a large round cake is sitting on a plate", + "pred": "a loaf of bread sitting on top of a white plate" + }, + { + "label": "a bunch pf different vegetables is on a crate next to a csa pamphlet", + "pred": "a wooden table topped with lots of different types of vegetables" + }, + { + "label": "a blue and white plate with a chocolate dessert on the plate and powdered sugar on top", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a person is doing skateboard tricks on a rail", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a bowl of bananas next to a bowl of apples on a counter", + "pred": "a counter top with a bunch of bananas on top of it" + }, + { + "label": "a man performing a trick on a ledge on a skateboard", + "pred": "a person jumping in the air with a skateboard" + }, + { + "label": "a man flying through the air while riding skis", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a person jumping a horse over a box", + "pred": "a person on a horse jumping over a fence" + }, + { + "label": "two people playing a game of frisbee in a field", + "pred": "young men playing a game of soccer" + }, + { + "label": "different vegetables laid out on a wooden pallet", + "pred": "a wooden table topped with lots of different types of vegetables" + }, + { + "label": "a chocolate cake sitting on a plate topped with powered sugar", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "pastry dessert with powdered sugar and carrots on a blue and white plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "two people on skis going down a small hill", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "a skateboarder is riding on boards that have been placed over grass", + "pred": "a person riding a skateboard on top of a wooden bench" + }, + { + "label": "a plate of prepared food has a sandwich and vegetables", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "three adults and a child stand together holding frisbees", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "young girl dressed in pink with striped pants with one foot on skate board on typical suburban street", + "pred": "a little girl riding a skateboard down a street" + }, + { + "label": "rider on a horse jumping over a fence", + "pred": "a person on a horse jumping over a fence" + }, + { + "label": "people with skis at the bottom of a mountain slope", + "pred": "a number of people on skis in the snow" + }, + { + "label": "white bowls of healthy fresh fruit on a counter", + "pred": "a counter top with a bunch of bananas on top of it" + }, + { + "label": "adults and a child holding frisbees", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "a dessert cake is on a plate with a fork", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "two people cross country skiing in a valley", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "children playing and standing around in a green field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a dense cake with fruit in it sitting on a blue plate", + "pred": "a loaf of bread sitting on top of a white plate" + }, + { + "label": "people are skiing on the snowy slopes in a designated area", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a person riding the horse jumping over a wooden obstacle", + "pred": "a person on a horse jumping over a fence" + }, + { + "label": "friends playing frisbee in the park", + "pred": "young men playing a game of soccer" + }, + { + "label": "a plate with chicken, bread, broccoli and carrots", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "a woman holding a small cake with lit candles", + "pred": "a woman blowing out candles on a birthday cake" + }, + { + "label": "a skateboarder rolling across a thin plank on two wheels", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a small loaded pizza on a yellow plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "two people in an open field are playing with a frisbee", + "pred": "young men playing a game of soccer" + }, + { + "label": "a piece of cake on a white plate with one bite taken", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a bite missing from a slice of cake that is on a plate", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a person jumping a horse over a wooden obstacle", + "pred": "a person on a horse jumping over a fence" + }, + { + "label": "a man on a skateboard doing a trick", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "a man performing a trick off of a curb", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "a man standing behind two brown horses on a dirt field", + "pred": "a man standing next to a horse drawn carriage" + }, + { + "label": "a bowl of bananas and a bowl of apples in a kitchen", + "pred": "a counter top with a bunch of bananas on top of it" + }, + { + "label": "a plate is filled with broccoli and noodles", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a woman riding skis down a snow covered slope", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a young person on a horse makes a jump", + "pred": "a person on a horse jumping over a fence" + }, + { + "label": "two zebras grazing on the green grass in an enclosure", + "pred": "zebra standing next to each other in a field" + }, + { + "label": "people skiing at a lodge right in the mountains", + "pred": "a number of people on skis in the snow" + }, + { + "label": "a wooden table topped with a bunch of green bananas", + "pred": "bunches of bananas sitting on top of a green bench" + }, + { + "label": "a person on skis going down a mountain slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "people are riding horses down a beach next to the water", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a four layer cake on a plate with fork and one bite eaten", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "players are playing frisbee on a grass field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a couple is sitting on a statue of a horse and some plants", + "pred": "a woman sitting on a bench talking on a cell phone" + }, + { + "label": "a skier is jumping while other skiers watch", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a decadent piece of cake that waits to be finished by its owner", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a couple sitting on a horse statue posing for a picture in grassy setting", + "pred": "a woman sitting on a bench talking on a cell phone" + }, + { + "label": "a cake on a plate on a table", + "pred": "a loaf of bread sitting on top of a white plate" + }, + { + "label": "an antilope is eating grass in between two zebra", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a man on skis sliding down a snowy mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "an assortment of items including a miniature boom box, chair, banana and flashlight", + "pred": "a toy banana sitting on top of a table" + }, + { + "label": "a person on skis is doing a twist during a jump", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a person in skis flies in the air from doing a trick", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a baseball pitcher who is in mid pitch", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "bananas on a wooden bench with hammocks", + "pred": "bunches of bananas sitting on top of a green bench" + }, + { + "label": "a person is on a rail performing stunts on a skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a pair of zebras grazing on grass in a zoo", + "pred": "zebra standing next to each other in a field" + }, + { + "label": "a man on a skateboard performing a trick at a skate park", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "the pitcher on the mound has just let go of a baseball directed to the batter", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a baseball player talking to a small child on the field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "an open street market selling fruits and goods", + "pred": "a fruit stand with bunches of bananas on display" + }, + { + "label": "a table covered with banansas and a coconut", + "pred": "bunches of bananas sitting on top of a green bench" + }, + { + "label": "a person on a skateboard on a skate ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a couple posing on a horse statue in a courtyard", + "pred": "a woman sitting on a bench talking on a cell phone" + }, + { + "label": "a skier sliding down a snow covered hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man riding a skateboard on top of a ramp", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a pizza topped with an assortment of vegetables on a wooden table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a snow skier is doing an aerial trick", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a wooden cutting board a knife some carrots and onions", + "pred": "a spoon and a carrot on a cutting board" + }, + { + "label": "a skateboarder jumping of of a ledge onto a parking lot", + "pred": "a man riding a skateboard down the side of a street" + }, + { + "label": "a man holding horse reins connected to 2 horses on a dirt field", + "pred": "a man standing next to a horse drawn carriage" + }, + { + "label": "men riding horses on a beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a baseball player kneeling down talking to a young child", + "pred": "baseball players standing on top of a field" + }, + { + "label": "people wearing jackets are riding horses on the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "green bananas and coconuts are sitting on a picnic table", + "pred": "bunches of bananas sitting on top of a green bench" + }, + { + "label": "a man is packing up skies on the snow land", + "pred": "two people standing in the snow with a snowboard" + }, + { + "label": "a man riding a skateboard prepares to roll down a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "group of white horses walking next to a river", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "zebras are grazing in a field", + "pred": "zebra standing next to each other in a field" + }, + { + "label": "a man on skies is cutting through the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a girl is standing one foot on a skate board", + "pred": "a little girl riding a skateboard down a street" + }, + { + "label": "a man and woman are sitting on a statue of a horse", + "pred": "a woman sitting on a bench talking on a cell phone" + }, + { + "label": "bananas and coconuts sitting on a wooden bench", + "pred": "bunches of bananas sitting on top of a green bench" + }, + { + "label": "the setting sun silhouettes a skateboarder turning at the top of the ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a skateboarder doing a flip at a skate park", + "pred": "a person jumping in the air with a skateboard" + }, + { + "label": "a delicious looking pizza with a variety of vegetable toppings stands out on a yellow plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "zebras stand in a field and graze", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a man is using two horses to plow his land", + "pred": "a man standing next to a horse drawn carriage" + }, + { + "label": "a crowd looks on as a young man does a skateboard trick", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a coach comes out on to the field to talk to a young player", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a guy rides his skate board in a half pipe", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man and a boy in red jerseys on a baseball field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "people are crouched around in an open market", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "a plate of food that includes lentils and leafy greens", + "pred": "a person cutting up broccoli in a bowl" + }, + { + "label": "a man riding a skateboard up the side of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "two people in the snow with skis and a cooler", + "pred": "two people standing in the snow with a snowboard" + }, + { + "label": "a man is doing a trick on a skateboard", + "pred": "a person jumping in the air with a skateboard" + }, + { + "label": "a man on a skateboard on a ramp in front of spectators", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "zebras eat the green grass in the pasture", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a vendor standing behind a stall of various foods", + "pred": "a fruit stand with bunches of bananas on display" + }, + { + "label": "a herd of zebra standing on a dry grass field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "two bananas with bottles", + "pred": "bananas and a bottle of beer on a wooden table" + }, + { + "label": "two zebras and another animal grazing in the grass", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "three zebra in the middle of a field with a body of water in the distance", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a small stereo a banana and a flashlight", + "pred": "a toy banana sitting on top of a table" + }, + { + "label": "woman holding a small birthday cake rides a coin-operated children's ride in a convenience store", + "pred": "a woman blowing out candles on a birthday cake" + }, + { + "label": "an assortment of vegetables made into an interesting shape", + "pred": "a spoon and a carrot on a cutting board" + }, + { + "label": "a brown wooden table with a block of cheese with a carrot and two onion balls", + "pred": "a spoon and a carrot on a cutting board" + }, + { + "label": "panoramic image of zebras grazing and lying in a field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a person leaning hard into a turn on a downhill ski course", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a uniformed baseball player being watched by people", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a farmer standing next to horses", + "pred": "a man standing next to a horse drawn carriage" + }, + { + "label": "a zebra grazing on dry hay next to a wire fence", + "pred": "a zebra eating hay from a pile of hay" + }, + { + "label": "a young girl in tennis shoes riding a skateboard", + "pred": "a little girl riding a skateboard down a street" + }, + { + "label": "a farmer's market filled with green bananas and people", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "a woman skiing down a snowy, tree-lined path", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man with a hat jumping a barrier with a skate board", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a man and woman on a patio riding a statue", + "pred": "a woman sitting on a bench talking on a cell phone" + }, + { + "label": "a skateboarder in a blue shirt is doing a trick", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "man using two very large horses to plow a field", + "pred": "a man standing next to a horse drawn carriage" + }, + { + "label": "people walking in front of an outdoor fruit market", + "pred": "a fruit stand with bunches of bananas on display" + }, + { + "label": "zebra grazing in front of a chain link fence", + "pred": "a zebra eating hay from a pile of hay" + }, + { + "label": "two halves of an onion and a carrot positioned to represent either a goofy face or male genetalia", + "pred": "a spoon and a carrot on a cutting board" + }, + { + "label": "a woman is wearing a pink and black jacket is sking", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man riding skis down a snow covered ski slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a red plate topped with a piece of cake", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a zebra standing up next to a chain linked fence and eating grass that is on the ground", + "pred": "a zebra eating hay from a pile of hay" + }, + { + "label": "man skiing down a turn on an official ski slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a woman on skis sliding down a snowy hill", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a table topped with a bowl of granola and two apples", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a vase siting on top of a wooden shelf near a map", + "pred": "a vase sitting on top of a table" + }, + { + "label": "a fresh pizza with basil, mozzarella cheese and tomatoes", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "three bottles of beer sitting on a wooden table next to bananas", + "pred": "bananas and a bottle of beer on a wooden table" + }, + { + "label": "a man riding skis down the slide of a snow covered slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two men packing up ski equipment after a day of skiing", + "pred": "two people standing in the snow with a snowboard" + }, + { + "label": "a woman is sitting on a kid's horse ride at a store holding a cake with candles", + "pred": "a woman blowing out candles on a birthday cake" + }, + { + "label": "an overripe banana in a tiny chair with a flashlight and boombox", + "pred": "a toy banana sitting on top of a table" + }, + { + "label": "three zebra standing next to each other on a dirt ground", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "a dish of vegetables and noodles with sauce", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a young person riding a skateboard at a skate park", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a woman skiing on a path by some trees", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a girl holding a plate with a cake and candles", + "pred": "a woman blowing out candles on a birthday cake" + }, + { + "label": "a woman holds a cake with candles while riding a mechanical horse in a store", + "pred": "a woman blowing out candles on a birthday cake" + }, + { + "label": "a man in skis passing an orange flag on a snowy race course", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man guiding a pony with a boy riding on it", + "pred": "a man and a woman are petting a brown and white horse" + }, + { + "label": "a small pizza on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "men on horse back riding on the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "the group of friends is riding down the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "the people are walking down the aisles at the super market", + "pred": "a fruit stand with bunches of bananas on display" + }, + { + "label": "three bottles of beer and two bananas on a counter", + "pred": "bananas and a bottle of beer on a wooden table" + }, + { + "label": "a zebra is bent down eating some grass", + "pred": "a zebra eating hay from a pile of hay" + }, + { + "label": "three zebra's eating grass as they walk", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "zebras standing close to each other", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "snow skiers are casting a shadow on the snow", + "pred": "a man and woman standing on skis in the snow" + }, + { + "label": "cake on a red plate cut in two pieces", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a may leading a a boy on a pony with a rope", + "pred": "a man and a woman are petting a brown and white horse" + }, + { + "label": "two people in ski gear standing at the top of a mountain", + "pred": "a man and woman standing on skis in the snow" + }, + { + "label": "a peice of cake sit on a red plate with a fork beside it", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "two people wearing skis on a snowy slope", + "pred": "a man and woman standing on skis in the snow" + }, + { + "label": "a man in black jersey pitching in baseball game", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "an outdoor market place with a person shopping for bananas", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "a skier glides down a snowy mountain passing a red flag", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a man doing a trick with a skateboard on a ledge", + "pred": "a person jumping in the air with a skateboard" + }, + { + "label": "bowl of breakfast oatmeal with apples and a spoon", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "the skier speeds around a flag, heading down the slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a skier skiing past a red sign on a snowy mountain", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a bowl of oatmeal with two apples on a gingham cloth", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "a zebra is eating dry grass next to a fence", + "pred": "a zebra eating hay from a pile of hay" + }, + { + "label": "a horse standing in a lush green grass field", + "pred": "two horses standing on top of a lush green field" + }, + { + "label": "two apples, a bowl of food with berries and a pitcher and spoon on a purple place mat", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "people riding horses down a small road", + "pred": "a large group of people riding horses down a field" + }, + { + "label": "vendors selling produce at an outside market", + "pred": "a market filled with lots of fresh produce" + }, + { + "label": "zebras stand together in a field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a row of beer bottles and bananas on a wooden counter", + "pred": "bananas and a bottle of beer on a wooden table" + }, + { + "label": "a peeled banana on a table next to an unpeeled banana", + "pred": "a banana sitting on top of a white paper" + }, + { + "label": "oranges and onions shaped to look like a person's face", + "pred": "a spoon and a carrot on a cutting board" + }, + { + "label": "banana on a paper towel behind a banana shaped paper towel", + "pred": "a banana sitting on top of a white paper" + }, + { + "label": "a herd of zebras standing in close proximity to each other", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a yellow ripe banana sitting on top of a wooden table", + "pred": "a banana sitting on top of a white paper" + }, + { + "label": "a herd of zebra standing next to each other on a green grass field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "people riding skis down a snow covered slope", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a wooden cutting board filled with chopped vegetables", + "pred": "a cutting board topped with carrots and a knife" + }, + { + "label": "two plastic containers next to a banana on a table", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a banana resting on a paper towel atop a wooden table", + "pred": "a banana sitting on top of a white paper" + }, + { + "label": "a panoramic view of zebras in a dry field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a table topped with a half eaten apple next to a smart phone", + "pred": "a person using a cell phone on a table" + }, + { + "label": "a variety of beer sitting behind some bananas", + "pred": "bananas and a bottle of beer on a wooden table" + }, + { + "label": "a banana on top of a chair with a white background behind", + "pred": "a toy banana sitting on top of a table" + }, + { + "label": "a herd of cattle and zebra standing next to each other on a field", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a white plate on top of a table topped with fruits and vegetables", + "pred": "a white plate topped with different types of vegetables" + }, + { + "label": "two people riding on the back of horses near a tall building", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "a person is riding a skateboard on a ramp", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "zebras are standing together in the grass", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a large white dog laying underneath a bed", + "pred": "a dog laying on the floor under a blanket" + }, + { + "label": "zebra standing next to each other", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "two women and an older woman between them", + "pred": "a woman and a man standing next to each other" + }, + { + "label": "a banana some papers and a pencil on a wooden table", + "pred": "a banana sitting on top of a white paper" + }, + { + "label": "a white horse pulling a carriage with a man on it", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a skier in a green shirt is coming down a mountain", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a man riding skis down a snow covered path", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "containers filled with unripe bananas", + "pred": "bananas hanging from a tree" + }, + { + "label": "a man walking down a street next to a road filled with cars", + "pred": "a person riding a skateboard on the side of a road" + }, + { + "label": "a man riding a skateboard down the side of a ramp", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "two zebra standing next to each other in a dry grass field", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "a young boy and an elderly man taking a pony out for a walk", + "pred": "a man and a woman are petting a brown and white horse" + }, + { + "label": "a frying pan filled with vegetables and apples", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a little child riding on top of a white horse", + "pred": "a young boy riding a horse on a sunny day" + }, + { + "label": "a person skiing on a snow covered snow bank", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two people with skis on at the top of a mountain", + "pred": "a man and woman standing on skis in the snow" + }, + { + "label": "people are riding their horses in the parade", + "pred": "a large group of people riding horses down a field" + }, + { + "label": "a rotten banana in a small chair with a little radio", + "pred": "a toy banana sitting on top of a table" + }, + { + "label": "a field full of zebras on a savannah grazing", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "three people playing frisbee outside", + "pred": "men standing on top of a lush green field" + }, + { + "label": "a bowl of food is sitting next to fresh apples", + "pred": "a bowl of fruit sitting on top of a table" + }, + { + "label": "people are riding horses at a park", + "pred": "a large group of people riding horses down a field" + }, + { + "label": "a man catching a green frisbee next to a field", + "pred": "a man throwing a frisbee in the air" + }, + { + "label": "a person washing something under the running water of a faucet next to a bowl of greens", + "pred": "a person cutting up broccoli in a bowl" + }, + { + "label": "a man guides a pony with a young boy on it's back", + "pred": "a man and a woman are petting a brown and white horse" + }, + { + "label": "three people standing in a green field with one person holding a frisbee", + "pred": "men standing on top of a lush green field" + }, + { + "label": "a painting of a row of white horses walking in a line along a stream", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a person riding a snow board while flying through the air", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a little girl sitting on a kitchen counter next to a plate of food", + "pred": "a little girl sitting at a table with a plate of food" + }, + { + "label": "a blue vase with an orange floral patters sits in front of a map", + "pred": "a vase sitting on top of a table" + }, + { + "label": "an inlaid vase sitting in front of a map", + "pred": "a vase sitting on top of a table" + }, + { + "label": "bananas surround a small display of kiwi", + "pred": "bunches of bananas on display in a grocery store" + }, + { + "label": "a brightly colored flower vase sits in front of a wall map", + "pred": "a vase sitting on top of a table" + }, + { + "label": "a person riding a horse in a horse park while another horse wonders in nearby grass", + "pred": "two horses standing on top of a lush green field" + }, + { + "label": "three people in a field with a frisbee", + "pred": "men standing on top of a lush green field" + }, + { + "label": "three people in black shirts playing with a white frisbee", + "pred": "men standing on top of a lush green field" + }, + { + "label": "a polar bear partially submerged in a body of water", + "pred": "two polar bears playing in a pool of water" + }, + { + "label": "a fruit stand with plantains, kiwis, and bananas", + "pred": "bunches of bananas on display in a grocery store" + }, + { + "label": "three zebras standing in the sand in a zoo", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "horses walking on a path near a river", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a vase with red flowers on it next to a map", + "pred": "a vase sitting on top of a table" + }, + { + "label": "a polar bear playing in the water with balls", + "pred": "two polar bears playing in a pool of water" + }, + { + "label": "three zebras are standing together in a line", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "a person riding skis down a snow covered slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a rider is riding a horse at a race track", + "pred": "two horses standing on top of a lush green field" + }, + { + "label": "a large crowd of people riding horses walks along a trail", + "pred": "a large group of people riding horses down a field" + }, + { + "label": "a skateboarder is performing a tick in a skate park", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "riders on horses in a field", + "pred": "a large group of people riding horses down a field" + }, + { + "label": "a skateboarder does a trick at an indoor skate park", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a fruit stand that has bananas, papaya, and plantains", + "pred": "bunches of bananas on display in a grocery store" + }, + { + "label": "a fruit stand display with bananas and kiwi", + "pred": "bunches of bananas on display in a grocery store" + }, + { + "label": "three zebras standing together in a line by some trees", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "a person on a skateboard is doing a jump", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a polar bear pulling a green and ball chain", + "pred": "two polar bears playing in a pool of water" + }, + { + "label": "piece of cake with a plate and fork", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a container holds apples, a banana, snap peas and triangle finger foods", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a skier flies over a mogul on the slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "the skiier easily and skillfully jumps the small mogul", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a male skier nonchalantly goes off of a jump", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "the plate has sliced zucchinis, sliced apples, and diced meats", + "pred": "a white plate topped with different types of vegetables" + }, + { + "label": "people standing in the snow on skis", + "pred": "a man and woman standing on skis in the snow" + }, + { + "label": "the remains of a piece of white cake sits on a red plate", + "pred": "a piece of cake on a plate with a fork" + }, + { + "label": "a skier in midair after jumping a ramp on a ski slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "three zebras standing next to each other in a field", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "horses travel along in a line along a river", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "a large plate of sliced peaches and cucumbers", + "pred": "a white plate topped with different types of vegetables" + }, + { + "label": "young men walking on a field", + "pred": "men standing on top of a lush green field" + }, + { + "label": "a plastic plate with beans,quiche, apples and a banana", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a dog or bear in a controlled area doing something with balls", + "pred": "two polar bears playing in a pool of water" + }, + { + "label": "a man holding a horse, so a little boy can take a ride", + "pred": "a man and a woman are petting a brown and white horse" + }, + { + "label": "two zebras standing in tall savannah grass near forest brush", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "one horse being ridden by a person and another horse are in a training area", + "pred": "two horses standing on top of a lush green field" + }, + { + "label": "the dinner on the plate is ready to eat", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a line of horses are walking around a river", + "pred": "a herd of cattle standing on top of a lush green field" + }, + { + "label": "the three women are posing for pictures", + "pred": "a woman and a man standing next to each other" + }, + { + "label": "the cook is rinsing a draining the greens at her kitchen sink", + "pred": "a person cutting up broccoli in a bowl" + }, + { + "label": "two zebras are walking through tall brown grass", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "plastic containers filled with food including fruits and vegetables", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a wet dog is playing with a string of balls", + "pred": "two polar bears playing in a pool of water" + }, + { + "label": "man riding a skate board towards the traffic on a two lane roadway", + "pred": "a person riding a skateboard on the side of a road" + }, + { + "label": "four people on horses walking on beach next to water", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "two zebras standing in a field of tall grass", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "two containers containing quiche, a salad, apples and a banana on the side", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a girl in white and pink shirt riding on a horse", + "pred": "a girl riding on the back of a brown horse" + }, + { + "label": "a broccoli and pasta salad with oil and vinegar dressing", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a plate of food with meat and veggies", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a woman standing behind a very small banana tree with green bananas on it", + "pred": "bananas hanging from a tree" + }, + { + "label": "a road filled with cars in a desert", + "pred": "a person riding a skateboard on the side of a road" + }, + { + "label": "women pose in front of a sign hanging on a building", + "pred": "a woman and a man standing next to each other" + }, + { + "label": "three women are standing outside of chiquita banana", + "pred": "a woman and a man standing next to each other" + }, + { + "label": "two zebras roaming through the terrain in a countryside setting", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "partially eaten apple and cell phone, near a hand on a table", + "pred": "a person using a cell phone on a table" + }, + { + "label": "a skateboarder is separated from his board as he performs a jump in front of a crowd", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "the people are skiing down the snow covered hill", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "person riding a horse while another horse stands in a field", + "pred": "two horses standing on top of a lush green field" + }, + { + "label": "multiple different colored plants and fruit", + "pred": "bananas hanging from a tree" + }, + { + "label": "a grouping of zebras in a pen next to a giraffe", + "pred": "zebra standing next to each other" + }, + { + "label": "man in green sweatshirt about to catch a frisbee", + "pred": "a man throwing a frisbee in the air" + }, + { + "label": "three women standing in front of a sign about bananas and a bunch of bananas", + "pred": "a woman and a man standing next to each other" + }, + { + "label": "two people dressed in red skiing across a snowy landscape", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a young child riding on the back of a horse", + "pred": "a girl riding on the back of a brown horse" + }, + { + "label": "white horse carrying a man in a black buggy", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a banana and a doughnut in a plastic bag", + "pred": "a banana sitting on top of a wrapper" + }, + { + "label": "a little poodle puppy laying near a newspaper with a look of guilt", + "pred": "a white dog sitting on a table next to a book" + }, + { + "label": "a white dog is peeking out from under a hanging cloth", + "pred": "a dog laying on the floor under a blanket" + }, + { + "label": "a bag containing a banana and a doughnut", + "pred": "a banana sitting on top of a wrapper" + }, + { + "label": "a man wearing sunglasses and a coat catching a frisbee", + "pred": "a man throwing a frisbee in the air" + }, + { + "label": "men in skies on a snowy slope", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a catches crouches on a patch of dirt", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a banana tree with lots of bananas, growing in the shade", + "pred": "bananas hanging from a tree" + }, + { + "label": "a horse is standing with a black carriage", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "people in red uniforms mounted on black horses", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "view from inside of a car of cars on road and a man on the side of the road", + "pred": "a person riding a skateboard on the side of a road" + }, + { + "label": "white dog sticking his nose out from under red and white striped bed ruffle", + "pred": "a dog laying on the floor under a blanket" + }, + { + "label": "a plate of apples, cucumbers, tuna and peas sitting on a table", + "pred": "a white plate topped with different types of vegetables" + }, + { + "label": "a batch of green banana's next to a large set of red banana's", + "pred": "bananas hanging from a tree" + }, + { + "label": "a partially eaten apple by a verizon device", + "pred": "a person using a cell phone on a table" + }, + { + "label": "a photo taken from a car looking at a skateboarder on the side of the road", + "pred": "a person riding a skateboard on the side of a road" + }, + { + "label": "a banana and a chocolate frosted donut sitting in a baggie", + "pred": "a banana sitting on top of a wrapper" + }, + { + "label": "a dog peeking out from under some covers", + "pred": "a dog laying on the floor under a blanket" + }, + { + "label": "multiple skiers travelling across a vast expanse of snow covered land towards a mountain", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a horse, buggy and driver sitting in front of a building", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a half-eaten apple sits next to a cell phone", + "pred": "a person using a cell phone on a table" + }, + { + "label": "a catcher squatting at a base with his gloved hand extended", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a baseball catcher stands ready to catch a ball", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a big orange bowl full of assorted veggies with hands above it", + "pred": "a person cutting up broccoli in a bowl" + }, + { + "label": "a white dog sitting on a table next to a newspaper and a cup", + "pred": "a white dog sitting on a table next to a book" + }, + { + "label": "a person washing their hands near a bowl of broccoli", + "pred": "a person cutting up broccoli in a bowl" + }, + { + "label": "a catcher kneeling at the mound waiting for a baseball", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "four zebras standing in different positions", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "four zebra are standing next to each other in a field", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "2 men wearing red cloaks riding on horseback", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "a dog sitting on a table next to a newspaper and a cup", + "pred": "a white dog sitting on a table next to a book" + }, + { + "label": "two people in red robes sitting on two horses", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "four zebras stand together in a grassy plain", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a wooden board filled chopped vegetables and a knife", + "pred": "a cutting board topped with carrots and a knife" + }, + { + "label": "a person at a skateboard park, jumping his skateboard", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a man standing on one hand holding onto a skateboard", + "pred": "a person jumping in the air with a skateboard" + }, + { + "label": "four people mounted on horses riding on the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a man in a horse drawn carriage parked in front of a stone building", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a boy outside reaching to catch a frisbee", + "pred": "a man throwing a frisbee in the air" + }, + { + "label": "a banana and donut in a sandwich bag", + "pred": "a banana sitting on top of a wrapper" + }, + { + "label": "an partially eaten apply and a cell phone set on a table", + "pred": "a person using a cell phone on a table" + }, + { + "label": "a cutting board and knife, with chopped carrots, celery, and onion", + "pred": "a cutting board topped with carrots and a knife" + }, + { + "label": "a man reaching out to catch a frisbee", + "pred": "a man throwing a frisbee in the air" + }, + { + "label": "two men in red coats riding horses in front of a palace", + "pred": "a large group of people riding horses down a street" + }, + { + "label": "a girl holding her leg out while riding on the back of a horse", + "pred": "a girl riding on the back of a brown horse" + }, + { + "label": "a dog is on the floor hiding under a curtain", + "pred": "a dog laying on the floor under a blanket" + }, + { + "label": "four zebras in some park during the day when it's sunny", + "pred": "zebra standing next to each other" + }, + { + "label": "a banana and donut in the same plastic bag", + "pred": "a banana sitting on top of a wrapper" + }, + { + "label": "chopped vegetables and a knife sit on the cutting board", + "pred": "a cutting board topped with carrots and a knife" + }, + { + "label": "a young helmeted boy rides a white horse", + "pred": "a young boy riding a horse on a sunny day" + }, + { + "label": "a skateboarder in brown pants is doing a trick", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a child on a counter by a plate of fires", + "pred": "a little girl sitting at a table with a plate of food" + }, + { + "label": "wild zebra and wildebeest grazing near a watering hole", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "the men are riding their horses down the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "two people standing next to each other on a ski slope", + "pred": "two people standing on top of a snow covered slope" + }, + { + "label": "a man and a woman standing in the snow on skis", + "pred": "two people standing on top of a snow covered slope" + }, + { + "label": "a dog laying down on a fluffy carpet", + "pred": "a dog laying on the floor next to a pillow" + }, + { + "label": "different types of animals near a watering hole in africa", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "a little boy sitting on a kitchen counter top next to a plate of sliced apples", + "pred": "a little girl sitting at a table with a plate of food" + }, + { + "label": "people viewing an outdoor zoo area with zebras and giraffe", + "pred": "zebra standing next to each other" + }, + { + "label": "a person performs a jump in the air on a snowboard", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a smiling pair of skiers with a huge snow covered mountain behind them", + "pred": "two people standing on top of a snow covered slope" + }, + { + "label": "two people on skis in front of ski lift", + "pred": "two people standing on top of a snow covered slope" + }, + { + "label": "a snowboarder dressed in white does a jump", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a small girl sits atop a saddled animal", + "pred": "a girl riding on the back of a brown horse" + }, + { + "label": "a person in the air on a snowboard", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a skateboard enthusiast performing a stunt in mid air", + "pred": "a man doing a trick on a skateboard at a skate park" + }, + { + "label": "a person going up a snow hill on skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a roasting pan full with apples, carrots, potatoes, and meat", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a catcher in white uniform during a baseball game", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "young skateboarder showing off learned skills next to building", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "zebras walk through a grassy field and flamingos stands in a lake", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "hoofed animals are outnumbered by a massive congregation of flamingos", + "pred": "a herd of cattle grazing on a lush green field" + }, + { + "label": "vegetable pieces and knife are kept on cutting board.cabbage is on the table", + "pred": "a cutting board topped with carrots and a knife" + }, + { + "label": "a person cross-country skiing on a winters day", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "white suited snowboarder displaying aerial skills at ski slope", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a little girl wearing a black hat can be seen on a saddle riding", + "pred": "a girl riding on the back of a brown horse" + }, + { + "label": "a young child sitting on a kitchen counter next to some sliced apples", + "pred": "a little girl sitting at a table with a plate of food" + }, + { + "label": "four zebra stand near the steps made of stone", + "pred": "zebra standing next to each other" + }, + { + "label": "a person cross country skis through the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "meat with vegetable and fruit displayed in roasting pan", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a white dog sitting on a table next to a paper", + "pred": "a white dog sitting on a table next to a book" + }, + { + "label": "floor eye view of a supine dog hoping for some attention", + "pred": "a dog laying on the floor next to a pillow" + }, + { + "label": "a young boy in a black jacket riding a white horse", + "pred": "a young boy riding a horse on a sunny day" + }, + { + "label": "a dog next to a news paper on a table", + "pred": "a white dog sitting on a table next to a book" + }, + { + "label": "four riders are on horses on the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a nearly empty plate containing broccoli and brown sauce", + "pred": "a plate of food on a table" + }, + { + "label": "a young child is sitting on top of the kitchen counter", + "pred": "a little girl sitting at a table with a plate of food" + }, + { + "label": "four zebras on a dirt path looking in different directions", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "people are riding horses on a beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a young man standing in front of a fence holding a skateboard", + "pred": "a young man holding a tennis racket in his hand" + }, + { + "label": "a brown and white dog laying on a carpet under a table", + "pred": "a dog laying on the floor next to a pillow" + }, + { + "label": "zebra eating a small pile of hay", + "pred": "a zebra eating grass in a fenced in area" + }, + { + "label": "a plate is left sitting half eaten with mostly broccoli remaining", + "pred": "a plate of food on a table" + }, + { + "label": "a young girl riding a white horse in front of other people", + "pred": "a young boy riding a horse on a sunny day" + }, + { + "label": "a pan with carrots, apples, meat, and potatoes", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a young man on a skate board riding a ramp", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a young man holding his skateboard, is posing for the camera", + "pred": "a young man holding a tennis racket in his hand" + }, + { + "label": "a young man is doing tricks on his skateboard", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a tall man is on snow skis on a pathway", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a boy with his skateboard", + "pred": "a young man holding a tennis racket in his hand" + }, + { + "label": "a skateboarder doing a stunt at a skatepark", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a person riding a skate board on a ledge", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "zebras resting underneath a tree during the day", + "pred": "a zebra eating grass in a fenced in area" + }, + { + "label": "a table topped with a laptop computer next to a plate of food", + "pred": "a banana sitting on top of a table next to a laptop" + }, + { + "label": "men standing next to each other", + "pred": "three people posing for a picture on skis in the snow" + }, + { + "label": "a man and woman in ski gear standing in front of a mountain", + "pred": "two people standing on top of a snow covered slope" + }, + { + "label": "young man holding skateboard in front of fence", + "pred": "a young man holding a tennis racket in his hand" + }, + { + "label": "a zebra eating hay scattered on the ground while another zebra lays in the shade", + "pred": "a zebra eating grass in a fenced in area" + }, + { + "label": "two jockeys ride their horses in a race at the track", + "pred": "a number of horses racing on a track" + }, + { + "label": "a zebra eating some hay at a zoo", + "pred": "a zebra eating grass in a fenced in area" + }, + { + "label": "fruits and vegetables inside of a cooking pot", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a corgi dog resting on frizzy beige carpet", + "pred": "a dog laying on the floor next to a pillow" + }, + { + "label": "three people cross country skiing in a field", + "pred": "three people posing for a picture on skis in the snow" + }, + { + "label": "a young boy in riding clothes rides a horse", + "pred": "a young boy riding a horse on a sunny day" + }, + { + "label": "three men are skiing down a snow covered hill", + "pred": "three people posing for a picture on skis in the snow" + }, + { + "label": "bananas in a bushel are displayed over some kind of tail", + "pred": "a large bunch of green bananas hanging from a tree" + }, + { + "label": "three cross-country skiers posing for the camera on a snowy lane", + "pred": "three people posing for a picture on skis in the snow" + }, + { + "label": "a dog laying under a table on the rug", + "pred": "a dog laying on the floor next to a pillow" + }, + { + "label": "horses racing on a dirt track at a race track", + "pred": "a number of horses racing on a track" + }, + { + "label": "zebras lay about and eat hay in their pen", + "pred": "a zebra eating grass in a fenced in area" + }, + { + "label": "slices of food are arranged around food piled on a plate", + "pred": "a white plate topped with different types of vegetables" + }, + { + "label": "a boy doing a skateboard trick on a street", + "pred": "a young boy on a skateboard in the street" + }, + { + "label": "a person doing tricks on a skateboard in the street near a house", + "pred": "a young boy on a skateboard in the street" + }, + { + "label": "a person skis down a snowy hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a table with a laptop a plate with a muffin and a banana, a can and a cellphone", + "pred": "a banana sitting on top of a table next to a laptop" + }, + { + "label": "horses racing on a dirt track with flowers around the scoreboard", + "pred": "a number of horses racing on a track" + }, + { + "label": "three skiers pose in the snow in front of barren trees", + "pred": "three people posing for a picture on skis in the snow" + }, + { + "label": "a half eaten plate of food sits on the table", + "pred": "a plate of food on a table" + }, + { + "label": "a little boy wearing a red shirt holding a white frisbee", + "pred": "a young boy standing in front of a fence holding a frisbee" + }, + { + "label": "a man sitting on top of a skateboard on a street", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "multiple banana bunches growing on a leafy tree", + "pred": "a large bunch of green bananas hanging from a tree" + }, + { + "label": "a laptop on top of a table with a plate with food next to it", + "pred": "a banana sitting next to a laptop on a table" + }, + { + "label": "a table topped with plates, bowls and containers of food", + "pred": "a table filled with lots of plates of food" + }, + { + "label": "a plate sits on a table mostly empty, except for a few vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "slightly bruised banana's in a bowl", + "pred": "bananas that are in a bowl" + }, + { + "label": "bananas in a metal bowl", + "pred": "bananas that are in a bowl" + }, + { + "label": "a soda, banana and muffin are set near a laptop", + "pred": "a banana sitting next to a laptop on a table" + }, + { + "label": "a boy posing for a picture with his skateboard", + "pred": "a young man holding a tennis racket in his hand" + }, + { + "label": "men racing horses next to each other", + "pred": "a number of horses racing on a track" + }, + { + "label": "horses and jockeys running on a racing track", + "pred": "a number of horses racing on a track" + }, + { + "label": "broccoli, carrots and a small amount of potatoes on a plate", + "pred": "a plate of food on a table" + }, + { + "label": "table with a plate of food a drink, cell phone and a computer", + "pred": "a banana sitting next to a laptop on a table" + }, + { + "label": "a steel strainer with four ripe banana's on a table", + "pred": "bananas that are in a bowl" + }, + { + "label": "a large group of bananas still on the tree", + "pred": "a large bunch of green bananas hanging from a tree" + }, + { + "label": "a table set up as a buffet with fruits, snacks and plates", + "pred": "a table filled with lots of plates of food" + }, + { + "label": "four bananas in a bunch with brown dots", + "pred": "bananas that are in a bowl" + }, + { + "label": "a skier posing on a steep snowy hill", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a young man kneeling while riding a skate board", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a boy prepares to throw a frisbee to someone out of the shot", + "pred": "a young boy standing in front of a wooden fence" + }, + { + "label": "different types of food gathered on the table", + "pred": "a table filled with lots of plates of food" + }, + { + "label": "three yellow bananas sitting inside of a basket", + "pred": "bananas that are in a bowl" + }, + { + "label": "a person on skates doing tricks", + "pred": "a young boy on a skateboard in the street" + }, + { + "label": "a guy squatting on a skateboard trying to balance", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a table covered in different kinds of baked goods and fruit", + "pred": "a table filled with lots of plates of food" + }, + { + "label": "the boy plays with his skate board in the street", + "pred": "a young boy on a skateboard in the street" + }, + { + "label": "a person skiing down a snowy hill side", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a patch of green bananas up in a banana tree", + "pred": "a large bunch of green bananas hanging from a tree" + }, + { + "label": "a lone man sliding sideways downhill while on skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "people throwing around a freez be", + "pred": "young men playing a game of frisbee" + }, + { + "label": "containers of food are on the table", + "pred": "a table filled with lots of plates of food" + }, + { + "label": "young male preparing to throw a white plastic frisbee", + "pred": "a young boy standing in front of a wooden fence" + }, + { + "label": "young boy almost ready to throw a frisbee", + "pred": "a young boy standing in front of a fence holding a frisbee" + }, + { + "label": "helmeted young skateboarder displaying ability skills on cement surface", + "pred": "a man riding a skateboard down the side of a road" + }, + { + "label": "a man wearing black skiing down a slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man is enjoying his day of skiing, trying to stay up float", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "five oranges with a red apple and a green apple", + "pred": "a pile of oranges and apples on a table" + }, + { + "label": "a boy preparing to throw a frisbee outside", + "pred": "a young boy standing in front of a fence holding a frisbee" + }, + { + "label": "a woman selling raw carrots at an outdoor market", + "pred": "a woman standing in front of a table filled with lots of food" + }, + { + "label": "skiers glide down a hilly landscape covered in snow", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "a lush green banana tree with a big bunch of bananas", + "pred": "a large bunch of green bananas hanging from a tree" + }, + { + "label": "a skater losing his balance while squatting on his board", + "pred": "a man riding a skateboard down the side of a road" + }, + { + "label": "five oranges and two applies sitting on a white surface", + "pred": "a pile of oranges and apples on a table" + }, + { + "label": "3 people separated by a short distance skiing on a ski slope", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "in lady standing with her hand on carrots in a market", + "pred": "a woman standing in front of a table filled with lots of food" + }, + { + "label": "kids are skateboarding at a skate park and one them has fallen down", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "men and boys playing frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "three people on packed snow trail, two skiing, one walking", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "a boy in white jersey doing a trick on a skateboard", + "pred": "a young boy on a skateboard in the street" + }, + { + "label": "people cross country skiing on a path between trees", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "fruit includes tangerines and apples", + "pred": "a pile of oranges and apples on a table" + }, + { + "label": "bunch of apples and oranges sitting on a white surface", + "pred": "a pile of oranges and apples on a table" + }, + { + "label": "a woman standing behind a table with carrots on it at a produce market", + "pred": "a woman standing in front of a table filled with lots of food" + }, + { + "label": "a man flying through the air while riding a skateboard", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a woman has an apron and head scarf while touching carrots at a produce market", + "pred": "a woman standing in front of a table filled with lots of food" + }, + { + "label": "a female skier stops and poses for a picture", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "four men standing on top of a lush green field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "two young people are skateboarding on the ramp, trying to pull off tricks", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "the two apples are surround by a bunch of oranges", + "pred": "a pile of oranges and apples on a table" + }, + { + "label": "a dog that's been playing in the water", + "pred": "a black and white dog standing on top of a beach" + }, + { + "label": "a woman standing in a kitchen touching a pile of carrots", + "pred": "a woman standing in front of a table filled with lots of food" + }, + { + "label": "a wet dog standing at the beach near the ocean", + "pred": "a black and white dog standing on top of a beach" + }, + { + "label": "five guys with a white frisbee in mid air", + "pred": "young men playing a game of frisbee" + }, + { + "label": "people in a field playing frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a wet dog standing on a beach next to the ocean", + "pred": "a black and white dog standing on top of a beach" + }, + { + "label": "a person in a helmet is riding a skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a skateboarder wearing a helmet doing a trick at a skate park", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a zebra in the grass who is cleaning himself", + "pred": "a zebra standing on top of a grass covered field" + }, + { + "label": "a collection of apples growing on a tree", + "pred": "a tree filled with lots of fruit on top of a tree" + }, + { + "label": "zebras stay close to each other near a log", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a man on a skateboard on a ledge", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a baby giraffe drinking milk from it's mother in a field", + "pred": "a zebra standing on top of a grass covered field" + }, + { + "label": "a bear walking in the forest in the early morning", + "pred": "a black bear walking across a dirt road" + }, + { + "label": "an assortment of fruits and vegetable all set together", + "pred": "a variety of fruits and vegetables on a table" + }, + { + "label": "a man riding on a skateboard on the sidewalk", + "pred": "a man riding a skateboard down a sidewalk next to a dog" + }, + { + "label": "a herd of zebra eating some hay from a wooden container", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a baby zebra is suckling milk from its mother", + "pred": "a zebra standing on top of a grass covered field" + }, + { + "label": "a large black bear walking across a wooded field", + "pred": "a black bear walking across a dirt road" + }, + { + "label": "a person in the heavy snow on a snowboard", + "pred": "a woman riding a snowboard down a snow covered slope" + }, + { + "label": "crisp, delicious apples hang on the dying branches of the tree", + "pred": "a tree filled with lots of fruit on top of a tree" + }, + { + "label": "a little boy riding skis down the side of a snow covered slope", + "pred": "a woman riding a snowboard down a snow covered slope" + }, + { + "label": "an apple tree is shown in the middle of an orchard", + "pred": "a tree filled with lots of fruit on top of a tree" + }, + { + "label": "round objects", + "pred": "a pile of fruits and vegetables on a table" + }, + { + "label": "a zebra grazing on food behind a metal fence", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a plate topped with sliced up oranges full of juice", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a person flying through the air whale riding skis", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "boy riding a skate board over a concrete seat", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a man in a baseball cap riding a skateboard grinding an edge", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a baby zebra nursing from an adult zebra", + "pred": "a zebra standing on top of a grass covered field" + }, + { + "label": "a large display of fruit: applies, grapes, oranges, lemons, limes and grapefruit", + "pred": "a display case filled with lots of different types of fruit" + }, + { + "label": "a zebra putting its face up close to a fence rail", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a bear is walking on an unpaved path in a wilderness area", + "pred": "a black bear walking across a dirt road" + }, + { + "label": "a male skateboarder skateboards in an area with others", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "various fruits packaged, tagged and displayed for sale", + "pred": "a display case filled with lots of different types of fruit" + }, + { + "label": "a display of strawberries, peas, broccoli, carrots, radishes and potatoes", + "pred": "a variety of fruits and vegetables on a table" + }, + { + "label": "two zebras are standing next to a log", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a man is jumping over a bench on a skateboard", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "fresh fruits and vegetables piled in a wooden box", + "pred": "a variety of fruits and vegetables on a table" + }, + { + "label": "two zebras relaxing in the fenced area of a zoo", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man wearing snow gear poses for a photo while standing on skis", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a toy horse sits atop a red wooden chair", + "pred": "a chair that is sitting on top of a bench" + }, + { + "label": "baby zebra sucking milk from its mothers teat", + "pred": "a zebra standing on top of a grass covered field" + }, + { + "label": "a man in red jacket on skis with trees", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "two brown bears swimming together in the water", + "pred": "two brown bears are playing in the water" + }, + { + "label": "the group of zebra are eating hay together", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "two brown bears playing open mouthed in a pond", + "pred": "two brown bears are playing in the water" + }, + { + "label": "man on skies on snow covered slope area", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a man and young girl surrounded by various fruits", + "pred": "a man sitting in front of a bunch of bananas" + }, + { + "label": "a herd of zebras standing on a sandy platform near a small body of water", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "apples, lemons, grapes, oranges and other fruits in crates", + "pred": "a display case filled with lots of different types of fruit" + }, + { + "label": "a person wearing a red coat and skis posing for a picture", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a herd of zebra next to small watering hole", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a bear walking along a path in the woods", + "pred": "a black bear walking across a dirt road" + }, + { + "label": "a tree containing apples with more trees", + "pred": "a tree filled with lots of fruit on top of a tree" + }, + { + "label": "plenty of oranges cut up for you to eat", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a skier in the snow in a wooded area", + "pred": "a woman riding a snowboard down a snow covered slope" + }, + { + "label": "a person snow skiing down a mountain between trees", + "pred": "a woman riding a snowboard down a snow covered slope" + }, + { + "label": "a batter misses a baseball while a empire tries to catch it", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the two zebras are looking through the fence", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a bear is seen walking in a forest in a blurry photo", + "pred": "a black bear walking across a dirt road" + }, + { + "label": "two apples, an orange, some grapes and peanuts", + "pred": "a pile of fruits and vegetables on a table" + }, + { + "label": "professional baseball players in the middle of a game", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a person standing on skies in the snow on top of a mountain", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a plate of finger foods next to a blue and raspberry topped cake", + "pred": "a table that has some plates of food on it" + }, + { + "label": "nuts and fruit", + "pred": "a pile of fruits and vegetables on a table" + }, + { + "label": "a kid riding on a skateboard on the cement", + "pred": "a man riding a skateboard down a sidewalk next to a dog" + }, + { + "label": "zebras standing together and eating", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a plastic horse standing on top of a chair", + "pred": "a chair that is sitting on top of a bench" + }, + { + "label": "a pile of nuts in front of some assorted fruit", + "pred": "a pile of fruits and vegetables on a table" + }, + { + "label": "a person skiing down a hill with goggles on", + "pred": "a woman riding a snowboard down a snow covered slope" + }, + { + "label": "a man and child sitting on a street with fruits in baskets", + "pred": "a man sitting in front of a bunch of bananas" + }, + { + "label": "various fruits and vegetables are on display close together", + "pred": "a variety of fruits and vegetables on a table" + }, + { + "label": "a small horse on a large wooden chair", + "pred": "a chair that is sitting on top of a bench" + }, + { + "label": "a polar bear with his chin raised lies on a rock", + "pred": "a polar bear sitting on top of a rock" + }, + { + "label": "zebras standing by a water hole", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a kid is riding down the street on a skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a tree has dying leaves and apples in a forest", + "pred": "a tree filled with lots of fruit on top of a tree" + }, + { + "label": "a skateboarder riding his board on the sidewalk", + "pred": "a man riding a skateboard down a sidewalk next to a dog" + }, + { + "label": "a herd of zebras drinking water from a small pond near dirt and shrubs", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "two people siting on the ground near many different fruits", + "pred": "a man sitting in front of a bunch of bananas" + }, + { + "label": "a skateboarder with one fut on a skateboard raising it up", + "pred": "a man riding a skateboard down a sidewalk next to a dog" + }, + { + "label": "apples, grapes, an oranges and peanuts on the white surface in a picture", + "pred": "a pile of fruits and vegetables on a table" + }, + { + "label": "two zebras are stranding next to each other by a fence", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "lots of oranges are sliced iin several sizes", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a display with lots of containers of different fruits", + "pred": "a display case filled with lots of different types of fruit" + }, + { + "label": "a guy sliding to a base in baseball", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a child in a helmet and safety pads riding a skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a large white polar bear sitting on top of a rock", + "pred": "a polar bear sitting on top of a rock" + }, + { + "label": "a large herd of zebra gathering around a watering hole", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a young kid in elbow and knee pads riding a skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a polar bear in front of a camera", + "pred": "a polar bear sitting on top of a rock" + }, + { + "label": "a baseball game as seen through the safety netting behind the batter", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a young skateboarder riding his board", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "fruits and vegetables for sale on display", + "pred": "a display case filled with lots of different types of fruit" + }, + { + "label": "a baseball player who swung for the ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "cut in half oranges are clustered all together", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "men on a field playing baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the polar bear has his chin up as he lies on his chest", + "pred": "a polar bear sitting on top of a rock" + }, + { + "label": "a variety of different vegetables and some strawberries", + "pred": "a variety of fruits and vegetables on a table" + }, + { + "label": "the young boy just finished eating the banana", + "pred": "a little boy holding a banana up to his face" + }, + { + "label": "a smiling boy sitting on a couch holds a banana peel", + "pred": "a little boy holding a banana up to his face" + }, + { + "label": "the oranges are peeled open with the inside showing", + "pred": "a pile of oranges sitting on top of each other" + }, + { + "label": "a salad that looks like a boat is next to a fork", + "pred": "a plastic container filled with vegetables and fruit" + }, + { + "label": "two brown bears in water open their mouths to each other", + "pred": "two brown bears are playing in the water" + }, + { + "label": "two bears on the water fighting each other", + "pred": "two brown bears are playing in the water" + }, + { + "label": "a large red chair in front of a building", + "pred": "a chair that is sitting on top of a bench" + }, + { + "label": "a water skier performing a trick while flying through the air", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "two adult bears play fight in the water", + "pred": "two brown bears are playing in the water" + }, + { + "label": "a bowl full of food sitting on a table next to a fork that rests on top of a circular disk", + "pred": "a plastic container filled with vegetables and fruit" + }, + { + "label": "young person on the street skateboarding wearing a helmet", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a white polar bear is laying down in its pen", + "pred": "a polar bear sitting on top of a rock" + }, + { + "label": "a young boy who is eating a banana", + "pred": "a little boy holding a banana up to his face" + }, + { + "label": "a person wearing a blue jacket is wearing skis and snowy trees", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a baseball player swings his bat while a ball floats above his head towards the catcher and umpire", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a zebra staring blankly near a watering hole", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a child holding a banana", + "pred": "a little boy holding a banana up to his face" + }, + { + "label": "a large salad bowl with a fork on the side on a flowered table", + "pred": "a plastic container filled with vegetables and fruit" + }, + { + "label": "a baseball player swinging a bat at a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man riding a skateboard on top of a wooden bench", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a zebra standing on a dry dirt lot", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "two men playing frisbee on a field", + "pred": "two people playing a game of frisbee on a field" + }, + { + "label": "a person flying backwards on skis over water", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a white piece of cake sitting on top of a plate", + "pred": "a piece of cake with strawberries on top of it" + }, + { + "label": "a skateboarder in a white shirt is doing a trick", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a small boy in a blue shirt holding a banana peel", + "pred": "a little boy holding a banana up to his face" + }, + { + "label": "a skiier on a snowy path at sunset", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "pitcher in a baseball game tries to out a player attempting to steal base", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a person doing a trick on water ski's while another passes underneath them", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a pavement where a person foot are seen having skates", + "pred": "a man riding a skateboard down a sidewalk next to a dog" + }, + { + "label": "men during a baseball game with wall", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a pair of zebra's leaning over eating grass in a field", + "pred": "a zebra grazing on grass in a field" + }, + { + "label": "the head and shoulders of a zebra in silhouette", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "two young men playing frisbee at night on a sports field", + "pred": "two people playing a game of frisbee on a field" + }, + { + "label": "a cake with white icing, mint leaves and strawberries", + "pred": "a piece of cake with strawberries on top of it" + }, + { + "label": "a man catching a frisbee as another looks on", + "pred": "two people playing a game of frisbee on a field" + }, + { + "label": "a large lone zebra poses for a picture inside a zoo", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a large red chair has a horse statue on it", + "pred": "a chair that is sitting on top of a bench" + }, + { + "label": "a man and young girl sit behind a display of fruits", + "pred": "a man sitting in front of a bunch of bananas" + }, + { + "label": "a person in the snow on some skis", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "people sitting next to piles of fruit", + "pred": "a man sitting in front of a bunch of bananas" + }, + { + "label": "a white square cake with five strawberries on the top", + "pred": "a piece of cake with strawberries on top of it" + }, + { + "label": "a man is skate boarding down a path and a dog is running by his side", + "pred": "a man riding a skateboard down the side of a road" + }, + { + "label": "a frisbee player is about to catch a thrown frisbee", + "pred": "two people playing a game of frisbee on a field" + }, + { + "label": "a nicely set dining table filled with food and a cake topped with berries", + "pred": "a table that has some plates of food on it" + }, + { + "label": "a snow skier standing among the tall trees", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a small lunch box with various vegetables and a fork", + "pred": "a plastic container filled with vegetables and fruit" + }, + { + "label": "a man leaping up to catch a frisbee with another man running behind him", + "pred": "two people playing a game of frisbee on a field" + }, + { + "label": "a man in a black hat, white shirt and black pants jumping a skateboard off a bench", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a man on a skateboard with a dog outside", + "pred": "a man riding a skateboard down the side of a road" + }, + { + "label": "a person on skis on snowy forest path", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a table with many plates of food", + "pred": "a table that has some plates of food on it" + }, + { + "label": "a person riding a skate board with a dog following beside", + "pred": "a man riding a skateboard down the side of a road" + }, + { + "label": "the person is doing tricks on the water skiing", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "this man is riding a skateboard behind a dog", + "pred": "a man riding a skateboard down the side of a road" + }, + { + "label": "two zebra stand near bushes and tall grass", + "pred": "a zebra grazing on grass in a field" + }, + { + "label": "a person riding a skate board on a bench", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a salad is in a red container and has lettuce, tomatoes and bits of carrots in it", + "pred": "a plastic container filled with vegetables and fruit" + }, + { + "label": "a man walking his dog on a quiet country road", + "pred": "a man riding a skateboard down the side of a road" + }, + { + "label": "the cake is topped with five whole strawberries", + "pred": "a piece of cake with strawberries on top of it" + }, + { + "label": "a square, white cake sits on a round plate and is decorated with strawberries", + "pred": "a piece of cake with strawberries on top of it" + }, + { + "label": "a herd of zebras crossing a shallow part of a river", + "pred": "a herd of zebras drinking water from a river" + }, + { + "label": "a giraffe in an outdoor area", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "two zebras grazing from grass next to a tree", + "pred": "a zebra grazing on grass in a field" + }, + { + "label": "a man in white shirt doing a trick on a skateboard", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a herd of zebra crossing a river with trees", + "pred": "a herd of zebras drinking water from a river" + }, + { + "label": "a herd of zebra crossing a river near a forest", + "pred": "a herd of zebras drinking water from a river" + }, + { + "label": "two zebra standing next to each other on a lush green field", + "pred": "a zebra grazing on grass in a field" + }, + { + "label": "zebras are crossing a stream", + "pred": "a herd of zebras drinking water from a river" + }, + { + "label": "a tray of various foods next to drinks on a table", + "pred": "a tray of food with a sandwich and french fries" + }, + { + "label": "a table topped with a cake covered in berries next to a plate of sandwiches", + "pred": "a table that has some plates of food on it" + }, + { + "label": "a jouster rides on a horse through a field while an audience watches", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a white cake topped with berries and a plate of fruit and cheeses", + "pred": "a table that has some plates of food on it" + }, + { + "label": "black and white zebras crossing a shallow stream", + "pred": "a herd of zebras drinking water from a river" + }, + { + "label": "a knight riding on the back of a brown horse through a lush green field", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a plate of bananas and sliced oranges covered in butterflies", + "pred": "a bird that is eating some food off of a bowl" + }, + { + "label": "the oranges are picked to make fresh jams", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a large white polar bear swimming in a pool of blue water", + "pred": "a polar bear swimming in a body of water" + }, + { + "label": "a batter getting ready to hit his pitch", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a polar bear swimming in the water by a wall", + "pred": "a polar bear swimming in a body of water" + }, + { + "label": "two zebras are feeding on the grass by themselves", + "pred": "a zebra grazing on grass in a field" + }, + { + "label": "four bowls of different eatables are kept on the slab", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "a man riding on a horse, preparing to joust", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "large moths atop a plate of bananas and citrus", + "pred": "a bird that is eating some food off of a bowl" + }, + { + "label": "a dish with some orange slices and something else", + "pred": "a bird that is eating some food off of a bowl" + }, + { + "label": "a pair of sandwiches with macaroni and cheese with broccoli and a fruit bowl", + "pred": "a tray of food with a sandwich and french fries" + }, + { + "label": "a man in an armor riding a horse in front of spectators", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a tray with carrots, snap beans, mash potatoes and an egg", + "pred": "a tray filled with different types of food" + }, + { + "label": "a person skiing through the snow near some trees toward a sunset", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a person cross country skiing across a snow filled plain", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a person riding skis across snow covered ground", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a painting of a cross country skier traveling up a slope at sunrise", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a person in a knight outfit riding a horse and carrying a jousting pole", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a table topped with a couple glasses of oj and orange slices", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a plate topped with moths and rotten fruit", + "pred": "a bird that is eating some food off of a bowl" + }, + { + "label": "two zebras in a forest between many trees", + "pred": "a zebra standing next to a zebra laying on the ground" + }, + { + "label": "two horses inside of the fence", + "pred": "a brown and white horse standing next to a fence" + }, + { + "label": "cross country skier skiing along a well-worn trail", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a person in ski gear skiing on slope next to trees", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a blue and black ray holding sandwich, coffee and liquor bottles", + "pred": "a sandwich and a cup of coffee on a tray" + }, + { + "label": "butter flies on a plate with lemons", + "pred": "a bird that is eating some food off of a bowl" + }, + { + "label": "a tray with carrots, peas, rice, and a hard boiled egg", + "pred": "a tray filled with different types of food" + }, + { + "label": "four bowls of snacks: crackers, broccoli and carrots, nuts and dip", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "oranges and two jars of an orange substance on a wooden table", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "two sandwiches and macaroni and cheese and desert on a cafeteria tray", + "pred": "a tray of food with a sandwich and french fries" + }, + { + "label": "two brown horses in dirt field next to wooden fence", + "pred": "a brown and white horse standing next to a fence" + }, + { + "label": "a person holding a pole in each hand in the snow", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "an assortment of crackers, dip and veggies sitting on a white counter", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "a polar bear is under water next to a rock wall", + "pred": "a polar bear swimming in a body of water" + }, + { + "label": "a green stand holding several bananas for sale", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "various foods served in a tray with different compartments", + "pred": "a tray filled with different types of food" + }, + { + "label": "a plate with a sandwich on it and a side salad and drink", + "pred": "a sandwich and a cup of coffee on a tray" + }, + { + "label": "a pole holding a bunch of bananas in a market area", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "a serving of rice, carrots, green pod beans and an egg each in their own small plastic containers", + "pred": "a tray filled with different types of food" + }, + { + "label": "a bowl of noodles, meat and broccoli with a fork", + "pred": "a bowl filled with noodles and vegetables on top of a table" + }, + { + "label": "horses standing near each other in a fenced in area", + "pred": "a brown and white horse standing next to a fence" + }, + { + "label": "a person in the snow on some skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a bowl of noodles, meat, broccoli and carrots in a sauce with a fork", + "pred": "a bowl filled with noodles and vegetables on top of a table" + }, + { + "label": "bunch of bananas hanging in an open air market stall", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "four containers of cooked rice, carrots, beans and an egg", + "pred": "a tray filled with different types of food" + }, + { + "label": "two horses stand outside in their corral, with mountains", + "pred": "a brown and white horse standing next to a fence" + }, + { + "label": "a bowl full of chinese food with a fork", + "pred": "a bowl filled with noodles and vegetables on top of a table" + }, + { + "label": "a person riding skis on a snowy surface", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "an adult and a juvenile zebra in a wooded area", + "pred": "a zebra standing next to a zebra laying on the ground" + }, + { + "label": "a tray of food with two glasses of drink and salt and pepper", + "pred": "a tray of food with a sandwich and french fries" + }, + { + "label": "an outdoor area with many animals inluding a zebra and a rhinoceros", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "zebras and cattle are standing together, some eating", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a person walking in the snow on some skis", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a polar bear swimming in water near a rock wall", + "pred": "a polar bear swimming in a body of water" + }, + { + "label": "a man swings a baseball bat at a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "four bowls of snacks of vegetables and crackers", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "bananas hangs from a post in a covered area", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "a polar bear swimming underwater, approaching some rocks", + "pred": "a polar bear swimming in a body of water" + }, + { + "label": "oranges next to some jars", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "two zebras, on sitting down on the ground, the other standing up next to a tree", + "pred": "a zebra standing next to a zebra laying on the ground" + }, + { + "label": "a baseball player at the plate hitting a baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "two horses in an enclosed area during the day", + "pred": "a brown and white horse standing next to a fence" + }, + { + "label": "a bowl with vegetables with broccolli", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "a plant in a garden near a white building", + "pred": "a garden filled with lots of plants next to a fence" + }, + { + "label": "broccoli plants planted next to a wall", + "pred": "a garden filled with lots of plants next to a fence" + }, + { + "label": "two zebras relax in a wooded area near many trees", + "pred": "a zebra standing next to a zebra laying on the ground" + }, + { + "label": "a zebra all by itself in the green forest", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a bowl of food that looks like worms and some greens", + "pred": "a bowl filled with noodles and vegetables on top of a table" + }, + { + "label": "zebras in a park somewhere", + "pred": "a zebra standing next to a zebra laying on the ground" + }, + { + "label": "cut up oranges and jars and a wooden knife", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a black horse is standing in the sand, with people", + "pred": "a large black cow standing on top of a wooden table" + }, + { + "label": "a stack of bananas are sitting in a tree by signs", + "pred": "bunches of bananas hanging from a tree" + }, + { + "label": "cafeteria lunch fare is a balanced meal plus dessert", + "pred": "a tray of food with a sandwich and french fries" + }, + { + "label": "zebras playing on a grassy field", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a yellow and black bowl holding noodles, beef and broccoli", + "pred": "a bowl filled with noodles and vegetables on top of a table" + }, + { + "label": "a row of plants growing in the ground by a building", + "pred": "a garden filled with lots of plants next to a fence" + }, + { + "label": "a zebra standing in a field of grass outside", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a tray filled with a cut in half sandwich and a cup of coffee", + "pred": "a sandwich and a cup of coffee on a tray" + }, + { + "label": "a zebra standing in a grassy field by a woods", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a zebra stands in high grass in wooded area", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a person standing in shore of beach with a frisbee in the sky", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a young man riding down a hand rail on a skateboard", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a skier in a squat position on skies skiing downhill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man standing in snow gear on skis while on a snowy hill", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a man stands ankle-deep in the ocean at sunset", + "pred": "a person on a beach flying a kite" + }, + { + "label": "an airplane meal including a sandwich and coffee", + "pred": "a sandwich and a cup of coffee on a tray" + }, + { + "label": "a half zebra hybrid is standing in tall grass", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man riding skis on top of a snow covered hill", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a skateboarder skates and balances on a railing", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a skier is crouched down as he is skiing", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a miniature horse walking near a restaurants outside deck", + "pred": "a large black cow standing on top of a wooden table" + }, + { + "label": "a man riding a skateboard down a rail", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a young man on a skateboard sliding up a handrail", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "two zebras in an open field with grass", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a small black pony in the sand", + "pred": "a large black cow standing on top of a wooden table" + }, + { + "label": "a skateboarder in a gray sweatshirt is doing a trick", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a person is standing in some water is flying a kite", + "pred": "a person on a beach flying a kite" + }, + { + "label": "four picture collage of a snowboarder wearing a red jacket and brown pants going down a snowy mountain side", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a donkey standing in front of a restaurant", + "pred": "a large black cow standing on top of a wooden table" + }, + { + "label": "four persons are skating on the skate board on snow", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "zebra standing next to a tree", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a large horse standing inside of a wooden pen", + "pred": "a large black cow standing on top of a wooden table" + }, + { + "label": "a man standing on top of a river next to the sun and a flying kite", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a baseball player holding a bat as a ball approaches", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman standing next to a young man near a pile of fruit", + "pred": "a girl and a boy looking at a pile of fruit" + }, + { + "label": "a young man kneeling down while riding skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man standing at the beach shoreline and watching the sunset", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a boy wearing a green shirt posing with some fruit", + "pred": "a girl and a boy looking at a pile of fruit" + }, + { + "label": "a young boy with his hands on his face near some fruit", + "pred": "a girl and a boy looking at a pile of fruit" + }, + { + "label": "a skier crouched and skiing down a slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "four photographs of a person in red jacket snowboarding", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a child with oranges and apples biting into one", + "pred": "a girl and a boy looking at a pile of fruit" + }, + { + "label": "a skier at the end of his run tucking under to go faster", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a skier is standing and posing for a photo", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a snow boarder wearing red snow gear carving down a mountain", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a woman exercising a brown horse in a riding ring", + "pred": "a woman standing next to a brown horse in a barn" + }, + { + "label": "batter takes a swing at the incoming ball during the baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman is in a barn with a brown horse", + "pred": "a woman standing next to a brown horse in a barn" + }, + { + "label": "a zebra grazes in the grass as another zebra notices the photographer", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "giraffes are standing by trees and grass", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man smiles maniacly while putting a dog into an oven", + "pred": "a man putting food into an open oven" + }, + { + "label": "a man holding a cat in front of a stove", + "pred": "a man putting food into an open oven" + }, + { + "label": "a person leaning on a bunch of oranges and apples", + "pred": "a girl and a boy looking at a pile of fruit" + }, + { + "label": "zebras are grazing next to some trees", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "two brown ponies in grassy field next to a fence", + "pred": "a brown horse standing next to a white horse in a field" + }, + { + "label": "green plants and climbing vines in a garden plot", + "pred": "a garden filled with lots of plants next to a fence" + }, + { + "label": "a sandwhich, a salad and a drink on a tray", + "pred": "a sandwich and a cup of coffee on a tray" + }, + { + "label": "sliced bananas sit on top of a pastry dish on a plate", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "white bowl full of chopped carrots and broccoli", + "pred": "a bowl filled with carrots and broccoli" + }, + { + "label": "a small horse and a larger horse standing behind a fence", + "pred": "a brown horse standing next to a white horse in a field" + }, + { + "label": "a horse and her young one standing in the pasture", + "pred": "a brown horse standing next to a white horse in a field" + }, + { + "label": "a large group of horse with men riding on a few of them", + "pred": "a large group of people riding horses in a field" + }, + { + "label": "broccoli and carrots together in a bowl on a table", + "pred": "a bowl filled with carrots and broccoli" + }, + { + "label": "a bowl of cut up raw carrots and broccoli", + "pred": "a bowl filled with carrots and broccoli" + }, + { + "label": "woman skier taking a break and enjoying a snack", + "pred": "a woman sitting on a bench in the snow" + }, + { + "label": "a skier sitting on a picnic table and eating a doughnut", + "pred": "a woman sitting on a bench in the snow" + }, + { + "label": "a kale and sweet pea home garden getting the last rays of sunlight", + "pred": "a garden filled with lots of plants next to a fence" + }, + { + "label": "a woman training her beautiful brown horse", + "pred": "a woman standing next to a brown horse in a barn" + }, + { + "label": "different angles of a person who is using a snowboard", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "no image here to provide a caption for", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a guy rides his skate board on the city sidewalks", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a person skateboarding down the road at night", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "african animals placidly grazing in a park enclosure", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a person riding skis on a snowy surface", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a bowl of carrots and broccoli", + "pred": "a bowl filled with carrots and broccoli" + }, + { + "label": "a woman is sitting on a bench and is eating something", + "pred": "a woman sitting on a bench in the snow" + }, + { + "label": "a man wearing a plad shirt riding a skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a man riding a skateboard down a sidewalk", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a food that is topped with bananas and a brown sauce", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "two zebras grazing while a hippo looks at them and some oxen", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a man putting a puppy inside of an oven", + "pred": "a man putting food into an open oven" + }, + { + "label": "odd meal on a plate with bananas and gravy", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "a man poses while skiing on a mountain at a snow resort", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a white bowl that includes carrots and broccoli", + "pred": "a bowl filled with carrots and broccoli" + }, + { + "label": "a woman with a brown horse in a dirt area of building", + "pred": "a woman standing next to a brown horse in a barn" + }, + { + "label": "the desert is made and ready to be eaten", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "two horses stand by a fence in a grassy field", + "pred": "a brown horse standing next to a white horse in a field" + }, + { + "label": "a female skier sits down on a bench eating a bagel", + "pred": "a woman sitting on a bench in the snow" + }, + { + "label": "blueberry pancakes with slices bananas and glaze on top", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "the brown fuzzy dog has round blue eyes", + "pred": "a small brown dog sitting on top of a book" + }, + { + "label": "a woman and a horse in a barn with dirt floor", + "pred": "a woman standing next to a brown horse in a barn" + }, + { + "label": "men leading a pack of horses through a field", + "pred": "a large group of people riding horses in a field" + }, + { + "label": "a young man riding a skateboard with an older man", + "pred": "a boy on a skateboard in front of a crowd of people" + }, + { + "label": "a little dog sitting on some books", + "pred": "a small brown dog sitting on top of a book" + }, + { + "label": "horses lined up on a grassy field, some with riders", + "pred": "a large group of people riding horses in a field" + }, + { + "label": "a man acting like he's going to put his dog in an oven", + "pred": "a man putting food into an open oven" + }, + { + "label": "a woman that is sitting outside on a bench in the snow", + "pred": "a woman sitting on a bench in the snow" + }, + { + "label": "the puppy is sitting on the books in ront of the cubbyholes", + "pred": "a small brown dog sitting on top of a book" + }, + { + "label": "a herd of cattle grazing on a lush green field", + "pred": "a large group of people riding horses in a field" + }, + { + "label": "a dog hanging out of a back door window", + "pred": "a dog sticking its head out the window of a car" + }, + { + "label": "a small brown dog laying on top of a couch", + "pred": "a small brown dog sitting on top of a book" + }, + { + "label": "a person standing in front of an open oven", + "pred": "a man putting food into an open oven" + }, + { + "label": "men on horses are driving many other horses in a group", + "pred": "a large group of people riding horses in a field" + }, + { + "label": "two people standing on the same skateboard and holding each other up", + "pred": "a boy on a skateboard in front of a crowd of people" + }, + { + "label": "a man teaching a boy how to ride a skateboard", + "pred": "a boy on a skateboard in front of a crowd of people" + }, + { + "label": "a large dog sitting on top of a picture frame", + "pred": "a dog laying on a couch next to a laptop" + }, + { + "label": "a man and a woman holding stuffed teddy bears near the ocean", + "pred": "two people standing next to each other on a beach" + }, + { + "label": "zebra standing next to each other on a dirt field", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a dog is shown in a car rear view mirror", + "pred": "a dog sticking its head out the window of a car" + }, + { + "label": "a dog sticks his head out of a car window", + "pred": "a dog sticking its head out the window of a car" + }, + { + "label": "a dog sits near books with a shirt on", + "pred": "a small brown dog sitting on top of a book" + }, + { + "label": "a dog looks out of the window as the car driver goes past a historic town", + "pred": "a dog sticking its head out the window of a car" + }, + { + "label": "he is teaching the boy how to ride a skateboard", + "pred": "a boy on a skateboard in front of a crowd of people" + }, + { + "label": "a skateboarder is on top of a cement bowl", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a reflection of a dog looking out a window in a side view mirror", + "pred": "a dog sticking its head out the window of a car" + }, + { + "label": "a dog on a red couch with the tv and wii remotes", + "pred": "a dog laying on a couch next to a laptop" + }, + { + "label": "a plate of broccoli and meat on a table", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a man on a skateboard is doing a trick", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a plate of food with broccoli", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "small plate of food which includes small pieces of broccoli", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a baseball player is winding up for the pitch", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a man is in his skiing gear, while posing for the camera", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a man and a woman watching waves at beach", + "pred": "two people standing next to each other on a beach" + }, + { + "label": "skier in full snow gear posing for a picture", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a bowl of some broccoli that is chopped", + "pred": "a white bowl filled with broccoli on top of a table" + }, + { + "label": "fruits and veggies are ready to be eaten", + "pred": "a tray filled with different types of vegetables" + }, + { + "label": "a man and woman stand on the beach and look at the ocean", + "pred": "two people standing next to each other on a beach" + }, + { + "label": "a person helping a child stand on a skateboard", + "pred": "a boy on a skateboard in front of a crowd of people" + }, + { + "label": "a male skateboarder is trying to pull off a trick on the ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "three zebras huddling together in a very dry area", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "cooked broccoli in serving dish sitting on cloth hot pad", + "pred": "a white bowl filled with broccoli on top of a table" + }, + { + "label": "a dog sitting on the couch with it's paw over a tray that holds remotes for the tv and wii", + "pred": "a dog laying on a couch next to a laptop" + }, + { + "label": "a table with two black trays of food that include raspberries and broccoli", + "pred": "a tray filled with different types of vegetables" + }, + { + "label": "a dog is sitting on a couch by a remote", + "pred": "a dog laying on a couch next to a laptop" + }, + { + "label": "a man doing a skateboard trick on top of pool", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a close up picture of some food on a plate", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a dog laying on the couch next to remotes", + "pred": "a dog laying on a couch next to a laptop" + }, + { + "label": "a bento box filled with sushi and vegetables", + "pred": "a tray filled with different types of vegetables" + }, + { + "label": "two horses stand next to each other in front of a fence", + "pred": "a brown horse standing next to a white horse in a field" + }, + { + "label": "a baseball player gets ready to throw a pitch", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "two people standing need the surf line on pebble beach", + "pred": "two people standing next to each other on a beach" + }, + { + "label": "a person riding skis on a snowy surface", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a man and a woman standing on a stony beach with driftwood", + "pred": "two people standing next to each other on a beach" + }, + { + "label": "green broccoli and hams are on the plate", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "broccoli, green beans and various other foods in a tray", + "pred": "a tray filled with different types of vegetables" + }, + { + "label": "three zebras standing in a sandy desert area", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a square plate of carrots, spinach and more", + "pred": "a white plate topped with a salad and a fork" + }, + { + "label": "baseball pitcher winds up to throw the ball", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a white tray of broccoli on a table", + "pred": "a white bowl filled with broccoli on top of a table" + }, + { + "label": "dishes filled with sushi, fruit, and vegetables on a table", + "pred": "a tray filled with different types of vegetables" + }, + { + "label": "a man with skis and poles is on snow", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a white and blue plate full of broccoli", + "pred": "a white bowl filled with broccoli on top of a table" + }, + { + "label": "a series of photos of two plates with different desserts and another plate with a cup of coffee", + "pred": "a cup of coffee and a pastry on a table" + }, + { + "label": "alfalfa sprouts and colorful pepper salad on a plate", + "pred": "a white plate topped with a salad and a fork" + }, + { + "label": "a man is playing baseball in the field", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "horses and their riders are racing in a horse race", + "pred": "two jockeys racing horses on a track" + }, + { + "label": "a baseball player pitching a ball on top of a field", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a man on a skateboard wearing a helmet and safety pads while riding in an empty swimming pool", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a baseball player is about to throw his best pitch", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a three frame photo combination showcases two types of pie on the right and left side with a coffee in the middle", + "pred": "a cup of coffee and a pastry on a table" + }, + { + "label": "two men watch another throw a frisbee in a field", + "pred": "a man throwing a frisbee in a field" + }, + { + "label": "a trio of men throwing a frisbee in a field", + "pred": "a man throwing a frisbee in a field" + }, + { + "label": "a variety of items is shown in a shopping cart", + "pred": "a refrigerator filled with lots of fruits and vegetables" + }, + { + "label": "a person on a skateboard rides down a ramp", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "people are throwing a frisbie", + "pred": "a man throwing a frisbee in a field" + }, + { + "label": "a plate of freshly made vegetables served on a plate", + "pred": "a white plate topped with a salad and a fork" + }, + { + "label": "person on a skateboard", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "those zebras may have lost their parents and they could be nearby", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "a man in white baseball uniform throwing a ball", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "the broccoli platter in the dish is mostly eaten up", + "pred": "a white bowl filled with broccoli on top of a table" + }, + { + "label": "people playing with a disc in a grassy field", + "pred": "a man throwing a frisbee in a field" + }, + { + "label": "a man in grey baseball uniform throwing a ball", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "person riding on edge of skateboard about to do a trick", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a baseball player warming up on the field", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a lemon hangs from a small tree limb near several leaves", + "pred": "an orange sitting on top of a tree" + }, + { + "label": "men playing a game of frisbee", + "pred": "a man throwing a frisbee in a field" + }, + { + "label": "an orange hanging alone at the end of a branch", + "pred": "an orange sitting on top of a tree" + }, + { + "label": "a partially-eaten pastry, a glass arizona tea and another piece of pastry", + "pred": "a cup of coffee and a pastry on a table" + }, + { + "label": "three images of a pie and a cup of tea or coffee", + "pred": "a cup of coffee and a pastry on a table" + }, + { + "label": "a salad made with yellow pepper strips and green sprouts sits on a square white plate", + "pred": "a white plate topped with a salad and a fork" + }, + { + "label": "two zebras standing close to a little one", + "pred": "a herd of zebra standing on top of a dirt field" + }, + { + "label": "an orange still on the tree", + "pred": "an orange sitting on top of a tree" + }, + { + "label": "a man is standing on a skateboard at a skate park", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a baseball player throwing a pitch from the mound", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a male with a purple jacket on skies posing for a picture", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a person on skis sliding up down a path", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a man is cross country skiing in the snow", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "person skiing on snowy slopes with wires above", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "crackers with spread on table with remote", + "pred": "slices of pizza sitting on top of a table" + }, + { + "label": "a fresh-looking salad on a square plate", + "pred": "a white plate topped with a salad and a fork" + }, + { + "label": "a plate filled with pastries next to a keyboard", + "pred": "slices of pizza sitting on top of a table" + }, + { + "label": "a person wearing dc shoes on a skateboard in the sun", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a man is skiing on a snowy slope", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "square pastries are assorted on a white platter", + "pred": "slices of pizza sitting on top of a table" + }, + { + "label": "baseball game in large stadium with ball flying toward batter", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a herd of zebra in a grass field", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "horses by a fence on a field", + "pred": "a horse standing in a field next to a fence" + }, + { + "label": "a market area with boxes of fruit that includes bananas and pineapples", + "pred": "a fruit stand filled with lots of fruits and vegetables" + }, + { + "label": "the many zebra are running in different directions", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "food items displayed such as coffee cake, a pastry and a beverage in a glass cup", + "pred": "a cup of coffee and a pastry on a table" + }, + { + "label": "types of fruit on display on a street", + "pred": "a fruit stand filled with lots of fruits and vegetables" + }, + { + "label": "baseball players are playing ball while a crowd looks on", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people on horses racing together", + "pred": "a man riding a horse on top of a sandy beach" + }, + { + "label": "assorted vegetables are displayed at a fruit stand including bananas, oranges, apples, and cherries", + "pred": "a fruit stand filled with lots of fruits and vegetables" + }, + { + "label": "a skier makes his way up a snowy hill, eschewing the lift", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "racing horses are racing around the track", + "pred": "two jockeys racing horses on a track" + }, + { + "label": "plate of crackers with something spread on them next to a keyboard", + "pred": "slices of pizza sitting on top of a table" + }, + { + "label": "bananas on a plate on a counter", + "pred": "a plate with a bunch of bananas on it" + }, + { + "label": "zebras run and play in a grassy, wooded area", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a cart full of many types of different food", + "pred": "a refrigerator filled with lots of fruits and vegetables" + }, + { + "label": "a plate of food that includes chicken, mushrooms and broccoli", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "two horses walking around next to the gate", + "pred": "a horse standing in a field next to a fence" + }, + { + "label": "extreme close up of a cooked chicken, mushroom, and broccoli dish", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "people standing on a field playing disc golf", + "pred": "people in a field with a frisbee" + }, + { + "label": "jockeys ride horses on a track", + "pred": "two jockeys racing horses on a track" + }, + { + "label": "crackers coated with spread, sitting on a plate, ready to eat", + "pred": "slices of pizza sitting on top of a table" + }, + { + "label": "zebras are grazing on grass by a car", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "a number of zebras running in the grass", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a dog is sitting on an unmade bed with pillows", + "pred": "a dog sitting on a bed next to a pile of clothes" + }, + { + "label": "a dog sitting in a pile of bedding and other stuff", + "pred": "a dog sitting on a bed next to a pile of clothes" + }, + { + "label": "people are standing on top of a snowy mountain", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a herd of zebras playing in an open field", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "two horses in a pasture next to farm equipment", + "pred": "a horse standing in a field next to a fence" + }, + { + "label": "horses racing on a race track with jockeys", + "pred": "two jockeys racing horses on a track" + }, + { + "label": "a bowl of banana's, sprinkels, chocolate chips, and marshmellows", + "pred": "a bowl filled with ice cream and strawberries" + }, + { + "label": "bananas on a plate with a sign on it", + "pred": "a plate with a bunch of bananas on it" + }, + { + "label": "an orange grows from a branch with leaves", + "pred": "an orange sitting on top of a tree" + }, + { + "label": "zebras are standing in a fenced in area", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "bananas on a plate being served as drinks", + "pred": "a plate with a bunch of bananas on it" + }, + { + "label": "an orange growing on a tree", + "pred": "an orange sitting on top of a tree" + }, + { + "label": "people on slope with snowboards and skis", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "bananas, marshmellows, chocolate chips and sprinkles in a bowl", + "pred": "a bowl filled with ice cream and strawberries" + }, + { + "label": "horse number 11 and 6 engaged in a horse race", + "pred": "two jockeys racing horses on a track" + }, + { + "label": "bananas are piled on a white circular plate", + "pred": "a plate with a bunch of bananas on it" + }, + { + "label": "people stand next to a bench outside", + "pred": "people in a field with a frisbee" + }, + { + "label": "chicken and mushrooms served with broccoli garnished with parsley", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "people standing beside a bench with frisbees", + "pred": "people in a field with a frisbee" + }, + { + "label": "a dog sits on top of a mess of items", + "pred": "a dog sitting on a bed next to a pile of clothes" + }, + { + "label": "horses are near the machine in the grass", + "pred": "a horse standing in a field next to a fence" + }, + { + "label": "a market stand with many different kinds of fruit", + "pred": "a fruit stand filled with lots of fruits and vegetables" + }, + { + "label": "the horses are racing each other along the beach", + "pred": "a man riding a horse on top of a sandy beach" + }, + { + "label": "steak and crab cakes served with grilled peaches", + "pred": "a plate of food on a table" + }, + { + "label": "man on his knees with his snow board still attached, hands on hips", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "three men and a woman in the park with frisbees", + "pred": "people in a field with a frisbee" + }, + { + "label": "people stand near a fence watching the baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people who are outside holding a frisbee", + "pred": "people in a field with a frisbee" + }, + { + "label": "three people race their horses down a beach", + "pred": "a man riding a horse on top of a sandy beach" + }, + { + "label": "a herd of zebras stand under tress near a road", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "the meal is prepared and ready to be eaten", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a person doing skateboard ticks at a skate park", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a plate that has been filled with meat and fruit", + "pred": "a plate of food on a table" + }, + { + "label": "a batter swinging a bat at a baseball with the catcher and umpire behind him", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a baseball game featuring a batter a catcher and an umpire", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a view from above looking into a shopping cart full of groceries", + "pred": "a refrigerator filled with lots of fruits and vegetables" + }, + { + "label": "a skier on skies and a snowboarder carrying a snowboard on a mountain slope", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "bananas is displayed on a counter top", + "pred": "a plate with a bunch of bananas on it" + }, + { + "label": "sort of chicken dish with broccoli spears on side of plate", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "guy jumps high doing skateboard flip off a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a person on a skate board is doing a trick", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a horse drawn carriage driving down a small road", + "pred": "a horse pulling a carriage down a road" + }, + { + "label": "two people jumping up to try to catch a frisbee", + "pred": "a man jumping up to catch a frisbee" + }, + { + "label": "a guy on a skate board high in the air", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a big brown horse pulling a cart near a tree", + "pred": "a horse pulling a carriage down a road" + }, + { + "label": "dessert and toppings are in a blue plastic bowl", + "pred": "a bowl filled with ice cream and strawberries" + }, + { + "label": "a blue plate filled with marshmallows, chocolate chips and banana", + "pred": "a bowl filled with ice cream and strawberries" + }, + { + "label": "a horse tethered to a carriage near trees", + "pred": "a horse pulling a carriage down a road" + }, + { + "label": "a man riding a skateboard up the side of a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man riding a skateboard along a sandy beach", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "the snowboarder is posing for a picture on the mountain", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a plate of food has potatoes and fruit", + "pred": "a plate of food on a table" + }, + { + "label": "a dog sitting on a bed covered with clothing, blankets and other items", + "pred": "a dog sitting on a bed next to a pile of clothes" + }, + { + "label": "a shopping cart filled with lots of groceries", + "pred": "a refrigerator filled with lots of fruits and vegetables" + }, + { + "label": "a shopping cart full of food that includes bananas and milk", + "pred": "a refrigerator filled with lots of fruits and vegetables" + }, + { + "label": "jockeys riding their horses", + "pred": "a man riding a horse on top of a sandy beach" + }, + { + "label": "a plate of meat, vegetable and fruit is has been cooked on a grill", + "pred": "a plate of food on a table" + }, + { + "label": "a pit bull dog on a messy bed", + "pred": "a dog sitting on a bed next to a pile of clothes" + }, + { + "label": "a white plate of food tha includes meat and vegetables", + "pred": "a white plate filled with meat and vegetables" + }, + { + "label": "a horse pulling a carriage on a narrow path", + "pred": "a horse pulling a carriage down a road" + }, + { + "label": "horses with jockeys racing across the coast of some beach", + "pred": "a man riding a horse on top of a sandy beach" + }, + { + "label": "a horse drawn carriage in a park during daylight hours", + "pred": "a horse pulling a carriage down a road" + }, + { + "label": "a plate topped with potatoes pan cakes and other foods", + "pred": "a plate of food on a table" + }, + { + "label": "zebras are on the grass by a truck", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "a bowl full of marshmallows, chocolate, and other delicious treats", + "pred": "a bowl filled with ice cream and strawberries" + }, + { + "label": "zebras grazing near a road where vehicles are driving by", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "a person cutting a multi layer cake with a knife", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a man and woman making a cut unto a cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a person does a trick on a skate board by a beach", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a fruit stand on the side of a sidewalk", + "pred": "a fruit stand filled with lots of fruits and vegetables" + }, + { + "label": "a plate with meat and green veggies mixed with sauce", + "pred": "a white plate filled with meat and vegetables" + }, + { + "label": "zebra standing in the tall grass", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a man doing a trick on a skateboard off of a rail", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "horses standing next to each other", + "pred": "a horse standing in a field next to a fence" + }, + { + "label": "a plate of broccoli, ham, pasta and parmesan", + "pred": "a white plate topped with pasta and broccoli" + }, + { + "label": "people holding knives to the bottom of a laptop", + "pred": "a person cutting a piece of bread with a knife" + }, + { + "label": "two guys leap for the frisbee as they play their game in some sort of a gym", + "pred": "a man jumping up to catch a frisbee" + }, + { + "label": "a white plate with noodles, chicken and broccoli", + "pred": "a white plate topped with pasta and broccoli" + }, + { + "label": "2 zebras standing next to each other in plaines", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "an adult and baby zebra looking onward on a field", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "a small portion of broccoli, ham, and pasta salad", + "pred": "a white plate topped with pasta and broccoli" + }, + { + "label": "a woman in black shirt riding a skateboard", + "pred": "a man riding a skateboard at a skate park" + }, + { + "label": "a herd of zebra are grazing on tall dry grass", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a person reaching out and cutting a cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a white plate of food on a table", + "pred": "a white plate filled with meat and vegetables" + }, + { + "label": "a kid in a camo shirt riding a skateboard down the street", + "pred": "a young girl riding a skateboard down a sidewalk" + }, + { + "label": "a plate of pork with chinese broccoli drizzled with sauce", + "pred": "a white plate filled with meat and vegetables" + }, + { + "label": "the hands of a couple that is cutting a wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a couple at a wedding cutting their wedding cake together", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a person skateboarding near a skateboarding park at sunset", + "pred": "a man riding a skateboard at a skate park" + }, + { + "label": "the meal is being prepared in the big pot", + "pred": "a pot filled with food on top of a stove" + }, + { + "label": "children are playing near a beach at sunset", + "pred": "a man riding a skateboard next to a beach" + }, + { + "label": "the two men are jumping to get the frisbee", + "pred": "a man jumping up to catch a frisbee" + }, + { + "label": "guy jumps off the steps doing a flip trick with his skateboard", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "a number zebras grazing in the woods", + "pred": "a herd of zebra standing next to each other" + }, + { + "label": "zebras in a grassy area next to trees", + "pred": "a herd of zebra standing next to each other" + }, + { + "label": "people skateboard around a skate park near rails", + "pred": "a man riding a skateboard at a skate park" + }, + { + "label": "a plate of food with broccoli", + "pred": "a white plate topped with pasta and broccoli" + }, + { + "label": "a computer laying upside down with two hands holding knives prying open a section of the back", + "pred": "a person cutting a piece of bread with a knife" + }, + { + "label": "beginner snow skiers having class", + "pred": "people on skis in the snow" + }, + { + "label": "a knife being stuck into a laptop and stabbed", + "pred": "a person cutting a piece of bread with a knife" + }, + { + "label": "young people playing baseball in a field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a skateboarder does a jump trick over stairs", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "overview of a pot of vegetable soup with wooden spoon on a stainless steel stove top", + "pred": "a pot filled with food on top of a stove" + }, + { + "label": "two zebras standing side by side in a field", + "pred": "a pair of zebras standing in a field" + }, + { + "label": "people sticking knives into the back side of a laptop", + "pred": "a person cutting a piece of bread with a knife" + }, + { + "label": "assortment of cooked vegetable on white plate on table", + "pred": "a white plate filled with meat and vegetables" + }, + { + "label": "a plate of prepared food has pasta, broccoli, and meat", + "pred": "a white plate topped with pasta and broccoli" + }, + { + "label": "a boy dressed in a baseball uniform standing in a field", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "a herd of zebra in dry vegetation near dry trees", + "pred": "a herd of zebra standing next to each other" + }, + { + "label": "a young zebra with an adult zebra standing on a parched brown landscape", + "pred": "a pair of zebras standing in a field" + }, + { + "label": "man preforming a trick with a disk toy", + "pred": "a woman holding a frisbee in her hand" + }, + { + "label": "skateboard rider doing a trick near a beach during sunset", + "pred": "a man riding a skateboard next to a beach" + }, + { + "label": "a wooden spoon in a soup pot on the stove", + "pred": "a pot filled with food on top of a stove" + }, + { + "label": "boy riding a skateboard down a road or paved sidewalk", + "pred": "a young girl riding a skateboard down a sidewalk" + }, + { + "label": "two people are sticking knives into a laptop", + "pred": "a person cutting a piece of bread with a knife" + }, + { + "label": "a man standing in a dry baseball field", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "a large pot of vegetable soup with a large wooden spoon", + "pred": "a pot filled with food on top of a stove" + }, + { + "label": "a banana is on a plate with cookies and peanut butter", + "pred": "a white plate topped with a banana and whipped cream" + }, + { + "label": "a young boy balancing himself on his skateboard", + "pred": "a young girl riding a skateboard down a sidewalk" + }, + { + "label": "a baseball player throwing a pitch onto the field", + "pred": "a baseball player throwing a ball on a field" + }, + { + "label": "an adult and a baby zebra are on the savannah", + "pred": "a pair of zebras standing in a field" + }, + { + "label": "cross country skiers traveling through the snow", + "pred": "people on skis in the snow" + }, + { + "label": "people cross-country skiing", + "pred": "people on skis in the snow" + }, + { + "label": "adult man displaying abilities using flying yellow disc", + "pred": "a woman holding a frisbee in her hand" + }, + { + "label": "a baseball player is posing on a baseball field", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "a young boy riding a skate board downhill", + "pred": "a young girl riding a skateboard down a sidewalk" + }, + { + "label": "a small boy rides a skateboard down the walkway", + "pred": "a young girl riding a skateboard down a sidewalk" + }, + { + "label": "a white plate served on a multi colored table cloth", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "two young men playing a game of frisbee", + "pred": "a man jumping up to catch a frisbee" + }, + { + "label": "baseball players are on the field during a game", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a man riding a skateboard at a skate park", + "pred": "a man riding a skateboard at a skate park" + }, + { + "label": "a young woman on a skateboard in a skate park", + "pred": "a man riding a skateboard at a skate park" + }, + { + "label": "a man is doing a trick with a frisbee", + "pred": "a woman holding a frisbee in her hand" + }, + { + "label": "two zebras fighting in a cloud of dust", + "pred": "a zebra standing in the middle of a field" + }, + { + "label": "the plate is full of broccoli, potatoes, and meat", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a woman in gear skiing down a snowy slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "banana partly sliced, peanut butter on a spoon, and cookies", + "pred": "a white plate topped with a banana and whipped cream" + }, + { + "label": "a man holding onto a yellow frisbee while having long hair", + "pred": "a woman holding a frisbee in her hand" + }, + { + "label": "a shirtless man is in mid air above some stairs on his skateboard", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "a plate with a meal of meat, potatoes, carrots, and broccoli", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "three zebras are standing in the grass by the trees", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "a store window with a tray of grass and vegetables", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "people are skiing on a snow covered field", + "pred": "people on skis in the snow" + }, + { + "label": "two men playing frisbe on an indoor court", + "pred": "a man jumping up to catch a frisbee" + }, + { + "label": "a young baseball player tagging up at third base", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a man in a baseball uniform standing with his mit on", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "zebras in grassy field next to trees", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "a man in black shirt standing in field with baseball mitt", + "pred": "a man in a baseball uniform holding a baseball bat" + }, + { + "label": "a woman in grey and green bodysuit skiing on a slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "people going along a hill on skiis during a race", + "pred": "people on skis in the snow" + }, + { + "label": "a living room filled with furniture and a large window", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "a baseball pitcher follows through after releasing the ball", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "the plate has a banana being sliced near cookies", + "pred": "a white plate topped with a banana and whipped cream" + }, + { + "label": "a man spins a frisbee as the audience looks on", + "pred": "a woman holding a frisbee in front of her face" + }, + { + "label": "two zebras fighting in a open area with green bushes", + "pred": "a zebra standing in the middle of a field" + }, + { + "label": "banana with peanuts butter and crackers on a plate", + "pred": "a white plate topped with a banana and whipped cream" + }, + { + "label": "a man in holds a frisbee in the parking lot by the river", + "pred": "a man holding a frisbee in front of a lake" + }, + { + "label": "a zebra chews a flower in a fenced in field", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a man on a skateboard jumping over a stairway", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "the meal features steak and potatoes on the plate", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a plate on a table with with different types of food", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "two zebras are battling each other on hind legs", + "pred": "a zebra standing in the middle of a field" + }, + { + "label": "a man sitting at a table eating food from a plate", + "pred": "a man sitting at a table eating a sandwich" + }, + { + "label": "two zebra having a fight on top of a dry grass field", + "pred": "a zebra standing in the middle of a field" + }, + { + "label": "a pot filled with a soup with a lot of carrots", + "pred": "a pot filled with food on top of a stove" + }, + { + "label": "a pitcher for the camden baseball team throws a pitch", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a man is eating some food at a table", + "pred": "a man sitting at a table eating a sandwich" + }, + { + "label": "a white brown and black dog is by some water", + "pred": "a black and white dog standing on top of a beach" + }, + { + "label": "snow skiers one in a blue jacket the other white", + "pred": "two people cross country skiing in the snow" + }, + { + "label": "a man riding on the back of a brown horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a table topped with bananas next to a coin", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a herd of giraffe standing next to each other eating", + "pred": "zebra standing next to each other" + }, + { + "label": "man in yellow and black body suit on skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a young person is doing a trick on their skateboard", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a dog enjoying playing on the beach in the sun", + "pred": "a black and white dog standing on top of a beach" + }, + { + "label": "smiling lady standing by two bunches of bananas on a table", + "pred": "a woman standing in front of a bunch of bananas" + }, + { + "label": "a man with a helmet on riding on an electrical skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "people in the snow with skis", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a wooden table with miniature bananas next to a malaysian coin from 2009", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "number of skiers coming down the mountain on a glorious day", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a woman smiling as she walks toward bunches of bananas", + "pred": "a woman standing in front of a bunch of bananas" + }, + { + "label": "a person skiing down a slope next to snow covered trees", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a child blows out the candles on a birthday cake", + "pred": "a large group of children sitting around a birthday cake" + }, + { + "label": "a black woman standing over a bushel of yellow bananas", + "pred": "a woman standing in front of a bunch of bananas" + }, + { + "label": "only one horse in the grassy field", + "pred": "a horse that is standing in the grass" + }, + { + "label": "an african woman is smiling above a large group of bananas", + "pred": "a woman standing in front of a bunch of bananas" + }, + { + "label": "people skiing on a snowy slope of ground", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "zebras are bending down and eating a box full of grass", + "pred": "zebra standing next to each other" + }, + { + "label": "a skateboarder demonstrates on his skateboard that has a large wheel in the back", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a coin laying next to some small bananas", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a person jumping a pair of skis in the air", + "pred": "a person on skis jumping in the air" + }, + { + "label": "a middle aged black woman is standing behind a table full of bananas", + "pred": "a woman standing in front of a bunch of bananas" + }, + { + "label": "a baseball player holding a glove on the field", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a lone horse grazes in a field as a train passes", + "pred": "a horse that is standing in the grass" + }, + { + "label": "a number of people riding skis on a snowy slope", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a man on a long exposure picture riding an electric skateboard", + "pred": "a man riding a skateboard down a street" + }, + { + "label": "a boy with a blue shirt and jean pants doing a trick with his skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a person in a ski suit skiing down a slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "zebras grazing from crates with trees around", + "pred": "zebra standing next to each other" + }, + { + "label": "an outfielder watching what is going on at home plate", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a young man doing a jump with his skateboard in a skate park", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a person on skis making a cross in the air", + "pred": "a person on skis jumping in the air" + }, + { + "label": "a man in white baseball uniform on a grassy baseball field", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "skier in a black going down the side of a mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a horse is grazing in a field beside train tracks", + "pred": "a horse that is standing in the grass" + }, + { + "label": "a young person on skis flying high through the air", + "pred": "a person on skis jumping in the air" + }, + { + "label": "a kid with a glove and a ball", + "pred": "a young boy holding a baseball and a catchers mitt" + }, + { + "label": "kids at a table with a cake", + "pred": "a large group of children sitting around a birthday cake" + }, + { + "label": "horse grazing in a large pasture with a train", + "pred": "a horse that is standing in the grass" + }, + { + "label": "a young ball player poses with his baseball glove", + "pred": "a young boy holding a baseball and a catchers mitt" + }, + { + "label": "two very small yellow bananas on top of a wooden table next to a malaysian coin", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "a guy doing a skateboard trick along a concrete railing", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a herd of zebra stand on a plain in the wild", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "fruit and a coin are next to each other", + "pred": "a banana sitting on top of a wooden table" + }, + { + "label": "young children sitting around a chocolate cake", + "pred": "a large group of children sitting around a birthday cake" + }, + { + "label": "a man has jumped a ramp with his skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a man in the air with a skateboard above a half pipe", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a man is in mid air doing a skateboard trick", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "people riding down a snow covered slope", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "two people ride matching cream-colored horses at a gas station", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "two men are riding on horses at a gas station", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "zebras on a green plain", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "zebras gather to drink from a water trough in their compound", + "pred": "zebra standing next to each other" + }, + { + "label": "a man jumping a brown horse over an obstacle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a boy with a baseball glove and ball", + "pred": "a young boy holding a baseball and a catchers mitt" + }, + { + "label": "a person riding a horse who is jumping over obstacles", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a larger zebra resting its head on a smaller zebra", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a baseball player has his hand on his hip and one hand is up in the air", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a woman smiles as she stands in skis on a snowy hill", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "two zebras standing side by side in a field", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "rice, broccoli, onions, and tomatoes sitting on a plate", + "pred": "a plate of food on a table" + }, + { + "label": "one zebra resting its head on the back of another", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "zebras eating together at a trough", + "pred": "zebra standing next to each other" + }, + { + "label": "a skier is jumping in the air and crossing his skis", + "pred": "a person on skis jumping in the air" + }, + { + "label": "two young men on horseback at a gas station near some gas pumps and trucks", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a teenager on a horse at a gas station", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a zebra is resting its head on the back of another zebra", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a baseball player signaling to another player or coach", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "two zebras facing opposite directions in a grassy field", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "a grassy field with a solitary horse in the distance", + "pred": "a horse that is standing in the grass" + }, + { + "label": "a plate of food featuring burger patties, potatoes and carrots", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a happy little boy holding a baseball with a baseball glove", + "pred": "a young boy holding a baseball and a catchers mitt" + }, + { + "label": "a plate of stir fry vegetables on white rice", + "pred": "a plate of food on a table" + }, + { + "label": "blue plate with green, white, and red vegetables on it", + "pred": "a plate of food on a table" + }, + { + "label": "a woman on skis on a ski slope posing for a picture", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a person in the air with skiing equipment", + "pred": "a person on skis jumping in the air" + }, + { + "label": "a young boy wearing a catchers mitt holding a ball", + "pred": "a young boy holding a baseball and a catchers mitt" + }, + { + "label": "female skier smiling while standing in the snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "two zebras standing next to each other in a field", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "a man in a hat balancing his skateboard on a highway barrier", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two sausage patties, carrots and potatoes on a plate with a fork", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a herd of zebra are grazing in a grassy meadow", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a woman in striped shirt holding a plate with a bagel on it", + "pred": "a woman sitting at a table eating a donut" + }, + { + "label": "children are around a table at a birthday party", + "pred": "a large group of children sitting around a birthday cake" + }, + { + "label": "woman in maroon shirt holding up a bagel", + "pred": "a woman sitting at a table eating a donut" + }, + { + "label": "a horse and rider making a jump over a fence on a field", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "people around a chocolate birthday cake with candles", + "pred": "a large group of children sitting around a birthday cake" + }, + { + "label": "zebra stand in the plain", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "cute girl sitting on a skateboard in the driveway", + "pred": "a woman sitting on a skateboard on a sidewalk" + }, + { + "label": "a large group of zebras in a open field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "the meal on the dish is ready to be eaten", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a man on a horse during a race jumps over a hurdle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "man in grey and black clothes grinding with his skateboard", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "add cooked vegetables to plain white rice for a healthy dinner", + "pred": "a plate of food on a table" + }, + { + "label": "bunless burgers are a healthy option when paired with vegetables", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "two zebras are walking through a field together", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a guy on a skate board up in the air by a ledge", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a person holding a doughnut", + "pred": "a woman sitting at a table eating a donut" + }, + { + "label": "a skier skiing down a snow filled slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a woman seated across the table shows off her bagel with cream cheese", + "pred": "a woman sitting at a table eating a donut" + }, + { + "label": "a plate has a waffle, some fruit and ice cream on it", + "pred": "a plate of food with fruit and nuts on it" + }, + { + "label": "a dish on a blue plate contains carrots, onions, broccoli and rice", + "pred": "a plate of food on a table" + }, + { + "label": "two zebras stand together on a dirt area near short grass", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "two burgers sit on a plate next to carrots and potatoes", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a waffle with syrup, a scoop of ice cream, and sliced strawberries and bananas on a plate", + "pred": "a plate of food with fruit and nuts on it" + }, + { + "label": "a waffle with powdered sugar surrounded by berries", + "pred": "a plate of food with fruit and nuts on it" + }, + { + "label": "three zebras eating hay at the edge of a forest", + "pred": "zebra standing next to each other on a lush green field" + }, + { + "label": "pack of three zebras eating grass near a log", + "pred": "zebra standing next to each other on a lush green field" + }, + { + "label": "a large bunch of ripening banana type fruit", + "pred": "bunches of unripe bananas sitting on a table" + }, + { + "label": "a person sitting on a horse in air over gate in grass with people and trees", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "herd of zebra grazing on dried grasses in open field", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a little boy sitting on a skateboard and riding it", + "pred": "a little girl sitting on a skateboard on the sidewalk" + }, + { + "label": "two zebras standing in line with the head of one resting on the back of the other", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "two zebra standing next to each other on a field", + "pred": "two zebras standing next to each other on a dirt field" + }, + { + "label": "a waffle with strawberries and bananas on a square plate", + "pred": "a plate of food with fruit and nuts on it" + }, + { + "label": "a boy doing a skateboard trick on a concrete barrier", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "bunches of green bananas on purple material", + "pred": "bunches of unripe bananas sitting on a table" + }, + { + "label": "zebras grazing on grasses in a natural habitat", + "pred": "zebra standing next to each other on a lush green field" + }, + { + "label": "a baseball player holds his glove in the air, waiting to catch a ball", + "pred": "a baseball player holding a baseball bat on top of a field" + }, + { + "label": "a girl sitting on a skateboard in the driveway", + "pred": "a woman sitting on a skateboard on a sidewalk" + }, + { + "label": "a girl is sitting on a skateboard outside", + "pred": "a woman sitting on a skateboard on a sidewalk" + }, + { + "label": "a person skiing through a snowy forest with tall trees", + "pred": "a woman cross country skiing in a wooded area" + }, + { + "label": "group of zebras walking through tall grass together", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "more than one large bunch of green bananas", + "pred": "bunches of unripe bananas sitting on a table" + }, + { + "label": "a young child smiles on a scooter in an historic photo", + "pred": "a little girl sitting on a skateboard on the sidewalk" + }, + { + "label": "a person skis through some trees down a hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a person in the snow on some skis", + "pred": "a woman cross country skiing in a wooded area" + }, + { + "label": "a horse pulling carriage travels through a busy area in a city", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "outfield baseball player looking up to catch fly ball", + "pred": "a baseball player holding a baseball bat on top of a field" + }, + { + "label": "a decadent looking waffle sits on a bed of fruit on a rectangular plate", + "pred": "a plate of food with fruit and nuts on it" + }, + { + "label": "a horse is pulling something down a residential street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a girl is sitting on the sidewalk on her skate board", + "pred": "a woman sitting on a skateboard on a sidewalk" + }, + { + "label": "a small herd of zebras walking past the camera man", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "zebras standing on a field next to a fallen tree", + "pred": "zebra standing next to each other on a lush green field" + }, + { + "label": "zebras graze on grass beneath tall trees", + "pred": "zebra standing next to each other on a lush green field" + }, + { + "label": "green bananas laying on a stone table", + "pred": "bunches of unripe bananas sitting on a table" + }, + { + "label": "a young woman skiing through a snow covered forest", + "pred": "a woman cross country skiing in a wooded area" + }, + { + "label": "a young boy riding on top of a skateboard", + "pred": "a little girl sitting on a skateboard on the sidewalk" + }, + { + "label": "a woman is skiing in a snowy forest", + "pred": "a woman cross country skiing in a wooded area" + }, + { + "label": "a woman sitting on a train is showing off a bagel", + "pred": "a woman sitting at a table eating a donut" + }, + { + "label": "a large set of horses carrying a carriage down a street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a professional baseball player with his glove out", + "pred": "a baseball player holding a baseball bat on top of a field" + }, + { + "label": "brown horses walking down a street next to buildings", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a little boy and girl", + "pred": "a little girl sitting on a skateboard on the sidewalk" + }, + { + "label": "bunches of green bananas are resting on bricks", + "pred": "bunches of unripe bananas sitting on a table" + }, + { + "label": "a woman is helping a child put on skis", + "pred": "a man sitting on a snowboard next to a woman" + }, + { + "label": "a boy riding a skateboard on a sidewalk as another laughs", + "pred": "a little girl sitting on a skateboard on the sidewalk" + }, + { + "label": "a horse stands on the side of the road with a harness on", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "bunches of bananas are shown hanging together", + "pred": "bunches of bananas hanging from a ceiling" + }, + { + "label": "a little child sits in the snow with skis", + "pred": "a man sitting on a snowboard next to a woman" + }, + { + "label": "a girl in an orange sweater is sitting on a skateboard", + "pred": "a woman sitting on a skateboard on a sidewalk" + }, + { + "label": "zebras that are in a field", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "the young man in the cap jumps up on a skateboard", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a man is walking in skies in the snow", + "pred": "a woman cross country skiing in a wooded area" + }, + { + "label": "a skier bending down to help a toddler with his little skis", + "pred": "a man sitting on a snowboard next to a woman" + }, + { + "label": "a man in white baseball uniform on a grassy field", + "pred": "a baseball player holding a baseball bat on top of a field" + }, + { + "label": "a small child is holding a frisbee while looking at the beach", + "pred": "a little boy standing on a beach holding a surfboard" + }, + { + "label": "a toddler boy stands at the ocean's edge", + "pred": "a little boy standing on a beach holding a surfboard" + }, + { + "label": "bunches of bananas hanging from a fruit stand display", + "pred": "bunches of bananas hanging from a ceiling" + }, + { + "label": "a raw piece of broccoli with something growing from it", + "pred": "a person holding a bunch of broccoli in a bowl" + }, + { + "label": "no image here to provide a caption for", + "pred": "a herd of zebras grazing in a grassy field" + }, + { + "label": "a toddler is standing on the shore holding a frisbee", + "pred": "a little boy standing on a beach holding a surfboard" + }, + { + "label": "a young child is sitting in the snow", + "pred": "a man sitting on a snowboard next to a woman" + }, + { + "label": "a man on a skateboard with a hat", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a very small boy on the beach with a disc", + "pred": "a little boy standing on a beach holding a surfboard" + }, + { + "label": "a skateboarder jumping over an obstacle on his board", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a guy on a skate board high in the air", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a person trying to reach a frisbee in a field with high brown grass", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "bananas that are hanging from string", + "pred": "bunches of bananas hanging from a ceiling" + }, + { + "label": "a man that is in the air with a surfboard", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "two men play around on a nature trail", + "pred": "a man and woman playing a game of frisbee" + }, + { + "label": "a person on a skateboard does an air trick", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a person on a skateboard rides down the road", + "pred": "a man riding a skateboard down a city street" + }, + { + "label": "a person holding a piece of broccoli with an insect on it", + "pred": "a person holding a bunch of broccoli in a bowl" + }, + { + "label": "a baseball player catching a ball", + "pred": "a baseball player holding a baseball bat on top of a field" + }, + { + "label": "a somewhat blurry image of a young man in the air on his skateboard", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a man on his skateboard is riding between the parked cars", + "pred": "a man riding a skateboard down a city street" + }, + { + "label": "two men stand in the woods as one of them throws a frisbee", + "pred": "a man and woman playing a game of frisbee" + }, + { + "label": "a worm sits on top of a piece of broccoli", + "pred": "a person holding a bunch of broccoli in a bowl" + }, + { + "label": "a young boy in a red top is playing with a red object tossed in the sky", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "a lady seems to be attending to a fallen toddler", + "pred": "a man sitting on a snowboard next to a woman" + }, + { + "label": "a man in red shirt doing a trick on skateboard", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a man in blue shirt on skateboard next to cars", + "pred": "a man riding a skateboard down a city street" + }, + { + "label": "two fingers holding a small piece of broccoli", + "pred": "a person holding a bunch of broccoli in a bowl" + }, + { + "label": "a man flying through the air on top of a skateboard", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a man riding a skateboard down a street next to parked cars", + "pred": "a man riding a skateboard down a city street" + }, + { + "label": "a piece of broccoli with a person holding it", + "pred": "a person holding a bunch of broccoli in a bowl" + }, + { + "label": "a small buckskin horse walking slowly down a hill", + "pred": "a horse standing on top of a lush green hillside" + }, + { + "label": "a boy standing in the grass with a frisbee", + "pred": "a young boy holding a frisbee on a field" + }, + { + "label": "a young man in a red jacket jumping for a frizbee in a field", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "a person jumping up in the air on a skateboard", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a person on a skateboard on a street", + "pred": "a man riding a skateboard down a city street" + }, + { + "label": "two people standing in front of some trees", + "pred": "a man and woman playing a game of frisbee" + }, + { + "label": "a guy is jumping to catch a frisbee in tall grass", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "bunches of bananas are hanging from a fruit stand", + "pred": "bunches of bananas hanging from a ceiling" + }, + { + "label": "a man jumps to catch a frisbee flying through the air", + "pred": "a red fire hydrant sitting in the middle of a field" + }, + { + "label": "baby boy with frisbee on beach near surf watching the waves", + "pred": "a little boy standing on a beach holding a surfboard" + }, + { + "label": "skate boarder hang time with young man appearing to streak though the air", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a man throwing a frisbee on a course as another looks on", + "pred": "a man and woman playing a game of frisbee" + }, + { + "label": "kind of a pancake that has broccoli and sauce on it", + "pred": "a plate of food on a table" + }, + { + "label": "teenager doing stunts with a skateboard at a skateboard park", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a little boy is playing with a purple frisbee", + "pred": "a young boy holding a frisbee on a field" + }, + { + "label": "a small child is throwing a purple frisbee", + "pred": "a young boy holding a frisbee on a field" + }, + { + "label": "two guys in the woods playing with a disc", + "pred": "a man and woman playing a game of frisbee" + }, + { + "label": "a brown horse standing on top of a lush green hillside", + "pred": "a horse standing on top of a lush green hillside" + }, + { + "label": "a person jumping a skate board in the air", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "bunches of bright yellow bananas hanging on display", + "pred": "bunches of bananas hanging from a ceiling" + }, + { + "label": "zebras walking on the side of this road", + "pred": "a herd of zebra standing on top of a dirt road" + }, + { + "label": "white horse with saddle eating grass near a river", + "pred": "a horse standing on top of a lush green hillside" + }, + { + "label": "a plate of polents a tomatoe and brocolli", + "pred": "a plate of food on a table" + }, + { + "label": "a pancake topped with rice, spinach, and brocolli", + "pred": "a plate of food on a table" + }, + { + "label": "zebras are standing near a tree in the wild", + "pred": "a herd of zebra standing on top of a dirt road" + }, + { + "label": "a hand is holding a carrot for a llama to chew", + "pred": "a horse with a carrot sticking out of it's mouth" + }, + { + "label": "a person feeding a animal a whole carrot", + "pred": "a horse with a carrot sticking out of it's mouth" + }, + { + "label": "a man on his skis on a snowy slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "i am unable to see the image above", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "the man is skiing down the snowy hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a kid throwing a frisbee on a grass field", + "pred": "a young boy holding a frisbee on a field" + }, + { + "label": "alpine skier in red coat on snow covered ski slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "type of flat bread with topping on the top of it", + "pred": "a plate of food on a table" + }, + { + "label": "zebra standing on a dirt road", + "pred": "a herd of zebra standing on top of a dirt road" + }, + { + "label": "a blurry image of a man looking at something yellow and roundish", + "pred": "a man holding a banana in his right hand" + }, + { + "label": "a man standing outside beside a bunch of fruit", + "pred": "a man standing in front of a fruit stand filled with oranges" + }, + { + "label": "a llama that is being fed a carrot", + "pred": "a horse with a carrot sticking out of it's mouth" + }, + { + "label": "a man in the mirror throwing a ball in the air", + "pred": "a man holding a banana in his right hand" + }, + { + "label": "a table with some oranges and some cups", + "pred": "a bowl of oranges sitting on top of a table" + }, + { + "label": "a person behind a stand with many oranges", + "pred": "a man standing in front of a fruit stand filled with oranges" + }, + { + "label": "a man is squeezing orange juice from a pile of oranges", + "pred": "a man standing in front of a fruit stand filled with oranges" + }, + { + "label": "a pancake with vegetables piled up on it", + "pred": "a plate of food on a table" + }, + { + "label": "a man surrounded by lemons and oranges making fresh juice", + "pred": "a man standing in front of a fruit stand filled with oranges" + }, + { + "label": "a table with five red cups, a pineapple and some oranges on a plate", + "pred": "a bowl of oranges sitting on top of a table" + }, + { + "label": "zebras are standing on the side of a dirt road", + "pred": "a herd of zebra standing on top of a dirt road" + }, + { + "label": "two brown bears that are playing together in the water", + "pred": "two bears are playing in a pool of water" + }, + { + "label": "a llama is biting on a hand-fed carrot", + "pred": "a horse with a carrot sticking out of it's mouth" + }, + { + "label": "two bears that are standing in the water", + "pred": "two bears are playing in a pool of water" + }, + { + "label": "a zebra standing on top of a grass covered field", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a pineapple besides a plate of oranges and a small bowl", + "pred": "a bowl of oranges sitting on top of a table" + }, + { + "label": "shirtless skateboarder going down a ramp on clear day", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "blurry picture of a man looking into a mirror which has something on it", + "pred": "a man holding a banana in his right hand" + }, + { + "label": "a young skateboarder seems to be high in the air", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a pineapple and some oranges sit on a table", + "pred": "a bowl of oranges sitting on top of a table" + }, + { + "label": "a person on some skis in the water", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a male shirtless skateboarder is doing a trick", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a very beautiful zebra that is standing in the shade", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a beige horse with blonde and brown hair on a hill", + "pred": "a horse standing on top of a lush green hillside" + }, + { + "label": "a water skier in a red and white shirt and hat", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a man looking at a round ball in front of him", + "pred": "a man holding a banana in his right hand" + }, + { + "label": "a man riding a skateboard on top of a cement rail", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a young man on water skis at competition", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a man with a cowboy hat on doing a trick on a skateboard", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "plate of food with broccoli on glass plate with table cloth", + "pred": "a plate of food on a table" + }, + { + "label": "green salad with broccoli and peas with fork and bowl", + "pred": "a bowl filled with broccoli and other vegetables" + }, + { + "label": "a person with a skateboard on a street", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a plate of food laying on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a thanksgiving dinner of turkey, broccoli, sweet potatoes and cranberries", + "pred": "a plate of food on a table" + }, + { + "label": "a man on a skateboard jumps over a ramp", + "pred": "a man doing a trick on a skateboard on a sidewalk" + }, + { + "label": "the two brown bears are playing in water", + "pred": "two bears are playing in a pool of water" + }, + { + "label": "a boy wearing skating boats in water", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "two large bears fighting or playing in water", + "pred": "two bears are playing in a pool of water" + }, + { + "label": "a zebra showing the left side of itself on a field", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a zebra is standing in an open field", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a large bowl with vegetables and broccoli in it", + "pred": "a bowl filled with broccoli and other vegetables" + }, + { + "label": "a person engaging in a water sport with skis on", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a blue plate with lots of different foods on it", + "pred": "a plate of food on a table" + }, + { + "label": "a skateboarder in cowboy hat just about to go down a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "boys hanging out at a skate park", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a plate of food with rice and beans, broccoli and meat", + "pred": "a plate of food on a table" + }, + { + "label": "a man that is snowboarding down a snowy hill", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a snowboarder coming down a very steep hill", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a kid walking with his skateboard in a skateboard park", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a person jumping a skate board into the air", + "pred": "a man doing a trick on a skateboard on a sidewalk" + }, + { + "label": "baseball players cluster together while wearing blue and white uniforms", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a skateboarder jumping off a small ramp places on the street", + "pred": "a man doing a trick on a skateboard on a sidewalk" + }, + { + "label": "a snowboarder headed down a hill in front of trees", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a bowl of green vegetables are mixed together", + "pred": "a bowl filled with broccoli and other vegetables" + }, + { + "label": "a baseball team all huddled together on the baseball field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a person riding a snow board on a snowy surface", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "variety of fruits such as bananas, oranges, and apples on a platter", + "pred": "a pile of fruit sitting on top of a table" + }, + { + "label": "three men, one caring a skateboard, are wearing matching t-shirts", + "pred": "a man holding a skateboard in his right hand" + }, + { + "label": "the entire baseball team has gathered on the field for a celebration", + "pred": "baseball players standing on top of a field" + }, + { + "label": "fruits and vegetables on a cutting board on top of table", + "pred": "a pile of fruit sitting on top of a table" + }, + { + "label": "a boy is looking to skate on his skateboard", + "pred": "a man holding a skateboard in his right hand" + }, + { + "label": "a man in black shirt doing a trick on a skateboard", + "pred": "a man doing a trick on a skateboard on a sidewalk" + }, + { + "label": "teenager returning with skateboard after skate run at the skate park", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a baseball team celebrates on the field together", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a man that has a skateboard in the air", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "people that are sitting on a log", + "pred": "three people posing for a picture in a wooded area" + }, + { + "label": "a zebra standing on a grass covered field", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a slab holds some fruit and vegetables on it", + "pred": "a pile of fruit sitting on top of a table" + }, + { + "label": "a table holding a white gown with peas and broccoli in it", + "pred": "a bowl filled with broccoli and other vegetables" + }, + { + "label": "the zebra is standing in the field with another zebra laying down", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "the group of three friends are sitting on a fallen tree in the woods", + "pred": "three people posing for a picture in a wooded area" + }, + { + "label": "zebras stand on a grass land", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a skateboard that has its wheels on the floor", + "pred": "a red and white roller coaster with a skateboard on top of it" + }, + { + "label": "a baseball team crowd together on the field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "young men holding skateboards in front of a building", + "pred": "a man holding a skateboard in his right hand" + }, + { + "label": "a pile of pineapple sitting next to a pile of bananas", + "pred": "a pile of unripe bananas sitting on top of each other" + }, + { + "label": "a pile of pineapples and bananas are sitting in a market", + "pred": "a pile of unripe bananas sitting on top of each other" + }, + { + "label": "a close shot of a unique looking plate of food", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "people standing and sitting on snow with skis and mountain", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a lower shot of someone riding their skateboard", + "pred": "a red and white roller coaster with a skateboard on top of it" + }, + { + "label": "baseball player in blue and white uniform swinging at a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "pineapples and bananas are for sale in a market", + "pred": "a pile of unripe bananas sitting on top of each other" + }, + { + "label": "people with skis in the snow", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a young skateboarder is standing in front of two others", + "pred": "a man holding a skateboard in his right hand" + }, + { + "label": "a baseball player is about to swing at the ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a group pauses to mingle and relax while skiing", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "assorted mixed fruits and vegetables on a fruit plate", + "pred": "a pile of fruit sitting on top of a table" + }, + { + "label": "assorted meal sitting on a plate with a white glass of milk", + "pred": "a plate of food on a table" + }, + { + "label": "a plate that has food that is sitting on the table", + "pred": "a plate of food on a table" + }, + { + "label": "a man is lacing his boots while several others are ready to ski", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a bowl of peas, broccoli and carrots with utensils", + "pred": "a bowl filled with broccoli and other vegetables" + }, + { + "label": "snowboarder going down a slope with trees", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "baseball players in action, one person dressed in green running while the others in white are looking and reaching toward the ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man that is lookingin the mirror", + "pred": "a man holding a banana in his right hand" + }, + { + "label": "the foot of a person on a skateboard is prominent in this photo", + "pred": "a red and white roller coaster with a skateboard on top of it" + }, + { + "label": "pienapples and bannanas sitting on a stand", + "pred": "a pile of unripe bananas sitting on top of each other" + }, + { + "label": "a red skateboard with blue wheels on the floor with someones foot on it", + "pred": "a red and white roller coaster with a skateboard on top of it" + }, + { + "label": "men standing on top of a baseball field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baseball player holding a bat on top of a field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baseball player throwing a ball during a game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a majestic bear looks out across a grass plain", + "pred": "a large brown bear standing on top of a grass covered hillside" + }, + { + "label": "a zebra stands while another zebra lays down nearby", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "food is shown with rice, broccoli and other things on a plate", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a green plate filled with rice and a mixture of sauce on top of it", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a large batch of pineapples stacked up next to each other", + "pred": "a pile of unripe bananas sitting on top of each other" + }, + { + "label": "an adult bear is standing in the field", + "pred": "a large brown bear standing on top of a grass covered hillside" + }, + { + "label": "a man is jumping on his skate board in the sky", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "people stading on the street with skate board", + "pred": "a man holding a skateboard in his right hand" + }, + { + "label": "a boy jumping on a brick patterned ramp on his skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a baseball player throws the ball to his team mate as they try to get another player out", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man standing in front of a brown horse near a small building", + "pred": "a man standing next to a brown horse" + }, + { + "label": "a bear in the wilderness", + "pred": "a large brown bear standing on top of a grass covered hillside" + }, + { + "label": "a plate topped with rice and meat next to bread", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a big brown bear standing in an open field next to some rocks", + "pred": "a large brown bear standing on top of a grass covered hillside" + }, + { + "label": "a red plate topped with broccoli, meat and veggies", + "pred": "a plate of food on a table" + }, + { + "label": "a man doing a trick on his skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "the young adults rest while playing frisbee golf", + "pred": "three people posing for a picture in a wooded area" + }, + { + "label": "a horse standing on top of a lush green field", + "pred": "a horse that is standing in the grass" + }, + { + "label": "a plate of noodles and broccoli are shown", + "pred": "a white plate topped with noodles and broccoli" + }, + { + "label": "a man posing with a horse in the shade", + "pred": "a man standing next to a brown horse" + }, + { + "label": "a very bright red plate with some tasty looking food", + "pred": "a plate of food on a table" + }, + { + "label": "fried noodles and broccoli dish on a round plate", + "pred": "a white plate topped with noodles and broccoli" + }, + { + "label": "a very tasty looking dish of pasta with some broccoli", + "pred": "a white plate topped with noodles and broccoli" + }, + { + "label": "three people sitting on a bench in the woods", + "pred": "three people posing for a picture in a wooded area" + }, + { + "label": "three friends sitting on a log making signing hand gestures", + "pred": "three people posing for a picture in a wooded area" + }, + { + "label": "a pitch approaches the batter in a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a horse grazing in a green pasture bordered by mountains", + "pred": "a horse that is standing in the grass" + }, + { + "label": "a man in a black hat standing next to and holding the reigns of a horse", + "pred": "a man standing next to a brown horse" + }, + { + "label": "a pasta entree with broccoli on a white plate", + "pred": "a white plate topped with noodles and broccoli" + }, + { + "label": "a horse grazing with mountains behind him", + "pred": "a horse that is standing in the grass" + }, + { + "label": "a baseball player with a bat watching the baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "bananas sitting on a table", + "pred": "bunches of bananas sitting on top of each other" + }, + { + "label": "a horse is grazing in a grassy field with a view of mountains", + "pred": "a horse that is standing in the grass" + }, + { + "label": "hot dog on a roll with cheese, onions, and herbs", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "bunches of bananas are sitting on a shelf", + "pred": "bunches of bananas sitting on top of each other" + }, + { + "label": "a polar bear near rocks made to look like ice", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "meat and a salad with knife and fork on a plate", + "pred": "a plate of food on a table" + }, + { + "label": "a dessert dish includes sprigs for garnish on this banana dish", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "women sitting at a table with plates of food", + "pred": "people sitting around a table full of food" + }, + { + "label": "a large bowl full of pasta with many other foods", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a man is posing for a picture while holding the reigns", + "pred": "a man standing next to a brown horse" + }, + { + "label": "a plate topped with a banana dessert with whipped cream", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "a sandwich has cilantro, carrots, and other vegetables", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "three woman looking over a table full of food", + "pred": "people sitting around a table full of food" + }, + { + "label": "a pate of food with meat", + "pred": "a plate of food on a table" + }, + { + "label": "women sitting around a table sharing a meal", + "pred": "people sitting around a table full of food" + }, + { + "label": "a man holding a red frisbee while standing on lush green field", + "pred": "a person in a field with a frisbee" + }, + { + "label": "a wet polar bear looks up at the sky in his zoo enclosure", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a hotdog completely loaded with onions and leaves", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a purple shelf withs bunches of ripe yellow bananas placed together", + "pred": "bunches of bananas sitting on top of each other" + }, + { + "label": "polar bear is looking at something in the sky", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "yellow bananas are arranged on a blue display case", + "pred": "bunches of bananas sitting on top of each other" + }, + { + "label": "the bowl of noodle salad has broccoli and meat in it", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a polar bear is sitting next to a sheet of ice", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "a young man in a red shirt is throwing a frisbee", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a hand holding a hot dog on a bun in a wrapper", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "people on skis in the snow", + "pred": "skiers posing for a picture in the snow" + }, + { + "label": "people with skiis standing next to each other", + "pred": "skiers posing for a picture in the snow" + }, + { + "label": "a polar bear in a polar bear enclosure at a zoo looking up", + "pred": "a polar bear standing on top of a rock" + }, + { + "label": "the bowl is full of pasta and vegetables", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "the group of people smile in the snow wearing skis and a snowboard", + "pred": "skiers posing for a picture in the snow" + }, + { + "label": "people eating on a table with many different food types on it", + "pred": "people sitting around a table full of food" + }, + { + "label": "people standing on top of a green yard", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "the hotdog bun is filled with carrots and greens", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "very ripe bananas placed on a purple basket", + "pred": "bunches of bananas sitting on top of each other" + }, + { + "label": "a man gets ready to throw a frisbee in a park", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a man and woman are playing catch in the backyard", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a plate topped with meat and a salad", + "pred": "a plate of food on a table" + }, + { + "label": "a baseball player swings their bat at a ball", + "pred": "a baseball player swinging a bat on top of a field" + }, + { + "label": "two people standing in a yard with tree's and flowers", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "women are sitting at a table with plates of food and chopsticks", + "pred": "people sitting around a table full of food" + }, + { + "label": "a ship sitting at port on the water front", + "pred": "a large body of water with several boats in it" + }, + { + "label": "a man holding a frisbee with one hand in the grass", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "storm troopers standing next to each other", + "pred": "a statue of a man riding a skateboard on top of a dirt road" + }, + { + "label": "a pasta with some different vegetables mixed in", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a baseball game with a batter swinging the bat and fielder awaiting the ball", + "pred": "a baseball player swinging a bat on top of a field" + }, + { + "label": "a person with long hair about to throw a frisbee", + "pred": "a person in a field with a frisbee" + }, + { + "label": "mn swinging a baseball bat on a field", + "pred": "a baseball player swinging a bat on top of a field" + }, + { + "label": "a white horse drawn carriage in front of a yellow building", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "baseball game taking place with a huge crowd in the stands watching", + "pred": "a baseball player swinging a bat on top of a field" + }, + { + "label": "a man in a red shirt tossing a white frisbee", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a plate of flambeed bananas are sitting atop brown sugar and other garnish", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "a guy playing in a big grassy field with a disc", + "pred": "a person in a field with a frisbee" + }, + { + "label": "a man and a woman are playing outside", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "people that are standing in the grass", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a big bowl filled with some pasta and meat and veggies", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a woman posing for the camera standing on skis", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "toys taht are on the beach", + "pred": "a statue of a man riding a skateboard on top of a dirt road" + }, + { + "label": "people playing skate board on the street", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a plate with salad and a cut of meat and silverware laid on top", + "pred": "a plate of food on a table" + }, + { + "label": "men and woman posing for a picture on skiis and a snowboard", + "pred": "skiers posing for a picture in the snow" + }, + { + "label": "people standing next to each other on top of a snow covered ground", + "pred": "skiers posing for a picture in the snow" + }, + { + "label": "a white horse pulling a trolley behind it", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "a very pretty horse pulling a fancy carriage", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a white horse pulling a white carriage.on the street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "young men filming skating tricks on their skateboards", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two skate boarders doing tricks on the street", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a boat in a harbor, next to a parking lot full of cars", + "pred": "a large body of water with several boats in it" + }, + { + "label": "a woman standing on skiis while posing for the camera", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a man with long hair is throwing a frisbee", + "pred": "a person in a field with a frisbee" + }, + { + "label": "two people standing on a paved sidewalk with skateboards", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a boat can be seen at the edge of the water and a building is", + "pred": "a large body of water with several boats in it" + }, + { + "label": "a zebra standing in tall grass near a building", + "pred": "zebra standing next to each other" + }, + { + "label": "the cruise ship is setting at the dock", + "pred": "a large body of water with several boats in it" + }, + { + "label": "a zebra in the shade on a sunny day", + "pred": "zebra standing next to each other" + }, + { + "label": "action figures put on skateboards on the street", + "pred": "a statue of a man riding a skateboard on top of a dirt road" + }, + { + "label": "a horse pulling a wagon with a conductor down the road", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "a large white horse pulling a trolley car down the street", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "a dinner plate with a colorful salad and grilled meat", + "pred": "a plate of food on a table" + }, + { + "label": "a cruise ship sits out in the water while a large grey building sits", + "pred": "a large body of water with several boats in it" + }, + { + "label": "a woman in a red jacket skiing down a slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "two skateboarders trying to film a skateboard trick", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a number of action figures on the ground and two of them on skateboards", + "pred": "a statue of a man riding a skateboard on top of a dirt road" + }, + { + "label": "a trolley that is being pulled by a white horse", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "small toys riding skate boards on a street", + "pred": "a statue of a man riding a skateboard on top of a dirt road" + }, + { + "label": "a man grinding his skateboard on a rail", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a young woman is skiing down the mountain slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a zebra in his habitat at the zoo", + "pred": "zebra standing next to each other" + }, + { + "label": "a person on skis makes her way through the snow", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a man flying through the air while riding a skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a man riding a skateboard on the side of a metal rail", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a person stretches to catch a red frisbee", + "pred": "a person in a field with a frisbee" + }, + { + "label": "a man on a skateboard grinding on a pole", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a very artistic and tasty looking treat is in a plate", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "a person jumping a skate board in the air", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "derek jeter swings his bat at a baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a young man doing an axle grind on a piece of pipe in a park", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a zebra standing in a grassy area with a building far behind it", + "pred": "zebra standing next to each other" + }, + { + "label": "a horse pulling a trolley carriage with a man on it", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "baseball players standing on top of a field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a white horse pulling a wagon while stopped on the side of the road", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a zebra standing in the foreground and another zebra standing behind", + "pred": "zebra standing next to each other" + }, + { + "label": "food that has been neatly prepared for a presentation", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "the skateboarder flips his board on a colorful ramp", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a horse and carriage parked beside a building", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a little league baseball player hits a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "young children sitting in the grass", + "pred": "three children are sitting in the grass with a frisbee" + }, + { + "label": "two brown and white dogs running in a park", + "pred": "a brown and white dog standing next to a brown and white dog" + }, + { + "label": "a smart phone sitting on top sitting on top of a wooden table", + "pred": "an apple sitting on top of a table next to a cell phone" + }, + { + "label": "a batter after he has hit a pitched ball before he is going to run", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a brown horse laying in a field of lush vegetation", + "pred": "a horse that is laying down in the grass" + }, + { + "label": "two dogs, on wearing something heavy around its neck, run over the ground", + "pred": "a brown and white dog standing next to a brown and white dog" + }, + { + "label": "a young male in mid air flipping a skateboard off of a ramp", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "people playing a baseball and many people watching", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baseball game and the catcher just threw the ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man skating on the road very fast", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "two dogs running across patchy grass; one chasing the other", + "pred": "a brown and white dog standing next to a brown and white dog" + }, + { + "label": "two brown dogs walking in the field with their mouth open", + "pred": "a brown and white dog standing next to a brown and white dog" + }, + { + "label": "two dogs running and playing in the sun", + "pred": "a brown and white dog standing next to a brown and white dog" + }, + { + "label": "a player in action up to bat in a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man taking a swing of a bat at a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a horse is laying down in a field", + "pred": "a horse that is laying down in the grass" + }, + { + "label": "a young man performs a trick on a skate board", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a person wearing a motorcycle helmet is riding a skateboard", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a young boys is hitting a baseball while another young boy is playing catcher", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a hitter that just swung his bat in a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a male child swinging his bat at a ball, another child behind him as the catcher", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "zebras and rhinos out in the wild on a sunny day", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a person riding skis down a hill on a race course", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a man with a bite of pizza from a plate", + "pred": "a man sitting at a table eating a sandwich" + }, + { + "label": "a man eating crust sitting by a table", + "pred": "a man sitting at a table eating a sandwich" + }, + { + "label": "a plate with a banana that is cut up, cookies and a spoon on it", + "pred": "a white plate topped with a banana and whipped cream" + }, + { + "label": "zebra's running through a field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "the man found the frisbee by the parked cars", + "pred": "a man holding a frisbee in front of a lake" + }, + { + "label": "the medium sized zebra is looking into the camera", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a pitcher at a baseball game who has just thrown the ball", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a man sitting at a table eating some food", + "pred": "a man sitting at a table eating a sandwich" + }, + { + "label": "the man jumps over the steps while on his skateboard", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "a tall glass case with some fruits in it and some grass growing", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "two zebras in a jungle area fighting in a dirt area", + "pred": "a zebra standing in the middle of a field" + }, + { + "label": "a man holding a frisbee in a parking lot near water", + "pred": "a man holding a frisbee in front of a lake" + }, + { + "label": "a zebra standing in a gated area", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a room with filtered light coming through vertical blinds on a doorwall, with a sleeping dog lying on a dog bed next to a rocking chair", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "the lady is coming down the hill on her skies", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "the fruits are all in a container in the window", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "the boy has on black sneakers and his trying to grab the frisbee", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "a woman is skiing down a hill with safety netting", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "three zebras stand together in a field of grass", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "the zebra is wondering about the shadow that he sees", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a person standing next to a person getting ready to catch a ball", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a window display with lots of fruit and grass", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a pair of men playing frisbee with each other on a field", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "tube of orange and pears, surrounded by boxes of grass and one pineapple", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "three zebras in the field with trees and grass", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a baseball pitcher is throwing the ball", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a zebra facing away from the camera and staring down", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a man holding a white object in his hand", + "pred": "a man holding a frisbee in front of a lake" + }, + { + "label": "a zebra standing on top of a dirt and grass field", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a dog quietly sleeping in his bed enjoying the sun", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "a dog sleeping in the middle of a living room", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "a catcher with a catcher's mitt on squatting behind a baseball player", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a man wearing a hat and holding an object in his hand", + "pred": "a man holding a frisbee in front of a lake" + }, + { + "label": "a zebra standing on a dirt ground inside a fenced area", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "the men are playing a game of frisbee on the field", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "five baseball players with a runner on the base", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a horse drawn carriage is near a fire hydrant by a curb", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "the home plate with the back catcher and someone ready to bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a dog laying down in his bed in the living room", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "baseball players in their uniforms on a baseball field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a man on skis stands on a snowy hill side", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a zebra that is standing up in the dirt", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a catcher crouched behind a baseball player at bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a zebra looking down at a grass and dirt filled ground", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "a zebra has its neck turned and is looking to its side", + "pred": "a zebra standing on top of a dirt field" + }, + { + "label": "two baseball players standing on the field during a game", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "two men on different baseball teams getting ready for the next move", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a horse and carriage with people riding in it", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "two people climbing up a mountain, getting ready to ski", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man standing next to a base on a baseball field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a brown horse carrying people behind on the street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a man getting ready to throw a frisbee on a field", + "pred": "a person standing on top of a field with a frisbee" + }, + { + "label": "a table with sandwiches, chili, french fries, and a drink", + "pred": "a table topped with a sandwich and french fries" + }, + { + "label": "a guy with a racket playing tennis on the court", + "pred": "a person standing on top of a field with a frisbee" + }, + { + "label": "men standing on top of a grass covered field", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "a man standing on top of a grass covered field with a frisbee", + "pred": "a person standing on top of a field with a frisbee" + }, + { + "label": "a horse pulling a wagon behind itself near a fire hydrant", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a horse drawn carriage in a city stopped for a break", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "young men chasing a frisbee", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "two baseball players standing next to a wall on a baseball field", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a baseball game is in progress during the day time", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "people climbing up the snowy mountain side on skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a white plate topped with broccoli and a dumpling", + "pred": "a white plate topped with broccoli and meat" + }, + { + "label": "a variety of food on a table with a few drinks", + "pred": "a table topped with a sandwich and french fries" + }, + { + "label": "two horses plowing the land as a man directs them", + "pred": "people that are standing in the grass" + }, + { + "label": "a dog is running beside two horses in a field", + "pred": "people that are standing in the grass" + }, + { + "label": "a table with food and a drink on it", + "pred": "a table topped with a sandwich and french fries" + }, + { + "label": "a man who is jumping up to catch a frisbee", + "pred": "a person standing on top of a field with a frisbee" + }, + { + "label": "a man holding a frisbee in his hand in a field", + "pred": "a person standing on top of a field with a frisbee" + }, + { + "label": "a professional rider is riding a horse outside", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "zebra's playing and grazing in a field", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a man working a field with a team of horses", + "pred": "people that are standing in the grass" + }, + { + "label": "a grassy field with various zebras standing next to each other", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a person is going up a snow covered mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man in a blue coat skiing through a snowy field", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a runner leading off base to try and get to the next base", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a person riding skis on top of a snow covered slope", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "an old picture with two horses being directed by a man next to a dog", + "pred": "people that are standing in the grass" + }, + { + "label": "a large group of zebra standing in the grass", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "a man is riding a brown horse down a green field", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "the person is riding a horse in the pen", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "a large group of zebras graze in the grasslands of africa", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "the two cats are laying beside of the computer on the keyboard", + "pred": "a black and white cat laying on top of a wooden desk" + }, + { + "label": "cooked broccoli sitting on a plate with salmon", + "pred": "a white plate topped with broccoli and meat" + }, + { + "label": "a young girl rides her horse in the middle of a course", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "two cats are laying on the keyboard of a computer", + "pred": "a black and white cat laying on top of a wooden desk" + }, + { + "label": "a skier is standing at the top of ski slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a plate that has some broccoli on it", + "pred": "a white plate topped with broccoli and meat" + }, + { + "label": "horses are being led in a field", + "pred": "people that are standing in the grass" + }, + { + "label": "the person is standing in the deep snow. the trees are covered with snow", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a wooden wagon with wheels topped with bunches of bananas", + "pred": "a bicycle that has some bananas on it" + }, + { + "label": "salmon and broccoli with garlic on this plate", + "pred": "a white plate topped with broccoli and meat" + }, + { + "label": "a white plate with some broccoli and meat", + "pred": "a white plate topped with broccoli and meat" + }, + { + "label": "a table topped with a sandwich, chili beans and a container of fries", + "pred": "a table topped with a sandwich and french fries" + }, + { + "label": "a girl in full riding gear riding a brown horse", + "pred": "a woman riding on the back of a brown horse" + }, + { + "label": "a man walking on his skis in the snow with snow covered trees", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a man holding onto a some wires while skiin", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a black and white cat laying next to a black cat on a computer keyboard", + "pred": "a black and white cat laying on top of a wooden desk" + }, + { + "label": "two cats laying on a keyboard in front of a monitor", + "pred": "a black and white cat laying on top of a wooden desk" + }, + { + "label": "zebras out in a grassy field", + "pred": "a herd of zebra standing on top of a dry grass field" + }, + { + "label": "one person is eating chilli and a grilled cheese and the other is having a sandwich and fries", + "pred": "a table topped with a sandwich and french fries" + }, + { + "label": "a snow skier is being pulled by a rope overhead", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a skier is para-sailing in the snow with other skiers", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "two black and white cats are on a keyboard", + "pred": "a black and white cat laying on top of a wooden desk" + }, + { + "label": "boys are running around playing little league", + "pred": "a little league baseball game in progress" + }, + { + "label": "a lady that is on some skies on some snow", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "little boys running around on a baseball field", + "pred": "a little league baseball game in progress" + }, + { + "label": "a man that has ski's and is standing in the snow", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "people that are standing in the snow", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a woman standing on a mountain with skis and poles", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "young baseball players, playing a game", + "pred": "a little league baseball game in progress" + }, + { + "label": "a boy is riding a skateboard on a wall", + "pred": "a man riding a skateboard down the side of a wall" + }, + { + "label": "a person is skiing with a bunch of flags around", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "a woman is standing in the snow wearing a pair of skis", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a small wooden cart with a bunch of bananas on it", + "pred": "a bicycle that has some bananas on it" + }, + { + "label": "a woman touching a plastic container sitting on a table", + "pred": "a person holding a bunch of bananas on top of a table" + }, + { + "label": "three men standing next to each other on a baseball field", + "pred": "two baseball players standing next to each other" + }, + { + "label": "a boy in a blue baseball uniform running to tag out a boy in a red uniform", + "pred": "a little league baseball game in progress" + }, + { + "label": "old wooden wagon with banana bunches on it", + "pred": "a bicycle that has some bananas on it" + }, + { + "label": "a boy getting ready to make a play", + "pred": "a little league baseball game in progress" + }, + { + "label": "skiers enjoying their day on a mountain", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a woman standing while holding a pole on snow", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a girl posing with ski equipment in the snow", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a man wearing a white shirt and standing between two baseball players", + "pred": "two baseball players standing next to each other" + }, + { + "label": "a horse is pulling a carriage with people down a street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "bananas being laid on the wagon", + "pred": "a bicycle that has some bananas on it" + }, + { + "label": "people riding a pair of skis down a snow covered slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a guy wear a short khaki pants and brown tee is on a skate board", + "pred": "a man riding a skateboard down the side of a wall" + }, + { + "label": "a horse and carriage that has some people sitting in it", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "the skier is making a high jump in the snow", + "pred": "a man flying through the air while riding skis" + }, + { + "label": "bananas left out in the open", + "pred": "a person holding a bunch of bananas on top of a table" + }, + { + "label": "a woman on ski's standing in the snow", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a flat bed cart with three large bunches of bananas and a tied lidded basket", + "pred": "a bicycle that has some bananas on it" + }, + { + "label": "two ladies are riding in a wagon being pulled by a horse", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "tow baseball players and a coach", + "pred": "two baseball players standing next to each other" + }, + { + "label": "a woman posing on skis with a ski lift", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "different views of a man who is skateboarding", + "pred": "a man riding a skateboard on top of a skateboard ramp" + }, + { + "label": "people on skis sit on top of a snowy hill", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "people skiing down a snowy slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a piece of chocolate cake on a plate", + "pred": "a piece of chocolate cake on a plate" + }, + { + "label": "people on skis are in the snow", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a kid rides a skate board up a wall", + "pred": "a man riding a skateboard down the side of a wall" + }, + { + "label": "people that are walking across the snow", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "two skiers taking in the view of the mountain range on a cloudy day", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a busy ski resort with people dressed in winter gear", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "people a table some bananas and plastic cups", + "pred": "a person holding a bunch of bananas on top of a table" + }, + { + "label": "a man talking to two people in baseball uniforms", + "pred": "two baseball players standing next to each other" + }, + { + "label": "a skater rides along a steep red wall", + "pred": "a man riding a skateboard down the side of a wall" + }, + { + "label": "people that are on the snow slope skiing", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a person with duplicate images of himself skateboarding", + "pred": "a man riding a skateboard on top of a skateboard ramp" + }, + { + "label": "two old time baseball players talk to a man", + "pred": "two baseball players standing next to each other" + }, + { + "label": "a horse laying down on top of a lush green field", + "pred": "a horse that is laying down in the grass" + }, + { + "label": "boys in a school uniform skateboarding on a concrete ramp", + "pred": "a man riding a skateboard on top of a skateboard ramp" + }, + { + "label": "a horse drawn carriage with two women riding on it", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a yellow and white plate with a piece of chocolate cake", + "pred": "a piece of chocolate cake on a plate" + }, + { + "label": "two snow skiers are coming down a hill", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a boy swinging a bat with a catcher in place behind the batter", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the cross country skiers are enjoying their run", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a classic black and white photo of a woman holding ski's", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a horse pulling some people in a carriage in the street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a female standing beside a wooden post with a fake background", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a person hitting a half pipe on a skateboard", + "pred": "a man riding a skateboard down the side of a wall" + }, + { + "label": "a catcher and umpire standing on a baseball field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman holding a couple of ski poles and skis", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a man swinging a bat on top of a baseball field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baby brown bear standing on top of a rock", + "pred": "a brown bear standing on top of a rock" + }, + { + "label": "a piece of a chocolate cake on a plate", + "pred": "a piece of chocolate cake on a plate" + }, + { + "label": "a table with bananas close to the road", + "pred": "a person holding a bunch of bananas on top of a table" + }, + { + "label": "a man riding a skateboard down a street in front of a red car", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a person reaches for a container on a counter", + "pred": "a person holding a bunch of bananas on top of a table" + }, + { + "label": "the two people stand on the snow in skis", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "the catcher races from behind homeplate onto the field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "young men ride their skateboards on a ramp", + "pred": "a man riding a skateboard on top of a skateboard ramp" + }, + { + "label": "a brown bear walking across a forest surrounded by trees", + "pred": "a large brown bear walking through a forest" + }, + { + "label": "a man riding a skateboard up the side of a ramp", + "pred": "a man riding a skateboard on top of a skateboard ramp" + }, + { + "label": "a piece of chocolate pie sitting on top of a plate", + "pred": "a piece of chocolate cake on a plate" + }, + { + "label": "a baseball player pitching a baseball on a field", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a small pony a with two smaller ponies standing in front of it", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "a baseball player hitting a ball at a game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a boy on a skateboard rail on a skateboard", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "baseball players with a bat and glove at the pitch", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a young boy riding a skateboard across a parking lot", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a man with a helmet on riding a skateboard in the street", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a horse laying in a field enjoying the sun", + "pred": "a horse that is laying down in the grass" + }, + { + "label": "a slice of chocolate cake is on a small plate", + "pred": "a piece of chocolate cake on a plate" + }, + { + "label": "a player swings at a baseball while the catcher is ready to catch the ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the cell phone is next to a pear, a mug, and a bottle of tea", + "pred": "an apple sitting on top of a table next to a cell phone" + }, + { + "label": "two men are standing atop a snowy hill top", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "the city is very busy today with foot traffic", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "children sitting on the grass with frisbees in their hands", + "pred": "three children are sitting in the grass with a frisbee" + }, + { + "label": "a trio of zebra's leaned over eating hay on the ground", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "two skiers looking out at the view from a high cliff", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "an apple, a phone, and a cup sitting on a table", + "pred": "an apple sitting on top of a table next to a cell phone" + }, + { + "label": "children sitting in the grass with two of them holding a frisbee", + "pred": "three children are sitting in the grass with a frisbee" + }, + { + "label": "two people with snow gear on, carrying equipment", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a dark horse laying on the ground by some grass", + "pred": "a horse that is laying down in the grass" + }, + { + "label": "a skateboarder rides down the street with a helmet", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a cellphone, piece of fruit and cup are on the table", + "pred": "an apple sitting on top of a table next to a cell phone" + }, + { + "label": "a baseball player is on the mound with a ball", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "this shows a view from across a courtyard in a city in a tropical location", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "zebra are out in the open eating some hay", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "three zebras are standing in a row grazing on hay", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a bear standing on rocks and his ears are up", + "pred": "a brown bear standing on top of a rock" + }, + { + "label": "five small boys sitting on the grass holding two frisbees", + "pred": "three children are sitting in the grass with a frisbee" + }, + { + "label": "a baseman ready to put the runner out", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a black bear walking toward a rock", + "pred": "a brown bear standing on top of a rock" + }, + { + "label": "two people hiking up a mountain with their ski's", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a crowd of people outside standing in front of a building", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "a pear, cup, cell phone and paper on a table", + "pred": "a glass of orange juice next to a cell phone" + }, + { + "label": "three zebras eat hay in black and white", + "pred": "zebras eating grass in a field" + }, + { + "label": "a pot full of vegetables and ready to be cooked", + "pred": "a pot filled with carrots and onions on top of a stove" + }, + { + "label": "the pot on the stove has chopped vegetables in it", + "pred": "a pot filled with carrots and onions on top of a stove" + }, + { + "label": "kids sitting on grass holding a frisbe", + "pred": "three children are sitting in the grass with a frisbee" + }, + { + "label": "two people on a snow covered hill with skis", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a man riding on the back of a brown horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a dog is next to a tree and a bunch of people are walking up to colored umbrellas and some have rested under a tree", + "pred": "a horse drawn carriage on a city street" + }, + { + "label": "young men standing on top of a soccer field", + "pred": "two men are playing frisbee in a field" + }, + { + "label": "a large brown bear standing next to a pile of rocks", + "pred": "a brown bear standing on top of a pile of rocks" + }, + { + "label": "delicious noodles are being cooked on a pan", + "pred": "a white plate topped with a mixture of cheese and cheese" + }, + { + "label": "a guy is playing baseball while wearing a white uniform", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a plate of noodles with sauce and a fork", + "pred": "a white plate topped with a mixture of cheese and cheese" + }, + { + "label": "baseball players standing on the field", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "belgium waffle loaded with bananas topped with powdered sugar with syrup and more fruit as a garnish", + "pred": "a white plate topped with a banana and strawberries" + }, + { + "label": "three zebras eating the grass and hay", + "pred": "zebras eating grass in a field" + }, + { + "label": "a person with some skis standing in the snow", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "vegetables cooking in a pot", + "pred": "a pot filled with carrots and onions on top of a stove" + }, + { + "label": "pitcher in the baseball game getting ready to throw the ball", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "the large bear is walking on a boulder", + "pred": "a brown bear standing on top of a rock" + }, + { + "label": "a bear with an aggressive face lumbers through a forest", + "pred": "a large brown bear walking through a forest" + }, + { + "label": "a brown bear walking in its zoo enclosure", + "pred": "a brown bear standing on top of a rock" + }, + { + "label": "a brown bear leans on the concrete and looks up", + "pred": "a brown bear standing on top of a pile of rocks" + }, + { + "label": "a huge plate of yummy food with fork to eat", + "pred": "a slice of pizza on a plate with a fork" + }, + { + "label": "a brown bear enjoying the sun and a little water at the zoo", + "pred": "a brown bear standing on top of a pile of rocks" + }, + { + "label": "diced vegetables inside a saucepan on top of the stove", + "pred": "a pot filled with carrots and onions on top of a stove" + }, + { + "label": "people playing with a disc in a field", + "pred": "two men are playing frisbee in a field" + }, + { + "label": "a boy skateboards on concrete behind a backyard", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "the waffle has banana slices and a strawberry in the middle", + "pred": "a white plate topped with a banana and strawberries" + }, + { + "label": "a bear is running around in a dirt field", + "pred": "a large brown bear walking through a forest" + }, + { + "label": "people with some skis in the snow", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a plate of cooked noodles, a fork, and a knife is displayed", + "pred": "a white plate topped with a mixture of cheese and cheese" + }, + { + "label": "a portion of a pizza is sitting on a tray and someone is holding a fork and a knife", + "pred": "a slice of pizza on a plate with a fork" + }, + { + "label": "a man smiles watching a rider approach with two horses", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "couple of people walking up the snowy mountain with skis", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "the young skateboarder is riding on a cement driveway", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a skateboarder behind a house on a cement pad", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a person holding a knife and fork over a pizza", + "pred": "a slice of pizza on a plate with a fork" + }, + { + "label": "a man jumping skis at a ski area", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a white plate of pizza on a table", + "pred": "a slice of pizza on a plate with a fork" + }, + { + "label": "men are running around in a field", + "pred": "two men are playing frisbee in a field" + }, + { + "label": "bananas and strawberries on a large waffle", + "pred": "a white plate topped with a banana and strawberries" + }, + { + "label": "men that are on a field playing frisbee", + "pred": "two men are playing frisbee in a field" + }, + { + "label": "a man with a baseball bat that is in the dirt", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a pan filled with celery, onions, and carrots", + "pred": "a pot filled with carrots and onions on top of a stove" + }, + { + "label": "a large brown bear laying on a rock", + "pred": "a brown bear standing on top of a pile of rocks" + }, + { + "label": "a woman slashing down a snowy hill on skis", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a skillet contains diced meat and mixed vegetables", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a person with skis in the air on snow covered mountains", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a pizza topped with cheese, tomato sauce, and mushrooms being sliced on a plate", + "pred": "a slice of pizza on a plate with a fork" + }, + { + "label": "a person rising a skate board in a lot", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a recipe consisting of ham broccoli and carrots", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a plate topped with baby carrots and beans next to a peeler", + "pred": "a plate of food on a table" + }, + { + "label": "a person on skis standing at a finish line", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a bear on grass near small trees", + "pred": "a large brown bear walking through a forest" + }, + { + "label": "a person with some skis up in the air", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a man smiles as some horses pass by him", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "males are playing frisbee and some trees", + "pred": "two men are playing frisbee in a field" + }, + { + "label": "a man flying through the air while riding skis", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "person high up in the air doing ski tricks", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "three people are standing under the arch for a ski race", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a plate topped with noodles and a fork", + "pred": "a white plate topped with a mixture of cheese and cheese" + }, + { + "label": "a bear walking in the woods near several trees", + "pred": "a large brown bear walking through a forest" + }, + { + "label": "a cake with cream topping on the plate", + "pred": "a white plate topped with a mixture of cheese and cheese" + }, + { + "label": "alpine skier in a cloud of snow on a steep slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a plate with a big tasty looking waffle topped with fruit", + "pred": "a white plate topped with a banana and strawberries" + }, + { + "label": "a happy bear putting his paws in some water", + "pred": "a brown bear standing on top of a pile of rocks" + }, + { + "label": "baseball player runs toward base while others stand around", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a pan is filled with broccoli, peppers, and diced sausage", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a pot of food on a stove with broccoli", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "three zebras in a field near bushes", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "zebra standing on top of a grass covered hillside", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "two people riding horses on a rock path", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man that is standing next to a base", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a baseball player running on the base paths", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "two zebras grazing while another horse standing and staring", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "a plate on a table is filled with carrots and beans", + "pred": "a plate of food on a table" + }, + { + "label": "the man is skiing down the hill with his goggles up", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a skier is skiing in the winter snow outdoors", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "the broccoli is being cooked with ham and carrots", + "pred": "a pan filled with meat and vegetables on top of a stove" + }, + { + "label": "a table full of bananas being sold outside", + "pred": "bunches of bananas on display at a market" + }, + { + "label": "people are with a horse in a stable", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "a big bin filled with some ripe yellow bananas", + "pred": "bunches of bananas on display at a market" + }, + { + "label": "a very big pretty horse and some people", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "fresh fruit cart containing oranges and pears on it", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a plate of waffles with bananas and strawberries on top", + "pred": "a white plate topped with a banana and strawberries" + }, + { + "label": "a plate that has some cut up vegetables on it", + "pred": "a plate of food on a table" + }, + { + "label": "a man on skis with ski poles has just descended the mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "skier in green coat plowing through powdered snow on slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a plate that has a pile of carrots on a counter", + "pred": "a plate of food on a table" + }, + { + "label": "a man on skies and a snow covered field with trees", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a red apple with a clock inside of it", + "pred": "a red clock sitting on top of a wooden table" + }, + { + "label": "guy that is skiing down a hill in some snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a man skis in a very snowy looking mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "the fruit are piled up on display in the store", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "three adult zebra stand near the upturned dirt", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "a zebra standing next to a zebra laying on the ground", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man standing on rocks near a man riding horses on a trail in the woods", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "three zebras grazing in a grassy area near shrubs", + "pred": "zebra standing on top of a lush green field" + }, + { + "label": "a young boy reaching up to grab a red apple", + "pred": "a young boy standing in front of a pile of apples" + }, + { + "label": "a selection of pears, orange, and watermelons on display", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a market fruit display of pears, oranges, and avocado", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a baseball runner slows as he arrives at third base", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a display in a grocery store filled with lots of fresh fruits", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "the man is running during a baseball game", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a girl skis in a lot of snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "the baby is standing next to several boxes of apples", + "pred": "a young boy standing in front of a pile of apples" + }, + { + "label": "bananas and apples are being sold at the market", + "pred": "bunches of bananas on display at a market" + }, + { + "label": "three people are talking and laughing while in the stable with a horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "bananas sitting on the shelf", + "pred": "bunches of bananas on display at a market" + }, + { + "label": "people standing next to a horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "a skier is standing in the snow under a blue thing", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "an adult man skiing down a mountain near evergreen trees", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "an alarm clock that is shaped like an apple", + "pred": "a red clock sitting on top of a wooden table" + }, + { + "label": "the fresh vegetables are growing in the garden", + "pred": "a garden filled with lots of green plants" + }, + { + "label": "the skier is happy to have won the race", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "people are outside near some trees", + "pred": "two men playing with a frisbee in a park" + }, + { + "label": "a woman is skiing down a snowy hill", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a skier descends a mountain slope while snow falls", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two men in the middle of the woods playing frisbee golf", + "pred": "two men playing with a frisbee in a park" + }, + { + "label": "a kid is reaching up to some apples", + "pred": "a young boy standing in front of a pile of apples" + }, + { + "label": "two guys play flying disc golf in the woods", + "pred": "two men playing with a frisbee in a park" + }, + { + "label": "a little boy grabbing an apple from a box of apples", + "pred": "a young boy standing in front of a pile of apples" + }, + { + "label": "display for bananas with a euro money sign", + "pred": "bunches of bananas on display at a market" + }, + { + "label": "group of people in horse stall petting the horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "youngster on a skateboard, trying simple tip up stunt", + "pred": "a boy doing a trick on a skateboard" + }, + { + "label": "the zebras are behind the fence in the zoo", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "the skier is coming down the slope on a very snowy day", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two guys plays an outdoor game with each other", + "pred": "two men playing with a frisbee in a park" + }, + { + "label": "young skateboarder displaying skills on sidewalk near field", + "pred": "a boy doing a trick on a skateboard" + }, + { + "label": "a plastic apple clock on a table surface", + "pred": "a red clock sitting on top of a wooden table" + }, + { + "label": "a clock shaped like an apple sitting on a counter", + "pred": "a red clock sitting on top of a wooden table" + }, + { + "label": "a skier slaloms down a snowy hill in low visibility", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a clock that looks like an apple a penguin and a potted plant", + "pred": "a red clock sitting on top of a wooden table" + }, + { + "label": "a person on a skateboard on a street", + "pred": "a boy doing a trick on a skateboard" + }, + { + "label": "food is layed out next to an oven", + "pred": "a cutting board topped with lots of meat and vegetables" + }, + { + "label": "young men playing disc golf in treed area of park", + "pred": "two men playing with a frisbee in a park" + }, + { + "label": "a pair of animals living in a habitat", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "two horses grazing on grass in the sun", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "horses are grazing in the field", + "pred": "horses standing on top of a lush green field" + }, + { + "label": "a child reaching their hand up to a box filled with apples", + "pred": "a young boy standing in front of a pile of apples" + }, + { + "label": "three horse running in the grass in a open area", + "pred": "horses standing on top of a lush green field" + }, + { + "label": "zebra standing on top of a grass covered field", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "two yellow fruits hanging on branches full of leaves", + "pred": "a tree with a bunch of oranges hanging from it" + }, + { + "label": "three horse running through an open muddy field", + "pred": "horses standing on top of a lush green field" + }, + { + "label": "a man taking a picture of plates of food", + "pred": "a man taking a picture of himself in front of a plate of food" + }, + { + "label": "a man riding a skateboard up a flight of steps", + "pred": "a man sitting on a bench in front of a building" + }, + { + "label": "a herd of three horses standing on top of a green field", + "pred": "horses standing on top of a lush green field" + }, + { + "label": "a grassy field with two zebras in it", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "zebras that are running through some grass", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "zebras standing near each other with their heads near the ground", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "two unripe oranges growing on a tree", + "pred": "a tree with a bunch of oranges hanging from it" + }, + { + "label": "a man that is taking a picture of some food", + "pred": "a man taking a picture of himself in front of a plate of food" + }, + { + "label": "a tree with lots of leaves and two lemons in it", + "pred": "a tree with a bunch of oranges hanging from it" + }, + { + "label": "a blue plate with a green salad on top of it", + "pred": "a plate of food on a table" + }, + { + "label": "a wooden cutting board topped with different cuts of meat", + "pred": "a cutting board topped with lots of meat and vegetables" + }, + { + "label": "vegetables on the ground are in planters", + "pred": "a garden filled with lots of green plants" + }, + { + "label": "a young boy is performing tricks on a skateboard", + "pred": "a boy doing a trick on a skateboard" + }, + { + "label": "the group of young men is playing a game of frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a table that has all kinds of food on it", + "pred": "a cutting board topped with lots of meat and vegetables" + }, + { + "label": "carrots and small green beans on a white plate", + "pred": "a plate of food on a table" + }, + { + "label": "a man is taking a picture of some sandwiches", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "an orange growing in the tree", + "pred": "a tree with a bunch of oranges hanging from it" + }, + { + "label": "fruit growing on trees on sunny day outdoors", + "pred": "a tree with a bunch of oranges hanging from it" + }, + { + "label": "planters with growing broccoli in them on the ground", + "pred": "a garden filled with lots of green plants" + }, + { + "label": "zebra walking across a lush green field", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a boy doing a stunt on a skateboard", + "pred": "a man sitting on a bench in front of a building" + }, + { + "label": "pair of zebras walking in natural field of tall grasses", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a woman riding on the back of a brown horse over an obstacle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a little boy that is jumping a skateboard", + "pred": "a boy doing a trick on a skateboard" + }, + { + "label": "a zebra grazing on grass near a river", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man taking a pic of a sandwich on a table", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "two clay pots with leafy green plants in them", + "pred": "a garden filled with lots of green plants" + }, + { + "label": "broccoli plants growing in brown planters near sand", + "pred": "a garden filled with lots of green plants" + }, + { + "label": "a baseball player pitching a ball on top of a field", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a person is riding a horse around on grasses", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man sitting in a restaurant photographs a sandwich", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a brown fuzzy bear standing in front of a leaf filled tree", + "pred": "a large brown bear sitting on top of a tree" + }, + { + "label": "four men playing frisbee in a fenced park", + "pred": "people playing frisbee in a field" + }, + { + "label": "the men are playing frisbee in the field outside", + "pred": "young men playing a game of frisbee" + }, + { + "label": "the woman is riding the horse on the course", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "men on two teams are playing frisbee", + "pred": "people playing frisbee in a field" + }, + { + "label": "a man riding skis while flying through the air", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a jockey rides a horse in a field", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a guy on a skateboard grinding on a short concrete platform", + "pred": "a man sitting on a bench in front of a building" + }, + { + "label": "we are looking at a plate full of salad", + "pred": "a plate of food on a table" + }, + { + "label": "a woman dressed in english riding clothes rides a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "three men jumping for a frisbee while others play around them", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a person riding on the back of a horse walking across a field", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "zebras race along in a grassy field in front of some trees", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "men playing a game of frisbee", + "pred": "people playing frisbee in a field" + }, + { + "label": "a herd of zebra walking across a grass covered field", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a plate holds a large salad with broccoli", + "pred": "a plate of food on a table" + }, + { + "label": "three bears in a field", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "zebras in a field", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "a platter with a salad on white linen", + "pred": "a plate of food on a table" + }, + { + "label": "pork and vegetables prepared on a cutting board and counter", + "pred": "a cutting board topped with lots of meat and vegetables" + }, + { + "label": "a skateboarder tips his board up against the base of a sculpture", + "pred": "a man sitting on a bench in front of a building" + }, + { + "label": "four men playing ultimate frisbee in a park", + "pred": "people playing frisbee in a field" + }, + { + "label": "zebras are on a plain of sands and grass", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "people are playing a frisbee game in the middle a field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "cut meat sitting on a cutting board", + "pred": "a cutting board topped with lots of meat and vegetables" + }, + { + "label": "women and one man kneeling down before two horses", + "pred": "a white horse standing in front of a crowd of people" + }, + { + "label": "a skateboarder performing a trick on an indoor ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "the man is practicing his moves on his skateboard", + "pred": "a man sitting on a bench in front of a building" + }, + { + "label": "a man sliding into a base next to another baseball player", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man is performing tricks on a skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "horse running around in a field", + "pred": "horses standing on top of a lush green field" + }, + { + "label": "the man is riding his skateboard down the ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "zebras leaning down to eat some grass", + "pred": "a herd of zebra standing on top of a grass covered field" + }, + { + "label": "a single zebra grazes on a ledge near the water", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "baseball players on a field playing baseball", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "two zebra run through tall grass near a wooded area", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a horse rider on a brown horse going over a tall jump", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a male skateboarder in a white shirt is doing a trick", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man flying through the air on top of a wooden ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a plate of food sitting on a table, it appears to be a salad", + "pred": "a plate of food on a table" + }, + { + "label": "the bear looks like he is posing, beautifully coiffed", + "pred": "a large brown bear sitting on top of a tree" + }, + { + "label": "a baseball player sliding into home plate, in a game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "men are running to catch the frisbee that is thrown", + "pred": "people playing frisbee in a field" + }, + { + "label": "a catcher at a baseball game who removed his mask", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a man who is throwing a baseball to another man", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "base ball players having a practice before the game", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a full view of some baseball players in the field", + "pred": "a baseball player pitching a ball on top of a field" + }, + { + "label": "a runner sliding into base as the ball gets close", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman on a horse jumping a bar on a course", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a man is sliding up to a base at a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a brown white and black bear and some trees", + "pred": "a large brown bear sitting on top of a tree" + }, + { + "label": "a man sliding into home plate as another catches a baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man performing a trick in the air with a pair of skis", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "people on the ski slope in their skis", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "a woman talking on the phone in front of a person selling apples", + "pred": "a woman talking on a cell phone while standing in a market" + }, + { + "label": "a zebra standing in between a group of large rocks", + "pred": "a zebra standing on top of a pile of rocks" + }, + { + "label": "a person riding a horse in an empty area of dried grass", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "three bowls filled with vegetables on top of a table", + "pred": "three bowls of food on a table" + }, + { + "label": "a zebra is standing by a large rock", + "pred": "a zebra standing on top of a pile of rocks" + }, + { + "label": "people walking on sand next to a mountainous area", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a man is doing skateboard tricks on a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a family playing a game of frisbee on a wet sandy beach", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a young man is working behind a counter", + "pred": "a man that is standing in front of a counter" + }, + { + "label": "a big and white horse in a dirt cage", + "pred": "a white horse standing next to a fence" + }, + { + "label": "a young man stands in a kitchen watching a griddle", + "pred": "a man that is standing in front of a counter" + }, + { + "label": "a young man working at a range in a commercial kitchen", + "pred": "a man that is standing in front of a counter" + }, + { + "label": "a white horse is standing near a riding field", + "pred": "a white horse standing next to a fence" + }, + { + "label": "a man prepare food in the small kitchen", + "pred": "a man that is standing in front of a counter" + }, + { + "label": "a family are playing frisbee on the beach", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a zebra is standing in an area with large rocks", + "pred": "a zebra standing on top of a pile of rocks" + }, + { + "label": "a person is riding a horse that is running very fast", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a young man is standing behind a counter, carefully looking over an array of food preparation equipment and related items", + "pred": "a man that is standing in front of a counter" + }, + { + "label": "bowls with veggies in them", + "pred": "three bowls of food on a table" + }, + { + "label": "people standing in line on a hill in snow gear", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a man is swinging a baseball bat at a game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "three small dishes have different kinds of vegetables", + "pred": "three bowls of food on a table" + }, + { + "label": "a banana is laying on a small plate", + "pred": "a white plate topped with a banana on top of a wooden table" + }, + { + "label": "a woman talking on her cell phone", + "pred": "a woman talking on a cell phone while standing in a market" + }, + { + "label": "children & one adult flying a kite in an open area", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a white horse that is standing next to a fence", + "pred": "a white horse standing next to a fence" + }, + { + "label": "two zebras are standing together next to the fence", + "pred": "zebra standing next to each other" + }, + { + "label": "people waiting in line for the ski lift", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a white horse standing in a corral looking on", + "pred": "a white horse standing next to a fence" + }, + { + "label": "a white horse standing on top of a dirt field", + "pred": "a white horse standing next to a fence" + }, + { + "label": "a woman and kids on a beach with a large rocky area", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a large open field of dirt and yellow grass with a person riding a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a baseball player swings the bat while the catcher & umpire look on", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a zebra between rocks", + "pred": "a zebra standing on top of a pile of rocks" + }, + { + "label": "a man riding a horse on an open plane", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a batter swings as the catcher and umpire squat down behind him", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the batter is going to hit the ball in the baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a person riding a horse through a field", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "young people standing on top of a snow covered slope", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "she is cross-country skiing for the exercise it provides for her", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "people on skis at a peak of a mountain", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "a person walking on a street talking on a cell phone", + "pred": "a woman talking on a cell phone while standing in a market" + }, + { + "label": "the people are waiting to ski on the snowy mountain", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "the skiers are happy to pose for the picture", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "the back end view of two zebras standing at a fence", + "pred": "zebra standing next to each other" + }, + { + "label": "zebra standing next to each other on a field", + "pred": "zebra standing next to each other" + }, + { + "label": "a baseball batter is up for a swing over the plate", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a line of skiers waiting for the ski lift", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "an outside territory", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a person riding skis on a snowy slope", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a rear view of two zebras with their heads up against a fence", + "pred": "zebra standing next to each other" + }, + { + "label": "an individual enjoying itself on a sunny day", + "pred": "a woman talking on a cell phone while standing in a market" + }, + { + "label": "a woman is on a phone in front of a fruit stand", + "pred": "a woman talking on a cell phone while standing in a market" + }, + { + "label": "a man riding a skateboard up the side of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man skateboard on the side of a wall", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a man riding skis on top of snow covered ground", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a skateboarder balances on the top of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a person with a skate board going getting ready to go down a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "an individual is capture in the stillness of the picture", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a bowl of carrots, broccoli, and peppers on a table", + "pred": "three bowls of food on a table" + }, + { + "label": "a baseball game showing a batter waiting for a pitch", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man sitting at a desk with food holding a wine glass", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a man who is holding a wine glass", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "the woman using the skies is wearing all black", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a girl on top of skate board on a street", + "pred": "a person riding a skateboard on a sidewalk" + }, + { + "label": "people riding skis on a snowy surface", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "a baseball game in progress with the batter in the middle of a swing", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a young girl riding on a skate board", + "pred": "a person riding a skateboard on a sidewalk" + }, + { + "label": "a child skateboards down the middle of a street", + "pred": "a person riding a skateboard on a sidewalk" + }, + { + "label": "a zebra playing on a field with logs of tree", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a boy stands at the top of a jump with his skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a lone zebra near a rock with large rock face", + "pred": "a zebra standing on top of a pile of rocks" + }, + { + "label": "a woman in skies is walking in the snow", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man standing on his skiesat night with a light on his head. a city is close behind him", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a baseball player with a bat on a field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a girl riding a small skateboard on a street", + "pred": "a person riding a skateboard on a sidewalk" + }, + { + "label": "two zebras that are standing in the grass", + "pred": "zebra standing next to each other" + }, + { + "label": "a man stands on his skis on a flat patch of snow near a fence", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "zebra standing on top of a rock", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man is skiing on a bridge with snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a little league baseball player is getting ready hit the ball with his bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a banana that is sitting on a plate", + "pred": "a white plate topped with a banana on top of a wooden table" + }, + { + "label": "an incredible picture of an individual in the stillness movement", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a zebra has its nose pressed to the ground", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man riding skis down a snow covered slope", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a woman is skiing down a snowy hill", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "apples, a pear, and a bunch of bananas", + "pred": "a pile of bananas, apples, and oranges on a table" + }, + { + "label": "a banana sitting next to a dollop of butterscotch", + "pred": "a white plate topped with a banana on top of a wooden table" + }, + { + "label": "a zebra bending down eating something off the ground", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "an individual is in the open view in the picture", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a girl is skate boarding on a short skateboard", + "pred": "a person riding a skateboard on a sidewalk" + }, + { + "label": "a woman riding skis across snow covered ground", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man skiing down the side of a snow covered mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a catcher is ready to catch the ball after it crosses the plate", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the small black bowls have peppers and carrots in them", + "pred": "three bowls of food on a table" + }, + { + "label": "a person trying to throw a frisbee and another trying to block the throw", + "pred": "young people playing a game of frisbee" + }, + { + "label": "a young man is skateboarding on a wall and holding onto a bar", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "a bowl with rice, broccoli and a purple relish", + "pred": "a white bowl filled with rice and vegetables" + }, + { + "label": "a person on skis skiing down a mountain", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a guy is having fun skiing down the slope of the hill", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "two grown men and a young child playing frisbee in a field", + "pred": "young people playing a game of frisbee" + }, + { + "label": "a close up shot of some apples pears and bananas on a table", + "pred": "a pile of bananas, apples, and oranges on a table" + }, + { + "label": "a white plate topped with a banana and pudding", + "pred": "a white plate topped with a banana on top of a wooden table" + }, + { + "label": "a young man that is having some wine and something to eat", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a man wears a light while skiing at night", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a variety of fruit is shown at close up range", + "pred": "a pile of bananas, apples, and oranges on a table" + }, + { + "label": "a giraffe standing next to a zebra on a field", + "pred": "a zebra and a giraffe standing next to each other" + }, + { + "label": "a man at an office desk drinking a glass of wine", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a peeled banana and sauce on a plate", + "pred": "a white plate topped with a banana on top of a wooden table" + }, + { + "label": "apples, bananas and pears in a white bowl", + "pred": "a pile of bananas, apples, and oranges on a table" + }, + { + "label": "a man with goggles on snow skiing on a mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a zebra walking around looking for something to eat", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man going up a ramp on a skateboard", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "the giraffe and the zebra are sharing a feeding area", + "pred": "a zebra and a giraffe standing next to each other" + }, + { + "label": "a man performs a skateboarding trip on a pink half-pipe", + "pred": "a person on a skateboard doing a trick" + }, + { + "label": "the sandwich is decorated in a very unusual way", + "pred": "a sandwich sitting on top of a table next to a bottle of wine" + }, + { + "label": "twenty-five squares of different photos of carrots", + "pred": "a collage of photos of various fruits and vegetables" + }, + { + "label": "a plate of broccoli, rice, meat and other vegetables", + "pred": "a white bowl filled with rice and vegetables" + }, + { + "label": "a person skiing on a mountain covered with snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "apples, pears, and bananas gathered next to each other", + "pred": "a pile of bananas, apples, and oranges on a table" + }, + { + "label": "people are skiing and snowboarding on a high mountain", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a giraffe eats a hanging tree limb while a zebra grazes nearby", + "pred": "a zebra and a giraffe standing next to each other" + }, + { + "label": "a man in a big jacket skiing down a snowy slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "image at a zoo of a giraffe near a zebra pen with both animals eating", + "pred": "a zebra and a giraffe standing next to each other" + }, + { + "label": "a person on skateboard skating on the pavement", + "pred": "a man on a cell phone standing in front of a wall" + }, + { + "label": "a gourmet hamburger with a beverage behind it", + "pred": "a sandwich sitting on top of a table next to a bottle of wine" + }, + { + "label": "20 small photos in a collage together, with each photo containing a carrot in it", + "pred": "a collage of photos of various fruits and vegetables" + }, + { + "label": "people skiing down a snow covered slope", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a man standing on a pair of skis and coming down a snow covered hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a bean and corn mixture, rice, and broccoli on a plate", + "pred": "a white bowl filled with rice and vegetables" + }, + { + "label": "a skier in a blue and white outfit", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "zebra and giraffe at a zoo in a cage", + "pred": "a zebra and a giraffe standing next to each other" + }, + { + "label": "pictures of different turnips and turnip like foods", + "pred": "a collage of photos of various fruits and vegetables" + }, + { + "label": "a man in a coat skiing down a hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "people are skiing and snowboarding down a mountain", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a cross country skier listens to music as she glides across the snow", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "older man tries to block younger man's frisbee throw", + "pred": "young people playing a game of frisbee" + }, + { + "label": "a man on a skateboard is using his phone", + "pred": "a man on a cell phone standing in front of a wall" + }, + { + "label": "snow skiers are on top of a mountain", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "people playing a game of frisbee", + "pred": "young people playing a game of frisbee" + }, + { + "label": "a person holding a bit vegetable in their left hand", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "people skiing and snowboarding on the snow", + "pred": "people riding skis on top of a snow covered slope" + }, + { + "label": "a hamburger sitting on top of a wooden cutting board", + "pred": "a sandwich sitting on top of a table next to a bottle of wine" + }, + { + "label": "hand showing vegetable that has being chewed near garden area", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "he is ready to block the flight of that frisbee", + "pred": "young people playing a game of frisbee" + }, + { + "label": "a man wearing sunglasses getting ready to ride a skate board", + "pred": "a man on a cell phone standing in front of a wall" + }, + { + "label": "a meat sandwich atop a table with a drink", + "pred": "a sandwich sitting on top of a table next to a bottle of wine" + }, + { + "label": "a big hamburger sitting on top of a counter and a glass of wine", + "pred": "a sandwich sitting on top of a table next to a bottle of wine" + }, + { + "label": "a man skateboards on a skateboard in a concrete area", + "pred": "a man on a cell phone standing in front of a wall" + }, + { + "label": "a broccoli plant has very large leaves", + "pred": "a plant that is growing in a field" + }, + { + "label": "a broccoli plant growing in a garden is dwarfed by it's leaves", + "pred": "a plant that is growing in a field" + }, + { + "label": "green leaves grouped together as a plant", + "pred": "a plant that is growing in a field" + }, + { + "label": "25 pictures of carrots varying in size, shape and color", + "pred": "a collage of photos of various fruits and vegetables" + }, + { + "label": "green leaves on a broccoli plant", + "pred": "a plant that is growing in a field" + }, + { + "label": "the end of a carrot is shown after someone has been eating it", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "a man seems to be disguised as marty mcfly here, from back to the future", + "pred": "a man on a cell phone standing in front of a wall" + }, + { + "label": "a small broccoli plant is shown growing among pine needles", + "pred": "a plant that is growing in a field" + }, + { + "label": "various pictures of carrots grown and cooked in various ways", + "pred": "a collage of photos of various fruits and vegetables" + }, + { + "label": "a person's hand holding up a bitten radish", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "a young man running towards a white frisbee", + "pred": "a man catching a frisbee in a park" + }, + { + "label": "someone is holding a veggie with a bite already taken from it", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "a man leaning over as he reaches for a white frisbee", + "pred": "a man catching a frisbee in a park" + }, + { + "label": "horse in fenced pasture with others grazing on grasses", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "two baseball players stand near the baseball field", + "pred": "two baseball players on a field playing baseball" + }, + { + "label": "looking down at a bowl of white rice, broccoli and a vegetable dish", + "pred": "a white bowl filled with rice and vegetables" + }, + { + "label": "blurry photograph of a woman skiing down a slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a brown horse in the field gazing around", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a blonde horse is standing in a field", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a woman standing in front of a fruit stand", + "pred": "a man and woman standing next to a fruit stand" + }, + { + "label": "someone about to cut and birthday cake with blue and yellow frosting", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "a man at a fruit stand with a woman beside him", + "pred": "a man and woman standing next to a fruit stand" + }, + { + "label": "bananas around another piece of fruit", + "pred": "bananas sitting on top of a table" + }, + { + "label": "a person has a knife in his hand above the cake", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "woman and man playing with a disk toy outside on the beach", + "pred": "a girl throwing a frisbee to another girl" + }, + { + "label": "a mixed breed dog in a red collar pants in the heat outdoors", + "pred": "a brown and white dog standing next to a fence" + }, + { + "label": "a dog pants as it wears a red collar in a sandy area", + "pred": "a brown and white dog standing next to a fence" + }, + { + "label": "a blue eyed dog panting as he walks by", + "pred": "a brown and white dog standing next to a fence" + }, + { + "label": "two baseball players are having fun practicing in the outfield", + "pred": "two baseball players on a field playing baseball" + }, + { + "label": "a young lady that is making a diving catch to get the frisbee", + "pred": "a girl throwing a frisbee to another girl" + }, + { + "label": "a produce vendor and a customer on a sidewalk", + "pred": "a man and woman standing next to a fruit stand" + }, + { + "label": "the dog has blue eyes and is wearing a collar", + "pred": "a brown and white dog standing next to a fence" + }, + { + "label": "the meal in the bowl has rice and broccoli in it", + "pred": "a white bowl filled with rice and vegetables" + }, + { + "label": "a person in a blue coat is skiing down a slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "the woman has her arms outstretched with the frisbee in front of her", + "pred": "a girl throwing a frisbee to another girl" + }, + { + "label": "people and a woman in a pink shirt and a yellow frisbee", + "pred": "a girl throwing a frisbee to another girl" + }, + { + "label": "two baseball players with gloves are standing in the outfield", + "pred": "two baseball players on a field playing baseball" + }, + { + "label": "a person holding a knife cuts into a cake", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "a woman tries to catch a frisbe as a man watches on", + "pred": "a girl throwing a frisbee to another girl" + }, + { + "label": "horses pull a contraption", + "pred": "a pair of horses pulling a wagon full of hay" + }, + { + "label": "a male in a gray shirt grass and a white frisbee", + "pred": "a man catching a frisbee in a park" + }, + { + "label": "two baseball players standing in a field surrounded by a fence", + "pred": "two baseball players on a field playing baseball" + }, + { + "label": "an indian woman stands in front of a man selling his fruit", + "pred": "a man and woman standing next to a fruit stand" + }, + { + "label": "a horse standing in the dirt near a fence", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a painting of a man smiling behind a table with fruit", + "pred": "a painting of a woman sitting in front of a bowl of fruit" + }, + { + "label": "a black brown and white dog with a red collar", + "pred": "a brown and white dog standing next to a fence" + }, + { + "label": "a yellow and red apple and some bananas", + "pred": "bananas sitting on top of a table" + }, + { + "label": "two baseball players a fence and green grass", + "pred": "two baseball players on a field playing baseball" + }, + { + "label": "a hand holding a knife and about to cut a large birthday cake", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "an apple sits in between a bunch of bananas", + "pred": "bananas sitting on top of a table" + }, + { + "label": "a dog laying on a bed with a tv", + "pred": "a dog laying on top of a bed next to a pillow" + }, + { + "label": "a cute brown puppy is snuggled on a rumpled bed", + "pred": "a dog laying on top of a bed next to a pillow" + }, + { + "label": "a tan horse with a blond mane inside of a coral", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "bananas with an apple sitting in the middle", + "pred": "bananas sitting on top of a table" + }, + { + "label": "ball players playing on a field in front of an audience", + "pred": "a crowd of people watching a baseball game" + }, + { + "label": "two irking horses pulling a piece of equipment guided by a man", + "pred": "a pair of horses pulling a wagon full of hay" + }, + { + "label": "a batter standing a home plate in a baseball field", + "pred": "a crowd of people watching a baseball game" + }, + { + "label": "brown dog lying on unmade bed in bedroom of home", + "pred": "a dog laying on top of a bed next to a pillow" + }, + { + "label": "dog lies on bed looking towards the camera", + "pred": "a dog laying on top of a bed next to a pillow" + }, + { + "label": "a dog laying next to some colorful blankets on a white bed", + "pred": "a dog laying on top of a bed next to a pillow" + }, + { + "label": "six bananas and a red fruit make an artistic sight paired with a blue background", + "pred": "bananas sitting on top of a table" + }, + { + "label": "a young man is catching or throwing a frisbee", + "pred": "a man catching a frisbee in a park" + }, + { + "label": "man in a field walking behind two clydesdale horses", + "pred": "a pair of horses pulling a wagon full of hay" + }, + { + "label": "the batter is tapping his bat on home plate", + "pred": "a crowd of people watching a baseball game" + }, + { + "label": "a person cutting a sheet cake with a large knife", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "a slice of cake sitting top of a white plate", + "pred": "a piece of cake sitting on top of a plate next to a cup of coffee" + }, + { + "label": "three teddy bears, each a different color, snuggling together", + "pred": "a brown teddy bear sitting next to a brown teddy bear" + }, + { + "label": "a slice of brown cake possibly a carrot cake next to a slice of grapefruit", + "pred": "a piece of cake sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a baseball player is at bat as the crowd watches", + "pred": "a crowd of people watching a baseball game" + }, + { + "label": "a cross country skier on the slopes on a sunny day", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a man riding skis across a snow covered slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a crowd watching a professional baseball game on a sunny day", + "pred": "a crowd of people watching a baseball game" + }, + { + "label": "a man that is skiing down a snowy slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a skier about to head down the slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a person on a skateboard on a street", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a person with a skateboard on a street", + "pred": "a woman in a pink dress playing a game on the nintendo wii" + }, + { + "label": "two skiers heading up the side of a mountain", + "pred": "a pair of skiers standing on top of a rocky hill" + }, + { + "label": "three stuffed animals are sitting on a bed", + "pred": "a brown teddy bear sitting next to a brown teddy bear" + }, + { + "label": "two men who are riding on skateboards", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a smiling man catching a frisbee out of the air", + "pred": "a man catching a frisbee in a park" + }, + { + "label": "five men are selling a large amount of bananas", + "pred": "people sitting around a bunch of bananas" + }, + { + "label": "an aluminum pan full of chopped broccoli and carrots", + "pred": "a pan filled with vegetables on top of a counter" + }, + { + "label": "a woman with a skate board purchased food", + "pred": "a woman in a pink dress playing a game on the nintendo wii" + }, + { + "label": "a skier posing on a snowy ski slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "three teddy bears giving each other a hug", + "pred": "a brown teddy bear sitting next to a brown teddy bear" + }, + { + "label": "two skate boarders are performing on a city sidewalk", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "a person on skis with one standing vertically", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "art work with a man with a hat on and some fruit in a bowl", + "pred": "a painting of a woman sitting in front of a bowl of fruit" + }, + { + "label": "a silver container with cheese and broccoli in it", + "pred": "a pan filled with vegetables on top of a counter" + }, + { + "label": "a man on skis standing on a snowy terrain", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "food is on sale at a market", + "pred": "a man and woman standing next to a fruit stand" + }, + { + "label": "three stuffed animal teddy bears", + "pred": "a brown teddy bear sitting next to a brown teddy bear" + }, + { + "label": "one young man films another on a skateboard", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "three stuffed bears hugging and sitting on a blue pillow", + "pred": "a brown teddy bear sitting next to a brown teddy bear" + }, + { + "label": "a man in skies is walking in the snow", + "pred": "a pair of skiers standing on top of a rocky hill" + }, + { + "label": "a man guiding a plow being pulled by two horses", + "pred": "a pair of horses pulling a wagon full of hay" + }, + { + "label": "people surrounded by bananas", + "pred": "people sitting around a bunch of bananas" + }, + { + "label": "a painting of a bowl of fruit sitting in front of another painting", + "pred": "a painting of a woman sitting in front of a bowl of fruit" + }, + { + "label": "a man who is skiing performs a trick", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "young adults riding on city sidewalk with skateboards", + "pred": "a man riding a skateboard on top of a sidewalk" + }, + { + "label": "the person was standing on the snow skiing course in his skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a slice of cake with frosting on a plate", + "pred": "a piece of cake sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a woman in a short red dress is holding her skateboard while getting food from a take out window", + "pred": "a woman in a pink dress playing a game on the nintendo wii" + }, + { + "label": "a man behind farm equipment pulled by horses", + "pred": "a pair of horses pulling a wagon full of hay" + }, + { + "label": "the broccoli and cheese dish was sitting in a tin pan", + "pred": "a pan filled with vegetables on top of a counter" + }, + { + "label": "men surrounded by clusters of bananas", + "pred": "people sitting around a bunch of bananas" + }, + { + "label": "a person skiing down a mountain kicking his leg up", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a large dish of chopped broccoli and cheese", + "pred": "a pan filled with vegetables on top of a counter" + }, + { + "label": "bananas hanging on the tree", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "trees and one with bananas in it", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "a woman is standing near a snack bar with a skate board", + "pred": "a woman in a pink dress playing a game on the nintendo wii" + }, + { + "label": "a still life of fruit and an old man", + "pred": "a painting of a woman sitting in front of a bowl of fruit" + }, + { + "label": "fruit sits in front of a portrait", + "pred": "a painting of a woman sitting in front of a bowl of fruit" + }, + { + "label": "a pair of skiers walking up a side of mountain", + "pred": "a pair of skiers standing on top of a rocky hill" + }, + { + "label": "this banana tree has a bunch that is ripe", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "lots of green bananas are hanging in the tree", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "three women, one with a skateboard outside a store", + "pred": "a woman in a pink dress playing a game on the nintendo wii" + }, + { + "label": "five people in the banana warehouse", + "pred": "people sitting around a bunch of bananas" + }, + { + "label": "two dogs who are playing with a frisbee", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "a man gets air catching the frisbee near the water", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "man in air catching frisbee at beach near ocean", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "a tall banana plant with bunches of green bananas", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "five people sit in a room filled with bananas", + "pred": "people sitting around a bunch of bananas" + }, + { + "label": "a man is playing with a green flying disk", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "a serving slice of cake on a table", + "pred": "a piece of cake sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a bowl of different kinds of food on it", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "two dishes holding a bunch of vegetables and fruit", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "two men standing in some sand walking up a hill", + "pred": "a pair of skiers standing on top of a rocky hill" + }, + { + "label": "men traveling on horses in the water", + "pred": "people riding horses in a body of water" + }, + { + "label": "four men ride horses across a body of water", + "pred": "people riding horses in a body of water" + }, + { + "label": "a strange plant hanging off a banana tree", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "a colorful assortment of different fruits and vegetables", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a green fruit tree yields fruit not yet ready for harvest", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "a plate holds a good size portion of a cooked, mixed dish that includes broccoli and pasta", + "pred": "a plate of pasta and broccoli on a table" + }, + { + "label": "a large tray is filled with broccoli and chunks of cheese", + "pred": "a pan filled with vegetables on top of a counter" + }, + { + "label": "two dogs in a grassy field with one dog holding an orange disc", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "a woman is about to throw a frisbee in the dirt", + "pred": "a man throwing a frisbee on a dirt road" + }, + { + "label": "a drooping pink and white flower with green leaves", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "a person walking in the snow with skis on their back", + "pred": "a pair of skiers standing on top of a rocky hill" + }, + { + "label": "men are riding horses while going through the river", + "pred": "people riding horses in a body of water" + }, + { + "label": "two dogs playing in the grass with a frisbee", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "male horse riders crossing a river to shore", + "pred": "people riding horses in a body of water" + }, + { + "label": "a person is riding a skateboard on a curved ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "two zebras are standing together in the woods", + "pred": "a pair of zebras standing next to each other" + }, + { + "label": "a macaroni and broccoli dish on a white plate", + "pred": "a plate of pasta and broccoli on a table" + }, + { + "label": "a skateboarded is going up a jump with their skateboard", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "the shirtless men are riding horses through the lake", + "pred": "people riding horses in a body of water" + }, + { + "label": "the green plant has a bloom hanging upside down", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "the kid is on a skateboard and on a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "the meal is ready on the tray to be eaten", + "pred": "a tray filled with food on top of a table" + }, + { + "label": "a woman is playing frisbee at a camp site", + "pred": "a man throwing a frisbee on a dirt road" + }, + { + "label": "oranges that are sitting on some wood", + "pred": "a pair of oranges sitting on top of a wooden table" + }, + { + "label": "the two zebras are standing beside each other", + "pred": "a pair of zebras standing next to each other" + }, + { + "label": "the brown horse is walking on the dirt in the fence", + "pred": "a horse that is standing in the dirt" + }, + { + "label": "bananas are hanging from the banana tree", + "pred": "a large bunch of bananas hanging from a tree" + }, + { + "label": "a plastic bento box filled with rice, vegetables and fresh fruit", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a person that is standing on a skateboard", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a woman playing frisbee on a tent city road", + "pred": "a man throwing a frisbee on a dirt road" + }, + { + "label": "pasta with sauce and broccoli on white plate", + "pred": "a plate of pasta and broccoli on a table" + }, + { + "label": "a horse that is walking down a trail by itself", + "pred": "a horse that is standing in the dirt" + }, + { + "label": "an orange is shown whole, halved, and sliced", + "pred": "a pair of oranges sitting on top of a wooden table" + }, + { + "label": "a pasta dish with mushrooms and broccoli in a cream sauce", + "pred": "a plate of pasta and broccoli on a table" + }, + { + "label": "one whole orange joins one sliced orange on a wooden surface", + "pred": "a pair of oranges sitting on top of a wooden table" + }, + { + "label": "a breakfast was delivered to a hotel room on a tray", + "pred": "a tray filled with food on top of a table" + }, + { + "label": "two dogs and a frisbee frolicking on green grass", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "someone riding a skateboard is going up the ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "one tray of rice and a tray of fruits and veggies", + "pred": "a plastic container filled with fruits and vegetables" + }, + { + "label": "a horse walks along a dirt path alone", + "pred": "a horse that is standing in the dirt" + }, + { + "label": "a plate of pasta is shown with broccoli and ham", + "pred": "a plate of pasta and broccoli on a table" + }, + { + "label": "food and stuff is laying on a tray", + "pred": "a tray filled with food on top of a table" + }, + { + "label": "bananas, cereal, juice and other breakfast foods on a tray", + "pred": "a tray filled with food on top of a table" + }, + { + "label": "two zebras standing by each other and some plants", + "pred": "a pair of zebras standing next to each other" + }, + { + "label": "this tray includes several different items for a full breakfast", + "pred": "a tray filled with food on top of a table" + }, + { + "label": "a number of people riding skis on a snowy surface", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a man in white shorts jumping in the air to catch a green frisbee", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "a person jumps in the air and catches a frisbee at the beach", + "pred": "a man jumping in the air to catch a frisbee" + }, + { + "label": "people in skis standing on a snow covered incline", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "one naval orange is whole, another cut in half and three orange pieces on the right", + "pred": "a pair of oranges sitting on top of a wooden table" + }, + { + "label": "a green frisbee in the air with red chairs", + "pred": "a man throwing a frisbee on a dirt road" + }, + { + "label": "skiers are on the side of a steep slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "people are skiing down a hill that is full of snow", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "the fresh oranges are cut up on the table outside", + "pred": "a pair of oranges sitting on top of a wooden table" + }, + { + "label": "a man holding a neon frisbee in his right hand", + "pred": "a man throwing a frisbee on a dirt road" + }, + { + "label": "two zebra's standing very close to each other", + "pred": "a pair of zebras standing next to each other" + }, + { + "label": "a skier is prepared to go down a mountain", + "pred": "a person on skis in the snow" + }, + { + "label": "zebras that are walking in the woods", + "pred": "a pair of zebras standing next to each other" + }, + { + "label": "a man skiing in the snow with large pine trees", + "pred": "a person on skis in the snow" + }, + { + "label": "skiers going downhill together", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "three zebras munching on grass in their natural habitat", + "pred": "zebra standing next to each other" + }, + { + "label": "a slice of cake and a fork by sliced orange and a guinness", + "pred": "a piece of cake sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a horse walking in a field with trees", + "pred": "a horse that is standing in the dirt" + }, + { + "label": "a child riding a skate board on a city street", + "pred": "a person on a skateboard on a street" + }, + { + "label": "zebras graze on grass in a jungle habitat", + "pred": "zebra standing next to each other" + }, + { + "label": "three skiers skiing down a steep snowy slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "the two black dogs are playing frisbee together", + "pred": "a dog running with a frisbee in its mouth" + }, + { + "label": "a horse that is walking around a field", + "pred": "a horse that is standing in the dirt" + }, + { + "label": "filtered photograph of a boy on a skateboard", + "pred": "a person on a skateboard on a street" + }, + { + "label": "a man in a racing bib in his skis and a beanie", + "pred": "a person on skis in the snow" + }, + { + "label": "zebras eating from a pile of hay", + "pred": "zebra standing next to each other" + }, + { + "label": "a number of people riding skis on a snowy surface", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "people on the steep slope of a mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "zebras standing in open area grazing on hay", + "pred": "zebra standing next to each other" + }, + { + "label": "three zebras standing in the wild surrounded by trees", + "pred": "zebra standing next to each other" + }, + { + "label": "a child on a skateboard", + "pred": "a person on a skateboard on a street" + }, + { + "label": "people riding on skis on a snowy slope", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a white plate with a sandwich and sides on it", + "pred": "a sandwich and french fries on a plate" + }, + { + "label": "a man on skis goes through the snow", + "pred": "a person on skis in the snow" + }, + { + "label": "people skiing down a ski slope", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "young boy on skateboard riding near circular drive", + "pred": "a person on a skateboard on a street" + }, + { + "label": "a man on skis riding through a snowy trail", + "pred": "a person on skis in the snow" + }, + { + "label": "a sandwich and side items next to a small serving of orange slices", + "pred": "a sandwich and french fries on a plate" + }, + { + "label": "carrots with an organically grown strip tag around them", + "pred": "a pile of carrots sitting on top of a wooden cutting board" + }, + { + "label": "a sandwich on a plate with a side of fruit in a bowl and a fork lying next to it", + "pred": "a sandwich and french fries on a plate" + }, + { + "label": "carrots on a knife sitting on a cutting board", + "pred": "a pile of carrots sitting on top of a wooden cutting board" + }, + { + "label": "carrots sitting on top of a cutting board", + "pred": "a pile of carrots sitting on top of a wooden cutting board" + }, + { + "label": "sandwiches are on a white plate", + "pred": "a sandwich and french fries on a plate" + }, + { + "label": "a toasted sandwich with sliced fruit and a fork", + "pred": "a sandwich and french fries on a plate" + }, + { + "label": "horse that are next to a fence", + "pred": "two horses standing next to each other in a field" + }, + { + "label": "a plate of chicken and vegetables sits next to a bowl of rice", + "pred": "a plate of food on a table" + }, + { + "label": "a pie of carrots and a knife on a cutting board", + "pred": "a pile of carrots sitting on top of a wooden cutting board" + }, + { + "label": "a plate of food, and a bowl of white rice", + "pred": "a plate of food on a table" + }, + { + "label": "two horses stand by a wire framed fence", + "pred": "two horses standing next to each other in a field" + }, + { + "label": "a child wears a helmet while on the skateboard", + "pred": "a person on a skateboard on a street" + }, + { + "label": "two black bears captured together in night vision", + "pred": "a bear that is standing in the snow" + }, + { + "label": "someone is cooking a vegtable stir fry for dinner", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a man jumps as he skates on a pavement", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two horses stand and look out beyond a fence", + "pred": "two horses standing next to each other in a field" + }, + { + "label": "a pan full of vegetables slice up small with a some seasoning on top", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a man riding a skateboard over a rope", + "pred": "a man riding a skateboard on top of a wooden bench" + }, + { + "label": "an alcoholic beverage with an orange slice in it", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "someone is cooking vegetarian stir fry in a skillet", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a pair of black bears are shown through nightvision", + "pred": "a bear that is standing in the snow" + }, + { + "label": "two horses standing behind a wire fence on the grass", + "pred": "two horses standing next to each other in a field" + }, + { + "label": "a glass of juice with a spoon and a slice of orange", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a guy jumping over a cone on a skate board", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a man on a skateboard in mid air going over a cone in some dirt", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a thing of carrots that are laying on a board", + "pred": "a pile of carrots sitting on top of a wooden cutting board" + }, + { + "label": "two horses standing behind a fence", + "pred": "two horses standing next to each other in a field" + }, + { + "label": "a skateboarder is attempting a trick mid air", + "pred": "a man riding a skateboard on top of a wooden bench" + }, + { + "label": "two skateboarders and one is doing a trick", + "pred": "a man riding a skateboard on top of a wooden bench" + }, + { + "label": "bears lope over the ground in a dry landscape", + "pred": "a brown bear walking across a dirt road" + }, + { + "label": "two bears are interrupted on their walk by a surprise picture", + "pred": "a bear that is standing in the snow" + }, + { + "label": "a bear walks through tall grass near several trees", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "two black bears in a wooded area at night", + "pred": "a bear that is standing in the snow" + }, + { + "label": "a kid on skateboard jumps over the cone", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two bears walking together in the night", + "pred": "a bear that is standing in the snow" + }, + { + "label": "a boy is jumping his skateboard over an orange cone", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a black bear is walking on a open field next to some trees", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "two bears, one running on some rocky soil", + "pred": "a brown bear walking across a dirt road" + }, + { + "label": "a young person ridding a horse jumps a gate in a competition", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a piece of bread with a hot dog in the middle is shown", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "two hot dogs are sandwiched between two slices of bread", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "a drink with ice and straws in it with a orange slice on the edge of the glass", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a plate of food, rice bowl, and a soup bowl is on a tray", + "pred": "a plate of food on a table" + }, + { + "label": "someone holding a hot dog cut in half on some bread", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "a boy is skateboarding on a pole at a park", + "pred": "a man riding a skateboard on top of a wooden bench" + }, + { + "label": "a man riding on a horse as it jumps over a pole", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a glass full of juice with an orange slice sticking out of it", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a drink that has a slice of an orange in it", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "carrots are sitting on the stand outside in a bunch", + "pred": "a pile of carrots sitting on top of a wooden table" + }, + { + "label": "two brown bears together in the wild", + "pred": "a brown bear walking across a dirt road" + }, + { + "label": "a pan of stir fried vegetables being cooked", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a play of food next to a bowl of rice and chopsticks", + "pred": "a plate of food on a table" + }, + { + "label": "a dog holding a frisbee in its mouth", + "pred": "a dog playing with a frisbee on the beach" + }, + { + "label": "food in the baking pan on the counter", + "pred": "a pan filled with lots of vegetables on top of a table" + }, + { + "label": "a very cute looking dog with a disc on the beach", + "pred": "a dog playing with a frisbee on the beach" + }, + { + "label": "a big shiny metal pan filled with some veggies", + "pred": "a pan filled with lots of vegetables on top of a table" + }, + { + "label": "a woman is riding a horse as it jumps over a bar", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a black bear that can be seen walking own a hill", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "a man that is on a snowy trail", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a woman jockey riding a hose over the hurdle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a very nice looking tray filled with some tasty looking food", + "pred": "a plate of food on a table" + }, + { + "label": "a skillet on a stove with vegetables in it", + "pred": "a bowl filled with pasta and vegetables" + }, + { + "label": "a pile of carrots for sale in an outside market", + "pred": "a pile of carrots sitting on top of a wooden table" + }, + { + "label": "colorful carrots sitting on a table next to some other veggies", + "pred": "a pile of carrots sitting on top of a wooden table" + }, + { + "label": "a sliced hot dogs placed in a sandwich", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "a woman riding a horse jumps over an obstacle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a partial sliced open piece of bread with some hotdogs in the middle", + "pred": "a person holding a piece of food in their hand" + }, + { + "label": "a person is cross country skiing on a trail", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a person is on skis on a snow trail", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "the two bears are wondering about the point of the camera", + "pred": "a brown bear walking across a dirt road" + }, + { + "label": "carrots on a wood board for sale", + "pred": "a pile of carrots sitting on top of a wooden table" + }, + { + "label": "a dog holding a frisbee in the middle of a beach", + "pred": "a dog playing with a frisbee on the beach" + }, + { + "label": "a giant bowl of food, with broccoli and other food on it", + "pred": "a pan filled with lots of vegetables on top of a table" + }, + { + "label": "a man is standing on top of two horses and holding the reigns", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a black bear cub walking down a small hillside", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "carrots sitting on a table", + "pred": "a pile of carrots sitting on top of a wooden table" + }, + { + "label": "person standing on the pack of a galloping horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a bear that is running on some dirt", + "pred": "a brown bear walking across a dirt road" + }, + { + "label": "a black bear walks down a hill away from a tree", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "a man is standing on top of two horses that are running", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man stands on the backs of two running horses", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "the skateboarder is jumping over the railing in a park", + "pred": "a man riding a skateboard on top of a wooden bench" + }, + { + "label": "a pile of apples sitting next to a pile of green apples", + "pred": "a pile of apples sitting on top of each other" + }, + { + "label": "a dog walking on the beach with a frizzbe in his month", + "pred": "a dog playing with a frisbee on the beach" + }, + { + "label": "here is a large tray of vegetables sitting on a counter top", + "pred": "a pan filled with lots of vegetables on top of a table" + }, + { + "label": "a man that is standing on top of a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man skiing down a mountain side following a trail way", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a close-up photograph of red apples with other fruit", + "pred": "a pile of apples sitting on top of each other" + }, + { + "label": "large piles of different fruits", + "pred": "a pile of apples sitting on top of each other" + }, + { + "label": "a shaggy dog is at the beach with a frisbee", + "pred": "a dog playing with a frisbee on the beach" + }, + { + "label": "a foil pan is full of orange type food", + "pred": "a pan filled with lots of vegetables on top of a table" + }, + { + "label": "a pitcher holds his arm far behind him during a pitch", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "piles of apples, lemons, limes and oranges are available today", + "pred": "a pile of apples sitting on top of each other" + }, + { + "label": "a male skier going down a hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a young boy that is riding a horse", + "pred": "a person riding on the back of a brown horse" + }, + { + "label": "a man that is standing on ski's in the snow", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a smiling skier stands at the top of hill adjacent to trees", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "the baseball player is throwing a very intense pitch", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a person rides a horse across an obstacle", + "pred": "a person riding on the back of a brown horse" + }, + { + "label": "a baseball player pitching a ball on a field", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a young boy rides a horse up a small ramp", + "pred": "a person riding on the back of a brown horse" + }, + { + "label": "apples oranges and another yellow and green fruit", + "pred": "a pile of apples sitting on top of each other" + }, + { + "label": "a man riding skis down a hill", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a professional pitcher on the mound getting ready to throw the ball", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a man riding skis on top of a snow covered slope", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a man standing on skis at the bottom of a snow covered hill", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a computer desk with a laptop another monitor with a keyboard and mouse", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "three different computer monitors are cluttered on one desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a man skiing down a snowy slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a baseball player throws a pitch while others watch from the dugout", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a computer desk with monitors and other electronics covering it", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "the baseball player is participating in an intense game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a person skiing down a mountain on a trail", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "skier with a red jacket on going down the side of a mountain", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a woman laying in a bed using a lap top", + "pred": "a person sitting on a bed using a laptop" + }, + { + "label": "a horse standing in the grass in a fenced in area", + "pred": "a horse grazing in a field next to a fence" + }, + { + "label": "a man riding a skateboard up the side of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a zebra grazes on some green grass next to some trees", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a zebra grazes in a field adjacent to trees", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man riding skis down a snow covered slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a bowl filled with broccoli soup next to a spoon and fork", + "pred": "a bowl of broccoli and a spoon on a table" + }, + { + "label": "a bowl of soup with broccoli next to eating utensils", + "pred": "a bowl of broccoli and a spoon on a table" + }, + { + "label": "men playing a game of baseball on a field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a zebra grazing on some grass beside the woods", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "the snow skier is happy to pose for a picture", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a bowl full of brocoli sitting on a towel with a fork and spoon sitting next to it", + "pred": "a bowl of broccoli and a spoon on a table" + }, + { + "label": "a woman using a white laptop on the bed", + "pred": "a person sitting on a bed using a laptop" + }, + { + "label": "a girl on a bed studying something on her laptop", + "pred": "a person sitting on a bed using a laptop" + }, + { + "label": "a plate with some vegetables and rice on a plate", + "pred": "a plate of food on a table" + }, + { + "label": "a zebra out and about eating some grass", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a boy riding on a horse that is crossing over a board", + "pred": "a person riding on the back of a brown horse" + }, + { + "label": "a man is performing tricks on a skateboard ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a skateboarder flies through the air in a skate park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "someone sitting on their bed looking at their laptop", + "pred": "a person sitting on a bed using a laptop" + }, + { + "label": "a man that is sitting on top of a horse", + "pred": "a person riding on the back of a brown horse" + }, + { + "label": "three monitors sit on a small and mess covered desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a zebra eating grass in a grassy yard", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man in a baseball game running to base and others trying to tag him out", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a square plate of food with vegetables, meat, and a variety of vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "broccoli in a soup in a bowl", + "pred": "a bowl of broccoli and a spoon on a table" + }, + { + "label": "a man is in the air on a skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a desk area with several computer screens and coffee mugs", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a horse that is laying down in a field", + "pred": "a person walking on a path near a body of water" + }, + { + "label": "a man that is on a skateboard that is on a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a horse grazing the field with a fence surrounding it", + "pred": "a horse grazing in a field next to a fence" + }, + { + "label": "horse in a large corral eating grass and trees in the back", + "pred": "a horse grazing in a field next to a fence" + }, + { + "label": "black and white of a horse lying down in a field", + "pred": "a person walking on a path near a body of water" + }, + { + "label": "a baseball player reacts to the play during a baseball game", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a plate of rice, steak, and a garden salad", + "pred": "a plate of food on a table" + }, + { + "label": "a baseball game in progress with the batter up to plate", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a bowl full of broth and pieces of broccoli with a spoon and fork", + "pred": "a bowl of broccoli and a spoon on a table" + }, + { + "label": "players playing together during a baseball game", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a plate of food with a fork on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a baseball player is looking at another player as he runs", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a professional baseball holding his bat at home base", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "men standing on top of a field together", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a man holding a white frisbee in his right hand", + "pred": "a man throwing a frisbee in front of a building" + }, + { + "label": "a green pasture with a single brown horse", + "pred": "a horse grazing in a field next to a fence" + }, + { + "label": "a man flying through the air while riding a skateboard", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "brown horse in green field with trees and fence", + "pred": "a horse grazing in a field next to a fence" + }, + { + "label": "a person laying on a bed in front of a laptop", + "pred": "a person sitting on a bed using a laptop" + }, + { + "label": "various foods are sitting on the plate with a fork", + "pred": "a plate of food on a table" + }, + { + "label": "a horse laying in the grass by the water in a black and white photo", + "pred": "a person walking on a path near a body of water" + }, + { + "label": "a man throwing a frisbee in front of a building", + "pred": "a man throwing a frisbee in front of a building" + }, + { + "label": "two men playing frisbee together on a field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a young man attempting to throw a frisbee past a defender", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a horse that is sitting down in an open field", + "pred": "a person walking on a path near a body of water" + }, + { + "label": "baseball players prepare for the next pitch in a game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a boy playing frisbee in the grass", + "pred": "a brown and white cow standing in a grassy field" + }, + { + "label": "a batter up to bat at a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man is doing tricks on a skateboard", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a boy is standing in a field, playing frisbee", + "pred": "a brown and white cow standing in a grassy field" + }, + { + "label": "a zebra that is bending it's neck backwards to reach it's tail", + "pred": "a zebra that is standing in the dirt" + }, + { + "label": "a woman stands on a grassy hill in the mountains", + "pred": "a brown and white cow standing in a grassy field" + }, + { + "label": "a zebra standing by its reflection in a body of water", + "pred": "a zebra standing next to a pool of water" + }, + { + "label": "a young zebra grooms its self in the sun", + "pred": "a zebra that is standing in the dirt" + }, + { + "label": "a skateboarder jumps while trying to perform a trick", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a horse that is laying down in a grassy field", + "pred": "a person walking on a path near a body of water" + }, + { + "label": "the player tries to block the other player from throwing a frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a man is exiting the building and greeting someone", + "pred": "a man throwing a frisbee in front of a building" + }, + { + "label": "blocks of chocolate sitting next to bananas and pudding", + "pred": "a banana and a cup of coffee on a counter" + }, + { + "label": "a man is throwing a frisbee in a field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a zebra standing next to a body of water which shows his reflection", + "pred": "a zebra standing next to a pool of water" + }, + { + "label": "a zebra standing on top of a dirt and gravel covered field", + "pred": "a zebra that is standing in the dirt" + }, + { + "label": "a man tosses a frisbee across to his friend", + "pred": "a man throwing a frisbee in front of a building" + }, + { + "label": "a standing zebra and its reflection in water", + "pred": "a zebra standing next to a pool of water" + }, + { + "label": "person in a grassy green field boardered by mountains", + "pred": "a brown and white cow standing in a grassy field" + }, + { + "label": "a zebra cleaning it's tail for hygenie purposes", + "pred": "a zebra that is standing in the dirt" + }, + { + "label": "the zebra is standing by the local watering hole", + "pred": "a zebra standing next to a pool of water" + }, + { + "label": "a young man wearing a blue shirt is throwing a frisbee", + "pred": "a man throwing a frisbee in front of a building" + }, + { + "label": "a boy is playing with a toy in a grassy field", + "pred": "a brown and white cow standing in a grassy field" + }, + { + "label": "a white plate topped with dicked up lettuce next to carrots", + "pred": "vegetables on a cutting board" + }, + { + "label": "a little zebra biting its own tali", + "pred": "a zebra that is standing in the dirt" + }, + { + "label": "people standing on ski's in the snow", + "pred": "skiers standing on top of a snow covered slope" + }, + { + "label": "a girl smiles while holding a baseball glove", + "pred": "a little girl holding a baseball glove in her hand" + }, + { + "label": "a little girl wearing a base ball glove", + "pred": "a little girl holding a baseball glove in her hand" + }, + { + "label": "people standing next to each other on top of a snowy hill", + "pred": "skiers standing on top of a snow covered slope" + }, + { + "label": "bananas, cocoa powder and other ingredients to make something", + "pred": "a banana and a cup of coffee on a counter" + }, + { + "label": "different types of food on the table", + "pred": "a banana and a cup of coffee on a counter" + }, + { + "label": "a woman with blue hair standing next to a horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "a zebra standing with its reflection in a pool", + "pred": "a zebra standing next to a pool of water" + }, + { + "label": "a woman with green hair is standing near a horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "the young woman is making a face at the horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "a woman with green hair standing beside a brow and white horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "a woman in green hairs on the field with a brown horse", + "pred": "a woman standing next to a brown horse" + }, + { + "label": "a girl who is wearing a baseball glove", + "pred": "a little girl holding a baseball glove in her hand" + }, + { + "label": "a man is high in the air as he skateboards on the ramp", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a man flying through the air while riding a skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "vegetables on a white plate ready to be cut", + "pred": "vegetables on a cutting board" + }, + { + "label": "men riding skis on top of a snow covered slope", + "pred": "skiers standing on top of a snow covered slope" + }, + { + "label": "a man in the air standing above the skateboard", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a person attempting a jump with a skateboard", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a woman standing in front of a box handing a woman a bag of food", + "pred": "a woman standing in front of boxes of food" + }, + { + "label": "a young man riding a skateboard down the side of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a cutting board with carrots and some other leafy green vegetables along side a knife", + "pred": "vegetables on a cutting board" + }, + { + "label": "looks like the ingredients for a recipe including bananas", + "pred": "a banana and a cup of coffee on a counter" + }, + { + "label": "a knife, carrots, and cabbage on a white cutting board", + "pred": "vegetables on a cutting board" + }, + { + "label": "a table that has some bananas and a cup on it", + "pred": "a banana and a cup of coffee on a counter" + }, + { + "label": "salad ingredients, carrots, onions and some leafy green", + "pred": "vegetables on a cutting board" + }, + { + "label": "a large group of people watch as a skater does his tricks", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a blond lady with a flowered shirt passes out watermelon", + "pred": "a woman standing in front of boxes of food" + }, + { + "label": "people skiing stop to pose for photo", + "pred": "skiers standing on top of a snow covered slope" + }, + { + "label": "a skateboarder doing a trick at a competition", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "four people on skis below a mountain taking a picture", + "pred": "skiers standing on top of a snow covered slope" + }, + { + "label": "a young girl practicing ball is holding her mit", + "pred": "a little girl holding a baseball glove in her hand" + }, + { + "label": "a woman that is handing fruit to someone else", + "pred": "a woman standing in front of boxes of food" + }, + { + "label": "a man doing a trick on roller-skates in a skate park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "people riding skis on a snowy surface", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a skateboarder performing a jump off the side of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a woman wearing plastic gloves handing out fruit slices from behind a table", + "pred": "a woman standing in front of boxes of food" + }, + { + "label": "oranges are sitting in a clear fruit bowl", + "pred": "a bowl filled with oranges on top of a counter" + }, + { + "label": "skiers have left a trail through the snow on the mountain", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "an animal grazing on a lush field of green grass", + "pred": "two cows in a fenced in area next to a fence" + }, + { + "label": "the girl with the baseball mitt is smiling", + "pred": "a little girl holding a baseball glove in her hand" + }, + { + "label": "a person being photographed while on a skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "a man wearing roller skates doing a jump on the side of a wall", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man flying through the air while riding skis", + "pred": "a person on skis jumping over a snow covered slope" + }, + { + "label": "the woman is handing a package to another person", + "pred": "a woman standing in front of boxes of food" + }, + { + "label": "the horse is grazing in the back yard of this home", + "pred": "two cows in a fenced in area next to a fence" + }, + { + "label": "still life of oranges in wavy bowl", + "pred": "a bowl filled with oranges on top of a counter" + }, + { + "label": "a man is skiing in mid jump onto a ramp", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "two skiers flipping in the air with people", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "oranges in a glass fruit bowl on top of a wooden table", + "pred": "a bowl filled with oranges on top of a counter" + }, + { + "label": "a spoon, a large carrot, a medium carrot and a small carrot, on blue-green speckled surface", + "pred": "a carrot sits next to a spoon on a table" + }, + { + "label": "a man flying through the air while riding a skateboard", + "pred": "a person jumping in the air on a skateboard" + }, + { + "label": "a young man riding skis across a snow covered slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "men standing and sitting next to each other", + "pred": "men standing next to each other" + }, + { + "label": "a horse is grazing near a building in the grass", + "pred": "two cows in a fenced in area next to a fence" + }, + { + "label": "skier in mid air following loss of balance on mountaintop", + "pred": "a person on skis jumping over a snow covered slope" + }, + { + "label": "the paths of some snowboarders carved in a mountain slope", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "carrots sit next to a spoon", + "pred": "a carrot sits next to a spoon on a table" + }, + { + "label": "two skiers on a ski slope doing a flip in mid air", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a baseball player holding a bat next to a base", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man on skis fly through the sky", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a horse is eating some grass next to a building and is surrounded by a fence", + "pred": "two cows in a fenced in area next to a fence" + }, + { + "label": "a horse standing beside a tree and a building", + "pred": "two cows in a fenced in area next to a fence" + }, + { + "label": "a carrot next to some greens on the red cutting board", + "pred": "a wooden cutting board with a bunch of vegetables on it" + }, + { + "label": "the man in the helmet is jumping while wearing roller skates", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "the skier is leaning forward while jumping through the air", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "the skier is quickly racing past the yellow flag", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a man on ski's that is in the air", + "pred": "a person on skis jumping over a snow covered slope" + }, + { + "label": "a man is holding a bat at a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baseball player gets ready to lay down a bunt", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a cutting board with parley, carrot, celery, and garlic", + "pred": "a wooden cutting board with a bunch of vegetables on it" + }, + { + "label": "a person on skis riding on some snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "skiers look at the snow that they skied down", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "the skier takes off down the steep hill", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a guy having a spill on his skate board", + "pred": "a person jumping in the air on a skateboard" + }, + { + "label": "oranges are sitting in the bowl", + "pred": "a bowl filled with oranges on top of a counter" + }, + { + "label": "a batter that is trying to bunt a ball with his bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a hitter is waiting for the pitch to be thrown", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a person downhill skis on a snowy day", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "very large carrots compared to the size of a spoon", + "pred": "a carrot sits next to a spoon on a table" + }, + { + "label": "a pile of orange sitting in a blue bowl", + "pred": "a bowl filled with oranges on top of a counter" + }, + { + "label": "a man flying through he air while riding", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a placemat has a carrot, cilantro, celery, and garlic on it", + "pred": "a wooden cutting board with a bunch of vegetables on it" + }, + { + "label": "a person on a skateboard does a flip in a parking lot", + "pred": "a person jumping in the air on a skateboard" + }, + { + "label": "a man riding skis down a snow covered slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "people stand at the bottom of a snowy hill", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a person is walking in the snow on skis", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "men flying through the air while riding skis", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a singke vegetable and some herbs that are sitting on a cutting board", + "pred": "a wooden cutting board with a bunch of vegetables on it" + }, + { + "label": "a spoon laying beside a few big carrots", + "pred": "a carrot sits next to a spoon on a table" + }, + { + "label": "people riding skis across a snow covered slope", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a person is riding on a skateboard on the street", + "pred": "a person jumping in the air on a skateboard" + }, + { + "label": "a man in a red jacket skiing during a snow fall", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a table with cilantro, a carrot, celery, and garlic", + "pred": "a wooden cutting board with a bunch of vegetables on it" + }, + { + "label": "a person on skis doing a trick over the snow", + "pred": "a person on skis jumping over a snow covered slope" + }, + { + "label": "people standing in the snow near trees", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "men playing a game of frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a baseball player standing next to home plate", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a skier races downhill on a ski track", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a person on a skate board does a trick", + "pred": "a person jumping in the air on a skateboard" + }, + { + "label": "people watching a ski competition", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "two men on opposite teams jumping for a frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "three people are loading a horse into a horse trailer", + "pred": "two men standing next to a white truck" + }, + { + "label": "a person on cross country skis while it's snowing", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "two people perform flips on skis in front of a crowd", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "two men are reaching to catch a frisbee", + "pred": "young men playing a game of frisbee" + }, + { + "label": "people can be seen at the crest of the mountain", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "people with skis and snowboards stand on a mountain", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a cross country skier in the falling snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a bowl of broccoli with sauce over it", + "pred": "a bowl of broccoli and other vegetables on a table" + }, + { + "label": "a baseball player in a batting stance at home plate with the catcher in position to catch a pitch", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a baseball player attempting a bunt during a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "white show horses and handlers performing during public event", + "pred": "a white horse standing in front of a crowd of people" + }, + { + "label": "baseball player standing near home plate in stadium", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a black bear standing in the middle of tall grass", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "a baseball player standing near one of the bases", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a female equestrian on a brown horse, jumping over a double hurdle", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "disc players leap to catch the disc", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a white horse stands in a circus bigtop", + "pred": "a white horse standing in front of a crowd of people" + }, + { + "label": "the horse is jumping over the poles outside", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a player in a baseball uniform on the field", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "performers holding sticks in front of horses at a circus with audience", + "pred": "a white horse standing in front of a crowd of people" + }, + { + "label": "zebras with feral hogs in a wild habitat", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a large open area of land that has several zebra of different sizes and warthogs near them", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a skier in mid air after a jump", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "zebras share a grassland with wild pigs in africa", + "pred": "a herd of zebra standing on top of a lush green field" + }, + { + "label": "a skier attempts a jump hon his skis", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "horses in what appears to be a circus", + "pred": "a white horse standing in front of a crowd of people" + }, + { + "label": "an athlete is that in the air during a snow ski long jump", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a zebra standing on land and eating grass near a body of water that is behind it", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a grizzly bear stares in the direction of the photographer", + "pred": "a large brown bear sitting on top of a tree" + }, + { + "label": "a young man in a pinstriped baseball uniform wearing catchers gear standing at home plate", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a zebra grazes on tall grass at the edge of a clear blue river", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a grizzly bear in the wild", + "pred": "a large brown bear sitting on top of a tree" + }, + { + "label": "a black bear stands in the tall grass", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "a black bear that is standing in the middle of a grassy area", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "a bear walking down the grass in the open", + "pred": "a black bear walking through a grassy field" + }, + { + "label": "four dogs playing with a frisbee on a lawn", + "pred": "a dog chasing a group of dogs in a field" + }, + { + "label": "the pack mules carrying loads on their backs are ascending the stairway", + "pred": "a herd of sheep walking down a dirt road" + }, + { + "label": "the meal of fish has a side of broccoli", + "pred": "a plate of food on a table" + }, + { + "label": "a sandwich and some grapes are sitting on top of a tablecloth", + "pred": "a loaf of bread sitting on top of a table" + }, + { + "label": "the skateboarder wears headphones while jumping to grab his board", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a person is holding two apples on a plate at sum sort of celebration", + "pred": "a woman holding an umbrella on a sidewalk" + }, + { + "label": "four dogs in a yard are playing with a frisbee", + "pred": "a dog chasing a group of dogs in a field" + }, + { + "label": "a man serves a sliced apple to one of his friends", + "pred": "a woman holding an umbrella on a sidewalk" + }, + { + "label": "dogs that are standing in the grass", + "pred": "a dog chasing a group of dogs in a field" + }, + { + "label": "a sandwich with a pile a olives and an apple on a tablecloth", + "pred": "a loaf of bread sitting on top of a table" + }, + { + "label": "the person holds a plate with two red apples near pedestrians holding umbrellas", + "pred": "a woman holding an umbrella on a sidewalk" + }, + { + "label": "people that are walking on horses", + "pred": "a herd of sheep walking down a dirt road" + }, + { + "label": "a herd of animals walking up some steps towards a bridge crossing a river", + "pred": "a herd of sheep walking down a dirt road" + }, + { + "label": "a zebra near a waterhole grazing on some grass", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "people standing on the side of a road", + "pred": "a woman holding an umbrella on a sidewalk" + }, + { + "label": "a man and child next to a horse", + "pred": "a man and a little boy petting a horse" + }, + { + "label": "there were four dogs in the yard playing with a frisbee", + "pred": "a dog chasing a group of dogs in a field" + }, + { + "label": "people wait near a wedding procession of cars, one of them holding two apples", + "pred": "a woman holding an umbrella on a sidewalk" + }, + { + "label": "fish and broccoli plated neatly on a dish sitting on a table", + "pred": "a plate of food on a table" + }, + { + "label": "food is laying on a white plate", + "pred": "a plate of food on a table" + }, + { + "label": "a little boy touching the nose of a brown horse", + "pred": "a man and a little boy petting a horse" + }, + { + "label": "donkeys walking up some steps with people", + "pred": "a herd of sheep walking down a dirt road" + }, + { + "label": "a person that is holding a lime in their hand", + "pred": "a person holding an orange in their hand" + }, + { + "label": "the woman wearing skis and a helmet is standing with skis and ski poles", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man on a skateboard performs a trick on a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man performs a jump on a skateboard at a skate park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man in a helmet is riding a horse across a dirt road", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a citrus fruit that has the peel pulled back", + "pred": "a person holding an orange in their hand" + }, + { + "label": "a sandwich with meat sitting next to grapes and an apple", + "pred": "a loaf of bread sitting on top of a table" + }, + { + "label": "a plate with broccoli and cheese bread on a bamboo mat", + "pred": "a plate of food on a table" + }, + { + "label": "a man holding a baby whose petting a horse", + "pred": "a man and a little boy petting a horse" + }, + { + "label": "a women who is standing in the snow on skis", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a plate of a prepared meal is lying on a table mat", + "pred": "a plate of food on a table" + }, + { + "label": "four dogs playing together with a frisbee in a large field", + "pred": "a dog chasing a group of dogs in a field" + }, + { + "label": "this woman has stopped snowboarding to pose for a picture", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man sits on top of a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "the jockey is riding a horse on the beaten path", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a plate of cooked food in seen in this image", + "pred": "a plate of meat and vegetables on a table" + }, + { + "label": "fruit sit on sale for the public", + "pred": "a pile of apples sitting on top of a table" + }, + { + "label": "an orange that has a green colored peel", + "pred": "a person holding an orange in their hand" + }, + { + "label": "a man bending over in the woods with a frisbee in each hand", + "pred": "a person standing in the woods with a frisbee" + }, + { + "label": "a man letting his baby pet a horse", + "pred": "a man and a little boy petting a horse" + }, + { + "label": "a meal oina wood picnic table", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "people hold up frisbees for the camera", + "pred": "people standing on top of a grass covered field" + }, + { + "label": "man holding a baby and petting a horse", + "pred": "a man and a little boy petting a horse" + }, + { + "label": "a person doing a trick on a skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "people holding frisbees on a field", + "pred": "people standing on top of a grass covered field" + }, + { + "label": "skateboarder holding the bottom of his board in the air", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a fruit with its shell peeled", + "pred": "a person holding an orange in their hand" + }, + { + "label": "people on camels walk up some stairs", + "pred": "a herd of sheep walking down a dirt road" + }, + { + "label": "a big plate with some potatoes and meat on it", + "pred": "a plate of meat and vegetables on a table" + }, + { + "label": "baskets of different color types of fruits", + "pred": "a pile of apples sitting on top of a table" + }, + { + "label": "a serving of food on a white plate", + "pred": "a plate of meat and vegetables on a table" + }, + { + "label": "a man standing in a wooden area with a frisbee in his hand", + "pred": "a person standing in the woods with a frisbee" + }, + { + "label": "a baseball player on a field with a bat", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "two people cross country skiing on a snow covered hill", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a man that is riding a horse on a dirt road", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "plate full of cooked carrots, potatoes, and other vegetables", + "pred": "a plate of meat and vegetables on a table" + }, + { + "label": "two teams are playing baseball with the umpire touching the catcher", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man dressed as a jockey riding a horse along a path", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "man standing in wooded area playing with flying discs", + "pred": "a person standing in the woods with a frisbee" + }, + { + "label": "a woman poses on the slope with her skis", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a trio of zebras stand together in the grass", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "the batter, catcher and umpire during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a woman on skis standing sideways in the snow", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a plate containing potatoes, carrots and chicken", + "pred": "a plate of meat and vegetables on a table" + }, + { + "label": "two people carrying backpacks are cross country skiing", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a baseball player preparing to throw a pitch during a game", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "a hand holds a piece of fruit with the peel cut off", + "pred": "a person holding an orange in their hand" + }, + { + "label": "a person with a frisbe near many trees", + "pred": "a person standing in the woods with a frisbee" + }, + { + "label": "zebras stand in front of a group of trees", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "a large variety of fruits displayed for sale in a store", + "pred": "a pile of apples sitting on top of a table" + }, + { + "label": "people in a field smile holding frisbees", + "pred": "people standing on top of a grass covered field" + }, + { + "label": "the table is covered with plates of food and bottles of beer", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "two skiers in dark clothing are standing on the snowy slope", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "the man in the green hat and shirt is holding two frisbees", + "pred": "a person standing in the woods with a frisbee" + }, + { + "label": "a shelf with a lot of assorted colorful fruit for sale", + "pred": "a pile of apples sitting on top of a table" + }, + { + "label": "batter receiving a pitch at a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "meat sandwich and dark berries on plaid cloth in front of tomato", + "pred": "a loaf of bread sitting on top of a table" + }, + { + "label": "large black dog sitting in front of a big mirror", + "pred": "a black dog sitting in a bathroom next to a trash can" + }, + { + "label": "a dog is sitting down in front of a mirror", + "pred": "a black dog sitting in a bathroom next to a trash can" + }, + { + "label": "a white horse is out eating in a field", + "pred": "a white horse standing in a grassy field" + }, + { + "label": "a white horse is chewing ferns in a wooded valley", + "pred": "a white horse standing in a grassy field" + }, + { + "label": "skiers stand at hillcrest against a clear blue sky", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a dog sits on the floor in front of a mirror", + "pred": "a black dog sitting in a bathroom next to a trash can" + }, + { + "label": "three zebras standing together in a grassy field", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "the white horse is standing beside tall plants", + "pred": "a white horse standing in a grassy field" + }, + { + "label": "a neglected black and white pitbull terrier puppy in a filthy environment with garbage is reflected in an old mirror", + "pred": "a black dog sitting in a bathroom next to a trash can" + }, + { + "label": "fruits sit in containers, ready for sale in a store", + "pred": "a pile of apples sitting on top of a table" + }, + { + "label": "a black dog sitting next to a mirror and pail", + "pred": "a black dog sitting in a bathroom next to a trash can" + }, + { + "label": "a rider takes their horse through some water at speed", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "fruit is next to a sandwich on a table", + "pred": "a loaf of bread sitting on top of a table" + }, + { + "label": "zebras are standing near tall grass", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "two people walking up the hill so they can ski down it", + "pred": "two people on skis standing on top of a snow covered slope" + }, + { + "label": "a man is guiding a horse through a body of water", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "people posing in a field while holding frisbees", + "pred": "people standing on top of a grass covered field" + }, + { + "label": "two athletes are competing on a playing field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a horse standing on top of a grass covered field", + "pred": "a white horse standing in a grassy field" + }, + { + "label": "a boy on a horse jumps across th water hoe", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a white horse grazing on some vegetation", + "pred": "a white horse standing in a grassy field" + }, + { + "label": "an outdoor table containing assorted bowls of food and beer", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a man that is standing in the dirt with a glove", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "zebras that are standing in the dirt", + "pred": "two zebras standing next to each other in a field" + }, + { + "label": "boxes that have fruit inside of them", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "food sitting on a table, with three beers on it", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a baseball player lunges and reaches back with the ball", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "men stand in uniforms, expressionless, in an historic photo", + "pred": "men in uniforms standing next to each other" + }, + { + "label": "a person and a horse splash through shallow water", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a person who is on a horse in the water", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "containers of food and beverages on a wooden table outdoors", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a horse drawn carriage parked on top of a field", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "a baseball player pitching a baseball on top of a field", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "vintage men with baseball attire on them", + "pred": "men in uniforms standing next to each other" + }, + { + "label": "two plates that have different types of food on it near a bottle", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "people playing with frisbee's on the grass", + "pred": "people standing on top of a grass covered field" + }, + { + "label": "a table topped with red trays of food", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a dog catching a frisbee in the grass", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "two adult men stands with a group of little league baseball players for a group photo", + "pred": "a team of baseball players posing for a picture" + }, + { + "label": "an outdoor market has a wide variety of fruit to choose from", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "two adults and children wearing baseball uniforms and hats", + "pred": "a team of baseball players posing for a picture" + }, + { + "label": "a plate full of sushi,with more behind it", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a man in a rays uniform is throwing a baseball", + "pred": "a baseball player pitching a ball on a field" + }, + { + "label": "the black and white dog just got the frisbee", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "three round plates filled with artistically presented food", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "a man that is sitting on a cart attached to a horse", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "people are standing outside near bins of fruit", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a child in green pants is eating an apple", + "pred": "a baby eating a piece of fruit on a blanket" + }, + { + "label": "two horses hitched to a wagon with a driver", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "a little league team wears orange shirts and black caps", + "pred": "a team of baseball players posing for a picture" + }, + { + "label": "a dog in a vest catching a fristbee", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "horse drawn carriage in wide open field with old fashioned clothing", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "plates of food are set on a table", + "pred": "plates of food on a table" + }, + { + "label": "a sport team is posing in a park", + "pred": "a team of baseball players posing for a picture" + }, + { + "label": "a plate of broccoli on a table next to some other plates of food", + "pred": "plates of food on a table" + }, + { + "label": "a person riding a horse in the dirt near a wall", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a dog sits on a chair behind a glass", + "pred": "a dog sitting on a window sill next to a window" + }, + { + "label": "plates with some sushi on it", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a market that has several boxes of fruit in it", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "three pans filled with different types of food", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "a little league baseball team in orange uniforms posing for a group picture", + "pred": "a team of baseball players posing for a picture" + }, + { + "label": "a horse with a person riding on top of it", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a dig jumps in the air to catch a frisbe", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "small dog sitting on display behind the window", + "pred": "a dog sitting on a window sill next to a window" + }, + { + "label": "tins with some food in them", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "animals walk through the grass", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a horse pulling a cart with a person on top of it", + "pred": "a man riding on the back of a horse drawn carriage" + }, + { + "label": "boxes of fruit displayed at an open air market", + "pred": "a market filled with lots of fruits and vegetables" + }, + { + "label": "a man on a horse looking towards a bull", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a chihuahua sits in a window display with a price tag", + "pred": "a dog sitting on a window sill next to a window" + }, + { + "label": "dog wearing blue vest catching red flying disc at outdoor event", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "young child kneeling on cloth in outdoor area", + "pred": "a baby eating a piece of fruit on a blanket" + }, + { + "label": "a toddler is sitting on a blanket outdoors eating an apple", + "pred": "a baby eating a piece of fruit on a blanket" + }, + { + "label": "three vintage baseball players posing together in uniform", + "pred": "men in uniforms standing next to each other" + }, + { + "label": "an old time photo of three baseball players", + "pred": "men in uniforms standing next to each other" + }, + { + "label": "three tins of brownies with frosting decorations on them", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "an assortment of pastries on a red table", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a dog jumping to catch a frisbee in a yard", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "three people standing", + "pred": "men in uniforms standing next to each other" + }, + { + "label": "the reflection of a dogs head out of a car window in one of the cars wing mirrors", + "pred": "a dog looking out the window of a car" + }, + { + "label": "three short furry bears sniffing in some weeds next to a grassy bank", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "skateboarder and his shadow, performing the same trick", + "pred": "a person riding a skateboard on top of a cement floor" + }, + { + "label": "a dog jumping to catch a red frisbee in a garden", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "a large square concrete wall, which shows people over the rim, has inside of it a pinkish cloud of dust and a fallen bull as well as two horses", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a person is trying to ski down a snowy slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a store's display window with two adorable chihuahua dog statues", + "pred": "a dog sitting on a window sill next to a window" + }, + { + "label": "a man who is performing a trick on a skateboard", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a guy skateboarding on the bars of stairs", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "an adorable brown and white dog hanging it's head out of a window", + "pred": "a dog looking out the window of a car" + }, + { + "label": "a women who is walking in the snow on skis", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a man riding a skateboard down a metal hand rail", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a guy doing tricks on his kate board", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "the dog is catching the frisbee in mid air in the yard", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "a plate of food sits next to its dessert", + "pred": "a table topped with bowls filled with different types of food" + }, + { + "label": "a dog catches a frisbee outside in the grass", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "the woman is learning how to ski on the snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a man that is taking a picture of a little boy", + "pred": "a man on a skateboard in the water" + }, + { + "label": "a person riding a horse on a dirt ground", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a child is bent over on skis in the snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a table that has some food on top of it", + "pred": "a table topped with a bowl of soup next to a plate of food" + }, + { + "label": "someone that has some skiies on in the snow", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "three brown bears taking a walk through some grass", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "two ladies riding horses there's a reflection of one of them in a mirror", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man that is on a skateboard on a rail", + "pred": "a man riding a skateboard on top of a rail" + }, + { + "label": "a dog leaping to catch a red frisbee", + "pred": "a dog jumping in the air to catch a frisbee" + }, + { + "label": "a woman in black riding a horse by a mirror", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a guy on a skate board does tricks on it", + "pred": "a person riding a skateboard on top of a cement floor" + }, + { + "label": "a baby sitting on a blanket on the ground eating a apple", + "pred": "a baby eating a piece of fruit on a blanket" + }, + { + "label": "a man wlaks down a snowy tundra field", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a dog is siting behind a large window", + "pred": "a dog sitting on a window sill next to a window" + }, + { + "label": "a woman touching her skis going down a ski hill", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a bunch food sitting on a table", + "pred": "plates of food on a table" + }, + { + "label": "a skateboarder performing a trick on a ledge", + "pred": "a person riding a skateboard on top of a cement floor" + }, + { + "label": "a child on a blanket with an apple", + "pred": "a baby eating a piece of fruit on a blanket" + }, + { + "label": "airplane food is shown on the small gray tray", + "pred": "a table topped with a bowl of soup next to a plate of food" + }, + { + "label": "a dog has its head hanging out of a window", + "pred": "a dog looking out the window of a car" + }, + { + "label": "a man riding skis down a snow covered slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a dog looking out the window as seen through a mirror", + "pred": "a dog looking out the window of a car" + }, + { + "label": "a dog that is sitting down in a backseat", + "pred": "a dog looking out the window of a car" + }, + { + "label": "a woman is standing in the middle of the snow with ski sticks as the sun rises", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a person riding on top of a horse", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a woman hiking across snow covered ground with two ski poles", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a young man skateboarding casts a shadow on the concrete", + "pred": "a person riding a skateboard on top of a cement floor" + }, + { + "label": "group of people riding horseback along a dirt path", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "the boy is riding his skateboard outside alone", + "pred": "a person riding a skateboard on top of a cement floor" + }, + { + "label": "a man taking pictures of kids at a skate park", + "pred": "a man on a skateboard in the water" + }, + { + "label": "competitive spirit during a competition in mid air", + "pred": "a skier doing a trick on a ski slope" + }, + { + "label": "guy takes a picture of his dog in the backseat through his side mirror", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "a glass of wine sits next to a bowl of soup, salad, and a plate with a sandwich", + "pred": "a table topped with a bowl of soup next to a plate of food" + }, + { + "label": "a person skiing down a mountain in the snow", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a person holds a phone in a car with the window rolled down", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "a person taking a picture with a cell phone of them and a dog in a mirror", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "a big hill that has a bunch of snow on it", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "a boy that is on a skateboard doing a trick", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a horse and rider jumping over a bar on a track", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "different types of foods on various plates on a table", + "pred": "plates of food on a table" + }, + { + "label": "a kid stands in the snow on his skiis", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a bowl of broccoli, noodles and other various foods", + "pred": "plates of food on a table" + }, + { + "label": "the woman is holding her phone toward the dog hanging out the car window", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "car with window down and dog sticking out while taking pictures", + "pred": "a man taking a picture of himself in a car mirror" + }, + { + "label": "littleboy performing a trick on his skateboard outside", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "three bears walking in an embankment with a forest", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a woman riding a horse and looking at her reflection in a mirror", + "pred": "a man riding on the back of a brown horse" + }, + { + "label": "a man riding a skateboard on the edge of a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man without a shirt in a park holding a beer and a frisbee", + "pred": "a man in a field with a frisbee" + }, + { + "label": "a dinner tray with soup, salad, drink, and sandwich with condiments", + "pred": "a table topped with a bowl of soup next to a plate of food" + }, + { + "label": "kid on a skate board in a skate park preforming a stunt", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "the animal food tray and cage is empty", + "pred": "a red frisbee sitting on top of a tree branch" + }, + { + "label": "a man skiing down a hill by himself", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "the man is skiing down the snowy slopes", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "three buffalo grazing on the side of the road", + "pred": "a herd of sheep standing on top of a lush green field" + }, + { + "label": "a spotty banana sitting on top of an orange and some other fruit", + "pred": "bananas and oranges in a basket" + }, + { + "label": "a fruit basket showing a banana and oranges", + "pred": "bananas and oranges in a basket" + }, + { + "label": "a man skiing along a rail on the snowy hill", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a person jumping a horse over an obstacle on a course", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a great amount of fruit in this picture", + "pred": "bananas and oranges in a basket" + }, + { + "label": "a skier stands on a small ledge in the snow", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a man throwing a frisbee while holding a beer", + "pred": "a man in a field with a frisbee" + }, + { + "label": "a skier races down the track at a competition", + "pred": "a skier doing a trick on a ski slope" + }, + { + "label": "a man holding a drink with a frizbee in front of him", + "pred": "a man in a field with a frisbee" + }, + { + "label": "a big pile of fruit that is on top of each other", + "pred": "bananas and oranges in a basket" + }, + { + "label": "kind of cage that is next to a tree", + "pred": "a red frisbee sitting on top of a tree branch" + }, + { + "label": "frisbees are stuck in a small tower", + "pred": "a red frisbee sitting on top of a tree branch" + }, + { + "label": "a banana sitting on top of oranges and other fruit", + "pred": "bananas and oranges in a basket" + }, + { + "label": "a piece of art near a tree", + "pred": "a red frisbee sitting on top of a tree branch" + }, + { + "label": "a woman holding up a large carrot in a backyard", + "pred": "a woman holding a bottle of wine in her hand" + }, + { + "label": "a person is skiing on a slope covered in snow", + "pred": "a skier doing a trick on a ski slope" + }, + { + "label": "the horse and rider are jumping over the yellow structure", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "the tray has a sandwich and two bowls near a beverage", + "pred": "a table topped with a bowl of soup next to a plate of food" + }, + { + "label": "a person carrying a crate on their shoulder that is full of bananas", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "the skier is jumping into the air above a half pipe", + "pred": "a skier doing a trick on a ski slope" + }, + { + "label": "a frisbee golf net in a park with several frisbee in it", + "pred": "a red frisbee sitting on top of a tree branch" + }, + { + "label": "horse above hurdle at kentucky horse show event", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "a banana split with whipped cream and a cherry", + "pred": "a banana split in a glass bowl on a table" + }, + { + "label": "a horseback rider competing in an obstacle course event", + "pred": "a person jumping a horse over a fence" + }, + { + "label": "skier performing jump on high altitude ski slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "skier performing aerial jump during outdoor competition gathering", + "pred": "a skier doing a trick on a ski slope" + }, + { + "label": "a skier leaps off a small jump going down the slopes", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a woman carries a box of bananas down a crowded street", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "a man carrying a crate full of bananas on his shoulder", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "a women that has a carrot in her hand", + "pred": "a woman holding a bottle of wine in her hand" + }, + { + "label": "people that are skiing on some snow", + "pred": "skiers and snowboarders in the middle of a race" + }, + { + "label": "a man hiding behind a concrete skate ramp taking pictures", + "pred": "a man on a skateboard in the water" + }, + { + "label": "a man pokes his head through a wall to photograph boys skateboarding", + "pred": "a man on a skateboard in the water" + }, + { + "label": "a modest plate with grains and broccoli and almonds", + "pred": "a plate of food on a table" + }, + { + "label": "two zebras grazing together in a grassy area", + "pred": "two zebras grazing in a grassy field" + }, + { + "label": "a small dog laying on a bed next to a laptop computer", + "pred": "a dog sitting on top of a bed next to a laptop" + }, + { + "label": "a guy riding his skateboard near the edge of a pool", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man taking a photograph of skate boarders in the rain", + "pred": "a man on a skateboard in the water" + }, + { + "label": "man throwing frisbee in a green park with trees", + "pred": "a man in a field with a frisbee" + }, + { + "label": "a person riding skis on a rail", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "person carrying green bananas on their shoulder and a market", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "a young man wearing skis slides down the slope", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a small plate of food with broccoliw and nuts", + "pred": "a plate of food on a table" + }, + { + "label": "a man wearing skis is posing for the camera", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "men are competing in a skiing tournament", + "pred": "skiers and snowboarders in the middle of a race" + }, + { + "label": "a dog laying on a bed near a laptop", + "pred": "a dog sitting on top of a bed next to a laptop" + }, + { + "label": "a bowl with some tuna and broccoli in it", + "pred": "a plate of food on a table" + }, + { + "label": "a traditional banana split with whipped cream and spoons", + "pred": "a banana split in a glass bowl on a table" + }, + { + "label": "a woman holds a carrot in her right hand with a beverage in the other", + "pred": "a woman holding a bottle of wine in her hand" + }, + { + "label": "a person in a colorful outfit jumping with some skiis", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "ski racers on a race trail", + "pred": "skiers and snowboarders in the middle of a race" + }, + { + "label": "a man riding skis on top of a ramp", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a young child is hopping from the slope on their skis", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "food is on a white plate", + "pred": "a plate of food on a table" + }, + { + "label": "a dog sitting in front of a laptop on top of a bed", + "pred": "a dog sitting on top of a bed next to a laptop" + }, + { + "label": "a woman holding a drink and a large carrot", + "pred": "a woman holding a bottle of wine in her hand" + }, + { + "label": "small brown and white dog sitting in front of the laptop", + "pred": "a dog sitting on top of a bed next to a laptop" + }, + { + "label": "a man without shirt on is throwing a frisbee", + "pred": "a man in a field with a frisbee" + }, + { + "label": "a young woman holding a freshly pulled carrot up in the air", + "pred": "a woman holding a bottle of wine in her hand" + }, + { + "label": "three white bowls of food that include soup and vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "a dog is lying next to a laptop computer", + "pred": "a dog sitting on top of a bed next to a laptop" + }, + { + "label": "a white bowl filled with meat patties next to bowls of veggies", + "pred": "a plate of food on a table" + }, + { + "label": "competitive skiers ski forward on a flat surface", + "pred": "skiers and snowboarders in the middle of a race" + }, + { + "label": "a pile of green bananas on top of a woman's shoulder", + "pred": "a woman carrying a bunch of bananas on her head" + }, + { + "label": "people skating around red obstacles", + "pred": "skiers and snowboarders in the middle of a race" + }, + { + "label": "two pictures of a guy with a black shirt and hat on with a skateboard", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a teenager shoots flames at a friend balancing on a skateboard", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a man rides his skateboard on a small ledge while another man lights the spray from a can on fire", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a woman is posing for a picture on the snowy mountain", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a skateboarder doing a trick in a yard surrounded by a chain fence", + "pred": "a man riding a skateboard on top of a cement ramp" + }, + { + "label": "a pair of zebras stand together and eat grass", + "pred": "two zebras grazing in a grassy field" + }, + { + "label": "a burger sitting on a table, with another next to it", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a woman smiling with glasses on standing in the snow with two poles", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a banana split with spoons in a glass bowl", + "pred": "a banana split in a glass bowl on a table" + }, + { + "label": "plates that have a burger, french fries, and condiments on them", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "sliced sausage in a bowl with assorted vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "a woman on skis in front of people on a slope", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "small child and protective gear jumping on a skateboard", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a person sitting on the side of a mountain with a snow board", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "two photographs of a man in black shirt riding a skateboard", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a man in black shirt doing a trick on a skateboard", + "pred": "a man riding a skateboard on top of a cement ramp" + }, + { + "label": "a woman in a black jacket with skis on a slope", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a person holding onto a skateboard during a jump", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a plate that has food inside of it", + "pred": "a plate of food on a table" + }, + { + "label": "a male skateboarder in a black shirt doing a trick", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a man who is performing tricks on a skateboard", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two snapshots of a skate boarder doing stunts in an open area", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two plates, one with a sandwich and fries, the other with just a sandwich and a pickle", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "three rectangular bowls with food; big bowl has nine meat and sesame seed patties with brown sauce, next to it, a bowl of shredded cabbage and", + "pred": "a plate of food on a table" + }, + { + "label": "a skateboarder on a rail in a building with another man using a spray can as a blow torch", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a guy standing in front of a few horses", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "three white trays on a countertop containing various types of food", + "pred": "a plate of food on a table" + }, + { + "label": "a male skateboarder in a black shirt some dirt", + "pred": "a man riding a skateboard on top of a cement ramp" + }, + { + "label": "a place setting, including a burger, fries, a glass and condiments", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a woman stands on skis on a snowy hill", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "two zebras, one walking toward the camera, one walking away", + "pred": "two zebras standing next to each other on a dirt road" + }, + { + "label": "a banana split is sitting on top of a table", + "pred": "a banana split in a glass bowl on a table" + }, + { + "label": "a banana split in a plastic bowl", + "pred": "a banana split in a glass bowl on a table" + }, + { + "label": "a man pets a horse attached to other horses", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "horses are standing in the street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "people at an outdoor shop and some different fruits", + "pred": "a table topped with lots of fruits and vegetables" + }, + { + "label": "a pair of zebra graze near a barbed wire fence", + "pred": "two zebras grazing in a grassy field" + }, + { + "label": "a man sitting on the ground with a snowboard on his feet", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "zebras are standing in a pin", + "pred": "two zebras standing next to each other on a dirt road" + }, + { + "label": "a person is sitting near a bunch of fruit", + "pred": "a table topped with lots of fruits and vegetables" + }, + { + "label": "zebras graze on some grass", + "pred": "two zebras grazing in a grassy field" + }, + { + "label": "a man holding a baseball bat on a field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a baseball batter and a catcher and some fans", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man standing in front of a few horses on the street", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a table top with some food on top of it", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a baseball player holding a bat over his shoulder", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a market has many items for sale including fruit", + "pred": "a table topped with lots of fruits and vegetables" + }, + { + "label": "jockey's riding the horses through the beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a man sitting in the snow with his snowboard on", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "a man standing in front of some clysdale horses in front of some houses", + "pred": "a horse pulling a carriage down a street" + }, + { + "label": "a wagon that is being pulled by some horse", + "pred": "a pair of horses pulling a trailer in a field" + }, + { + "label": "a man standing on a skateboard near a ramp", + "pred": "a man riding a skateboard on top of a cement ramp" + }, + { + "label": "the two women sit near the blender next to a table covered in fruit", + "pred": "a table topped with lots of fruits and vegetables" + }, + { + "label": "a man ignites spray from a can next to his friend on a skateboard", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "two black and white zebras standing next to each other while grazing on grass", + "pred": "two zebras grazing in a grassy field" + }, + { + "label": "two zebras that are facing different directions in an enclosure", + "pred": "two zebras standing next to each other on a dirt road" + }, + { + "label": "jockeys races horses on the beach on a clear day", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a man that is on a skateboard in the dirt", + "pred": "a man riding a skateboard on top of a cement ramp" + }, + { + "label": "too zebras stand together near a wooded area", + "pred": "two zebras standing next to each other on a dirt road" + }, + { + "label": "jockeys on horses race on an ocean beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "snow boarder sitting on snow covered slope on sunny day", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "the young man is practicing his tricks on his skateboard while the other is playing with fire", + "pred": "a man is doing a trick on a skateboard" + }, + { + "label": "a baseball player who is running on a baseball field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "clydesdale horses pulling a wagon in front of a large combine", + "pred": "a pair of horses pulling a trailer in a field" + }, + { + "label": "two zebras going opposite directions of each other in outdoor enclosure", + "pred": "two zebras standing next to each other on a dirt road" + }, + { + "label": "a man holding up a baseball bat as he gets ready to hit a ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "two people that are standing in a farmers market", + "pred": "a table topped with lots of fruits and vegetables" + }, + { + "label": "a wagon with driver being pulled by two draft horses", + "pred": "a pair of horses pulling a trailer in a field" + }, + { + "label": "a skateboarder performing a trick wearing safety equipment", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "people riding on horses as the run on a beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "three people riding horses on a beach", + "pred": "a number of people riding horses on a beach" + }, + { + "label": "a number of baseball players on a field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a baseball player that is at base", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a person riding a horse drawn carriage", + "pred": "a pair of horses pulling a trailer in a field" + }, + { + "label": "a baseball player running to a base during a game at night", + "pred": "baseball players standing on top of a field" + }, + { + "label": "the bottom of a skateboard while the young rider is in mid air", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a snowboarder that has fallen n the snow", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "a man flying through the air on top of a skateboard", + "pred": "a person riding a skateboard on top of a ramp" + }, + { + "label": "a baseball player that has just run to the base", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a baseball game is going with children playing a runner is about to hit the base", + "pred": "baseball players standing on top of a field" + }, + { + "label": "two horses that are pulling a carriage", + "pred": "a pair of horses pulling a trailer in a field" + }, + { + "label": "people skiing take a break", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a single horse trotting around in a field", + "pred": "a brown horse standing on top of a lush green field" + }, + { + "label": "a zebra with a left side pose while standing in a field", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man in a baseball uniform standing on a mound of a field", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a man is about to throw a frisbee in a grassy field", + "pred": "a man throwing a frisbee in a park" + }, + { + "label": "a man that is skiing down a snowy hill", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "an assortment of different fruits laying in two rows on a tray", + "pred": "a pile of fruit sitting on top of a table" + }, + { + "label": "a zebra that only has a striped neck and face, the rest of it is white", + "pred": "a white and black horse standing next to a fence" + }, + { + "label": "men playing baseball, one is running, while another is throwing a ball to another player", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the two big bears are fighting in the water with one another", + "pred": "two bears are playing in a pool of water" + }, + { + "label": "fresh carrots from a garden lie on a counter next to a teaspoon", + "pred": "a carrot sits next to a spoon on a table" + }, + { + "label": "a plate with sardines, carrots, green beans and potatoes", + "pred": "a plate of fish and vegetables on a table" + }, + { + "label": "a man makes a jump on his skateboard before a crowd", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "skiers and snowboarders mill about on a mountain", + "pred": "people riding skis down a snow covered slope" + }, + { + "label": "a pineapple next to some oranges, incense sticks and cups", + "pred": "a bowl of oranges sitting on top of a table" + }, + { + "label": "a horse in a grassy field set against a foggy mountain range", + "pred": "a horse that is standing in the grass" + }, + { + "label": "women ride horses through some water", + "pred": "two women riding horses on top of a beach" + }, + { + "label": "a boy doing a mid air trick on his skateboard", + "pred": "a man flying through the air while riding a skateboard" + }, + { + "label": "child throwing frisbee on a field with cones and people", + "pred": "a young boy holding a frisbee on a field" + }, + { + "label": "a red plate holds on it broccoli, carrots, muffins and meat", + "pred": "a plate of food on a table" + }, + { + "label": "zebras, wildebeests, and a giraffe stand in a zoo enclosure", + "pred": "zebra standing next to each other" + }, + { + "label": "a plate full of noodles and broccoli, next to a knife and fork", + "pred": "a white plate topped with noodles and broccoli" + }, + { + "label": "a man swinging a baseball bat on a field", + "pred": "a baseball player swinging a bat on top of a field" + }, + { + "label": "a man wearing ski equipment on a snowy slope", + "pred": "a man riding skis down a snow covered slope" + }, + { + "label": "someone feeding a goat a piece of carrot", + "pred": "a horse with a carrot sticking out of it's mouth" + }, + { + "label": "a horse walking on a small platform in front of a group of people", + "pred": "a man standing on a platform next to a train" + }, + { + "label": "boy in a sports jersey holds skateboard in right hand", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a big furry bear standing in the middle of a field", + "pred": "a large brown bear standing on top of a grass covered hillside" + }, + { + "label": "white horse with saddle on overlooks a river", + "pred": "a horse standing on top of a lush green hillside" + }, + { + "label": "a dish with meat and vegetables set on a bed of rice", + "pred": "a plate of food with broccoli and meat" + }, + { + "label": "a man attempts a trick after riding off of a low ramp", + "pred": "a man doing a trick on a skateboard on a sidewalk" + }, + { + "label": "a man attempts a trick after riding off of a low ramp", + "pred": "a man doing a trick on a skateboard on a sidewalk" + }, + { + "label": "zebras that are walking along a dirt path", + "pred": "a herd of zebra standing on top of a dirt road" + }, + { + "label": "a man in a black hat posing with his horse", + "pred": "a man standing next to a brown horse" + }, + { + "label": "two men playing a game of frisbee in a field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a fuzzy picture of a man in the middle of a skiing jump", + "pred": "a skier jumping in the air on top of a snow covered slope" + }, + { + "label": "a downhill skier doing a trick in front of the camera", + "pred": "a person on skis jumping over a snow covered slope" + }, + { + "label": "a person that is standing on a skateboard", + "pred": "a red and white roller coaster with a skateboard on top of it" + }, + { + "label": "three men from in a ft. spokane baseball team uniform", + "pred": "men standing next to each other" + }, + { + "label": "a trio of men in baseball uniforms posing for a picture", + "pred": "men standing next to each other" + }, + { + "label": "a broccoli carrot soup with a lot of broth", + "pred": "a bowl of broccoli and other vegetables on a table" + }, + { + "label": "three men are dressed in baseball uniforms and are posed for a portrait", + "pred": "men standing next to each other" + }, + { + "label": "a large zebra standing next to a tree", + "pred": "a zebra standing on top of a lush green field" + }, + { + "label": "a man working behind the counter of a bar with a lot of oranges and lemons", + "pred": "a man standing in front of a fruit stand filled with oranges" + }, + { + "label": "the men are playing a game of frisbee on the grassy field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a baseball player holds his bat and waits for the pitch", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a horse being put into a trailer", + "pred": "two men standing next to a white truck" + }, + { + "label": "three people try to guide a horse into a trailer", + "pred": "two men standing next to a white truck" + }, + { + "label": "a bowl holds soup with broccoli and other vegetables", + "pred": "a bowl of broccoli and other vegetables on a table" + }, + { + "label": "a man at bat waiting for a pitch with a catcher and umpire behind him and players from the opposing team in the dugout", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the bowl of soup contains a large amount of broccoli", + "pred": "a bowl of broccoli and other vegetables on a table" + }, + { + "label": "a bowl with broccoli and carrot soup on a table", + "pred": "a bowl of broccoli and other vegetables on a table" + }, + { + "label": "three professional athletes from a long time ago", + "pred": "men standing next to each other" + }, + { + "label": "three men are pushing a horse onto the back of a horse trailer", + "pred": "two men standing next to a white truck" + }, + { + "label": "four people trying to get a black horse into the back of a blue and white truck", + "pred": "two men standing next to a white truck" + }, + { + "label": "a man is playing tennis, the ball is coming toward him", + "pred": "a man swinging a tennis racket at a ball" + }, + { + "label": "a man holding one water ski at the lake", + "pred": "a person on a surfboard in the water" + }, + { + "label": "para-sailers on a lake by the woods", + "pred": "a person on a surfboard in the water" + }, + { + "label": "people engaged in para-sailing on a lake", + "pred": "a person on a surfboard in the water" + }, + { + "label": "the donut robot machine is mechanically making donuts", + "pred": "a man standing in front of a display of donuts" + }, + { + "label": "a man about to hit a tennis ball", + "pred": "a man swinging a tennis racket at a ball" + }, + { + "label": "a man changes a light bulb in a darkened bar", + "pred": "a man pouring a glass of wine into a bar" + }, + { + "label": "a man is preparing to hit a tennis ball", + "pred": "a man swinging a tennis racket at a ball" + }, + { + "label": "a man sits at a bar in front of dozens of bottles of alcohol", + "pred": "a man pouring a glass of wine into a bar" + }, + { + "label": "a lifeguard helps a boarder that overturned in the water", + "pred": "a person on a surfboard in the water" + }, + { + "label": "friends playing a motion controlled video game", + "pred": "people playing a video game in a living room" + }, + { + "label": "a man working the counter at a pastry shop", + "pred": "a man standing in front of a display of donuts" + }, + { + "label": "a cheerful couple wait in line at the donut shop", + "pred": "a man standing in front of a display of donuts" + }, + { + "label": "a man prepares to hit a tennis ball", + "pred": "a man swinging a tennis racket at a ball" + }, + { + "label": "bottles, and glasses are lined up on shelves in a bar", + "pred": "a man pouring a glass of wine into a bar" + }, + { + "label": "a man sitting at a bar that contains a lot of bottles", + "pred": "a man pouring a glass of wine into a bar" + }, + { + "label": "a man baking and preparing donuts to sell at shop", + "pred": "a man standing in front of a display of donuts" + }, + { + "label": "three young men playing wii on a projection television", + "pred": "a man is playing a video game while others look on" + }, + { + "label": "a man sits at a bar in front of shelves full of bottles", + "pred": "a man pouring a glass of wine into a bar" + }, + { + "label": "people are gathered around at television playing wii", + "pred": "people playing a video game in a living room" + }, + { + "label": "meats and vegetables on a flatbread", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "meat and greens on a pizza crust", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "three men laughing at some pictures from a projector", + "pred": "a man sitting on a couch playing a game with a nintendo wii controller" + }, + { + "label": "a tennis player who has just made a shot", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a living room with a large green couch and office desk", + "pred": "a living room filled with furniture and a flat screen tv" + }, + { + "label": "a man and woman bathe in a shallow river", + "pred": "a man and a woman sitting on a beach next to a body of water" + }, + { + "label": "gentleman playing video games in a dimly lit room", + "pred": "a man sitting on a couch playing a game with a nintendo wii controller" + }, + { + "label": "two tennis players consult with the referee during a tennis match", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a pizza with lettuce and bacon", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "baby brushing teeth while sitting on a toilet", + "pred": "a little boy sitting on a toilet with a toothbrush in his mouth" + }, + { + "label": "friends play a game on the nintendo wii", + "pred": "people playing a video game in a living room" + }, + { + "label": "people chilling on the couch playing with a nintendo wii", + "pred": "a man sitting on a couch playing a game with a nintendo wii controller" + }, + { + "label": "a referee and tennis player speaking while fans watch in the stands", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a living room displaying family photos and art", + "pred": "a living room filled with furniture and a flat screen tv" + }, + { + "label": "young toddler sitting on toilet bowl brushing teeth", + "pred": "a little boy sitting on a toilet with a toothbrush in his mouth" + }, + { + "label": "a young boy sittingon a toilette seat in a bathroom", + "pred": "a little boy sitting on a toilet with a toothbrush in his mouth" + }, + { + "label": "a man knees down on the side of a snow filled mountainside", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "the friends are playing a game together in a living room", + "pred": "people playing a video game in a living room" + }, + { + "label": "a baby is looking at a book while sucking a pacifier", + "pred": "a man brushing his teeth with a toothbrush" + }, + { + "label": "a child in bed with a pacifier looks at a picture book while an adult looks on", + "pred": "a man brushing his teeth with a toothbrush" + }, + { + "label": "a girl swinging a tennis racket in a match", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a basement living area with different types of furniture", + "pred": "a living room filled with furniture and a flat screen tv" + }, + { + "label": "a man and a woman in a river", + "pred": "a man and a woman sitting on a beach next to a body of water" + }, + { + "label": "a toddler sits on a toilet while brushing his teeth", + "pred": "a little boy sitting on a toilet with a toothbrush in his mouth" + }, + { + "label": "small personal pizza with bacon and spinach", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a man laying in bed with a child reading a book", + "pred": "a man brushing his teeth with a toothbrush" + }, + { + "label": "a father with a braided beard is looking at his child", + "pred": "a man brushing his teeth with a toothbrush" + }, + { + "label": "a tennis player swinging a racket at a public tennis match", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "player challenging a call by umpire in a tennis match", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a very thick pizza is on a plate with one piece taken", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a living room scene has photos on a table", + "pred": "a living room filled with furniture and a flat screen tv" + }, + { + "label": "a tennis court has a few people in the bleachers", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young man taking a swing at a tennis ball", + "pred": "a young man hitting a tennis ball with a racquet" + }, + { + "label": "lettuce and tomatoes on a slice of pita bread", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "chicago style deep dish pizza with tomato sauce and sausage", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "fully decorated basement has no people in it", + "pred": "a living room filled with furniture and a flat screen tv" + }, + { + "label": "a woman playing tennis with spectators behind her", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "two snowboarders riding down a hill in a snowy forest", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "man blows out burning birthday candles which makes the flames higher", + "pred": "a man lighting candles on a birthday cake" + }, + { + "label": "a person cutting a pizza next to a salad and bottles of wine on wooden table", + "pred": "a pizza sitting on top of a wooden table next to a bottle of wine" + }, + { + "label": "a hand is slicing a pizza on a table", + "pred": "a pizza sitting on top of a wooden table next to a bottle of wine" + }, + { + "label": "a man playing a game of tennis on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a sandwich on a plate served with garnish", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "the browned cracked crust of a baked berry pie", + "pred": "a large piece of meat sitting on top of a baking sheet" + }, + { + "label": "a blonde haired teenage man is swinging a tennis racquet at a ball", + "pred": "a young man hitting a tennis ball with a racquet" + }, + { + "label": "a delicious sandwich layered with meat and dressed with avocado lies on a cutting board", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a male tennis player preparing to strike the incoming ball", + "pred": "a young man hitting a tennis ball with a racquet" + }, + { + "label": "a man brushing his teeth in a river while a woman looks on", + "pred": "a man and a woman sitting on a beach next to a body of water" + }, + { + "label": "a man is about to hit a tennis ball with a racquette", + "pred": "a young man hitting a tennis ball with a racquet" + }, + { + "label": "a man standing next to a snowboard in the snow", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "people on a tennis court with others watching", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman swinging her tennis racket while playing tennis", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a ham sandwich on a white plate with a kale garnish", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a man and women in the river washing and eating", + "pred": "a man and a woman sitting on a beach next to a body of water" + }, + { + "label": "a white bread sandwich on plate filled with ham and lettuce", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a person is standing in the white snow", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "a tennis player in the air after a play in a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a cupcake being decorated with frosted and non pareils", + "pred": "a person holding a chocolate frosted donut with sprinkles" + }, + { + "label": "a man blowing out candles on a birthday cake", + "pred": "a man lighting candles on a birthday cake" + }, + { + "label": "a man cuts a pizza to serve with salad and wine", + "pred": "a pizza sitting on top of a wooden table next to a bottle of wine" + }, + { + "label": "a brown crust of pie with strawberry filing", + "pred": "a large piece of meat sitting on top of a baking sheet" + }, + { + "label": "a table with plates of sandwiches and fruit", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "the top of a pie looks all crusty and good", + "pred": "a large piece of meat sitting on top of a baking sheet" + }, + { + "label": "young man swinging a tennis racket on a tennis court", + "pred": "a young man hitting a tennis ball with a racquet" + }, + { + "label": "a sliced pizza sitting on a table next to a glass of water and a glass of wine", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a penn tennis bill resting on a tennis racquet", + "pred": "a tennis racket sitting on top of a tennis court" + }, + { + "label": "a deep dish style pizza with a slice cut out of it next to a glass of white wine", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a thick crust cut pizza on a plate with wine by its side", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a man sitting on his knees in the snow", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "a cooked fruit flavored muffin", + "pred": "a large piece of meat sitting on top of a baking sheet" + }, + { + "label": "a man blowing out candles on a birthday cake", + "pred": "a man lighting candles on a birthday cake" + }, + { + "label": "a man blows out candles from a birthday cake", + "pred": "a man lighting candles on a birthday cake" + }, + { + "label": "a man bending over a cake with a lot of candles", + "pred": "a man lighting candles on a birthday cake" + }, + { + "label": "an indian man and woman in the water on the edge of a river", + "pred": "a man and a woman sitting on a beach next to a body of water" + }, + { + "label": "a pro tennis player playing a game", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a tennis player is leaping off of the ground", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two young men skate down an urban road", + "pred": "a man riding a skateboard down the middle of a street" + }, + { + "label": "a mother with her baby laying in bed", + "pred": "a baby is lying on a bed with a man" + }, + { + "label": "a baby girl and her mom are looking at a book", + "pred": "a baby is lying on a bed with a man" + }, + { + "label": "two guys skateboarding down a graffiti lined street", + "pred": "a man riding a skateboard down the middle of a street" + }, + { + "label": "sort of strawberry flaky pastery on display", + "pred": "a large piece of meat sitting on top of a baking sheet" + }, + { + "label": "a homemade pizza, salad and two glasses of wine on a table", + "pred": "a pizza sitting on top of a wooden table next to a bottle of wine" + }, + { + "label": "a slice of pizza, greens, two wine glasses with two bottles on the table", + "pred": "a pizza sitting on top of a wooden table next to a bottle of wine" + }, + { + "label": "a person holding a cup cake with chocolate icing and sprinkles", + "pred": "a person holding a chocolate frosted donut with sprinkles" + }, + { + "label": "a dining table has a large pizza and wine glasses", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a baby looking at a picture book while mother looks on", + "pred": "a baby is lying on a bed with a man" + }, + { + "label": "surfers paddling on their boards out in the ocean", + "pred": "a number of people on surfboards in a body of water" + }, + { + "label": "skateboarders riding down the street on boards next to cars", + "pred": "a man riding a skateboard down the middle of a street" + }, + { + "label": "a baby looking at a book, and sitting on a bed next to a woman", + "pred": "a baby is lying on a bed with a man" + }, + { + "label": "a man hitting a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two people riding surf boards on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two surfers riding a wave back to shore", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis ball sitting on top of a tennis racket", + "pred": "a tennis racket sitting on top of a tennis court" + }, + { + "label": "an image through a window looking at two people on skateboards", + "pred": "a man riding a skateboard down the middle of a street" + }, + { + "label": "two people trying to surf on the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man holding a surfboard walking on a beach next to the ocean", + "pred": "a man carrying a surfboard on top of a beach" + }, + { + "label": "two young men riding skateboards on a street next to a graffiti covered wall", + "pred": "a man riding a skateboard down the middle of a street" + }, + { + "label": "a child and a woman in bed with a book", + "pred": "a baby is lying on a bed with a man" + }, + { + "label": "a person holding a cupcake with sprinkles", + "pred": "a person holding a chocolate frosted donut with sprinkles" + }, + { + "label": "two surfers are riding a wave on their surf boards", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a close up image of a half onion and mushroom pizza", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a pizza sitting on a plate in front of a glass of wine", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "swimmers swim in the ocean off the coast of a beach", + "pred": "a number of people on surfboards in a body of water" + }, + { + "label": "two individuals catching a wave surfing in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people swimming in beach water", + "pred": "a number of people on surfboards in a body of water" + }, + { + "label": "a surfer on a white board riding a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a blue tennis racket has a yellow tennis ball on it", + "pred": "a tennis racket sitting on top of a tennis court" + }, + { + "label": "small pizza sits on a plate on a restaurant table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a tennis player using his shirt to dry his face during a tournament game", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a pizza served on a white plate next to empty wine glass and beer", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a pizza sitting on top of a white plate on a kitchen table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "surfers on their boards in the ocean", + "pred": "a number of people on surfboards in a body of water" + }, + { + "label": "a hand holding a cupcake with brown frosting and colorful balls on it", + "pred": "a person holding a chocolate frosted donut with sprinkles" + }, + { + "label": "a man wiping his brow while bouncing a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a cheese pizza on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a large pizza on a white plate sitting on a blue table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a male surfer is riding a wave on a sunny day", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two women are cutting and preparing a pizza", + "pred": "a woman standing next to a man in a kitchen" + }, + { + "label": "a small uneaten pizza on a plate sits on a table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "holding a chocolate cupcake with colored sprinkles still in the paper cup", + "pred": "a person holding a chocolate frosted donut with sprinkles" + }, + { + "label": "a tennis player dribbling the ball with his tennis racket while wiping his face with his shirt", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two people preparing some kind of food outside", + "pred": "a woman standing next to a man in a kitchen" + }, + { + "label": "a surfer walking on a beach holding a surfboard", + "pred": "a man carrying a surfboard on top of a beach" + }, + { + "label": "a tennis ball is sitting on a tennis racket", + "pred": "a tennis racket sitting on top of a tennis court" + }, + { + "label": "people swim in shallow ocean waters", + "pred": "a number of people on surfboards in a body of water" + }, + { + "label": "surfer at the height of a large wave looks down", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player with a blue shirt playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a tennis player with his leg up in the air and a racket in one hand", + "pred": "a woman holding a tennis racquet on a court" + }, + { + "label": "a tennis ball sitting on a tennis racket", + "pred": "a tennis racket sitting on top of a tennis court" + }, + { + "label": "a young man riding on a surf board on an ocean wave", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man walking on the beach carrying a surfboard", + "pred": "a man walking on the beach carrying a surfboard" + }, + { + "label": "an athlete wiping sweat from his brow with his shirt", + "pred": "a man holding a tennis racket on a tennis court" + }, + { + "label": "plate with pizza, knife and fork laying on edge of plate with two glasses next to them", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a lone surfer carries his board next to the shore", + "pred": "a man walking on the beach carrying a surfboard" + }, + { + "label": "a woman surfer riding the waves in the ocean", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "photographers taking pictures of a tennis player during a game", + "pred": "a woman holding a tennis racquet on a court" + }, + { + "label": "a woman prepares a pizza while a man watches", + "pred": "a woman is making a sandwich in a kitchen" + }, + { + "label": "a person riding a wake board on a body of water", + "pred": "a man on a water skis in the water" + }, + { + "label": "a hand pulls a slice of mushroom pizza from the pie", + "pred": "a person holding a slice of pizza" + }, + { + "label": "a soccer player in the midst of kicking a soccer ball", + "pred": "a baseball player running across a field" + }, + { + "label": "a man with his leg up looking in the air", + "pred": "a woman holding a tennis racquet on a court" + }, + { + "label": "a girl taking a swing at a baseball during a game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a cat laying on a bed in front of a book shelf", + "pred": "a black cat laying on top of a bed" + }, + { + "label": "a woman holding a large knife next to another lady cutting pizza", + "pred": "a woman standing next to a man in a kitchen" + }, + { + "label": "a person walking along the beach with a surfboard", + "pred": "a man walking on the beach carrying a surfboard" + }, + { + "label": "two cooked hot dogs on a plate with parsley", + "pred": "a hot dog on a bun on a plate" + }, + { + "label": "a girl sitting on a bed is taking a self portrait", + "pred": "a man standing next to a bed in a room" + }, + { + "label": "a girl sits on the bed and photographs herself in the mirror with her tripod", + "pred": "a man standing next to a bed in a room" + }, + { + "label": "a person sits across from a pizza ready to be served", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "small personal pizza on a crust made of rice", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a girl attempts to hit a ball with her bat while playing baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a girls' softball game where the batter just hit the pitch", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a cat sleeps on a bed with a plaid bedspread in front of a bookshelf", + "pred": "a black cat laying on top of a bed" + }, + { + "label": "a lady in a bedroom with a tripod", + "pred": "a man standing next to a bed in a room" + }, + { + "label": "a person on a tennis court in tennis wear", + "pred": "a woman holding a tennis racket on a tennis court" + }, + { + "label": "a dish of some sort on a pizza stone", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "young women playing a game of softball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "two girls working outside cooking and cutting pizza", + "pred": "a woman standing next to a man in a kitchen" + }, + { + "label": "a man in a wetsuit surfing a wave on a surf board", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a tennis player looks up with his leg in the air as photographers snap photos", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a person cuts a pizza while another holds a pizza peel", + "pred": "a woman standing next to a man in a kitchen" + }, + { + "label": "a cat in a bedroom laying on a striped covered bed", + "pred": "a black cat laying on top of a bed" + }, + { + "label": "a strange pizza made from rice and fish and vegetables", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "the sausages are served with parsley on the side", + "pred": "a hot dog on a bun on a plate" + }, + { + "label": "computer desk setup with monitor, wireless keyboard, and other electronic devices", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a glass topped desk with a computer and speakers", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a powered on computer monitor sitting on a office desk", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "softball game in which the batter has just swung at the ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman in tennis gear holding a tennis racket on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man leaning on a surfboard in the water riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man standing next to a beautiful woman in a short blue skirt facing the crowd", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "people are taking surfing lessons", + "pred": "surfers standing on top of a beach" + }, + { + "label": "kind of chicken, rice, and vegetable dish on a pizza tray being served to a man", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "girl is setting up a camera to film herself in bed", + "pred": "a man standing in front of a bed in a hotel room" + }, + { + "label": "men, women and children walking toward the water with surfboards", + "pred": "surfers standing on top of a beach" + }, + { + "label": "a mixed age group is going toward the ocean with surfboards", + "pred": "surfers standing on top of a beach" + }, + { + "label": "a computer is sitting on a home office work desk", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a girl sits in front of a mirror with a camera", + "pred": "a man standing in front of a bed in a hotel room" + }, + { + "label": "tennis player on court holding racket with hand on hip", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a sausage on italian roll sandwich, cut in half, is on a white plate, with a garnish", + "pred": "a hot dog on a bun on a plate" + }, + { + "label": "a surfer is on his board cutting through the waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a computer is sitting on a computer desk", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "surfers are carrying their surf boards into the ocean", + "pred": "surfers standing on top of a beach" + }, + { + "label": "a twin bed with a cat and laptop on top of it", + "pred": "a black cat laying on top of a bed" + }, + { + "label": "a female toddler who just finished eating with a bow in her hair", + "pred": "a little girl eating a piece of cake" + }, + { + "label": "people are getting ready to enter the water for surfing", + "pred": "surfers standing on top of a beach" + }, + { + "label": "a cat curled up on a bed for a nap", + "pred": "a black cat laying on top of a bed" + }, + { + "label": "a cracker is on a plate next to some mint", + "pred": "a white plate topped with a slice of pizza" + }, + { + "label": "a man attempting to stand up on his board and surf a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a remote control on a wooden table in front of a television", + "pred": "a remote control sitting on top of a wooden table" + }, + { + "label": "a man is drenched by the spray from the crest of a wave as he attempts to stand up on his surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a young toddler with food on her face sticking out her tongue", + "pred": "a little girl eating a piece of cake" + }, + { + "label": "a person wearing a green hat playing nintendo wii", + "pred": "a man standing in a living room holding a nintendo wii controller" + }, + { + "label": "a little girl sitting at a table with food on her face", + "pred": "a little girl eating a piece of cake" + }, + { + "label": "a remote control on a table for the television", + "pred": "a remote control sitting on top of a wooden table" + }, + { + "label": "a remote is sitting on a tabletop in clear view of the television", + "pred": "a remote control sitting on top of a wooden table" + }, + { + "label": "two hot dogs on a white plate with piece of parsley", + "pred": "a hot dog on a bun on a plate" + }, + { + "label": "man with a party hat happily playing on the wii in his living room", + "pred": "a man standing in a living room holding a nintendo wii controller" + }, + { + "label": "an adorable baby girl sitting at a table with food on her face", + "pred": "a little girl eating a piece of cake" + }, + { + "label": "a woman holding a tennis racket standing on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a plate with food", + "pred": "a white plate topped with a slice of pizza" + }, + { + "label": "a cracker with shredded cheese and leafy greens on a white plate", + "pred": "a white plate topped with a slice of pizza" + }, + { + "label": "a surfer is riding a wave in light blue water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a baby with food on her face and her tongue sticking out", + "pred": "a little girl eating a piece of cake" + }, + { + "label": "a surfer paddling on a board to go catch a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a remote control on a table with the tv", + "pred": "a remote control sitting on top of a wooden table" + }, + { + "label": "a plate with a cracker and fancy topping", + "pred": "a white plate topped with a slice of pizza" + }, + { + "label": "the two teens are playing video games in the rec center", + "pred": "a man sitting in a chair playing a video game" + }, + { + "label": "an hors d'oeuvre on a plate", + "pred": "a white plate topped with a slice of pizza" + }, + { + "label": "a tennis player is playing in a match", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a surfer paddles over a wave in clear blue water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two people sitting in chairs playing nintendo wii", + "pred": "a man sitting in a chair playing a video game" + }, + { + "label": "a female tennis club", + "pred": "young people posing for a picture on a tennis court" + }, + { + "label": "an all female tennis team taking a group photo on a tennis court", + "pred": "young people posing for a picture on a tennis court" + }, + { + "label": "two hot dogs in buns sitting on a white plate", + "pred": "a hot dog on a bun on a plate" + }, + { + "label": "a man in a living room playing video games", + "pred": "a man standing in a living room holding a nintendo wii controller" + }, + { + "label": "a baby girl chews on a stick with a teddy bear in hand", + "pred": "a little girl holding a teddy bear in a living room" + }, + { + "label": "a sandwich on a plate cutin half next to pasta", + "pred": "a plate of food on a table" + }, + { + "label": "a man laying flat on a surfboard paddling through the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two men are sitting in chairs, playing a video game", + "pred": "a man sitting in a chair playing a video game" + }, + { + "label": "pretty young ladies standing on a tennis court", + "pred": "young people posing for a picture on a tennis court" + }, + { + "label": "two kids hanging out playing video games on folding chairs", + "pred": "a man sitting in a chair playing a video game" + }, + { + "label": "an older man playing a video game with a green paper hat on his head", + "pred": "a man standing in a living room holding a nintendo wii controller" + }, + { + "label": "a plate of food which includes onions, tomato, lettuce, sauce, fries, and a sandwich", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a person lying on a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman walking on a tennis court holding a tennis racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man standing in front of the grill of a hot dog stand", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "a sandwich, french fries, bowl of ketchup, onion slice, lettuce slice, tomato slice, and knife sit on the white plate", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a dinner plate containing a sandwich and pasta", + "pred": "a plate of food on a table" + }, + { + "label": "small bedroom with a bed and dresser with a small monitor on top of it", + "pred": "a hotel room with a television and a bed" + }, + { + "label": "a man choosing condiments at a hotdog stand", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "tennis player smiles on the court while holding her tennis racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man playing a game with a wii controller in a living room", + "pred": "a man standing in a living room holding a nintendo wii game controller" + }, + { + "label": "partially eaten hamburger on a plate with fries and condiments", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a young woman with a tennis racket celebrates a good play", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a little girl is using the toy brush for a chew toy rather than brushing the teddy", + "pred": "a little girl holding a teddy bear in a living room" + }, + { + "label": "two boys sit on chairs and play video games", + "pred": "a man sitting in a chair playing a video game" + }, + { + "label": "a young girl plays with a teddy bear and puts a brush in her mouth", + "pred": "a little girl holding a teddy bear in a living room" + }, + { + "label": "a desk with multiple computers inside a office", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a purple chair is next to a desk with a computer and a laptop", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a sandwich cut in half is on a plate with macaroni", + "pred": "a plate of food on a table" + }, + { + "label": "a little boy is being held on a lap while eating", + "pred": "a woman holding a baby while sitting on a chair" + }, + { + "label": "lady on tennis court wearing red tennis outfit and holding racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a girl chasing after a soccer ball with an opposing team member close behind", + "pred": "young women playing a game of soccer" + }, + { + "label": "sandwich and pasta salad with a drink for one", + "pred": "a plate of food on a table" + }, + { + "label": "a soccer player in uniform runs toward the ball", + "pred": "young women playing a game of soccer" + }, + { + "label": "a grilled chicken sandwich sits beside french fries made with real potatoes", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a team of girl tennis players gather together at the net for a group picture", + "pred": "young people posing for a picture on a tennis court" + }, + { + "label": "a desk with a desktop and a laptop computer", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a man is grilling off the street with a modest and small cart", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "a sandwich on a sesame seed bun next to a pile of french fries and a cup of ketchup", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "a basic motel room with a bed and television", + "pred": "a hotel room with a television and a bed" + }, + { + "label": "a girl wearing all orange on a court holding a tennis racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a pepperoni pizza sitting on top of a wooden cutting board", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a pizza with pepperoni served on a wooden tray", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a toddler standing with a brush in her mouth", + "pred": "a little girl holding a teddy bear in a living room" + }, + { + "label": "two sandwiches cut in half sitting on top of a white plate", + "pred": "a sandwich cut in half sitting on top of a white plate" + }, + { + "label": "a bedroom with a bed and a flat screen tv on top of a wooden dresser", + "pred": "a hotel room with a television and a bed" + }, + { + "label": "a man cooking hot dogs with a light colored jacket on", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "two sandwiches on a plate with a slice of tomato on the side", + "pred": "a sandwich cut in half sitting on top of a white plate" + }, + { + "label": "eleven girls in tennis outfits pose for a picture with their racquets on a tennis court", + "pred": "young people posing for a picture on a tennis court" + }, + { + "label": "a woman is holding a baby with another young boy beside her", + "pred": "a woman holding a baby while sitting on a chair" + }, + { + "label": "two girls are playing soccer with the ball in the air", + "pred": "young women playing a game of soccer" + }, + { + "label": "a blue, yellow and green surfboard sticking out of a sandy beach", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a pepperoni pizza on a napkin on top of a wooden surface", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a big bed sits in a living area with a ceiling fan, dresser, television set and wastepaper basket", + "pred": "a hotel room with a television and a bed" + }, + { + "label": "a foam plate with two sandwiches on it", + "pred": "a sandwich cut in half sitting on top of a white plate" + }, + { + "label": "a pepperoni pizza laying on a white piece of parchment paper", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a young gir holding a child with a boy standing next to them", + "pred": "a woman holding a baby while sitting on a chair" + }, + { + "label": "two boys are playing with a soccer ball", + "pred": "young children playing soccer on a field" + }, + { + "label": "two young boys kicking a soccer ball in a field", + "pred": "young children playing soccer on a field" + }, + { + "label": "a woman in a blue uniform runs to kick a soccer ball", + "pred": "young women playing a game of soccer" + }, + { + "label": "a large pepperoni pizza on a cutting board", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a soccer player in a blue uniform is running after a soccer ball", + "pred": "young women playing a game of soccer" + }, + { + "label": "two boys wearing different soccer uniforms are trying to kick a soccer ball", + "pred": "young children playing soccer on a field" + }, + { + "label": "a girl holds a baby eating a bagel with a boy standing next to them", + "pred": "a woman holding a baby while sitting on a chair" + }, + { + "label": "a little girl playing with a teddy bear and chewing on a toothbrush", + "pred": "a little girl holding a teddy bear in a living room" + }, + { + "label": "a computer desk with a large purple office chair", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "two young boys kick a soccer ball on a soccer field", + "pred": "young children playing soccer on a field" + }, + { + "label": "boys are playing a soccer game on a field", + "pred": "young children playing soccer on a field" + }, + { + "label": "a computer chair, with a computer desk, with both a laptop and desktop on top", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a surf board sticking up in the sand", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "people sitting in the stands watching a man play tennis", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a man cooking food on a red art on the street", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "a bedroom with a bed next to a night stand with a lamp", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a beautiful little girl sitting next to a little boy sharing a meal", + "pred": "a little girl sitting on the ground talking on a cell phone" + }, + { + "label": "a young mother at home with her two children", + "pred": "a woman holding a baby while sitting on a chair" + }, + { + "label": "a sandwich on top of a metal tray next to a bowl of dipping sauce", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a man in white playing tennis, about to hit a serve", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a bedroom with a bed, tv and ceiling fan", + "pred": "a hotel room with a television and a bed" + }, + { + "label": "a boy and a girl sitting on a sidewalk eating", + "pred": "a little girl sitting on the ground talking on a cell phone" + }, + { + "label": "two kids witting on a sidewalk having a snack", + "pred": "a little girl sitting on the ground talking on a cell phone" + }, + { + "label": "the white plate contains a meat sandwich on toast, garnished with lettuce, onions, and tomato", + "pred": "a sandwich cut in half sitting on top of a white plate" + }, + { + "label": "a plate with two ham sandwiches garnished with lettuce", + "pred": "a sandwich cut in half sitting on top of a white plate" + }, + { + "label": "a girl in a floral dress sitting next to a boy in a blue shirt eating food", + "pred": "a little girl sitting on the ground talking on a cell phone" + }, + { + "label": "a surf board in the sand near a body of water", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a colorful surfboard stands erected on the sandy beach", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a tennis player has their racquet raised in the air", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a male tennis player on the tennis court returning a serve", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a tennis player is in an awkward position with racket raised an finger pointed", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a woman is playing tennis with her children", + "pred": "a woman swinging a tennis racquet at a ball" + }, + { + "label": "two cute children are sitting on the sidewalk eating", + "pred": "a little girl sitting on the ground talking on a cell phone" + }, + { + "label": "a surfboard propped up in the sand on a beech", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a sandwich on a plate on a desk near a glass of wine", + "pred": "a plate of food on a table" + }, + { + "label": "the sandwich dominates the plate and comes with soup", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "food sitting on top of a table", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a grilled sandwich with cheese served on a tray", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a mother and her children play on a grass tennis court", + "pred": "a woman swinging a tennis racquet at a ball" + }, + { + "label": "a woman hitting a tennis ball with a racquet", + "pred": "a woman swinging a tennis racquet at a ball" + }, + { + "label": "a table lamp is on revealing part of a bed and an upside down glass", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a big sandwich on a small silver plate with a bowl of broth on the side", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a pizza in a box with toppings that are divided into thirds", + "pred": "a pizza in a box sitting on top of a table" + }, + { + "label": "two men shaking hands while standing on a tennis court", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a cup with soda in front of a panini with a side of greens", + "pred": "a sandwich and a cup of coffee on a table" + }, + { + "label": "a box of cheese pizza with green peppers in a box", + "pred": "a pizza in a box sitting on top of a table" + }, + { + "label": "the woman serves the tennis ball as a child watches", + "pred": "a woman swinging a tennis racquet at a ball" + }, + { + "label": "a woman wearing a red tennis outfit holding onto a racquet", + "pred": "a beautiful young woman holding a tennis racquet" + }, + { + "label": "a man riding a surfboard on a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a pizza sitting in a pizza box on top of a table", + "pred": "a pizza in a box sitting on top of a table" + }, + { + "label": "two tennis players shaking hands over the net", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a surf board leaning on a wheel barrel", + "pred": "an airplane is parked in a grassy area next to a fence" + }, + { + "label": "this tennis player is happy to be in the game", + "pred": "a beautiful young woman holding a tennis racquet" + }, + { + "label": "a man in dark clothing is on a cement step doing a trick with his skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a cup of pepsi, and a plate of food", + "pred": "a sandwich and a cup of coffee on a table" + }, + { + "label": "a bedstand with an ice bucket, upside down glass, lamp, and phone sits next to a bed with pillows and sheets", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a pepsi soda on the table with a tray of bread and vegetables", + "pred": "a sandwich and a cup of coffee on a table" + }, + { + "label": "two tennis players are facing each other over a tennis net", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a man in his wetsuit riding a big wave on his surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a pizza cut into six slices with three different toppings", + "pred": "a pizza in a box sitting on top of a table" + }, + { + "label": "a table with a plate of food next to a cup of pepsi", + "pred": "a sandwich and a cup of coffee on a table" + }, + { + "label": "a orange and white cat sleeping on top of a blanket on a bed", + "pred": "a cat laying on top of a blanket on a bed" + }, + { + "label": "a guy at a table with 6 plates of food around him", + "pred": "a man sitting at a table with plates of food" + }, + { + "label": "a man is surrounded by fast food at a restaurant booth", + "pred": "a man sitting at a table with plates of food" + }, + { + "label": "a young man sitting at a blue table covered in plates of food", + "pred": "a man sitting at a table with plates of food" + }, + { + "label": "a sandwich with salad on a plate and a cup of pop", + "pred": "a sandwich and a cup of coffee on a table" + }, + { + "label": "a man sitting on at table covered with hot dogs fries and drinks", + "pred": "a man sitting at a table with plates of food" + }, + { + "label": "a man riding a wave on top of a yellow surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two people standing on a beach next to the ocean", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a woman hits a tennis ball with some kids", + "pred": "a woman swinging a tennis racquet at a ball" + }, + { + "label": "a surfboard leaning on a wheelbarrow in a backyard", + "pred": "an airplane is parked in a grassy area next to a fence" + }, + { + "label": "a young man riding a skateboard on top of a cement block", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a person smiling holding a tennis racket near a bush", + "pred": "a beautiful young woman holding a tennis racquet" + }, + { + "label": "a wheelbarrow sitting in a field next to a surfboard", + "pred": "an airplane is parked in a grassy area next to a fence" + }, + { + "label": "a man in a yellow shirt and wetsuit surfing", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a boy on a skateboard at a skate park at night", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a surfer is riding on a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a cat sitting on the bed with a blanket", + "pred": "a cat laying on top of a blanket on a bed" + }, + { + "label": "two men are posing for a photo, one man is holding a slice of pizza on a plate, and they are surrounded by other people sitting at tables", + "pred": "a man and a woman sitting at a table with a plate of food" + }, + { + "label": "the nightstand of a hotel room holds an unused class and an ice bucket", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a tennis playing tennis on a dirt court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "happy man standing on a tennis court holding a racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "the caramel-colored kitten is lying on the small blanket on top of the unmade bed", + "pred": "a cat laying on top of a blanket on a bed" + }, + { + "label": "a yellow cat is sitting on a green blanket", + "pred": "a cat laying on top of a blanket on a bed" + }, + { + "label": "orange and white cat lying in front of bookcase", + "pred": "a cat laying on top of a blanket on a bed" + }, + { + "label": "a male tennis player has just finished hitting the ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a darkly lit hotel bedroom that has a lamp, a little table, and a bed", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "woman in red outfit holding a tennis racket in her hand", + "pred": "a beautiful young woman holding a tennis racquet" + }, + { + "label": "a man surfing on a large wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfboard leans against a wheelbarrow on the lawn", + "pred": "an airplane is parked in a grassy area next to a fence" + }, + { + "label": "a man playing tennis on a red coat in all white", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "people enjoying the beach on a nice day", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a person holding a slice of pizza next to someone else posing for a photo", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "two tennis players on tennis court at net shaking hands", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a blue and white surfboard resting against a wheelbarrow in a backyard", + "pred": "an airplane is parked in a grassy area next to a fence" + }, + { + "label": "the man smiles with a slice of pizza while next to a friend", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "two men on a tennis court shaking hands over the net", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a sliced pizza in a box with different topings", + "pred": "a pizza in a box sitting on top of a table" + }, + { + "label": "lady wearing a red tennis outfit holding a racket and laughing", + "pred": "a beautiful young woman holding a tennis racquet" + }, + { + "label": "a person parachute surfing on a large body of water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a shirtless man doing skateboarding tricks near a stream", + "pred": "a man riding on the back of an elephant on a skateboard" + }, + { + "label": "lavishly decorated cake and empty drinking glasses await their tropical guests", + "pred": "a cake that is on top of a table" + }, + { + "label": "a young man about to kick a soccer ball on a green field", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "clear glasses on a table with a white cake with red flowers on it", + "pred": "a cake that is on top of a table" + }, + { + "label": "a man riding a wave on a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "man in a drysuit kite surfing in a rough ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a small two tier wedding cake is embellished with red flowers, on a table with stemware artfully arranged", + "pred": "a cake that is on top of a table" + }, + { + "label": "two men sitting at a table with one holding a plate with a slice of pizza on it", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "two friends sitting at diner eating a slice of pizza", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "two twin beds pushed together with white blankets and pillows on top of them", + "pred": "a hotel room with two beds and two lamps" + }, + { + "label": "three women are taking a bite out of the same piece of pizza", + "pred": "two women eating a slice of pizza together" + }, + { + "label": "dude ecstatic sitting by himself at a table full of food", + "pred": "a man sitting at a table with plates of food" + }, + { + "label": "a man riding a wave back to the shore", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "three beautiful young ladies eating one slice of pizza", + "pred": "two women eating a slice of pizza together" + }, + { + "label": "boy making high jumps with his skate board", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a guy jumping high into the air with skateboard", + "pred": "a man riding on the back of an elephant on a skateboard" + }, + { + "label": "a person riding a skate board at a skate park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a boy jumping high in the sky on his skate board", + "pred": "a man riding on the back of an elephant on a skateboard" + }, + { + "label": "a man riding the waves on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a kite surfer killin it while shreddin the gnar", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a cake near many glasses and cups wit ha sky background", + "pred": "a cake that is on top of a table" + }, + { + "label": "two girls that appear to be sharing food while another looks on", + "pred": "two women eating a slice of pizza together" + }, + { + "label": "a hot dog on a bun covered in ketchup and mustard", + "pred": "a hot dog sitting on top of a pile of paper" + }, + { + "label": "a surf boarder riding the crest of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a cat facing away from the camera, among blankets on a bed", + "pred": "a cat laying on top of a bed" + }, + { + "label": "a person grabbing a slice of pizza from a pizza box", + "pred": "a person holding a piece of pizza on top of a table" + }, + { + "label": "an open laptop computer sitting on top of a bed", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "women gathered together posing with 6 pizzas in take out boxes", + "pred": "three women and two men standing in front of boxes of pizzas" + }, + { + "label": "a young boy is playing soccer on a field", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "they are going to serve pizza for lunch today", + "pred": "a person holding a piece of pizza on top of a table" + }, + { + "label": "a large bed with white sheets and blankets", + "pred": "a hotel room with two beds and two lamps" + }, + { + "label": "beach scene with walkers on beach, boaters and swimmers", + "pred": "a person on a beach flying a kite" + }, + { + "label": "two beige plates with thick sandwich and mustard", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a skateboarder in a blue jacket is doing a trick", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a box of six pastries containing two chocolate doughnuts, one strawberry, one glaze, and two glazed crullers", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a skateboarder is in the air doing a trick in an artistic photo", + "pred": "a man riding on the back of an elephant on a skateboard" + }, + { + "label": "a barefoot woman eating food outside from a plate on her lap", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a single surfer is catching a small waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the hand of a person picking up the last two pieces of pizza", + "pred": "a person holding a piece of pizza on top of a table" + }, + { + "label": "four women stand behind boxes of large pizzas", + "pred": "three women and two men standing in front of boxes of pizzas" + }, + { + "label": "a person kicking up on their skateboard at the top of a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a skateboarder is turning his board at the top of a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a person is picking up a piece of pizza", + "pred": "a person holding a piece of pizza on top of a table" + }, + { + "label": "man cutting a cake on the table in the kitchen", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "a person rowing a kayak onto the shore of a beach", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a cat sleeping on a blanket on someone's bed", + "pred": "a cat laying on top of a bed" + }, + { + "label": "a man serving food from a table with the arm of woman around his chest", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "a brown cat is curled up on some bed sheets", + "pred": "a cat laying on top of a bed" + }, + { + "label": "a variety of donuts sit in a box", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a corned beef sandwich sits on a small plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a person taking a slice of pizza to eat", + "pred": "a person holding a slice of pizza" + }, + { + "label": "a fancy desert on a table with a number of drinking glasses", + "pred": "a cake that is on top of a table" + }, + { + "label": "a young man balances himself as he tilts his skateboard up at the edge of an obstacle", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man is cutting into a cake as someone hugs him", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "two blankets have been folded on a large bed", + "pred": "a hotel room with two beds and two lamps" + }, + { + "label": "six assorted donuts resting in the box they arrived in", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a lamp sitting next to a small bed with a book on top of it", + "pred": "a lamp sitting on top of a bed next to a book" + }, + { + "label": "a lamp shining light on a bed with a book on it", + "pred": "a lamp sitting on top of a bed next to a book" + }, + { + "label": "a man on a soccer field dressed in a soccer uniform kicking a soccer ball", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "the hotdog is drizzled with yellow mustard and ketchup", + "pred": "a hot dog sitting on top of a pile of paper" + }, + { + "label": "a painting of a skateboarder in the midst of a jump, and his surroundings", + "pred": "a man riding on the back of an elephant on a skateboard" + }, + { + "label": "a bedroom with a large bed sitting next to a black dresser", + "pred": "a hotel room with a bed and a desk" + }, + { + "label": "a laptop computer sitting on a quilt comforter on a bed", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a very interesting sandwich containing lots of vegetables", + "pred": "a sandwich with meat and vegetables on a white plate" + }, + { + "label": "women standing behind a table filled with pizza", + "pred": "three women and two men standing in front of boxes of pizzas" + }, + { + "label": "a corn beef sandwich sitting on a plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a large living room with leather couches and wood flooring", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a dozen doughnuts sits in a doughnut box and two are chocolate, three are glazed and one is a raised pink iced", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a stuffed sandwich is sitting on a styrofoam container", + "pred": "a sandwich with meat and vegetables on a white plate" + }, + { + "label": "a hand reaches out to grab a piece of pizza", + "pred": "a person holding a piece of pizza on top of a table" + }, + { + "label": "three women simultaneously take a bite of pizza", + "pred": "two women eating a slice of pizza together" + }, + { + "label": "a hand reaching into a box of donuts on a counter", + "pred": "a person holding a box filled with donuts" + }, + { + "label": "a living room filled with two leather couches on a hard wood floor", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "people enjoying a sunny day at a beach", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a person picking up an under cooked, floppy slice of pizza", + "pred": "a person holding a slice of pizza" + }, + { + "label": "a pretty young lady making a pizza next to a man in a kitchen", + "pred": "a woman is making a sandwich in a kitchen" + }, + { + "label": "a double bed with two pillows, two blankets and two lamps at the bed side", + "pred": "a hotel room with two beds and two lamps" + }, + { + "label": "crisp white bedding creates a stately environment when combined with a cherry ensemble", + "pred": "a hotel room with two beds and two lamps" + }, + { + "label": "a hot dog with condiments and confetti all around", + "pred": "a hot dog sitting on top of a pile of paper" + }, + { + "label": "four women stand together in front of pizzas", + "pred": "three women and two men standing in front of boxes of pizzas" + }, + { + "label": "advertising photograph of a surf-themed birthday cake from a bakery", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a small hotel room is furnished for business", + "pred": "a hotel room with a bed and a desk" + }, + { + "label": "a hotel suite with a desk sofa and bed", + "pred": "a hotel room with a bed and a desk" + }, + { + "label": "a birthday cake with a island design and theme", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a gourmet sandwich with fresh vegetables in a takeout box", + "pred": "a sandwich with meat and vegetables on a white plate" + }, + { + "label": "a hotel suite with balcony overlooking the scenery", + "pred": "a living room filled with furniture next to a lake" + }, + { + "label": "two people working to cook a pizza", + "pred": "a woman is making a sandwich in a kitchen" + }, + { + "label": "a hot dog sitting on a table covered in confetti", + "pred": "a hot dog sitting on top of a pile of paper" + }, + { + "label": "a book sitting on a bed with a lamp next to it", + "pred": "a lamp sitting on top of a bed next to a book" + }, + { + "label": "two people enjoying a wedding reception", + "pred": "a bride and groom cut their wedding cake together" + }, + { + "label": "a soccer player is about to kick a soccer ball", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "bedside with lamp, large bound book, and humidifier", + "pred": "a lamp sitting on top of a bed next to a book" + }, + { + "label": "a tennis player hits a high ball in front of an audience", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "three girls share a bite of pizza clowning for the camera", + "pred": "two women eating a slice of pizza together" + }, + { + "label": "a lady is taking a shot at doing her best tennis serve", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a surfer is para sailing along a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two plates of food on a table", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a person doing a skateboarding trick", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man playing soccer on a soccer field", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "a laptop sitting on a bed near a window", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "vegetables spill out of a sandwich sitting in a box", + "pred": "a sandwich with meat and vegetables on a white plate" + }, + { + "label": "the living room is spacious and clean with hardwood floors and seating on leather sofas", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a large white multi layered cake sitting on top of a table", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "a hot dog with mustard and catchup on it", + "pred": "a hot dog sitting on top of a pile of paper" + }, + { + "label": "people walking down a mountain road", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "a woman standing next to a young boy holding a knife", + "pred": "a woman standing next to a man holding a knife" + }, + { + "label": "a birthday cake decorated to look like an island with surfboards", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a white plate with a sliced up piece of food on top of it", + "pred": "a piece of bread sitting on top of a white plate" + }, + { + "label": "a box of donuts that is opened up", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a person playing in a tennis game", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a cat laying in bed on top of a blanket", + "pred": "a cat laying on top of a bed" + }, + { + "label": "person on tennis court preparing to return a volley", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a women is reaching to hit a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a player on a tennis court swings a racket", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a large living area with a bed and some couches", + "pred": "a living room filled with furniture next to a lake" + }, + { + "label": "a hotdog, fries and a drink sit on a table beside a book", + "pred": "a hot dog and french fries on a table" + }, + { + "label": "a double layer fondant cake decorated with stars", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "a woman tennis player hitting a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people standing near a table with open pizza boxes", + "pred": "two women and two men standing in front of a table full of pizzas" + }, + { + "label": "a young man riding a surfboard on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "different slices of pizza with a white sauce", + "pred": "a series of photos showing different types of pizza" + }, + { + "label": "a person that is eating some food sitting down", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "two boxes of takeout food are sitting on a park bench", + "pred": "a hot dog and french fries on a table" + }, + { + "label": "a living room with a wide open view", + "pred": "a living room filled with furniture next to a lake" + }, + { + "label": "the birthday cake has dark and light blue frosting", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a blue cake features a small island on top and sharks swimming on the bottom of the cake", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a man and a woman standing over two pizzas", + "pred": "a woman is making a sandwich in a kitchen" + }, + { + "label": "a room with a bed, a desk, and a television", + "pred": "a hotel room with a bed and a desk" + }, + { + "label": "a surfer wearing red and black shorts rides a white surf board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the woman is looking at the tennis ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "six different pictures of single slices of pizza", + "pred": "a series of photos showing different types of pizza" + }, + { + "label": "a woman sitting in a chair with a plate of food on her lap", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a paper container filled with two hot dogs", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "an open faced corn beef sandwich sits on a white plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a slice of pizza on a plate", + "pred": "a series of photos showing different types of pizza" + }, + { + "label": "two brown leather couches in a living room", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a cake with fondant stars cut out on white fondant", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "a person making thin crust pizza in a kitchen", + "pred": "a woman is making a sandwich in a kitchen" + }, + { + "label": "pictures containing several different types of pizza", + "pred": "a series of photos showing different types of pizza" + }, + { + "label": "a woman in a wedding dress with another woman in a suit behind", + "pred": "a bride and groom cut their wedding cake together" + }, + { + "label": "a cat is lying covered in bed with white sheets", + "pred": "a cat laying on top of a bed" + }, + { + "label": "a man holding a paper bag while showing the camera a toothbrush", + "pred": "a man sitting on a couch holding a cell phone" + }, + { + "label": "a man slices and serves a birthday cake", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "pictures of several different types of quiche prepared differently", + "pred": "a series of photos showing different types of pizza" + }, + { + "label": "a sandwich of meat, carrots, cilantro and cucumber", + "pred": "a sandwich with meat and vegetables on a white plate" + }, + { + "label": "a woman holding a tennis racquet on a tennis court", + "pred": "a tennis player in action on the court" + }, + { + "label": "a living room with white furniture and a small wooden table", + "pred": "a living room filled with furniture next to a lake" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a young boy holding a tennis racquet on a tennis court" + }, + { + "label": "a cupcake with pink frosting topped with a candy yellow star", + "pred": "a cupcake sitting on top of a white plate" + }, + { + "label": "a woman in a wet suit carrying a surfboard into the ocean", + "pred": "a person standing on a surfboard in the ocean" + }, + { + "label": "a woman in sunglasses sitting in a chair and holding a plate", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a cake with blue, yellow and green fondant stars on it", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "a barefoot, smiling woman eats food off of a paper plate while sitting under a porch", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a bedroom suite with balcony and lovely view", + "pred": "a living room filled with furniture next to a lake" + }, + { + "label": "a man dodges waves on a surf board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tray filled with croissants with hotdogs in the middle", + "pred": "a display case filled with lots of different types of pastries" + }, + { + "label": "a cupcake with frosting and a star on top", + "pred": "a cupcake sitting on top of a white plate" + }, + { + "label": "a bedroom with a book on the bed", + "pred": "a lamp sitting on top of a bed next to a book" + }, + { + "label": "a paper box holding hot dogs and french fries", + "pred": "a hot dog and french fries on a table" + }, + { + "label": "a man playing tennis on the tennis court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a woman entering the ocean with a surfboard", + "pred": "a person standing on a surfboard in the ocean" + }, + { + "label": "hotel room scene, efficiency, queen bed, sofa, table/desk, tv, in brown tone room", + "pred": "a hotel room with a bed and a desk" + }, + { + "label": "a boy playing tennis runs to hit the ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "boxed hotdog, fries and a drink are set out for daytime reading", + "pred": "a hot dog and french fries on a table" + }, + { + "label": "bedroom scene of bed with laptop computer on the side", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a burrito french fries and a cup of fruit", + "pred": "a tray of food on a table" + }, + { + "label": "people holding skis and snow boards on a snowy surface", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a person in a wheel chair swinging a tennis racket", + "pred": "a woman sitting on a tennis court holding a racquet" + }, + { + "label": "a young man surfing on a small patch of rough water in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two hot dogs garnishing with sesame seeds and green things", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a person reaching into an open box of doughnuts", + "pred": "a person holding a box filled with donuts" + }, + { + "label": "three pastry desserts and two glasses of wine are on a table", + "pred": "a white plate topped with a slice of cake next to a glass of wine" + }, + { + "label": "a person hugging another while cutting a cake", + "pred": "a man and woman preparing food in a kitchen" + }, + { + "label": "a lady in a wheelchair holding a tennis racket", + "pred": "a woman sitting on a tennis court holding a racquet" + }, + { + "label": "two plates, one paired up with red wine and one paired with white wine", + "pred": "a white plate topped with a slice of cake next to a glass of wine" + }, + { + "label": "twp cake pans sitting and cooling on the stove", + "pred": "a pan filled with food on top of a stove" + }, + { + "label": "a young man sitting in a chair holding a toothbrush", + "pred": "a man sitting on a couch holding a cell phone" + }, + { + "label": "two people are in a wheelchair and only one of them is holding a racket", + "pred": "a woman sitting on a tennis court holding a racquet" + }, + { + "label": "a burrito and potato wedges", + "pred": "a tray of food on a table" + }, + { + "label": "man in shorts and a t-shirt surfing in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is holding a toothbrush and a paper bag while seated", + "pred": "a man sitting on a couch holding a cell phone" + }, + { + "label": "a wrap served with a container of bacon and another container of vegetables", + "pred": "a tray of food on a table" + }, + { + "label": "a sandwich on toasted bread, with a salad and a bottle of water", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a woman in a wedding dress with another lady holding a piece of cake", + "pred": "a bride and groom cut their wedding cake together" + }, + { + "label": "a living room with brown, leather furniture and a red wall", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "people attend the ski event dressed in warm clothing", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a table topped with a cut in half burrito next to cup of veggies", + "pred": "a tray of food on a table" + }, + { + "label": "a plaid comforter with a laptop sitting on it", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "creepy large doll heads laying in giant oversized fake beds", + "pred": "a man laying on a bed in a hospital bed" + }, + { + "label": "a small child on a skateboard photoshopped over a street image", + "pred": "a boy riding a skateboard on top of a parking lot" + }, + { + "label": "a table has a hot dog and french fries on it", + "pred": "a hot dog and french fries on a table" + }, + { + "label": "a pastry displayed on a wood table in a store setting", + "pred": "a display case filled with lots of different types of pastries" + }, + { + "label": "a meal with a cheesy sandwich, salad, and water", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a young boy with a gold shirt is on a purple skateboard", + "pred": "a boy riding a skateboard on top of a parking lot" + }, + { + "label": "a grilled panini sits next to a glass of wine on a table", + "pred": "a white plate topped with a slice of cake next to a glass of wine" + }, + { + "label": "a woman in a wheelchair holding a tennis racquet", + "pred": "a woman sitting on a tennis court holding a racquet" + }, + { + "label": "two dachshunds and a cat sleep on a bed", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "troisgros are piled up for sale at a busy market", + "pred": "a display case filled with lots of different types of pastries" + }, + { + "label": "a little kid that is on a skateboard", + "pred": "a boy riding a skateboard on top of a parking lot" + }, + { + "label": "giant dolls sitting in giant beds next to a man wearing an orange safety vest", + "pred": "a man laying on a bed in a hospital bed" + }, + { + "label": "desserts on white plates near a glass of wine", + "pred": "a white plate topped with a slice of cake next to a glass of wine" + }, + { + "label": "a young man seated in a gray chair holding a toothbrush", + "pred": "a man sitting on a couch holding a cell phone" + }, + { + "label": "young man wearing glasses holding up a toothbrush", + "pred": "a man sitting on a couch holding a cell phone" + }, + { + "label": "people including small children wearing ski equipment standing in the snow", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a burrito along with some other spanish foods", + "pred": "a tray of food on a table" + }, + { + "label": "a kid on a surboard riding a little wave", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "a person walking on a snow covered field", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a red head girl holding a piece of cake", + "pred": "a bride and groom cut their wedding cake together" + }, + { + "label": "a man walking across a snowy mountain road", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a sandwich and salad sit on a plate next to a glass of water and a water bottle", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "pets such as digs that are sleeping in the bef", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "a young surf boarder is riding in the water", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "a young surfer boy has rode the wave into shore", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "a boy riding a wave on a surfboard", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "a young boy catching a small wave on his surfboard", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "pasteries with winnies inside of them on display for sale", + "pred": "a display case filled with lots of different types of pastries" + }, + { + "label": "two sandwiches on a starbucks plate", + "pred": "a piece of bread sitting on top of a white plate" + }, + { + "label": "a box filled with glazed doughnuts", + "pred": "a person holding a box filled with donuts" + }, + { + "label": "a girl sitting in a wheelchair is playing tennis", + "pred": "a woman sitting on a tennis court holding a racquet" + }, + { + "label": "people is standing on the side of a road", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "a woman and child are about to cut a cake", + "pred": "a woman standing next to a man holding a knife" + }, + { + "label": "a sandwich and vegetables on a plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a young boy riding a skateboard on a sidewalk", + "pred": "a boy riding a skateboard on top of a parking lot" + }, + { + "label": "a bride is with a long red haired person with cake", + "pred": "a bride and groom cut their wedding cake together" + }, + { + "label": "man with a hot dog in a paper rapper in his hand", + "pred": "a man holding a sandwich in his right hand" + }, + { + "label": "three beds in a street with cartoon figures in the bed", + "pred": "a man laying on a bed in a hospital bed" + }, + { + "label": "three laptop computers and a desktop computer sit next to each other", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a person riding a snow board on a snowy slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a young skateboarder isn't much bigger than his board", + "pred": "a boy riding a skateboard on top of a parking lot" + }, + { + "label": "a man holds a tennis racket on a tennis court", + "pred": "a young boy holding a tennis racquet on a tennis court" + }, + { + "label": "a man standing on a clay tennis court with a racquet", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "multiple plates of food on a wooden table", + "pred": "a white plate topped with a slice of cake next to a glass of wine" + }, + { + "label": "four computers are turned on on a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a office with three computers spread out everywhere", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a man on a snowboard on a groomed slope", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "two small dogs and a cat sleeping on a bed", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "people standing outside a ski resort on skies in the snow", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a snow boarder is going down the slope on his board", + "pred": "a person riding skis down a snow covered slope" + }, + { + "label": "a woman that is next to a boy", + "pred": "a woman standing next to a man holding a knife" + }, + { + "label": "a crowd of people wearing winter cloths are outside in the snow as some people carry snowboards", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "old baseball bats are turned into a seat", + "pred": "a wooden table topped with a christmas tree" + }, + { + "label": "a couple stands next to a wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a woman holding a cake", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "a man is eating a loaded hot dog with people around him in a line", + "pred": "a man holding a sandwich in his right hand" + }, + { + "label": "dogs sleeping together on a bed next to eachother", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "a man is working on some parade floats", + "pred": "a man laying on a bed in a hospital bed" + }, + { + "label": "a man taking a swing at a tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a pile of food sitting on top of a table next to a glass of wine", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a woman wearing glasses poses behind her birthday cake", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "a person that is eating some food in his hands", + "pred": "a man holding a sandwich in his right hand" + }, + { + "label": "a man pulling a slice of pizza away from a pizza", + "pred": "a person holding a slice of pizza" + }, + { + "label": "three dogs are sleeping across the length of the bed", + "pred": "a dog that is laying down on a bed" + }, + { + "label": "a bride and groom near their wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "four computers and keyboards arranged on a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a woman in glasses sitting behind a sheet cake", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "2 tier cake with multicolored stars attached to it", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "a wedding cake with fresh flower sitting on a table", + "pred": "a wedding cake with flowers on top of it" + }, + { + "label": "computers that are on a computer desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a young bearded man holding a partially eaten hot dog", + "pred": "a man holding a sandwich in his right hand" + }, + { + "label": "two snow boarders during a snowy day at the hill", + "pred": "two people sitting on a snow covered slope on skis" + }, + { + "label": "a plate of food that is on a table", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a cake is shown with three tiers and flowers", + "pred": "a wedding cake with flowers on top of it" + }, + { + "label": "a couple that is posing for a picture", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "two people standing on a beach next to the ocean", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a cupcake with pink icing in a pink paper cupcake holder next to a spoon", + "pred": "a cupcake sitting on top of a white plate" + }, + { + "label": "a chicken parmesan sandwich with a salad and a glass of water", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a wedding cake has pink and white flowers on it", + "pred": "a wedding cake with flowers on top of it" + }, + { + "label": "a chair is made of bats and baseball bases", + "pred": "a wooden table topped with a christmas tree" + }, + { + "label": "hand reaching into a box to pick up a glazed donut", + "pred": "a person holding a box filled with donuts" + }, + { + "label": "white pastries sitting on top of a white plate with silverware", + "pred": "a piece of bread sitting on top of a white plate" + }, + { + "label": "a person riding a snowboard into the air next to a tall building", + "pred": "a person on skis jumping in the air" + }, + { + "label": "two people sitting in the snow beside their skis", + "pred": "two people sitting on a snow covered slope on skis" + }, + { + "label": "a man and a woman take a picture with their wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "donuts layed to dry on a grill", + "pred": "a pile of donuts sitting on top of a counter" + }, + { + "label": "a chair is fashioned from baseball bats and two cushions", + "pred": "a wooden table topped with a christmas tree" + }, + { + "label": "a surfer carries his board while watching another surfer in the water", + "pred": "a person standing on a surfboard in the ocean" + }, + { + "label": "spectators are watching a snowboard competition of the olympics", + "pred": "a person on a snowboard in the middle of a race" + }, + { + "label": "a married couple is in front of a wedding cake getting ready to cut it", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "two people on skis falling in the snow", + "pred": "two people sitting on a snow covered slope on skis" + }, + { + "label": "a woman holding something out in her hand", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "a woman holding a knife about to cut some cake", + "pred": "a woman standing next to a man holding a knife" + }, + { + "label": "person reaching into a basket filled with doughnuts", + "pred": "a person holding a box filled with donuts" + }, + { + "label": "dishes are sitting on a stove", + "pred": "a pan filled with food on top of a stove" + }, + { + "label": "a pregnant woman laying in bed reading a book", + "pred": "a woman laying on a bed with a laptop" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a wedding cake is shown with pink petals", + "pred": "a wedding cake with flowers on top of it" + }, + { + "label": "a man with a beard is holding a hot dog with pickles and mustard", + "pred": "a man holding a sandwich in his right hand" + }, + { + "label": "a multi- tiered features pink and white flowers", + "pred": "a wedding cake with flowers on top of it" + }, + { + "label": "a plate topped with three hot dogs on top of a table", + "pred": "a hot dog on a bun with mustard and ketchup" + }, + { + "label": "toys and a box", + "pred": "a wooden table topped with a christmas tree" + }, + { + "label": "a tennis match takes place on an orange court with full stands", + "pred": "a tennis player in action on the court" + }, + { + "label": "a man standing with a racket on a court", + "pred": "a young boy holding a tennis racquet on a tennis court" + }, + { + "label": "a pile of a pigs in a blanket", + "pred": "a display case filled with lots of different types of pastries" + }, + { + "label": "a cute little blond girl sitting next to a pizza", + "pred": "a little girl sitting at a table with a pizza" + }, + { + "label": "a man riding a surfboard inside of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "someone snowboarding and jumping inside a half pipe", + "pred": "a person on a snowboard in the middle of a race" + }, + { + "label": "a young girl eating a slice of pizza", + "pred": "a young girl eating a slice of pizza" + }, + { + "label": "a black-and white picture of a rack full of doughnuts", + "pred": "a pile of donuts sitting on top of a counter" + }, + { + "label": "a rack topped with glazed donuts sitting side by side", + "pred": "a pile of donuts sitting on top of a counter" + }, + { + "label": "two white cushions on a chair made of baseball bats", + "pred": "a wooden table topped with a christmas tree" + }, + { + "label": "a half pipe snowboarder performing tricks in a show", + "pred": "a person on a snowboard in the middle of a race" + }, + { + "label": "people crossing a road with one person having food in their hand", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "a woman in a tan sweater holding a knife by a young boy in a plaid shirt", + "pred": "a woman standing next to a man holding a knife" + }, + { + "label": "two girls and a boy have fun at soccer practice", + "pred": "young men playing a game of soccer" + }, + { + "label": "a hot dog is on a plate with macaroni and cheese", + "pred": "a plate of food on a table" + }, + { + "label": "a ski is laying loose while two people struggle to get up", + "pred": "two people sitting on a snow covered slope on skis" + }, + { + "label": "a worker tends to large figures placed in oversized beds", + "pred": "a man laying on a bed in a hospital bed" + }, + { + "label": "a person holding two hotdogs in a platter", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "fork, spoon and knife surround a plate of picnic food", + "pred": "a plate of food on a table" + }, + { + "label": "a cupcake has pink icing and a star on top", + "pred": "a cupcake sitting on top of a white plate" + }, + { + "label": "a large bed with two lamps on either side lighting the room", + "pred": "a bed with a white comforter on top of it" + }, + { + "label": "two cakes on the stove", + "pred": "a pan filled with food on top of a stove" + }, + { + "label": "a computer with an image of lighting on the screen", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "two people are out skiing in the cold. one appears to have possibly crashed", + "pred": "two people sitting on a snow covered slope on skis" + }, + { + "label": "a grill of doughnuts", + "pred": "a pile of donuts sitting on top of a counter" + }, + { + "label": "a young girl with a green jacket eating a piece of pepperoni pizza", + "pred": "a young girl eating a slice of pizza" + }, + { + "label": "a life guard station with a surf boar and a floatee", + "pred": "a yellow surfboard sitting on top of a beach next to the ocean" + }, + { + "label": "lifesaving devices are stowed along a beach while a lifeguard is elsewhere", + "pred": "a yellow surfboard sitting on top of a beach next to the ocean" + }, + { + "label": "a couple dozen of glazed donuts on a wire rack", + "pred": "a pile of donuts sitting on top of a counter" + }, + { + "label": "a plate of some food on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a lifeguard post is empty next to water", + "pred": "a yellow surfboard sitting on top of a beach next to the ocean" + }, + { + "label": "a man on a tennis court playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two chili dogs in buns with peppers in a cardboard container", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a person that is surfing in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a bed that is very nice and clean", + "pred": "a bed with a white comforter on top of it" + }, + { + "label": "a pressed sandwich on a plate next to an iced coffee at starbucks", + "pred": "a piece of bread sitting on top of a white plate" + }, + { + "label": "a plate with a hot dog in a bun, macaroni and cheese and stuffing on it", + "pred": "a plate of food on a table" + }, + { + "label": "two twin beds with no comforters on them", + "pred": "a white bed sitting in a room next to a window" + }, + { + "label": "a person that is going out in the water", + "pred": "a person in a wetsuit with a surfboard in the water" + }, + { + "label": "surfer in board shorts walking in to the ocean", + "pred": "a person in a wetsuit with a surfboard in the water" + }, + { + "label": "a bed room with a neatly made bed with night stands", + "pred": "a bed with a white comforter on top of it" + }, + { + "label": "a hotel room bed with white linens, and a white desk beside it", + "pred": "a white bed sitting in a room next to a window" + }, + { + "label": "a man taking a swing at a tennis ball", + "pred": "a young boy holding a tennis racquet on a tennis court" + }, + { + "label": "traditional american comfort food arranged on a plate", + "pred": "a plate of food on a table" + }, + { + "label": "a man holding a surfboard walking into the ocean", + "pred": "a person in a wet suit holding a surfboard" + }, + { + "label": "a man holding a yellow surfboard walking into the ocean", + "pred": "a person in a wet suit holding a surfboard" + }, + { + "label": "a girl takes a bite of her pepperoni pizza", + "pred": "a young girl eating a slice of pizza" + }, + { + "label": "a disorderly living area is free from decorative elements", + "pred": "a living room filled with furniture and a laptop" + }, + { + "label": "a little girl eating a slice of pizza in a room", + "pred": "a young girl eating a slice of pizza" + }, + { + "label": "a man riding the ocean waves on his surfboard", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a person holding a surf board in a body of water", + "pred": "a person in a wet suit holding a surfboard" + }, + { + "label": "lifeguard station on a beach overlooking a swimming area", + "pred": "a yellow surfboard sitting on the beach" + }, + { + "label": "a neat and tidy bed in a hotel room", + "pred": "a bed with two pillows and a lamp" + }, + { + "label": "young children run on a field with a soccer ball", + "pred": "young men playing a game of soccer" + }, + { + "label": "a man on a surfboard surfing a wave in the ocean", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man about to hit a tennis ball in front of a crowd", + "pred": "a man swinging a tennis racket at a ball" + }, + { + "label": "a man is surfing on a small wave", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "tennis game on clay court, player waiting to respond from severing player", + "pred": "a tennis player in action on the court" + }, + { + "label": "a sandwich and iced beverage lunch at starbucks", + "pred": "a white plate topped with a slice of pizza" + }, + { + "label": "a person riding a snowboard down a snow covered ramp", + "pred": "a person on a snowboard in the air" + }, + { + "label": "a person in a snow sporting event is going rapidly down this show chute-type course as people watch from the sidelines", + "pred": "a person on a snowboard in the air" + }, + { + "label": "the bed has been neatly made and the pillows arranged", + "pred": "a bed with two pillows and a lamp" + }, + { + "label": "the tennis player is running to meat the ball", + "pred": "a tennis player in action on the court" + }, + { + "label": "a bedroom with two small beds right next to each other", + "pred": "a neatly made bed in a small room" + }, + { + "label": "a man eating a giant piece of bread", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a young boy sitting at a laptop computer", + "pred": "a baby is playing with a laptop computer" + }, + { + "label": "a display of various hot dogs in serving platters", + "pred": "a plate of hot dogs on a table" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a tennis player in action on the court" + }, + { + "label": "a wide view of two women playing tennis on an orange tennis court", + "pred": "a tennis player in action on the court" + }, + { + "label": "a bedroom with two beds placed next to one another with a desk to one side and a small window on the opposite side", + "pred": "a neatly made bed in a small room" + }, + { + "label": "a desktop computer surrounded by two speakers and a keyboard", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a cutting board with pizza and a glass of wine", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "three sausages covered in various condiments side by side", + "pred": "a plate of hot dogs on a table" + }, + { + "label": "a man that is surfing in the water", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "children in green jerseys play soccer at the park", + "pred": "young men playing a game of soccer" + }, + { + "label": "small children in green uniforms running on a soccer field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a man riding a wave on a surfboard", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "the surfer is riding the wave sideways along the beach", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a small living space with a couch, desk, chair, and bookcase", + "pred": "a living room filled with furniture and a laptop" + }, + { + "label": "small girl in green shirt holding a slice of pizza to her face", + "pred": "a young girl eating a slice of pizza" + }, + { + "label": "a little kid that is on the phone and computer", + "pred": "a baby is playing with a laptop computer" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a man holding a tennis racket on a court" + }, + { + "label": "a woman sitting at a table topped with pizza", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "a white bed in a small hotel room", + "pred": "a neatly made bed in a small room" + }, + { + "label": "a guy is hold up a big pastry to is mouth", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a surfer in a wetsuit sliding through the water", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "young girls playing a game of soccer", + "pred": "young men playing a game of soccer" + }, + { + "label": "a cordoned swimming area with warning sign and lifeguarding equipment", + "pred": "a yellow surfboard sitting on the beach" + }, + { + "label": "the young woman is riding the dolphin in the water", + "pred": "a woman on a surfboard in the water" + }, + { + "label": "a woman is standing on a dolphins head", + "pred": "a woman on a surfboard in the water" + }, + { + "label": "an apple desktop computer system is turned on with a monitor, keyboard, mouse, two speakers, and other peripherals", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a surfer in a white shirt surfing on a sunny day", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a table with three boxes of pizza", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "a man crouches actively as he plays tennis", + "pred": "a tennis player in action on the court" + }, + { + "label": "three sausages in buns are covered with various toppings", + "pred": "a plate of hot dogs on a table" + }, + { + "label": "a man on a surfboard riding an ocean wave", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a laptop computer in a room with a couch and a bookcase", + "pred": "a living room filled with furniture and a laptop" + }, + { + "label": "a crowd of people watching an indoor tennis match", + "pred": "a tennis player in action on the court" + }, + { + "label": "a person is eating a gigantic pastry next to a chair", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a metal tray filled with fried donuts and metal tongs", + "pred": "different types of donuts in a fryer" + }, + { + "label": "a counter topped with a large white frosted cake sitting next to small pastry", + "pred": "a display case filled with cakes and pastries" + }, + { + "label": "a little girl sitting on top of a bed next to a lamp", + "pred": "a woman sitting on a bed in a bedroom" + }, + { + "label": "young men playing a game of soccer", + "pred": "young men playing a game of soccer" + }, + { + "label": "a white tent with a row of surfboards sitting under it", + "pred": "a row of tents with umbrellas" + }, + { + "label": "a desktop computer is sitting on a desk", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a container of indian fried pastries and tongs", + "pred": "different types of donuts in a fryer" + }, + { + "label": "a man riding a surfboard on a wave in the ocean", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a desk with multiple computers and cell phones", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a cupcake in a red liner with pink frosting and a star on top", + "pred": "a cupcake sitting on top of a white plate" + }, + { + "label": "an elderly woman seated at a table holding three pizzas", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "people running in the grass playing soccer", + "pred": "young men playing a game of soccer" + }, + { + "label": "donuts in a staging area with a pair of tongs near them", + "pred": "different types of donuts in a fryer" + }, + { + "label": "three hot dogs with different toppings lined up on a tabletop", + "pred": "a plate of hot dogs on a table" + }, + { + "label": "a woman holding up a cake for her birthday", + "pred": "a woman sitting at a table with a cake" + }, + { + "label": "a pregnant woman in bed reading a book", + "pred": "a woman laying on a bed with a laptop" + }, + { + "label": "a man taking a swing at a tennis ball", + "pred": "a man on a court with a tennis racket" + }, + { + "label": "a tennis player standing and looking across the court", + "pred": "a boy on a court with a tennis racket" + }, + { + "label": "a woman in a wet suit standing on a dolphins head", + "pred": "a woman on a surfboard in the water" + }, + { + "label": "fried doughnuts in a pan to buy", + "pred": "different types of donuts in a fryer" + }, + { + "label": "two opponents are playing during a soccor game", + "pred": "a man kicking a soccer ball in the air" + }, + { + "label": "a man hitting a soccer ball with his head", + "pred": "a man kicking a soccer ball in the air" + }, + { + "label": "three hotdogs are prepared and loaded in different ways", + "pred": "a plate of hot dogs on a table" + }, + { + "label": "a man on skis' doing tricks", + "pred": "a person on skis jumping in the air" + }, + { + "label": "a little boy talking on the phone and playing with a computer", + "pred": "a baby is playing with a laptop computer" + }, + { + "label": "a surfer on a surfboard in a pipeline", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a young man with long hair taking a bite out of a full loaf of bread", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a grandmother looks at her family's pizza dinner", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "doughnuts in a silver pan with serving tongs", + "pred": "different types of donuts in a fryer" + }, + { + "label": "three hot dogs with mustard", + "pred": "a hot dog covered in ketchup and mustard" + }, + { + "label": "soccer players try to gain possession of the ball", + "pred": "a man kicking a soccer ball in the air" + }, + { + "label": "a simple room with minimal decor and furniture", + "pred": "a living room filled with furniture and a laptop" + }, + { + "label": "a female surfer dressed in black riding a small wave", + "pred": "a woman on a surfboard in the water" + }, + { + "label": "a tennis player makes a quick shuffle to return the ball", + "pred": "a tennis player in action on the court" + }, + { + "label": "a young man is taking a picture of a large pizza", + "pred": "a man is taking a picture of a pizza" + }, + { + "label": "surfboards lined up in a rack at a competition", + "pred": "a row of tents with umbrellas" + }, + { + "label": "a woman rides the nose of a dolphin in a show", + "pred": "a woman on a surfboard in the water" + }, + { + "label": "pizza and empty glasses on the dinner table", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "a pregnant woman is in bed reading a large book", + "pred": "a woman laying on a bed with a laptop" + }, + { + "label": "a tennis player is standing close to the net", + "pred": "a man on a court with a tennis racket" + }, + { + "label": "young men avidly playing soccer on a green field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a little girl sitting on a bed inside a room", + "pred": "a woman sitting on a bed in a bedroom" + }, + { + "label": "a baby has one hand on a computer and holds a cellphone in the other hand", + "pred": "a baby is playing with a laptop computer" + }, + { + "label": "a small room with a computer and bookcase", + "pred": "a living room filled with furniture and a laptop" + }, + { + "label": "two people playing soccer", + "pred": "a man kicking a soccer ball in the air" + }, + { + "label": "a woman sitting in a chair in front of a tv", + "pred": "a woman sitting on a couch in a room" + }, + { + "label": "man photographing a fresh pizza his tired buddy just wants to eat", + "pred": "a man is taking a picture of a pizza" + }, + { + "label": "a woman walks down the water with a surfboard", + "pred": "a person with a surfboard in the water" + }, + { + "label": "a tennis player is serving a tennis ball", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a row of assorted baked goods is behind glass at a store", + "pred": "a display case filled with cakes and pastries" + }, + { + "label": "a pizza has been topped with ham near a large glass of wine", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a little kid holding up two hot dogs in buns", + "pred": "a young girl holding a hot dog in her hands" + }, + { + "label": "a man surfing through a very large wave that is coming over his head", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "two pots of food on a stove", + "pred": "a stove with a bunch of pans on it" + }, + { + "label": "a table topped with a pizza surrounded by men", + "pred": "a man is taking a picture of a pizza" + }, + { + "label": "a person hitting a tennis ball with a racquet", + "pred": "a man swinging a tennis racket at a ball" + }, + { + "label": "a girl is sitting on a bed with a game on it", + "pred": "a woman sitting on a bed in a bedroom" + }, + { + "label": "a window with a cake and other baked goods showing", + "pred": "a display case filled with cakes and pastries" + }, + { + "label": "a person on a flowered chair is watching an old television", + "pred": "a woman sitting on a couch in a room" + }, + { + "label": "man in a hotel room about to bite into a large pastry", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "player about to serve in a tennis game on a dirt court", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a woman sits on a chair and watches a vintage tv", + "pred": "a woman sitting on a couch in a room" + }, + { + "label": "a girl sitting on a bed in a room", + "pred": "a woman sitting on a bed in a bedroom" + }, + { + "label": "a blue-eyed toddler talks on the cellphone while he types something on the laptop", + "pred": "a baby is playing with a laptop computer" + }, + { + "label": "playing board games while the iron heats up in the bedroom", + "pred": "a woman sitting on a bed in a bedroom" + }, + { + "label": "a pregnant woman laying in bed reading a book", + "pred": "a woman laying on a bed with a laptop" + }, + { + "label": "a man in black shirt and blue shorts playing tennis", + "pred": "a man on a court with a tennis racket" + }, + { + "label": "a monitor is displaying a blue screen on the desktop as it sits next to two speakers, a keyboard and a mouse", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "three hotdgs on a dark plate have been topped with mustard", + "pred": "a hot dog covered in ketchup and mustard" + }, + { + "label": "two men jumping up to head a soccer ball", + "pred": "a man kicking a soccer ball in the air" + }, + { + "label": "the young girl smiles brightly with a plate of pizza", + "pred": "a little girl sitting at a table eating pizza" + }, + { + "label": "two surfers stand with their surfboards on a beach", + "pred": "a man holding a surfboard on a beach" + }, + { + "label": "a soccer game with players from both teams going after the ball and other players close behind", + "pred": "young men playing a game of soccer" + }, + { + "label": "people on a beach and a line of surfboards", + "pred": "a row of tents with umbrellas on top of them" + }, + { + "label": "boxes of doughnuts in a line on a table", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a surfer rides his board inside an arching wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a hefty rugby player in red shirt and black shorts in the air", + "pred": "a man holding a soccer ball while standing on a field" + }, + { + "label": "professional tennis player on clay serving the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people looking into the front window display of a bakery", + "pred": "a display case with a variety of desserts on it" + }, + { + "label": "a guy being held up with a ball in his hands", + "pred": "a man holding a soccer ball while standing on a field" + }, + { + "label": "a white plate topped with a toy hot dog in a toy bun", + "pred": "a small child is eating a piece of cake" + }, + { + "label": "a tennis player strikes the ball with his racket", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "slices of meat are on top of a pizza", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a woman sitting sideways in a chair in front of her tv", + "pred": "a woman sitting on a couch in a living room" + }, + { + "label": "a person jumping skis in the air with a building", + "pred": "a person on skis jumping in the air" + }, + { + "label": "a row of several types of pastries on display", + "pred": "a display case with a variety of desserts on it" + }, + { + "label": "an open box of doughnuts on a wooden table", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a soccer player preparing to kick a soccer ball as an opposing player runs along side", + "pred": "young men playing a game of soccer" + }, + { + "label": "a pregnant woman laying in bed reading a book", + "pred": "a woman laying on a bed with a laptop" + }, + { + "label": "a man standing in the middle of a tennis court with a large crowd watching", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "three hotdogs with mustard on a black plate", + "pred": "a hot dog on a bun with mustard and ketchup" + }, + { + "label": "a hald eaten corn and a sandwich on the plae", + "pred": "a piece of pizza sitting on top of a plate" + }, + { + "label": "meal with corn on the cob placed on a plate", + "pred": "a piece of pizza sitting on top of a plate" + }, + { + "label": "a computer desk with a laptop, desktop monitors and a television", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a person is stiing on a couch watching tv", + "pred": "a woman sitting on a couch in a living room" + }, + { + "label": "men are holding up a team member", + "pred": "a man holding a soccer ball while standing on a field" + }, + { + "label": "a male tennis player reaching up to hit the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "two people on beach holding surfboards under their arms", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a guy taking a picture of a very big pizza", + "pred": "a man sitting at a table with a pizza in front of him" + }, + { + "label": "a woman in glasses holding up a cake with frosting", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "surfboards under and awning", + "pred": "a row of tents with umbrellas on top of them" + }, + { + "label": "a tennis player get ready to serve the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a tennis player taking a swing a the ball during a tennis match", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "three hot dogs with mustard", + "pred": "a hot dog on a bun with mustard and ketchup" + }, + { + "label": "a boy standing in front of his class holding a hot dog in each hand", + "pred": "a young boy holding a hot dog in front of a group of people" + }, + { + "label": "a table with food and a glass of red wine", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a tennis player wearing all white reaches hi racket up to a ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a piece of eaten corn next to a bunch of mixed veggies", + "pred": "a piece of pizza sitting on top of a plate" + }, + { + "label": "two people sitting at a table with a pizza pie", + "pred": "a man sitting at a table with a pizza in front of him" + }, + { + "label": "a corn on the cob that has been eating", + "pred": "a piece of pizza sitting on top of a plate" + }, + { + "label": "two men hold up a man holding a soccer ball and all the men have on orange shirts", + "pred": "a man holding a soccer ball while standing on a field" + }, + { + "label": "a plate topped with a half eaten corn cob and meat", + "pred": "a piece of pizza sitting on top of a plate" + }, + { + "label": "two little girls holding up chocolate and vanilla donuts", + "pred": "a little girl holding up a chocolate frosted donut to her face" + }, + { + "label": "a white tent cover and many surfboards in a rack and people", + "pred": "a row of tents with umbrellas on top of them" + }, + { + "label": "someone who is on a snowboard midair doing a trick", + "pred": "a person on skis jumping in the air" + }, + { + "label": "this workstation features three desktop monitors with a single keyboard as well as a laptop computer", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a pizza sitting on top of a round cutting board", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a bed in a ten with a colorful ceiling", + "pred": "a bed in a room with blue walls" + }, + { + "label": "a male is wearing white and playing tennis", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "the team mates are lifting up one of their members", + "pred": "a man holding a soccer ball while standing on a field" + }, + { + "label": "an asian child brushes their teeth with a blue toothbrush", + "pred": "a little girl brushing her teeth with a blue toothbrush" + }, + { + "label": "a small room with different types of furniture and appliances that it makes it hard to tell what type of room it is", + "pred": "a room with a desk and a bed" + }, + { + "label": "a child is holding two hot dogs up to the photographer", + "pred": "a young boy holding a hot dog in front of a group of people" + }, + { + "label": "people standing in an over cast ski looking out to sea with surf boards", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a person holds a plastic hot dog in a plastic bun", + "pred": "a small child is eating a piece of cake" + }, + { + "label": "a man reaches his tennis racket up to hit the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a child plays with a toy picnic set including a plastic hotdog", + "pred": "a small child is eating a piece of cake" + }, + { + "label": "a guy throws a tennis ball in the air to hit it", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people standing on a snow covered hill", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "an older man catching a fast moving tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a kid is holding two hot dogs in a room of kids", + "pred": "a young boy holding a hot dog in front of a group of people" + }, + { + "label": "young people playing a game of soccer", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a plate holding a sandwich on a blue mat", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "two cake pans with cake on top of a stove", + "pred": "a pan filled with food on top of a stove" + }, + { + "label": "a small fridge in a efficiency hotel room", + "pred": "a room with a desk and a bed" + }, + { + "label": "kids playing a game with a nintendo wii controller", + "pred": "two men playing a video game in a living room" + }, + { + "label": "two women in a room with one of them holding a cake", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "a surfboard sitting next to a shopping cart", + "pred": "a surfboard sitting on top of a wooden bench" + }, + { + "label": "a girl sitting on a chair in front of a pepperoni pizza", + "pred": "a little girl sitting at a table with a pizza" + }, + { + "label": "sandwiches on a plate", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "people swimming in the ocean with a surfboard", + "pred": "a girl and a boy on surfboards in the ocean" + }, + { + "label": "a white plate topped with a sandwich and sliced veggies", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "tow men standing on a beach holding surfboards", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a child holds a toothbrush halfway out of their mouth while brushing their teeth", + "pred": "a little girl brushing her teeth with a blue toothbrush" + }, + { + "label": "a man on a skateboard is coming up a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man riding a blue surfboard on top of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a desk has two monitors and other electronics equipment", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a computer is on a desk across from a bed", + "pred": "a room with a desk and a bed" + }, + { + "label": "a black shirt on a hanger blue curtains a bed and pillow", + "pred": "a bed in a room with blue walls" + }, + { + "label": "a pizza on a wooden plate near glasses of wine", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a pizza sitting on top of a plate next to a foil bag of food", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "a young boy is holding a couple of hotdogs", + "pred": "a young boy holding a hot dog in front of a group of people" + }, + { + "label": "a man standing on a wet beach holding a blue board", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "plastic toy hot dog and bun, on plastic plate", + "pred": "a small child is eating a piece of cake" + }, + { + "label": "boxes of glazed donuts on a table", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a girl with a green shirt brushing her teeth with a blue toothbrush", + "pred": "a little girl brushing her teeth with a blue toothbrush" + }, + { + "label": "parent serving a plastic hot dog in a bun to their child during play", + "pred": "a small child is eating a piece of cake" + }, + { + "label": "a snowboarder grabs the board while performing a stunt in the air", + "pred": "a person on skis jumping in the air" + }, + { + "label": "a work station with multiple computers and cell phones", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "canadian flags flying along a fence where people are standing in snow", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "child's bed and colorful quilt surrounded by blue plastic walls", + "pred": "a bed in a room with blue walls" + }, + { + "label": "people are standing on top of a snowy hill", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a man near a fence holding a racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a snowboarder with black and white clothes finishing a run", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "a man standing on the court holding onto a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "two young girls peeking through the holes in their donuts", + "pred": "a little girl holding up a chocolate frosted donut to her face" + }, + { + "label": "man in black shirt wake boarding over a rail", + "pred": "a man riding a water skis on top of a body of water" + }, + { + "label": "a smiling girl has a small plate of pizza", + "pred": "a little girl sitting at a table with a pizza" + }, + { + "label": "a man throws tennis balls to waiting tennis players", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "here are two kinds of sandwiches and a pie with a bite out of it", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "these people are going to have pizza and wine", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a man with a ball facing a girl with a racquet", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a spacious living room with three windows and a wooden floor", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "two football teams lift some players into the air", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a girl dressed in black holds up a tennis racket as a man in a white t-shirt stands in front of her", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman laying in a hospital bed hooded up to machines", + "pred": "a hospital room with a bed and a monitor" + }, + { + "label": "the working and kitchen area of a dorm room", + "pred": "a room with a desk and a bed" + }, + { + "label": "two little girls looking the through the holes in doughnuts", + "pred": "a little girl holding up a chocolate frosted donut to her face" + }, + { + "label": "a young girl lying in a hospital room hooked up to machines", + "pred": "a hospital room with a bed and a monitor" + }, + { + "label": "a living room filled with furniture and wood flooring", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a living room with wooden floors and white walls", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "people stand near some canadian flags at the base of a mountain", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a small pizza and a soda pop sit upon a table with magazines, a phone and other items", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "four children are playing a video game near each other", + "pred": "two men playing a video game in a living room" + }, + { + "label": "a white plate contains various exotic food items", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "two young girls holding doughnuts over their eyes", + "pred": "a little girl holding up a chocolate frosted donut to her face" + }, + { + "label": "a tennis player wearing white holds out his tennis racket as a ball floats in the air near it", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a boy skateboards in a skate park pike", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a tennis player returns the ball using a backhand", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a make shift office space in a bedroom", + "pred": "a room with a desk and a bed" + }, + { + "label": "a yellow surfboard sits next to a bicycle on a brick sidewalk", + "pred": "a surfboard sitting on top of a wooden bench" + }, + { + "label": "a man riding a snowboard down a snow covered slope", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "a woman with glasses eating a piece of cake", + "pred": "a woman holding a piece of cake with a smile on her face" + }, + { + "label": "two children hold up doughnuts to their eyeballs", + "pred": "a little girl holding up a chocolate frosted donut to her face" + }, + { + "label": "a white plate on a table topped with a sandwich", + "pred": "a sandwich sitting on top of a wooden table next to a cup of coffee" + }, + { + "label": "men playing aussie rules football on a green field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a pizza sitting on top of a pizza box covered in cheese", + "pred": "a pizza sitting in a box on top of a table" + }, + { + "label": "a white and yellow surfboard in a bicycles rack", + "pred": "a surfboard sitting on top of a wooden bench" + }, + { + "label": "a black couch a green chair a red chair a mirror and a ceiling fan", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "two people some drinks some plates and a small pizza", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a crowded table has a plate containing a burger with sauce and side of vegetables", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a woman and children surfing in the ocean", + "pred": "a girl and a boy on surfboards in the ocean" + }, + { + "label": "a man snow boarding with snow gear on", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a man sitting at a table eating a hamburger and fries", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a man riding a skateboard up the side of a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a man standing on a tennis court holding a racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a male tennis player waiting to return the ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man on a tennis court with a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman laying in a hospital bed hooked up to an iv and monitors", + "pred": "a hospital room with a bed and a monitor" + }, + { + "label": "people are playing with a tennis ball in a gym", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man on a snow board going down a snow covered hill", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "people are holding other people on a soccer field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a small pizza and beverage sitting on a wooden table", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "a table has a camera, cup, and a plate with a sandwich on it", + "pred": "a sandwich sitting on top of a wooden table next to a cup of coffee" + }, + { + "label": "a half-eaten sandwich and coffee on a table with a camera", + "pred": "a sandwich sitting on top of a wooden table next to a cup of coffee" + }, + { + "label": "a person is getting ready to hit a tennis ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "kite surfer in the air on top of a red board", + "pred": "a person on a surfboard in the water" + }, + { + "label": "a half eaten sandwich sits on a table with a coffee near by", + "pred": "a sandwich sitting on top of a wooden table next to a cup of coffee" + }, + { + "label": "a person is riding down a hill on a snowboard", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "kids in a living room playing something", + "pred": "two men playing a video game in a living room" + }, + { + "label": "a man riding a wave on top of a white surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a table with a drink a bottle some paper and a pizza", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a plate has pizza on it next to a drink and a sandwich", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "a person riding a snow board down a snow covered slope", + "pred": "a person riding skis down a snow covered sidewalk" + }, + { + "label": "a woman sitting at a table with a pizza on a plate", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "men kitboarding over the top of a large body of water", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a young surfer is surfing in the middle of an ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a peeson at a table is eating a small pizza", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a hand holding a sandwich above a plate", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a woman in a bikini riding a wave on a surfboard", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "a lady holding a cake with candles on it while a lady near her is making gestures with her fingers", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "a boy in birthday hat holding a tennis racket", + "pred": "a young boy wearing a hat and holding a baseball bat" + }, + { + "label": "a left hand holding a glazed doughnut over a tiled floor", + "pred": "a person holding a donut in their hand" + }, + { + "label": "a small boy with a birthday hat on holding a tennis racket", + "pred": "a young boy wearing a hat and holding a baseball bat" + }, + { + "label": "a table topped with three trays filled with cakes and desserts", + "pred": "a table topped with cakes and cupcakes" + }, + { + "label": "people working behind glass in a doughnut making factory", + "pred": "a bakery filled with donuts on a conveyor belt" + }, + { + "label": "four children in a living room with one of the children holding a game controller before a television", + "pred": "two men playing a video game in a living room" + }, + { + "label": "a soccer team celebrates three players by lifting them up", + "pred": "young men playing a game of frisbee" + }, + { + "label": "one woman carrying a cake with candles and another woman", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "half eaten sandwich and a cup of coffee sitting on table in front of camera equipment", + "pred": "a sandwich sitting on top of a wooden table next to a cup of coffee" + }, + { + "label": "a person holding a plate with food on it in one hand and a spoon in the other", + "pred": "a woman holding a piece of cake with a smile on her face" + }, + { + "label": "a man is surfing a big wave towards shore", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a smothered beef sandwich is sided with pickles and slaw", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a man is parasailing with a red surfboard", + "pred": "a person on a surfboard in the water" + }, + { + "label": "children are riding surfboards close to the shore", + "pred": "a girl and a boy on surfboards in the ocean" + }, + { + "label": "a boy on a skateboard at the skate park", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "a young child brushes their teeth with a blue toothbrush", + "pred": "a little girl brushing her teeth with a blue toothbrush" + }, + { + "label": "a plate holding a grilled cheese sandwich and bowl of soup", + "pred": "a bowl of soup and a spoon on a table" + }, + { + "label": "a little girl grins at her plate of pizza", + "pred": "a little girl sitting at a table with a pizza" + }, + { + "label": "a makeshift bedroom is decorated in plastic and cardboard", + "pred": "a bed in a room with blue walls" + }, + { + "label": "view through window of donut being made in kitchen assembly line", + "pred": "a bakery filled with donuts on a conveyor belt" + }, + { + "label": "a hot dog on a plate next to two glasses", + "pred": "a hot dog sitting on top of a white plate" + }, + { + "label": "a cheese pizza cut into eight pieces in the box", + "pred": "a pizza sitting in a box on top of a table" + }, + { + "label": "a man in a white tennis outfit hitting a tennis ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a girl in a hospital bed with an iv and monitors", + "pred": "a hospital room with a bed and a monitor" + }, + { + "label": "a cheese pizza from a store in a box", + "pred": "a pizza sitting in a box on top of a table" + }, + { + "label": "a white bed sitting between two lamp under a picture", + "pred": "a hotel room with a large bed and two lamps" + }, + { + "label": "krispy kreme donuts fill up a long table", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a woman standing on a tennis court holding a racquet", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a wooden table topped with carrot cake donuts", + "pred": "a tray with a variety of doughnuts on it" + }, + { + "label": "krispy creme donuts are arranged in cardboard boxes", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "this image is of a man snowboarding down a hill", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "a skate board rider skating on the edge of a ramp", + "pred": "a man riding a skateboard on top of a ramp" + }, + { + "label": "people standing near a fence in the snow with canadian flags flying", + "pred": "people standing on top of a snow covered slope" + }, + { + "label": "a surfer steadies his move through the waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man kiteboarding over the ocean under a blue sky", + "pred": "a person on a surfboard in the water" + }, + { + "label": "a toddler boy is on a white pad playing a video game", + "pred": "a little girl riding a skateboard on top of a table" + }, + { + "label": "a man with a tennis racquet is dressed in white", + "pred": "a man holding a tennis racket on top of a tennis court" + }, + { + "label": "a bowl of tomato soup is next to grilled cheese", + "pred": "a bowl of soup and a spoon on a table" + }, + { + "label": "a surfboard mounted on a bicycle on the side of the road", + "pred": "a surfboard sitting on top of a wooden bench" + }, + { + "label": "a ski boarder skiing down the side of a mountain", + "pred": "a person on a snowboard in the snow" + }, + { + "label": "a round outdoor courtyard table with a hotdog and a bag of chips on it", + "pred": "a hot dog sitting on top of a bun on a table" + }, + { + "label": "a plate with a bowl of tomato soup and two halves of a grilled cheese sandwich", + "pred": "a bowl of soup and a spoon on a table" + }, + { + "label": "a sheet cake with a frosting cell phone on it", + "pred": "a birthday cake with a train on it" + }, + { + "label": "a man surfing on the ways in the sea", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman is laying in a hospital bed and is hooked up to several machines", + "pred": "a hospital room with a bed and a monitor" + }, + { + "label": "a man that is wiping his eye", + "pred": "a man holding a tennis racket on top of a tennis court" + }, + { + "label": "a woman holding a tennis racquet on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man is flying up on his surf board over an ocean", + "pred": "a person on a surfboard in the water" + }, + { + "label": "a surfboard is stowed in a rack alongside a walkway", + "pred": "a surfboard sitting on top of a wooden bench" + }, + { + "label": "a bed surrounded with plastic for walls and ceiling", + "pred": "a bed in a room with blue walls" + }, + { + "label": "a young surf boarder is taking a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a smiling surfer standing on the beach with his board", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a plate of donuts with a person", + "pred": "a tray of doughnuts on a table" + }, + { + "label": "a young boy in a birthday hat holds a tennis racquet", + "pred": "a young boy wearing a hat and holding a baseball bat" + }, + { + "label": "a man jumping with a ramp while wake boarding", + "pred": "a man riding a water skis on top of a body of water" + }, + { + "label": "people inside the water at the beach with their surf boards", + "pred": "a girl and a boy on surfboards in the ocean" + }, + { + "label": "a plate filled with various kinds of food", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a hot dog on a plate with drinks near by", + "pred": "a hot dog sitting on top of a white plate" + }, + { + "label": "a surfer riding the top of a choppy wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a happy woman digging in to chocolate cake with a spoon", + "pred": "a woman holding a piece of cake with a smile on her face" + }, + { + "label": "a young skier is attempting downhill in a driveway", + "pred": "a person riding skis down a snow covered sidewalk" + }, + { + "label": "a person holding up a plate of food", + "pred": "a man sitting at a table eating a slice of pizza" + }, + { + "label": "a bed room with a neatly made bed", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "the man is para sailing on the water", + "pred": "a person on a surfboard in the water" + }, + { + "label": "a wooden table topped with plates and bows filled with food", + "pred": "a table topped with plates of food and bowls of soup" + }, + { + "label": "a chocolate frosted doughnut sitting on top of a plate", + "pred": "a donut sitting on top of a white plate next to a cup of coffee" + }, + { + "label": "a man on a surfboard, surfing in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a plate with a hotdog and two glasses with beverages", + "pred": "a hot dog sitting on top of a white plate" + }, + { + "label": "a man with beard holding up a plate of food", + "pred": "a man sitting at a table eating a slice of pizza" + }, + { + "label": "woman showing delight with plated chocolate desert dish", + "pred": "a woman holding a piece of cake with a smile on her face" + }, + { + "label": "a boy in helmet playing a game with a nintendo wii controller", + "pred": "a little girl riding a skateboard on top of a table" + }, + { + "label": "a man in white shirt and hat holding a tennis racket", + "pred": "a man holding a tennis racket on top of a tennis court" + }, + { + "label": "a living room has some chairs and a ceiling fan", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a man in a wet suit holding a surf board with another person in the back ground near the ocean holding a surf board also", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a woman in a blue jacket is skiing in front of a house", + "pred": "a person riding skis down a snow covered sidewalk" + }, + { + "label": "a man holding onto a surfboard while standing on the beach", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a man in a wetsuit on a blue surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a young girl who is brushing her teeth with a toothbrush", + "pred": "a little girl brushing her teeth with a blue toothbrush" + }, + { + "label": "this colorfully dressed man is wakeboarding on the river", + "pred": "a man riding a water skis on top of a body of water" + }, + { + "label": "the pizza looks like it was ordered with extra cheese", + "pred": "a pizza sitting in a box on top of a table" + }, + { + "label": "the carrot cakes look like doughnut on display", + "pred": "a tray with a variety of doughnuts on it" + }, + { + "label": "an instructor is teaching the little girl how to surf", + "pred": "a girl and a boy on surfboards in the ocean" + }, + { + "label": "a hot dog with a bunch of toppings and a fork sticking out of it", + "pred": "a hot dog sitting on top of a bun on a table" + }, + { + "label": "donuts arranged on a silver plate", + "pred": "a tray with a variety of doughnuts on it" + }, + { + "label": "a man snowboards down a snowy hill", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a bowl of tomato soup and two pieces of grilled cheese", + "pred": "a bowl of soup and a spoon on a table" + }, + { + "label": "a bed with stacked pillows is in a bedroom with a chair", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "two men play wii in a cramped living room", + "pred": "two men standing in a living room playing a video game" + }, + { + "label": "a woman on a snow board riding down a hill", + "pred": "a person riding skis down a snow covered sidewalk" + }, + { + "label": "a factory making doughnuts full of joy", + "pred": "a bakery filled with donuts on a conveyor belt" + }, + { + "label": "delicious food with people around", + "pred": "a hot dog sitting on top of a bun on a table" + }, + { + "label": "the sandwich on the table is ready to be eaten", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "two men standing in a living room with remotes", + "pred": "two men standing in a living room playing a video game" + }, + { + "label": "a large cheese pizza in a cardboard box", + "pred": "a pizza sitting in a box on top of a table" + }, + { + "label": "the sandwich is ready to be eaten", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "the woman is on the tennis court to play a game", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man looking behind while skating on the snow", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "bearded man shows off his grilled cheese sandwiches", + "pred": "a man sitting at a table eating a slice of pizza" + }, + { + "label": "a sandwich appears to have a mouth like creation", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a man in a wetsuit carries a surfboard on the beach", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a man taking a selfie eating something fried", + "pred": "a man sitting at a table eating a slice of pizza" + }, + { + "label": "a woman about to eat a slice of cake", + "pred": "a woman holding a piece of cake with a smile on her face" + }, + { + "label": "a young boy rides his board in the snow", + "pred": "a person riding skis down a snow covered sidewalk" + }, + { + "label": "a conveyer belt with donuts", + "pred": "a bakery filled with donuts on a conveyor belt" + }, + { + "label": "the man is about to perform a stunt in the water", + "pred": "a man riding a water skis on top of a body of water" + }, + { + "label": "a carrot cake doughnut displayed on a counter", + "pred": "a tray with a variety of doughnuts on it" + }, + { + "label": "four donuts topped with icing displayed on metal trays", + "pred": "a tray with a variety of doughnuts on it" + }, + { + "label": "a hot dog and drink are on a white tray", + "pred": "a hot dog sitting on top of a white plate" + }, + { + "label": "a young woman plays tennis and wipes sweat from her face in this double shot", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a living area with a bed, chair and window", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man sittig by a table taking of photo of his food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a boy wearing a helmet is playing video games", + "pred": "a little girl riding a skateboard on top of a table" + }, + { + "label": "a man holding a tennis racket picks rubs his eye", + "pred": "a man holding a tennis racket on top of a tennis court" + }, + { + "label": "a little boy wearing a birthday hat and holding a tennis racket", + "pred": "a young boy wearing a hat and holding a baseball bat" + }, + { + "label": "two men standing in a living room playing games", + "pred": "two men standing in a living room playing a video game" + }, + { + "label": "2 women, one holding a cake, the other holding up her index finger", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "a tennis player is shown wiping the sweat and engaging in action", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "intricate cake with a saying and cell phone stuck in it", + "pred": "a birthday cake with a train on it" + }, + { + "label": "man parasailing in the ocean by many other parasailers", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a cake has a pond and a cell phone on it and green icing for trimming", + "pred": "a birthday cake with a train on it" + }, + { + "label": "a woman sitting by a wooden table with green glasses and food", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a hot dog on a table", + "pred": "a hot dog sitting on top of a bun on a table" + }, + { + "label": "a person holding a sandwich, about to eat it", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "two women on a tennis court playing a game of tennis", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "half an eclair on a plate and a coffee mug on wooden table", + "pred": "a donut sitting on top of a white plate next to a cup of coffee" + }, + { + "label": "a boy playing wii in the living room while several other children watch", + "pred": "two men playing a video game in a living room" + }, + { + "label": "a half eaten eclaire on a white plate", + "pred": "a donut sitting on top of a white plate next to a cup of coffee" + }, + { + "label": "a person wearing a helmet and goggles riding a snowboard down the slopes", + "pred": "a man on a snowboard in the snow" + }, + { + "label": "a man is taking a picture of his food", + "pred": "a man sitting at a table with food" + }, + { + "label": "cut hoagie sandwich and pie on paper plates", + "pred": "a white plate topped with a sandwich and french fries" + }, + { + "label": "people enjoying the water with sails", + "pred": "kites being flown over a body of water" + }, + { + "label": "a portion of this chocolate pastry has been eaten", + "pred": "a donut sitting on top of a white plate" + }, + { + "label": "a woman in a bikini is on a surfboard", + "pred": "a woman on a surfboard riding a wave" + }, + { + "label": "donuts traveling down an assembly line in a factory while people work behind it", + "pred": "a bakery filled with lots of doughnuts" + }, + { + "label": "a chili cheese dog on a plate with a bag of corn chips next to it", + "pred": "a hot dog and french fries on a table" + }, + { + "label": "a young woman in a bikini surfs a small wave", + "pred": "a woman on a surfboard riding a wave" + }, + { + "label": "a child holds a racket with a hat on his head", + "pred": "a young boy wearing a hat and a baseball cap" + }, + { + "label": "a photo inside and ocean wave looking at a person on a surfboard", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "man taking a picture of food on a table", + "pred": "a man sitting at a table with food" + }, + { + "label": "a person in a restaurant holding a plate of food", + "pred": "a man eating a slice of pizza at a restaurant" + }, + { + "label": "a table at a bake sale with cakes and cupcakes displayed", + "pred": "a table topped with cakes and cupcakes" + }, + { + "label": "a hand holding a donut that been partially eaten", + "pred": "a person holding a donut in their hand" + }, + { + "label": "cupcakes and half of a cake sit on a table", + "pred": "a table topped with cakes and cupcakes" + }, + { + "label": "this table has cupcakes and cake on it", + "pred": "a table topped with cakes and cupcakes" + }, + { + "label": "a bed and chair sitting next to a window in a bedroom", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "a woman is riding the waves on a surfboard", + "pred": "a woman on a surfboard riding a wave" + }, + { + "label": "a woman riding a surfboard on a wave", + "pred": "a woman on a surfboard riding a wave" + }, + { + "label": "a bedroom with a picture of arches above it", + "pred": "a hotel room with a large bed and two lamps" + }, + { + "label": "people windsurfing at the beach", + "pred": "kites being flown over a body of water" + }, + { + "label": "a person kicking a soccer ball in a field", + "pred": "a baseball player running across a field" + }, + { + "label": "a woman sitting at a table with wine glasses and fruit topped pizza", + "pred": "a woman sitting at a table with some food" + }, + { + "label": "a person waiting for her meal to be served", + "pred": "a woman sitting at a table with some food" + }, + { + "label": "a crashing wave is about to close in on a surfer", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man riding a wave on a surf board", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man on a surfboard inside a large wave", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a bed flanked on both sides by two room lights and desks", + "pred": "a hotel room with a large bed and two lamps" + }, + { + "label": "a man is suspended from cables and has skis on his feet", + "pred": "kites being flown over a body of water" + }, + { + "label": "a person sitting on the floor near a plate of donuts", + "pred": "a tray of doughnuts on a table" + }, + { + "label": "a doughnut with a bite taken from it next to a cup", + "pred": "a donut sitting on top of a white plate" + }, + { + "label": "a woman in a red top some glasses and a pizza", + "pred": "a woman sitting at a table with some food" + }, + { + "label": "two men playing video games on the nintendo wii", + "pred": "two men in a living room playing a video game" + }, + { + "label": "a sandwich with cheese, lettuce and a tomato", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "two men standing in a living room holding game controllers", + "pred": "two men in a living room playing a video game" + }, + { + "label": "the young child is playing a video game", + "pred": "a little girl on a skateboard in a room" + }, + { + "label": "the older man is playing tennis on the court", + "pred": "a man holding a tennis racket on a tennis court" + }, + { + "label": "a person's hand holding a bitten into doughnut", + "pred": "a person holding a donut in their hand" + }, + { + "label": "the man is playing soccer in the field", + "pred": "a baseball player running across a field" + }, + { + "label": "a large sheet cake with a frosted mobile phone", + "pred": "a birthday cake with a train on it" + }, + { + "label": "a person is holding a doughnut that has a bite taken out of it", + "pred": "a person holding a donut in their hand" + }, + { + "label": "a person holding a glazed pastry item with one bite taken out", + "pred": "a person holding a donut in their hand" + }, + { + "label": "half a cake and two plates of cupcakes on a table", + "pred": "a table topped with cakes and cupcakes" + }, + { + "label": "a man at a table taking a picture of his food", + "pred": "a man sitting at a table with food" + }, + { + "label": "a hotdog with mustard and ketchup on a white oval plate", + "pred": "a hot dog sitting on top of a white plate" + }, + { + "label": "eight doughnuts sitting on a white serving tray", + "pred": "a tray of doughnuts on a table" + }, + { + "label": "the chocolate and glazed donuts are stacked on a plate", + "pred": "a tray of doughnuts on a table" + }, + { + "label": "a wooden dining table adorned with many kinds of food", + "pred": "a table topped with bowls filled with food" + }, + { + "label": "a man playing soccer", + "pred": "a baseball player running across a field" + }, + { + "label": "a modern bedroom area features a large mirror reflecting an arch, a white bed with a brown pillow and two end tables and lamps", + "pred": "a hotel room with a large bed and two lamps" + }, + { + "label": "a array of food consisting of soup, sandwich and dinner rolls", + "pred": "a table topped with bowls filled with food" + }, + { + "label": "a person holding a small cake with candles", + "pred": "a woman and a man are looking at a cake" + }, + { + "label": "soigo'd is soccer player number 8 preparing to kick a soccer ball", + "pred": "a baseball player running across a field" + }, + { + "label": "a person walking across a beach next to the ocean", + "pred": "a person on a beach with a surfboard" + }, + { + "label": "glazed donuts that are plain or with chocolate", + "pred": "a tray of doughnuts on a table" + }, + { + "label": "a young female with tennis racket ready to strike the tennis ball", + "pred": "a man holding a tennis racket on a tennis court" + }, + { + "label": "a very fancy modern bedroom with a large mural over the bed", + "pred": "a hotel room with a large bed and two lamps" + }, + { + "label": "that salad and pizza make a filling lunch", + "pred": "a person sitting at a table with a pizza" + }, + { + "label": "a bedroom with big bed and a chair by the window", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "a tennis player is taking a swing on a red court", + "pred": "a man holding a tennis racket on a tennis court" + }, + { + "label": "a table with plates of food that include pizza and salad", + "pred": "a person sitting at a table with a pizza" + }, + { + "label": "a woman laying in bed in her underwear", + "pred": "two women laying on a bed in a bedroom" + }, + { + "label": "variety of foods displayed on large wooden table", + "pred": "a table topped with bowls filled with food" + }, + { + "label": "the surfer is getting out of the water because the sun is setting", + "pred": "a person on a beach with a surfboard" + }, + { + "label": "a sheet cake with a lake scene displays the words, \"what is the pickup line today?\"", + "pred": "a birthday cake with a train on it" + }, + { + "label": "the sun shining down on a surfer on the beach", + "pred": "a person on a beach with a surfboard" + }, + { + "label": "a tattooed woman lying down on a bed in a bedroom", + "pred": "two women laying on a bed in a bedroom" + }, + { + "label": "the woman is playing tennis on the court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman in a short skirt playing tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man holding a tennis racquet on a court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a sunset at the beach during a cloudy day", + "pred": "a person on a beach with a surfboard" + }, + { + "label": "the couple are getting ready to cut the cake", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a tattooed woman wearing a white shirt is laying in a bed with a side table next to it", + "pred": "two women laying on a bed in a bedroom" + }, + { + "label": "a woman laying on quilted white bed in a room", + "pred": "two women laying on a bed in a bedroom" + }, + { + "label": "a plate of half eaten pizza, and salad", + "pred": "a person sitting at a table with a plate of pizza" + }, + { + "label": "a man standing next to a woman near a cake", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "pink donut with white sprinkles on the top of it", + "pred": "a person holding a donut with sprinkles on it" + }, + { + "label": "a person holds a doughnut with sprinkles on it", + "pred": "a person holding a donut with sprinkles on it" + }, + { + "label": "a man laying on top of a sandy beach laying next to a surfboard", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a man and a woman holding up a pizza in a seating area", + "pred": "a man standing next to a woman holding a plate of pizza" + }, + { + "label": "a red icing doughnut with sprinkles on top", + "pred": "a person holding a donut with sprinkles on it" + }, + { + "label": "a girl is sleeping in a bed with the light on", + "pred": "two women laying on a bed in a bedroom" + }, + { + "label": "a man swings a racket at a birdie", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a person carrying a surfboard on the beach at sunset", + "pred": "a person on a beach with a surfboard" + }, + { + "label": "a couple is sitting at a table eating pizza", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "a man and woman are sitting at a table eating pizza", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "a man and a woman eating pizza at a restaurant", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "a woman is slicing a cake with her friends", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "people standing around a table where one of them is cutting a cake", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a person holding a donut with a napkin", + "pred": "a person holding a donut with sprinkles on it" + }, + { + "label": "trays of pastries and sandwiches beside a bowl of soup", + "pred": "a table topped with plates of food and bowls of soup" + }, + { + "label": "a couple are enjoying pizza and drinks at the restaurant", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "a person is holding a doughnut with sprinkles", + "pred": "a person holding a donut with sprinkles on it" + }, + { + "label": "a man laying on the beach next to a surfboard", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "two people sit at a table with two pizzas", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "a person eating pizza and salad at a table", + "pred": "a person sitting at a table with a plate of pizza" + }, + { + "label": "snowboard stuck in a thick collection of trees", + "pred": "a surfboard sitting on top of a wooden fence" + }, + { + "label": "a man sits on a shore with his surfboard", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a wooden desk sitting in a living room with a monitor on top of it", + "pred": "a computer desk with a monitor and keyboard" + }, + { + "label": "pizza, salad, and a glass of hefevwsen beer", + "pred": "a person sitting at a table with a plate of pizza" + }, + { + "label": "two girls pose for a photo holding doughnuts", + "pred": "two women smile as they pose for a picture" + }, + { + "label": "the two woman are eating donuts outside", + "pred": "two women smile as they pose for a picture" + }, + { + "label": "a snow board sticking out of the side of a tree", + "pred": "a surfboard sitting on top of a wooden fence" + }, + { + "label": "the man and woman at the restaurant are holding a full pizza", + "pred": "a man standing next to a woman holding a plate of pizza" + }, + { + "label": "skate boarder crashed into the trees jumping over a fence", + "pred": "a surfboard sitting on top of a wooden fence" + }, + { + "label": "a baby in plaid shirt eating a frosted cake", + "pred": "a baby eating a piece of cake" + }, + { + "label": "a female tennis player that is returning a serve", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "the young is enjoying his cake so much its all over him", + "pred": "a baby eating a piece of cake" + }, + { + "label": "a man in a blue shirt laying next to a yellow surfboard", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a desk with a keyboard, mouse and computer monitor", + "pred": "a computer desk with a monitor and keyboard" + }, + { + "label": "the woman is eating a piece of cake", + "pred": "a woman standing in front of a table with a cake in front of her" + }, + { + "label": "a man and a young girl snowboarding", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a woman in green sweater eating a hotdog by campfire", + "pred": "a person sitting at a picnic table eating a hot dog" + }, + { + "label": "a person sitting on a beach next to a surf board", + "pred": "a surfboard sitting on top of a sandy beach" + }, + { + "label": "a surfer teeters on the top of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man takes a swing at a tennis ball on a grass court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man rides his skateboard near a drain pipe system", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a man in white shirt and black shorts playing tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a guy rides a skateboard in an overflow ditch", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two woman and a man pose for a picture while one woman cuts a cake", + "pred": "a woman cutting a cake with a knife" + }, + { + "label": "a pizza with vegetables and cheese resting on a board", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a snow board in a bush", + "pred": "a surfboard sitting on top of a wooden fence" + }, + { + "label": "a computer is sitting on its desktop, setup on the desk with a keyboard", + "pred": "a computer desk with a monitor and keyboard" + }, + { + "label": "a waitress and a man are holding up a large pizza", + "pred": "a man standing next to a woman holding a plate of pizza" + }, + { + "label": "a man and woman are holding up a pizza", + "pred": "a man standing next to a woman holding a plate of pizza" + }, + { + "label": "a toddler eats cake with his hands in his high chair", + "pred": "a baby eating a piece of cake" + }, + { + "label": "a lady is posing for the camera while many others look on", + "pred": "a woman standing in front of a table with a cake in front of her" + }, + { + "label": "a toddler is getting messy while eating his cake", + "pred": "a baby eating a piece of cake" + }, + { + "label": "a male tennis player is trying to secure the ball", + "pred": "a man jumping in the air to hit a tennis ball" + }, + { + "label": "male skateboarder utilizing cemented curved aqueduct structure on sunny day", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a male skier is posing for the camera while a young girl is", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "messy bed next to bed with clothes on it in bright room", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "snowboard atop of wooden structure next to evergreen plant", + "pred": "a surfboard sitting on top of a wooden fence" + }, + { + "label": "a person riding a skate board above a big pipe", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "guy in shorts holding tennis racket takes aim", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man in wetsuit on surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "baby boy at the table eating cake frosting off his hand", + "pred": "a baby eating a piece of cake" + }, + { + "label": "a young male tennis player in action on a court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "the bed and desk in a modern hotel room", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "a messy room with door and bed and chair", + "pred": "a room filled with furniture and a bed" + }, + { + "label": "a waitress and restaurant owner showing off a pizza in front of a mural of venice", + "pred": "a man standing next to a woman holding a plate of pizza" + }, + { + "label": "a bedroom in an old house that is being renovated", + "pred": "a room filled with furniture and a bed" + }, + { + "label": "a very messy bedroom with boxes and bags covering the floor", + "pred": "a room filled with furniture and a bed" + }, + { + "label": "woman with plated food near crowd of people", + "pred": "a woman standing in front of a table with a cake in front of her" + }, + { + "label": "a man on snowboard standing by a mountain", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a person eating an apple with a plate of food", + "pred": "a person sitting at a picnic table eating a hot dog" + }, + { + "label": "a messy bed room a bed a chair and boxes", + "pred": "a room filled with furniture and a bed" + }, + { + "label": "a pair of beds in a hotel with green sheets and one head board", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a man in white shirt and shorts playing a game of tennis", + "pred": "a man jumping in the air to hit a tennis ball" + }, + { + "label": "large made up bed in modern bedroom, with small desk", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "two girls posing with doughnuts with bites out of them", + "pred": "two women smile as they pose for a picture" + }, + { + "label": "a tennis player jumping up in the air with her tennis racket", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a man and a child who are in the snow", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a man in bowler hat and lab coat by people in a tv frame", + "pred": "a woman standing in front of a tour bus" + }, + { + "label": "a man and a little girl wearing snowboards", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a pizza with many toppings on it", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a messy bedroom has one red brick wall", + "pred": "a room filled with furniture and a bed" + }, + { + "label": "a tennis player is in mid air with his racquet", + "pred": "a man jumping in the air to hit a tennis ball" + }, + { + "label": "people sitting inside a screen for love tv", + "pred": "a woman standing in front of a tour bus" + }, + { + "label": "a man on a surfboard, who is riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "beds sitting next to each other in a bedroom", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a boy on a skate board riding on concrete", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a man riding a wave on top of a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a bed has white and brown pillows and sheets on it", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "this desk has a desk top computer along with pictures and a lamp", + "pred": "a computer desk with a monitor and keyboard" + }, + { + "label": "a man jumping up in the air swinging a tennis racket at a ball", + "pred": "a man jumping in the air to hit a tennis ball" + }, + { + "label": "man in white outfit swinging a racket at a tennis ball", + "pred": "a man jumping in the air to hit a tennis ball" + }, + { + "label": "a bed sitting next to a night stand and a table and chairs", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "people who are gathered at a get together or a party", + "pred": "a woman standing in front of a table with a cake in front of her" + }, + { + "label": "a bed, desk and various installations in a room", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "a person eating from a plate on their lap while sitting in a camping chair", + "pred": "a person sitting at a picnic table eating a hot dog" + }, + { + "label": "a tennis player taking a swing at a ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a woman holding a plastic utensil passing out a piece of cake", + "pred": "a woman standing in front of a table with a cake in front of her" + }, + { + "label": "a man in a jacket standing near a giant tv", + "pred": "a woman standing in front of a tour bus" + }, + { + "label": "a woman holding a child wrapped in a towel brushing her teeth", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "a man is holdng a mic while looking onto a screen", + "pred": "a woman standing in front of a tour bus" + }, + { + "label": "a woman is holding a baby who is wrapped in a towel and holding a toothbrush", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "two girls posing with jelly filled doughnuts which have a bite missing", + "pred": "two women smile as they pose for a picture" + }, + { + "label": "a young man on a surfboard, surfing a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person is sitting outside in a chair with a plate of food", + "pred": "a person sitting at a picnic table eating a hot dog" + }, + { + "label": "a woman eating a sandwich near a campfire", + "pred": "a person sitting at a picnic table eating a hot dog" + }, + { + "label": "rows of donuts sitting on a table", + "pred": "a pile of donuts sitting on top of a table" + }, + { + "label": "a young girl in the foreground and a woman in a bridal dress and other adults", + "pred": "a little girl and a little boy standing in a living room" + }, + { + "label": "a man plays tennis during a competition while a crowd looks on", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young boy holding a tennis racquet on a court", + "pred": "a young boy holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man on a court swinging a tennis racket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a tennis player posed to swing his racket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a room with a fireplace and a wooden table", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a woman holding a plate and eating pizza", + "pred": "a man holding a slice of pizza in his right hand" + }, + { + "label": "a child with a messy face eating a plate of food with hands", + "pred": "a little girl sitting in front of a plate of food" + }, + { + "label": "two young boys are playing tennis indoors together", + "pred": "a young boy holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young girl holding a controller playing a video game", + "pred": "a little girl and a little boy standing in a living room" + }, + { + "label": "a young girl playing a video game while others talk", + "pred": "a little girl and a little boy standing in a living room" + }, + { + "label": "a person taking a pizza while holding a plate", + "pred": "a man holding a slice of pizza in his right hand" + }, + { + "label": "a woman eating a piece of pizza near the kitchen counter", + "pred": "a man holding a slice of pizza in his right hand" + }, + { + "label": "a little girl holding a white nintendo wii game controller", + "pred": "a little girl and a little boy standing in a living room" + }, + { + "label": "a tray topped with two plates of food and a drink", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "a man eating a piece of pizza on top of a plate", + "pred": "a man holding a slice of pizza in his right hand" + }, + { + "label": "a table with a napkin, doughnut on a plate, and a cup of coffee", + "pred": "a donut sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a wooden desk with a laptop computer sitting on it", + "pred": "a desk with a computer on top of it" + }, + { + "label": "a living room with a fireplace and a table and chair", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a plate of assorted donuts, muffins, and danishes", + "pred": "a table topped with different types of donuts" + }, + { + "label": "a computer monitor, keyboard and laptop on a desk", + "pred": "a desk with a computer on top of it" + }, + { + "label": "a little boy making a mess with his dinner", + "pred": "a little girl sitting in front of a plate of food" + }, + { + "label": "a small child is eating out of a tray", + "pred": "a little girl sitting in front of a plate of food" + }, + { + "label": "a small child with his fingers in his mouth and plate of food", + "pred": "a little girl sitting in front of a plate of food" + }, + { + "label": "two young boys play tennis inside a gym", + "pred": "a young boy holding a tennis racquet on top of a tennis court" + }, + { + "label": "young boys in the gym holding tennis rackets", + "pred": "a young boy holding a tennis racquet on top of a tennis court" + }, + { + "label": "a blurry photo of a girl concentrating next to what seems like party goers", + "pred": "a little girl and a little boy standing in a living room" + }, + { + "label": "a white plate containing various pastries on a wooden table", + "pred": "a table topped with different types of donuts" + }, + { + "label": "a living room with an old fireplace and desk", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "two desks with chairs next to a fireplace in an old style living room", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a plate full of tasty looking assorted baked items", + "pred": "a table topped with different types of donuts" + }, + { + "label": "woman standing while eating pizza from a plate", + "pred": "a man holding a slice of pizza in his right hand" + }, + { + "label": "a man playing tennis getting ready to take a swing", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a tennis player competes with a large crowd watching", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "donuts and assorted pastries fill this white plate", + "pred": "a table topped with different types of donuts" + }, + { + "label": "a room with a fire place and a group of chairs", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a donut with a cup of coffee and an ornate napkin holder", + "pred": "a donut sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a white plate with a donut and napkin sculpture", + "pred": "a donut sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a donut is on the table on a white saucer", + "pred": "a donut sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a tray holding two plates with sandwiches and chips and a drink", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "a tray a drink, a salt shaker and two plates that contain sandwiches and potato chips", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "a plate with frosted donuts and other pastries", + "pred": "a table topped with different types of donuts" + }, + { + "label": "a chocolate frosted donut on a plate with a cup of coffee and a penguin napkin holder", + "pred": "a donut sitting on top of a plate next to a cup of coffee" + }, + { + "label": "a blurry photo of a surfer walking out of the water", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "two plates with hamburgers and chips in each and one can of soda on the side", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "not the biggest workspace in the world, but it works", + "pred": "a desk with a computer on top of it" + }, + { + "label": "a desk with a laptop a monitor and a chair", + "pred": "a desk with a computer on top of it" + }, + { + "label": "children in a gym playing a game of badminto", + "pred": "a young boy holding a tennis racquet on top of a tennis court" + }, + { + "label": "two plates containing a hamburger and chips, and one drink are sitting on a small table", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "deck with lap top computer and desk top", + "pred": "a desk with a computer on top of it" + }, + { + "label": "blurry photograph of a surfer emerging from the ocean with his board", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "on a gray day a surfer carrying a white board walks on a beach", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a male walking out of the water holding a surf board", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a man walking near a shoreline with a surf board under his arm", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "bedroom scene with a bookcase, blue comforter and window", + "pred": "a bedroom with a bed, bookshelf and a window" + }, + { + "label": "a bedroom with a bookshelf full of books", + "pred": "a bedroom with a bed, bookshelf and a window" + }, + { + "label": "a nintendo wii game controller sitting on top of instruction manuals", + "pred": "a remote control sitting on top of a book" + }, + { + "label": "a remote and some booklets on a table", + "pred": "a remote control sitting on top of a book" + }, + { + "label": "two plates full of food sitting on a table next to a bottle", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a video game its instructions and a controller", + "pred": "a remote control sitting on top of a book" + }, + { + "label": "this room has a bed with blue sheets and a large bookcase", + "pred": "a bedroom with a bed, bookshelf and a window" + }, + { + "label": "a bed and a mirror in a small room", + "pred": "a bedroom with a bed, bookshelf and a window" + }, + { + "label": "a woman holding a hot dog on the street", + "pred": "a woman sitting at a picnic table eating a hot dog" + }, + { + "label": "a bed room with a neatly made bed a window and a book shelf", + "pred": "a bedroom with a bed, bookshelf and a window" + }, + { + "label": "a sandwich and lettuce on a plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a man holding a piece of food by a string", + "pred": "a man standing in front of a mirror looking at his cell phone" + }, + { + "label": "men standing in front of a building", + "pred": "a man standing in front of a mirror looking at his cell phone" + }, + { + "label": "a white plate topped with a cut in half sandwich and a salad", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "large whole pizza pie with cheese and olive toppings", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a small doughnut inside a cup that's sitting on a table", + "pred": "a donut in a bowl on a table" + }, + { + "label": "two men ordering food from a small outside restaurant", + "pred": "a man standing in front of a mirror looking at his cell phone" + }, + { + "label": "two men getting food at an outside restaurant", + "pred": "a man standing in front of a mirror looking at his cell phone" + }, + { + "label": "a wooden pan holding a pizza with cheese and olives", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a lady eating a hot dog with one bite taken from it", + "pred": "a woman sitting at a picnic table eating a hot dog" + }, + { + "label": "meat sandwich on a roll with greens on a plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a lady holding a hotdog in an outside eating area", + "pred": "a woman sitting at a picnic table eating a hot dog" + }, + { + "label": "a man has stick, which is holding some bread, between his fingers", + "pred": "a man standing in front of a mirror looking at his cell phone" + }, + { + "label": "a wii controller and a super mario game with the instructions", + "pred": "a remote control sitting on top of a book" + }, + { + "label": "three men smiling holding a wii controller in their hands", + "pred": "two men standing next to each other in a room" + }, + { + "label": "this video game has a wii device and instructions", + "pred": "a remote control sitting on top of a book" + }, + { + "label": "the deep dish pizza is topped with sausage and olives", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "three men each holding something and posing for a picture", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a doughnut is at the bottom of a container", + "pred": "a donut in a bowl on a table" + }, + { + "label": "a sandwich sits on a white plate with a salad", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a woman in brown shirt holding a hotdog by tables with umbrellas", + "pred": "a woman sitting at a picnic table eating a hot dog" + }, + { + "label": "a bride and groom cutting their wedding cake", + "pred": "a bride and groom at a wedding reception" + }, + { + "label": "a white and yellow vase with a red circle at the bottom", + "pred": "a donut in a bowl on a table" + }, + { + "label": "a newlywed couple cutting a piece of wedding cake", + "pred": "a bride and groom at a wedding reception" + }, + { + "label": "a bedroom with a bed that has an ornate frame", + "pred": "a room with a bed, table, chairs, lamps and a painting on the wall" + }, + { + "label": "a man laying on his bed looking at a phone and brushing his teeth", + "pred": "a man sitting on a bed playing a video game" + }, + { + "label": "a newly married couple cutting their wedding cake", + "pred": "a bride and groom at a wedding reception" + }, + { + "label": "a bride and groom about to cut into their cake", + "pred": "a bride and groom at a wedding reception" + }, + { + "label": "a chocolate candy is at the bottom of a cup", + "pred": "a donut in a bowl on a table" + }, + { + "label": "a fancy bed with a tall head board", + "pred": "a room with a bed, table, chairs, lamps and a painting on the wall" + }, + { + "label": "a woman in a white dress and a man in gray stand near a cake on a white table under a white canopy", + "pred": "a bride and groom at a wedding reception" + }, + { + "label": "the bed in the room is clean and ready for its guests", + "pred": "a room with a bed, table, chairs, lamps and a painting on the wall" + }, + { + "label": "a wooden bed with white bedding and pillows", + "pred": "a room with a bed, table, chairs, lamps and a painting on the wall" + }, + { + "label": "a bed that has an old fashioned wooden frame", + "pred": "a room with a bed, table, chairs, lamps and a painting on the wall" + }, + { + "label": "this guy is looking at his cell phone while brushing his teeth", + "pred": "a man sitting on a bed playing a video game" + }, + { + "label": "an olive and cheese pizza that has been placed on a table", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a man using a toothbrush in his room on bed", + "pred": "a man sitting on a bed playing a video game" + }, + { + "label": "a large thick crusted pizza has olives on it as it sits on a wooden paddle", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a small donut at the bottom of a ceramic mug", + "pred": "a donut in a bowl on a table" + }, + { + "label": "three men standing next to each other", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a man and a woman cutting up a small white cake", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "a woman holding a plate of cake covered in frosting", + "pred": "a woman holding a piece of cake on top of a plate" + }, + { + "label": "a man and a woman cutting into a cake with a knife", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "two children who are on wake boards in the ocean", + "pred": "a girl and a boy on a surfboard in the water" + }, + { + "label": "a woman is holding a hot dog during the day", + "pred": "a woman sitting at a picnic table eating a hot dog" + }, + { + "label": "a couple cut into a wedding cake together", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "a kid on a bed with dozens of photos on the wall behind him", + "pred": "a man sitting on a bed playing a video game" + }, + { + "label": "three men holding wiimotes at a trade show", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a pair of boys riding boards in the ocean", + "pred": "a girl and a boy on a surfboard in the water" + }, + { + "label": "man brushing his teeth and looking at his phone", + "pred": "a man sitting on a bed playing a video game" + }, + { + "label": "a man eating pizza without using his hands", + "pred": "a man sitting in front of a box of pizzas" + }, + { + "label": "two surfers paddle back to the beach on their surfboards", + "pred": "a girl and a boy on a surfboard in the water" + }, + { + "label": "those look like remote or game controls in their hands", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a person holding a piece of cake", + "pred": "a woman holding a piece of cake on top of a plate" + }, + { + "label": "people in an office and then male is eating pizza", + "pred": "a man sitting in front of a box of pizzas" + }, + { + "label": "two kids with red hair riding surfboards onto the beach", + "pred": "a girl and a boy on a surfboard in the water" + }, + { + "label": "a man doing a trick on a skateboard over some steps", + "pred": "a person doing a trick on a skateboard" + }, + { + "label": "a man eating pizza from pizza boxes on top of tables", + "pred": "a man sitting in front of a box of pizzas" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a laptop computer sitting on top of a lego desk", + "pred": "a computer keyboard sitting on top of a table" + }, + { + "label": "lego figures standing on a and near a laptop", + "pred": "a computer keyboard sitting on top of a table" + }, + { + "label": "a woman holding a plate with a slice of cake", + "pred": "a woman holding a piece of cake on top of a plate" + }, + { + "label": "men in the water on surfboards", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man in blue shirt and white shorts playing tennis", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "guy flips his skateboard in mid air doing a trick", + "pred": "a person doing a trick on a skateboard" + }, + { + "label": "people sitting at a table with computers, pizza boxes, and chicken wings", + "pred": "a man sitting in front of a box of pizzas" + }, + { + "label": "a man doing a skateboard trick on some stairs", + "pred": "a person doing a trick on a skateboard" + }, + { + "label": "a laptop sitting on plastic blocks with some toy people", + "pred": "a computer keyboard sitting on top of a table" + }, + { + "label": "a boy performs a skateboarding stunt in a skate park", + "pred": "a person doing a trick on a skateboard" + }, + { + "label": "a newly wed couple smiles as they slice the white cake together", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "a man on a skateboard jumping up in the air", + "pred": "a person doing a trick on a skateboard" + }, + { + "label": "a surfer surfing on top of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "leggo people positioned near and on a keyboard", + "pred": "a computer keyboard sitting on top of a table" + }, + { + "label": "a person playing a game of tennis with a racket", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "a woman holding a plate of cake with frosting and icing", + "pred": "a woman holding a piece of cake on top of a plate" + }, + { + "label": "a tennis player getting ready to his a tennis ball", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "two people laying on surf boards in the ocean", + "pred": "a girl and a boy on a surfboard in the water" + }, + { + "label": "a man wearing a black wetsuit surfing in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man holding a tennis racquet standing on a court", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "a man leaning his head in a box of pizza with some pizza in his mouth", + "pred": "a man sitting in front of a box of pizzas" + }, + { + "label": "male professional tennis player swinging at a tennis ball", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "people on a wave using a surf board in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people riding the high waves on their surfboards", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a clock on wood wall above various gaming machines", + "pred": "a clock on a wall in a room" + }, + { + "label": "wood paneled walls with electronic type games nearby", + "pred": "a clock on a wall in a room" + }, + { + "label": "a man and woman cutting a cake at a table", + "pred": "a woman standing next to a man in front of a cake" + }, + { + "label": "a plate of food that includes pickles and a sandwich", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "a man on a court swinging a tennis racket", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "two people standing on a tennis court playing tennis", + "pred": "two men standing on a tennis court holding racquets" + }, + { + "label": "a woman is holding a slice of red and white cake", + "pred": "a woman holding a piece of cake on top of a plate" + }, + { + "label": "a person on a tennis court standing on one leg", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "the young man is surfing in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man surfs at the top of the wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a clock high up on a wall in a room", + "pred": "a clock on a wall in a room" + }, + { + "label": "two mean are playing tennis and both are wearing sunglasses", + "pred": "two men standing on a tennis court holding racquets" + }, + { + "label": "a tennis player swinging a racket at a ball", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a number of lego toys near a laptop", + "pred": "a computer keyboard sitting on top of a table" + }, + { + "label": "two surfers riding the waves in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a deep dish and thick crusted pizza with toppings", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "two people playing a game of tennis with rackets", + "pred": "two men standing on a tennis court holding racquets" + }, + { + "label": "two surfers riding the waves in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man on a court swinging a tennis racket", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "two tennis players on a court with rackets", + "pred": "two men standing on a tennis court holding racquets" + }, + { + "label": "a clock mounted high up above a jukebox", + "pred": "a clock on a wall in a room" + }, + { + "label": "a sandwich with a pickle and chips on the side", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "two men with tennis rackets playing doubles tennis", + "pred": "two men standing on a tennis court holding racquets" + }, + { + "label": "a baked dish on a plate being touched by a woman", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a man hitting a tennis ball on a professional court", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a herb topped pizza lying on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man cutting pizza on a plate on the table", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a sandwich is placed next to some vegetables", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "a vegetable pizza seems to be ready to be eaten", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a pizza pie being enjoyed at a cafe of some sort", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "flat pizza like object sitting on table with a person taking a slice", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a sandwich comprised of rustic bread, tomatoes and sprouts on a plate along side a sliced tomato, pickles and chips", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "a man standing on a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a narrow hotel room with two made up beds", + "pred": "a bedroom with a large bed and a large window" + }, + { + "label": "a white plate topped with a pizza cut into 6 slices", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a clock at an arcade", + "pred": "a clock on a wall in a room" + }, + { + "label": "an adidas advertisement depicts a male and a female tennis player on the court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a large modern hotel room with double beds", + "pred": "a bedroom with a large bed and a large window" + }, + { + "label": "a boy is preparing to serve a volley ball", + "pred": "people playing a game of frisbee on a court" + }, + { + "label": "a sandwich with tomato and pickles on the side", + "pred": "a white plate topped with a sandwich and vegetables" + }, + { + "label": "a pizza with cheese and spinach on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "large beds in a small room", + "pred": "a bedroom with a large bed and a large window" + }, + { + "label": "a hotel room with two beds side by side", + "pred": "a bedroom with a large bed and a large window" + }, + { + "label": "a man serving a volley ball on a court", + "pred": "people playing a game of frisbee on a court" + }, + { + "label": "teams of children wearing blue and green uniforms playing volleyball inside an auditorium", + "pred": "people playing a game of frisbee on a court" + }, + { + "label": "the boys are playing volleyball in the gym", + "pred": "people playing a game of frisbee on a court" + }, + { + "label": "an ad for adidas featuring a man and woman playing tennis together", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player waits for the ball to be hit", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a gym full of men playing volleyball with each other", + "pred": "people playing a game of frisbee on a court" + }, + { + "label": "a surfer jumping off of a wave", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "retro advertisement for adidas featuring two tennis players", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "two beds are in a hotel room type setting", + "pred": "a bedroom with a large bed and a large window" + }, + { + "label": "a man is surfing and a wave is crashing", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a pizza on tray cut into six slices", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a woman wearing a white hat and white coat snowboarding down a slope", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "an advertisement for tennis gear with two players in tennis stances", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a girl in a white jacket is snowboarding down a slope", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a man wearing a white tshirt hits a tennis ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a tennis player crouched in a ready position", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man on a court with a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a girl glides down a snowy hill on a snowboard", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "an advertisement for adidas showing two tennis players", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man on a surfboard with a safety line attached whipping out", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a guy is splashing through the waves on his surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person is surfing in a wave pool", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman in black wetsuit surfing on wave river", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a girl in a ski jacket and hat riding a snow board", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a small child is reaching for the camera", + "pred": "a young child is posing for a picture" + }, + { + "label": "a person is holding a tomato above a tray", + "pred": "a person holding a piece of pizza in a pan" + }, + { + "label": "a man playing tennis in a tennis court runs to hit he ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man on the court with his tennis racket raised", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a child on a couch", + "pred": "a young child is posing for a picture" + }, + { + "label": "a man playing tennis is swinging his racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a hot dog with mustard is next to a bottle of soda", + "pred": "a hot dog on a bun next to a bottle of soda" + }, + { + "label": "a person on a surfboard is surfing on a crashing wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman in white jacket snowboarding on snowy hill", + "pred": "a person riding a snowboard down a snow covered slope" + }, + { + "label": "a hot dog on a bun sitting next to a bottle of bubble up", + "pred": "a hot dog on a bun next to a bottle of soda" + }, + { + "label": "young lady, wearing a black dress, brushing her teeth", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "a person holding a small tomato over a tray that has sauce on it", + "pred": "a person holding a piece of pizza in a pan" + }, + { + "label": "a surfer is riding on a surfboard against a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a very large pizza on a wooden table", + "pred": "a large pizza sitting on top of a wooden table" + }, + { + "label": "a tray filled with sauce covered food", + "pred": "a person holding a piece of pizza in a pan" + }, + { + "label": "a surfer is surfing in a wave simulator", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man surfing on some waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a baby is reaching up toward the camera", + "pred": "a young child is posing for a picture" + }, + { + "label": "two surfers in wetsuits carrying surfboards along the beach", + "pred": "two people riding horses on a beach near the ocean" + }, + { + "label": "a giant pizza sitting on top of a large cutting board", + "pred": "a large pizza sitting on top of a wooden table" + }, + { + "label": "a boy reaching towards his reflection in a mirror like object", + "pred": "a young child is posing for a picture" + }, + { + "label": "two surfers walking along the ocean beach in the sand", + "pred": "two people riding horses on a beach near the ocean" + }, + { + "label": "the little baby is reaching up with his hand", + "pred": "a young child is posing for a picture" + }, + { + "label": "a surfer is riding a wave on a narrow waterway", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a bottle is next to a hotdog on foil", + "pred": "a hot dog on a bun next to a bottle of soda" + }, + { + "label": "a woman lying on a bed underneath a blanket", + "pred": "a young girl sitting on a bed with a stuffed animal" + }, + { + "label": "a cutting board covered with a big pepperoni pizza", + "pred": "a large pizza sitting on top of a wooden table" + }, + { + "label": "a single person riding a big wave with a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the lunchbox has a cold sandwich, strawberry yogurt and orange juice", + "pred": "a tray of food that includes a sandwich and a bagel" + }, + { + "label": "a person is doing a trick over a trash can", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "a square-shaped pizza on a wooden board near white plates", + "pred": "a large pizza sitting on top of a wooden table" + }, + { + "label": "a woman standing at the end of a tennis court holding up a racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man riding a kiteboard over the ocean under a gray sky", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "plates topped with sloppy joes", + "pred": "a white plate topped with two sandwiches on a wooden table" + }, + { + "label": "a man is surfing on a surfboard in breaking waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman laying in bed next to a window", + "pred": "a young girl sitting on a bed with a stuffed animal" + }, + { + "label": "people sitting at a table with a large oval shaped pizza", + "pred": "a large pizza sitting on top of a wooden table" + }, + { + "label": "a woman in a night gown lying on a bed", + "pred": "a young girl sitting on a bed with a stuffed animal" + }, + { + "label": "a man flying through the air while riding a skateboard", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "a large square pizza sitting on top of a pan", + "pred": "a person holding a piece of pizza in a pan" + }, + { + "label": "two people in wetsuits on beach next to water and buildings", + "pred": "two people riding horses on a beach near the ocean" + }, + { + "label": "a man in blue shirt and shorts playing a game of tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "two sloppy joe sandwiches, each on it's own plate", + "pred": "a white plate topped with two sandwiches on a wooden table" + }, + { + "label": "asian woman hiding her face while brushing her teeth", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "two people holding surfboards walk down a beach", + "pred": "two people riding horses on a beach near the ocean" + }, + { + "label": "a tennis match with a crowd watching the action", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "half a dozen donuts are sitting in a box", + "pred": "different types of donuts on a table" + }, + { + "label": "a smiling asian woman is brushing her teeth", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "the healthy lunch is packed up and ready to be eaten", + "pred": "a tray of food that includes a sandwich and a bagel" + }, + { + "label": "two surfers walking on a beach to the ocean", + "pred": "two people riding horses on a beach near the ocean" + }, + { + "label": "a girl brushing her teeth holding up her other hand trying to shield from the camera", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "a woman lounging in bed posing for this photo", + "pred": "a young girl sitting on a bed with a stuffed animal" + }, + { + "label": "a surfer doing a sharp turn in the water as his board is airborne", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two sloppy joe sandwiches on two separate plates", + "pred": "a white plate topped with two sandwiches on a wooden table" + }, + { + "label": "a woman with a robe on laying in bed", + "pred": "a young girl sitting on a bed with a stuffed animal" + }, + { + "label": "a person riding the waves on a surf board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person in a black wetsuit surfing on a wave alone", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman in white shirt and skirt playing a game of tennis", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a spare bedroom with a bed with a flowered blanket", + "pred": "a cat laying on top of a bed in a room" + }, + { + "label": "woman waiting for a serve in a tennis match", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a woman looking a mirror whiile brushing her teeth", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "a man wearing a hat does a trick on a skateboard", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "sandwich with container of fruit and container of juice in small cardboard box", + "pred": "a tray of food that includes a sandwich and a bagel" + }, + { + "label": "the surfers is surfing against a high wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "boxed meal of sandwich roll, orange juice and strawberry yogurt", + "pred": "a tray of food that includes a sandwich and a bagel" + }, + { + "label": "woman wearing white playing tennis with a partner", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "woman holding tomato over item being prepared for baking", + "pred": "a person holding a piece of pizza in a pan" + }, + { + "label": "variety of doughnuts displayed in white cardboard box", + "pred": "different types of donuts on a table" + }, + { + "label": "a man leaning over waiting for a tennis ball to hit", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man in black shirt doing a trick on a skateboard", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "a hot dog with mustard and an unopened bottle of bubble up", + "pred": "a hot dog on a bun next to a bottle of soda" + }, + { + "label": "a kite surfer gets high in the air while his kite is out of the picture frame", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "the boy jumps with a skateboard over the garbage can", + "pred": "a young man doing a trick on a skateboard" + }, + { + "label": "neatly made bed with flowered comforter in small tidy room", + "pred": "a cat laying on top of a bed in a room" + }, + { + "label": "a surfer is on top of an ocean wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "plates have sloppy joe sandwiches", + "pred": "a white plate topped with two sandwiches on a wooden table" + }, + { + "label": "a sandwich is sitting in a white plate on top of a wood table", + "pred": "a white plate topped with two sandwiches on a wooden table" + }, + { + "label": "waves crashing on the shore with a surfer in the midst", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a sandwich with some strawberry yogurt and orange juice", + "pred": "a tray of food that includes a sandwich and a bagel" + }, + { + "label": "six donuts, all being a different kind of flavor", + "pred": "different types of donuts on a table" + }, + { + "label": "a man surfs on a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfer is mostly obscured by wave foam", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person high up in the air over the water", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a person on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is riding a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the living room in a house with many figurines on the shelf", + "pred": "a living room filled with furniture and decorations" + }, + { + "label": "a person on surfboard riding on a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a variety of different donuts in a box", + "pred": "different types of donuts on a table" + }, + { + "label": "a cluttered living room with figurines on a display case and photographs on the wall", + "pred": "a living room filled with furniture and decorations" + }, + { + "label": "the six donuts are made with various seasonings", + "pred": "different types of donuts on a table" + }, + { + "label": "a man holding a tennis racket in the air", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "the antique bed has elaborate wood decoration on the frame", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a bed with a flowered bedspread and four pillows", + "pred": "a cat laying on top of a bed in a room" + }, + { + "label": "a victorian style bed, and vanity in a room", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a surfer in the middle of two waves that have crested", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfer riding the break on a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player preparing for the incoming ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man on a court with a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a hot dog and bubble up drink on a table", + "pred": "a hot dog sitting on top of a table next to a bottle of soda" + }, + { + "label": "a male tennis player is gripping his racquet with two hands", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man is above the water enjoying some skiing", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a bed is shown with a rug and side table", + "pred": "a cat laying on top of a bed in a room" + }, + { + "label": "people playing tennis in a school gymnasium", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man holding a tennis racquet with both hands", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a bedroom with a framed bed and a vanity", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a cluttered living room shows off a collection of strange artwork and action figures", + "pred": "a living room filled with furniture and decorations" + }, + { + "label": "a large wooden shelf with a bench of action figures on top of it", + "pred": "a living room filled with furniture and decorations" + }, + { + "label": "the big carved wooden bed is in the room", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a man holding on to a para sail handle being lifted into the air over the ocean", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a bed made up with a flowered bedspread and pillows with a night stand", + "pred": "a cat laying on top of a bed in a room" + }, + { + "label": "men and women playing tennis vehemently on tennis court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a room with a big mirror", + "pred": "a living room filled with furniture and decorations" + }, + { + "label": "an odd bed sits near two separate windows", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a bed and window in a small room", + "pred": "a person laying on a bed reading a book" + }, + { + "label": "a woman stands in the dining area at the table", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a young girl tries to keep her balance on a surfboard", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "people on a court playing tennis", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a bed with a laptop on it", + "pred": "a person laying on a bed reading a book" + }, + { + "label": "young girl in black balances on a pink surfboard", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "a bed in front of a window with a pad of paper on top", + "pred": "a person laying on a bed reading a book" + }, + { + "label": "a bed with a square object on it next to a window", + "pred": "a person laying on a bed reading a book" + }, + { + "label": "an object laying on a bed with sun coming through the window", + "pred": "a person laying on a bed reading a book" + }, + { + "label": "a girl in black wet suit riding on a surfboard", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "two pieces of pizza are served on a plate", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "someone is holding a black plate with two slices of pizza", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a tennis plare takes a swing very close to the net", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a room with chairs, a table, and a woman in it", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a plate with two slices of pizza on it", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "the man is intently involved in the badminton match", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a classroom of small children eating pizza", + "pred": "a large group of children sitting around a table" + }, + { + "label": "two slices of pizza on a black plate", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "guy falling off his surfboard after losing battle with the wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two slices of chicken pizza on a plate", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a man on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman standing in a kitchen by a window", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a man in shorts surfing in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man in shorts falling off of his surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "children are sitting at a dining table eating pizza", + "pred": "a large group of children sitting around a table" + }, + { + "label": "young children sitting around a long table", + "pred": "a large group of children sitting around a table" + }, + { + "label": "a young girl riding a surfboard in the ocean", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "people in a grocery story that sells fruit and drinks", + "pred": "people standing around a display of bananas" + }, + { + "label": "people on both sides of a counter at a small food market", + "pred": "people standing around a display of bananas" + }, + { + "label": "a person on a surfboard on the water", + "pred": "a woman riding a surfboard on top of a wave" + }, + { + "label": "a man is falling off a wave in the ocean", + "pred": "a person on a surfboard riding a wave" + }, + { + "label": "a person standing at a table in a room", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a man in blue shorts on surfboard riding a wave", + "pred": "a person on a surfboard riding a wave" + }, + { + "label": "large group of little kids and adults sitting and surrounding a long table with blue plates", + "pred": "a large group of children sitting around a table" + }, + { + "label": "a man is riding a surfboard on a wave", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "people in a store that is selling bananas and apples", + "pred": "people standing around a display of bananas" + }, + { + "label": "a man and his surfboard survey a stormy sea", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a man and woman cutting a slice of cake by trees", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a woman in white dress playing a game of tennis", + "pred": "a woman holding a tennis racket on a tennis court" + }, + { + "label": "a man with a surfboard is watching the waves", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a man holding a surfboard on top of a sandy beach", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a living area with a television and a table", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "four people are smiling together over a box of pizza", + "pred": "a man and a woman sitting next to each other" + }, + { + "label": "a man is at the counter by a bowl of fruit", + "pred": "people standing around a display of bananas" + }, + { + "label": "the man is riding the surfboard on the water", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man stands on the beach holding his surfboard", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "a surfer holding a surf board at the edge of the beach watching the surf", + "pred": "a man standing on a beach holding a surfboard" + }, + { + "label": "two women and two men smiling over a pizza", + "pred": "a man and a woman sitting next to each other" + }, + { + "label": "surf boards adorn the windows of a dessert shop", + "pred": "a surfboard sitting on top of a wooden table" + }, + { + "label": "surfboards line the restaurant windows with the chalkboard menu", + "pred": "a surfboard sitting on top of a wooden table" + }, + { + "label": "two customers and three employees interact in the deli", + "pred": "people standing around a display of bananas" + }, + { + "label": "surfboards sitting up against wooden poles", + "pred": "a surfboard sitting on top of a wooden table" + }, + { + "label": "people standing cutting a cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "smiling people indoors posing with a delivery pizza", + "pred": "a man and a woman sitting next to each other" + }, + { + "label": "the dork with the earring stands next to the asian beauty who is way out of his league", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a person on a surfboard in the water", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a person on a surfboard riding a wave" + }, + { + "label": "a woman holding a lemon by her side and a tennis racquet in the other hand", + "pred": "a woman holding a tennis racket on a tennis court" + }, + { + "label": "a newly married couple cutting a cake in a park", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a woman in black shirt and skirt playing a game of tennis", + "pred": "a woman hitting a tennis ball with a racquet" + }, + { + "label": "people on snow shoes posing for a photo", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "four people at a wooden table sitting around a box of pizza", + "pred": "a man and a woman sitting next to each other" + }, + { + "label": "three surfboards in a display with awards and pictures", + "pred": "a surfboard sitting on top of a wooden table" + }, + { + "label": "children sitting at a long table eating pizza", + "pred": "a large group of children sitting around a table" + }, + { + "label": "a surfer is in the middle of an ocean wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a cluttered home office desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "people playing a soccer game on the field", + "pred": "young men playing a game of soccer" + }, + { + "label": "soccer players on a field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a woman who is holding a tennis racket and scratching her butt", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a para sailor launching his sail at the beach", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a young boy laying on top of a bed", + "pred": "a baby laying on top of a bed covered in pillows" + }, + { + "label": "soccer players are having a confrontation", + "pred": "young men playing a game of soccer" + }, + { + "label": "boy sleeping with no blanket in a large bed", + "pred": "a baby laying on top of a bed covered in pillows" + }, + { + "label": "three snow boards behind trophies in a window", + "pred": "a surfboard sitting on top of a wooden table" + }, + { + "label": "laptop computer on long desk with assorted paperwork", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a female kite surfer hoping a kite and a surfboard", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "three people with ski poles standing in the snow", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "a bride and groom are cutting a cake as they smile", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a tennis player is hitting a ball on the court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a surfer kneels as he catches a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a young boy sleeping on the side of his bed", + "pred": "a baby laying on top of a bed covered in pillows" + }, + { + "label": "in home desk, covered with papers and two computers", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "the surfer is trying to challenge the big wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "friends gathered around a box of pizza", + "pred": "a man and a woman sitting next to each other in front of a pizza" + }, + { + "label": "a barefoot woman walking with a tennis racket and her hand on her butt", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a teddy bear watching a man with a tennis racket", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "three young people on skis pose for a picture", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "a teddy bear on a television with a tennis player holding a racket", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young boy sleeping on floral printed sheets", + "pred": "a baby laying on top of a bed covered in pillows" + }, + { + "label": "a stuffed animal watching an excited tennis player on tv", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a surfer riding the inside of the curve of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a female tennis player lifting up her skirt", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a tennis player running to get to the ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a person riding the surf of a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person who is standing on the beach and flying a kite", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a woman wearing an army t-shirt hits a tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "adult soccer players waling in a grassy area", + "pred": "young men playing a game of soccer" + }, + { + "label": "three people on skis are posing for a picture in the snow", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "a boy asleep on a large bed under a mosquito net", + "pred": "a baby laying on top of a bed covered in pillows" + }, + { + "label": "a surfer that has fallen off of his surf board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfer takes a spill on a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player dressed in all black returning the ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a surfer loses his balance at the end of a ride", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the woman is playing a game of tennis on the court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man is standing on the beach with a surfboard, flying a kite", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person wearing a wetsuit riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "male surfer demonstrating skills on small breaking wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a stuffed bear is watching a tennis player on television", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "men speak to each other on the rugby field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a person on a surf board riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "man on surf board riding a wave of green and white", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man shouting with a tennis racquet in hand", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman tennis player in a black army shirt and tennis skirt, swinging a tennis racket", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man in wetsuit and a surfboard in the waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman flying a kite over a sandy beach", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a surfer falls off of his board at a beach", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man holding a ball while standing next to a gate", + "pred": "a man swinging a baseball bat on top of a field" + }, + { + "label": "a white desk is covered with papers and has a silver lap top on it", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a surfer flies off the crest of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "three different donuts one is pink one is brown and one has white sprinkles", + "pred": "a plate of donuts with chocolate frosting and sprinkles" + }, + { + "label": "the hotel guests have messed up their room", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a hotel room with focus on the two beds", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "glazed donuts are sitting on a white counter", + "pred": "a pile of donuts sitting on top of a table" + }, + { + "label": "a pizza with lots of cheese on a flat brown surface", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "glazed doughnuts lined up on a bakery tray", + "pred": "a pile of donuts sitting on top of a table" + }, + { + "label": "a squinting tennis player stares at a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a tennis player shows controlled excitement while a crowd watches", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man looking at a picture of a tv screen", + "pred": "a woman standing in front of a tour bus" + }, + { + "label": "a slice of pizza sitting on top of a white plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a person leaping into the air while holding a tennis racquet", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "two females are holding jelly donuts with a bite taken out", + "pred": "two women smile as they pose for a picture" + }, + { + "label": "a woman holding a little boy who is brushing his teeth", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "a male tennis player in a white shirt is holding his racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man riding on top of a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a table topped with a white plate covered in three donuts", + "pred": "a plate of donuts with chocolate frosting and sprinkles" + }, + { + "label": "a box filled with lots of glazed donuts", + "pred": "a pile of donuts sitting on top of a table" + }, + { + "label": "chair at a desk in the corner with lamp, monitor, keyboard and mouse on top", + "pred": "a computer desk with a monitor and keyboard" + }, + { + "label": "a man in a tennis match holding his racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a baby with a toothbrush in his mouth while being held by a woman", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "a slice of pizza with toppings on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a piece of pizza sitting on a plate while a t.v. is on", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a guy in a wet suite riding a surfboard on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "person is riding a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "an adult holding a child brushing their teeth", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "surfer riding out end of wave with large breaking wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "an overhead view of a pizza on a pizza stone", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a large pizza on a stone pizza cooking tray", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "glazed donuts sitting on a table", + "pred": "a pile of donuts sitting on top of a table" + }, + { + "label": "a man on a tennis court holding a racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a single slice of pizza with ham slices on it on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a person riding a skate board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "man and boys holding two surfboards getting picture taken", + "pred": "a crowd of people standing around a christmas tree" + }, + { + "label": "a man on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player sitting in a chair shirtless", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a tennis player on a court with a racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "adults playing soccer on a field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a man in a wetsuit on a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a ham pizza with grated parmesan is on a plate in front of a tv", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "people in room with surfboards", + "pred": "a crowd of people standing around a christmas tree" + }, + { + "label": "boys posing for a picture beside two surf boards", + "pred": "a crowd of people standing around a christmas tree" + }, + { + "label": "the two teams are kicking a soccer ball", + "pred": "young men playing a game of soccer" + }, + { + "label": "a variety of doughnuts sitting on a paper plate", + "pred": "a plate of donuts with chocolate frosting and sprinkles" + }, + { + "label": "a person in a wet suit on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people pose for a picture while a man holds two surfboards", + "pred": "a crowd of people standing around a christmas tree" + }, + { + "label": "a piece of cake left on a plate", + "pred": "a piece of cake sitting on top of a plate" + }, + { + "label": "a woman sitting on a surfboard in the ocean", + "pred": "a woman standing on a surfboard in the water" + }, + { + "label": "a book shelf filled with lots of colorful books", + "pred": "a book shelf filled with books on top of each other" + }, + { + "label": "four kids sitting on surfboards with man", + "pred": "a man standing on top of a beach holding a frisbee" + }, + { + "label": "a man without a shirt sitting in front of a fan", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "frosted and sprinkled donuts stacked on a paper plate", + "pred": "a plate of donuts with chocolate frosting and sprinkles" + }, + { + "label": "a man makes a splash as he surfs on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the tennis player looks solemn holding his racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "children and an instructor on a beach, with the children sitting on surfboards", + "pred": "a man standing on top of a beach holding a frisbee" + }, + { + "label": "a man laying in bed holding a plate of food", + "pred": "a man sitting on a bed with a bottle of wine" + }, + { + "label": "a bookshelf laden with books and ring binders", + "pred": "a book shelf filled with books on top of each other" + }, + { + "label": "a shelf with a bunch of books laying on it", + "pred": "a book shelf filled with books on top of each other" + }, + { + "label": "a woman on a boogie board riding a wave", + "pred": "a woman is sitting on a surfboard in the ocean" + }, + { + "label": "a person riding a beautiful wave very smooth", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person in a wetsuit riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "books on all three shelves of this book shelf", + "pred": "a book shelf filled with books on top of each other" + }, + { + "label": "a tennis player is standing on a tennis court with a racquet in his hand", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "people who are posing for a picture", + "pred": "a crowd of people standing around a christmas tree" + }, + { + "label": "three level book shelve with many books in front of blue wall", + "pred": "a book shelf filled with books on top of each other" + }, + { + "label": "a part of a cake on a plate with a knife and cake server next to it", + "pred": "a piece of cake sitting on top of a plate" + }, + { + "label": "a tennis player is jumping and reaching to hit the ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a man is riding a wave as he surfs in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "man and woman holding a knife up to a small cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a shirtless man sits in front of a fan", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a women sits on top of an object in a body of water", + "pred": "a woman standing on a surfboard in the water" + }, + { + "label": "a pizza on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man standing on a beach next to four other people", + "pred": "a man standing on top of a beach holding a frisbee" + }, + { + "label": "a shirtless man sitting down at a tennis match with a fan in his back", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a hand adding a cherry to some small tarts", + "pred": "a cupcake with sprinkles on top of it" + }, + { + "label": "kids being instructed on how to boogie board", + "pred": "a man standing on top of a beach holding a frisbee" + }, + { + "label": "a person touching a cupcake", + "pred": "a cupcake with sprinkles on top of it" + }, + { + "label": "a player attempting to cool off during a tennis match", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "donuts with frosting and glazed toppings sit on table next to coffee maker", + "pred": "a plate of donuts with chocolate frosting and sprinkles" + }, + { + "label": "a man eating in his bed", + "pred": "a man sitting on a bed with a bottle of wine" + }, + { + "label": "a room with many medical supplies in it", + "pred": "a hospital room filled with lots of medical equipment" + }, + { + "label": "a woman looks to her right while straddling a surfboard in the ocean", + "pred": "a woman standing on a surfboard in the water" + }, + { + "label": "five surfers learning how to surf by the ocean", + "pred": "a man standing on top of a beach holding a frisbee" + }, + { + "label": "a pizza that is sitting on a plate, on a table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a couple cut their wedding cake on their wedding day", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a person in a wetsuit riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a camera is shown viewing 3 cupcakes, one of which is being touched", + "pred": "a cupcake with sprinkles on top of it" + }, + { + "label": "woman in wet suit considers waves near forested coastline", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a camera showing a picture of someone touching a cupcake", + "pred": "a cupcake with sprinkles on top of it" + }, + { + "label": "a girl in all black surf boarding in a red surfboard", + "pred": "a woman standing on a surfboard in the water" + }, + { + "label": "adult man wearing bathrobe in bed while eating plate of food", + "pred": "a man sitting on a bed with a bottle of wine" + }, + { + "label": "woman surfing small wave using a body board", + "pred": "a woman is sitting on a surfboard in the ocean" + }, + { + "label": "a woman lies in a hospitable bed in a panoramic scene of the room", + "pred": "a hospital room filled with lots of medical equipment" + }, + { + "label": "people with surf boards", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a plate of two slices of pizza and a cup of juice", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "girl sitting on surfboard at sunset on the ocean", + "pred": "a woman standing on a surfboard in the water" + }, + { + "label": "person laying in a hospital bed with lots of equipment", + "pred": "a hospital room filled with lots of medical equipment" + }, + { + "label": "woman in black body suit surfing on a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a pizza with toppings served on a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man kicking a soccer ball during a soccer game", + "pred": "young men playing a game of soccer" + }, + { + "label": "man laying in bed eating a piece of toast", + "pred": "a man sitting on a bed with a bottle of wine" + }, + { + "label": "a white woman with a blue surf board", + "pred": "a woman is sitting on a surfboard in the ocean" + }, + { + "label": "a remote control, book and phone sitting on a bed", + "pred": "a cell phone sitting on top of a piece of paper" + }, + { + "label": "a lady laying in a bed in a room full of stuff", + "pred": "a hospital room filled with lots of medical equipment" + }, + { + "label": "a very tasty looking pizza with some toppings", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "the person in the bodysuit is surfing a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "slices of meat pizza with a shot glass of mustard", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "white flowers on a white decorative wedding cake", + "pred": "a wedding cake with flowers on a table" + }, + { + "label": "men are playing soccer on a field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a movie scene where actors are pretending to surf", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a plate with a couple pieces of pizza sitting on it", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "donuts in a box and a type of meat on a plate", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a man and woman making a cut into a cake together", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a wedding cake sitting on a table with flowers", + "pred": "a wedding cake with flowers on a table" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the dual image shows people carrying their surfboards under their arms", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a women is laying on a board surfing a small wave", + "pred": "a woman is sitting on a surfboard in the ocean" + }, + { + "label": "people with surf boards near a big wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person on a boogie board in the water", + "pred": "a woman is sitting on a surfboard in the ocean" + }, + { + "label": "the table has meat and donuts sitting on it", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a bride and groom couple cuts the wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a bride and groom cutting a wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "two slices of pizza sit on a plate with an orange drink", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "panoramic view of a hospital room with medical machines and a woman lying in hospital bed", + "pred": "a hospital room filled with lots of medical equipment" + }, + { + "label": "a piece of cake and a knife on a plate", + "pred": "a piece of cake sitting on top of a plate" + }, + { + "label": "a close up picture of a table with some good food on it", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a pizza with french fries on it on a table", + "pred": "a plate of fries and a beer on a table" + }, + { + "label": "the man is riding the waves on the water on his board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person with a piece of pizza over a plate", + "pred": "a man sitting on a bed with a bottle of wine" + }, + { + "label": "a phone and remote that are sitting on a bed", + "pred": "a cell phone sitting on top of a piece of paper" + }, + { + "label": "a man in a red shirt rides a yellow surfboard on light blue water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "surfers holding boards standing in water at ocean", + "pred": "a woman carrying a surfboard into the ocean" + }, + { + "label": "a cell phone and game case on a bed", + "pred": "a cell phone sitting on top of a piece of paper" + }, + { + "label": "french fries on a pizza with a bottle of beer", + "pred": "a plate of fries and a beer on a table" + }, + { + "label": "group of decorated cupcakes being filmed on camera", + "pred": "a cupcake with sprinkles on top of it" + }, + { + "label": "a wedge of chocolate cake leftover on a platter", + "pred": "a piece of cake sitting on top of a plate" + }, + { + "label": "a box of doughnuts and some food on a plate", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a snowboarder sailing down a snowy hillside on a mountain", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a man on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a large white cake on a small table", + "pred": "a wedding cake with flowers on a table" + }, + { + "label": "a kite surfer is flying in the air over some water", + "pred": "a person riding a board on top of a body of water" + }, + { + "label": "soccer players in orange and grey uniforms on a field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a surfer in a red top is surfing on a white and green board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a hot dog and a bun with some mustard", + "pred": "a hot dog in a bun with mustard and ketchup" + }, + { + "label": "food on plates and a box of doughnuts", + "pred": "a box of donuts sitting on top of a table" + }, + { + "label": "a white plate with some food and two trays of sauce", + "pred": "a cut in half sandwich on a white plate" + }, + { + "label": "a prepared plate of food has pizza and french fries", + "pred": "a plate of fries and a beer on a table" + }, + { + "label": "a wedding cake topping with decor and flowers", + "pred": "a wedding cake with flowers on a table" + }, + { + "label": "a man on a snowboard in the snow", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a half eaten slice of pizza is on a plate with a knife and fork", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "slices of pizza and a glass of drink", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "pizza with olives on black plate setting on table", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "hotdog on bun with what looks like horseradish sauce", + "pred": "a hot dog in a bun with mustard and ketchup" + }, + { + "label": "it looks like a hand of a small child with pink and white top", + "pred": "a baby laying on a bed with a blanket" + }, + { + "label": "a sleeping child in a bed with a black and white cover", + "pred": "a bed with a blanket on top of it" + }, + { + "label": "a mostly eaten chocolate cake with one slice left", + "pred": "a piece of cake sitting on top of a plate" + }, + { + "label": "a soccer playing getting ready to kick a ball during a game", + "pred": "a man kicking a soccer ball on a field" + }, + { + "label": "a bed with a person sleeping in it covered in a blanket", + "pred": "a bed with a blanket on top of it" + }, + { + "label": "a veggie pizza is sitting on a white plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man serving another man a cake with candles on it", + "pred": "a man and a woman are blowing out candles on a birthday cake" + }, + { + "label": "a pizza covered in french fries on top of a wooden table", + "pred": "a plate of fries and a beer on a table" + }, + { + "label": "sandwich slices with lettuce sitting next to condiments", + "pred": "a cut in half sandwich on a white plate" + }, + { + "label": "a machine in a factory with a blue chair sitting next to it", + "pred": "a machine that is being worked on" + }, + { + "label": "a white cake covered in flowers and white frosting", + "pred": "a wedding cake with flowers on a table" + }, + { + "label": "a person on a board holding a para sail rope over a snow field", + "pred": "a person in the air with a kite in the air" + }, + { + "label": "a donuts machine making donuts in large batches", + "pred": "a machine that is being worked on" + }, + { + "label": "a hot dog on a bun with spicy mustard on it", + "pred": "a hot dog in a bun with mustard and ketchup" + }, + { + "label": "a man holding a cake with lit candles up to another man", + "pred": "a man and a woman are blowing out candles on a birthday cake" + }, + { + "label": "women standing around a cake cutting slices", + "pred": "people sitting around a table with a cake" + }, + { + "label": "a girl wearing all green playing soccer on a soccer field", + "pred": "a man kicking a soccer ball on a field" + }, + { + "label": "a hand of a person wearing a pink and white shirt", + "pred": "a baby laying on a bed with a blanket" + }, + { + "label": "a white plate with a sandwich cut in half with ketchup and mustard", + "pred": "a cut in half sandwich on a white plate" + }, + { + "label": "a book a camera lens a cellphone on a white counter top", + "pred": "a cell phone sitting on top of a piece of paper" + }, + { + "label": "people using machinery to make donuts", + "pred": "a machine that is being worked on" + }, + { + "label": "a remote control, a book, a cellphone and a camera lens attachment on top of a white bed sheet", + "pred": "a cell phone sitting on top of a piece of paper" + }, + { + "label": "a meal is on a plate on a dining table", + "pred": "a cut in half sandwich on a white plate" + }, + { + "label": "hot dog with mustard on it sitting on a white napkin", + "pred": "a hot dog in a bun with mustard and ketchup" + }, + { + "label": "young man on top of a snowboard wearing maroon jacket", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a hot dog sitting on top of a bun in a wrapper", + "pred": "a hot dog in a bun with mustard and ketchup" + }, + { + "label": "a white plate topped with two pieces of food next to white dishes", + "pred": "a cut in half sandwich on a white plate" + }, + { + "label": "a pizza covered in lots of greens on top of a table", + "pred": "a pizza sitting on top of a cutting board" + }, + { + "label": "a man riding a snowboard down a ski slope", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a female soccer player about to kick the ball", + "pred": "a man kicking a soccer ball on a field" + }, + { + "label": "a woman brushes her teeth with foamy toothpaste", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "a pizza with bacon bits and spinach leaves on it", + "pred": "a pizza sitting on top of a cutting board" + }, + { + "label": "a plate with a pizza covered in french fries sits next to a beer", + "pred": "a plate of fries and a beer on a table" + }, + { + "label": "a child's hand holding onto a white counter top", + "pred": "a baby laying on a bed with a blanket" + }, + { + "label": "leafy greens and sun dried tomatoes on something", + "pred": "a pizza sitting on top of a cutting board" + }, + { + "label": "man wearing red hoodie being presented with cake", + "pred": "a man and a woman are blowing out candles on a birthday cake" + }, + { + "label": "a man riding a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person using a parachute with a wake board", + "pred": "a person in the air with a kite in the air" + }, + { + "label": "a little boy asleep under a sunflower print blanket", + "pred": "a bed with a blanket on top of it" + }, + { + "label": "women and children are gathered around a blue cake", + "pred": "people sitting around a table with a cake" + }, + { + "label": "male surfer in the water doing tricks on his surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is surfing in the crystal blue water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person in a bed with a dark bedspread with flowers", + "pred": "a bed with a blanket on top of it" + }, + { + "label": "a woman with foam coming out of her mouth, brushing her teeth", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "two people standing in the surf with their surfboards", + "pred": "a woman carrying a surfboard into the ocean" + }, + { + "label": "a bagel machine is making bagels while people people work", + "pred": "a machine that is being worked on" + }, + { + "label": "a man is snowboarding past blue markers on a mountain", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "women are at the beach with surfboards", + "pred": "a woman carrying a surfboard into the ocean" + }, + { + "label": "a infant holding a baby toothbrush in his hand looking at it", + "pred": "a baby holding a toothbrush in its mouth" + }, + { + "label": "a young boy is standing on a snowboard", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a wild rides the waves on his surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man presents a cake with lit candles on it to a seated man", + "pred": "a man and a woman are blowing out candles on a birthday cake" + }, + { + "label": "a small baby is holding a white and blue toothbrush", + "pred": "a baby holding a toothbrush in its mouth" + }, + { + "label": "laptop with computer monitors displayed on wooden desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "three computers are shown at the wooden desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "people outside at table eating cake on plates", + "pred": "people sitting around a table with a cake" + }, + { + "label": "a person on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a dog rests on a bed in a bedroom where one person is also sitting", + "pred": "a cat laying on top of a bed in a bedroom" + }, + { + "label": "a surfer rides a wave in front of a long beachside boardwalk", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a wetsuit clad surfer catching a wave in front of a pier", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is being handed a birthday cake with lit candles", + "pred": "a man and a woman are blowing out candles on a birthday cake" + }, + { + "label": "a close up photo of a pizza with a lettuce and prosciutto topping", + "pred": "a pizza sitting on top of a cutting board" + }, + { + "label": "a desktop setup with a laptop and two monitors", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a person up in the air on a snowboard", + "pred": "a person in the air with a kite in the air" + }, + { + "label": "a baby's hand is holding on to the bed sheets", + "pred": "a baby laying on a bed with a blanket" + }, + { + "label": "a person that is jumping in the sky on a snowboard", + "pred": "a person in the air with a kite in the air" + }, + { + "label": "a snowboarder is flying in the air over snow", + "pred": "a person in the air with a kite in the air" + }, + { + "label": "people are standing in the snow", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a soccer player in action on a field", + "pred": "a man kicking a soccer ball on a field" + }, + { + "label": "a tennis players concentrates as he prepares to smack the ball", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a dining table with some very tasty looking pizza", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "an office desk with two computer monitors and one laptop", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a dog laying on a bed in a bedroom with wood floors", + "pred": "a cat laying on top of a bed in a bedroom" + }, + { + "label": "a person and a chair next to a doughnut machine", + "pred": "a machine that is being worked on" + }, + { + "label": "a young woman kicking a soccer ball down a field", + "pred": "a man kicking a soccer ball on a field" + }, + { + "label": "child in bed covered with a flower patterned blanket", + "pred": "a bed with a blanket on top of it" + }, + { + "label": "a person holds their hand on a bed", + "pred": "a baby laying on a bed with a blanket" + }, + { + "label": "people sit at a table with cake", + "pred": "people sitting around a table with a cake" + }, + { + "label": "an old black and white photo of a tennis player", + "pred": "a young girl holding a tennis racquet on a tennis court" + }, + { + "label": "a tennis player getting ready to swing a racket", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a pizza is shown with various toppings on it", + "pred": "a pizza sitting on top of a cutting board" + }, + { + "label": "people standing near a table with cake", + "pred": "people sitting around a table with a cake" + }, + { + "label": "a male tennis player in action on the court", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a pretty young dark haired girl brushing her teeth", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "people with surfboards in the water", + "pred": "a woman carrying a surfboard into the ocean" + }, + { + "label": "a plate that has food on a table", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "a man in a wetsuit that is riding on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two people holding surf boards in a body of water", + "pred": "a woman carrying a surfboard into the ocean" + }, + { + "label": "a man holds on tight as he rides across the water", + "pred": "a person riding a board on top of a body of water" + }, + { + "label": "a table with many different objects, including a plate of sandwiches", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a person on skis does a trick on a rail", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a bed room with a dog in a neatly made bed", + "pred": "a cat laying on top of a bed in a bedroom" + }, + { + "label": "a man riding a snowboard on top of snow covered ground", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "a child holds a toothbrush in their hand", + "pred": "a baby holding a toothbrush in its mouth" + }, + { + "label": "a woman holds a racket in front of a net", + "pred": "a young girl holding a tennis racquet on a tennis court" + }, + { + "label": "the baby is holding and looking at his tooth brush", + "pred": "a baby holding a toothbrush in its mouth" + }, + { + "label": "a woman standing up brushing her teeth with a toothbrush", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "a woman smiles from behind the book she has been reading", + "pred": "a beautiful young lady laying on a bed reading a book" + }, + { + "label": "a dog is sitting on a neatly made bed while someone looks on", + "pred": "a cat laying on top of a bed in a bedroom" + }, + { + "label": "a young person is on their ski board in the snow", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "plates of pizza with silverware next to ketchup and other condiments", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "woman sitting around at a picnic", + "pred": "a large group of people sitting around a picnic table" + }, + { + "label": "a man is surfing on a wave in the ocean", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a woman holding a book about the topic fun", + "pred": "a beautiful young lady laying on a bed reading a book" + }, + { + "label": "a pretty lady with a red book smiling on a white bed", + "pred": "a beautiful young lady laying on a bed reading a book" + }, + { + "label": "a plate of meat topped with potatoes veggies and gravy", + "pred": "a plate of food on a table" + }, + { + "label": "a white plate with a pile of food on it", + "pred": "a plate of food on a table" + }, + { + "label": "a baby holds a toothbrush in its hand", + "pred": "a baby holding a toothbrush in its mouth" + }, + { + "label": "different foods on display on a counter", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a girl brushing her teeth in a black and white photo", + "pred": "a woman brushing her teeth in front of a mirror" + }, + { + "label": "a dog sits on top of a bed in a room", + "pred": "a cat laying on top of a bed in a bedroom" + }, + { + "label": "a person standing in a room with a remote", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a person holds onto rope above water on a board", + "pred": "a person riding a board on top of a body of water" + }, + { + "label": "ski slopes filled with many people on or holding their skis", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a large pile of food on a plate with knife", + "pred": "a plate of food on a table" + }, + { + "label": "a person on a surfboard high up over the water", + "pred": "a person riding a board on top of a body of water" + }, + { + "label": "a woman plays a video game with a controller", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a woman that is holding a book sitting on a bed", + "pred": "a beautiful young lady laying on a bed reading a book" + }, + { + "label": "a woman holding a red book in her hand while sitting on a bed", + "pred": "a beautiful young lady laying on a bed reading a book" + }, + { + "label": "a pretty young lady standing on a tennis court holding a racquet", + "pred": "a young girl holding a tennis racquet on a tennis court" + }, + { + "label": "a somber woman in a pink t-shirt raises a torch", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a man snow boarding in the snow on a slope", + "pred": "a man riding a snowboard on top of a snow covered slope" + }, + { + "label": "a woman in blue jacket standing on a snowboard", + "pred": "a man riding skis on top of a snow covered slope" + }, + { + "label": "people are all scattered around the ski station", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a desk with two monitors and a laptop on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a white plate sitting on a table filled with food", + "pred": "a plate of food on a table" + }, + { + "label": "a ski resort with a bunch of people skiing down hill and going up hill", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a counter with cakes, food and serving utensils", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a skier is skiing on a metal beam", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "people ready to ski on this beautiful day", + "pred": "a crowd of people standing on top of a snow covered slope" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a woman holding a wii controller in the air", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a variety of desserts are being displayed for people to enjoy", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a man skiing on top of a pipe", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "tennis player getting ready to back hand the ball over the net", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "girls sit on the grass with several things on a blanket", + "pred": "a large group of people sitting around a picnic table" + }, + { + "label": "an older photo of a woman on a tennis court posing with her raquet", + "pred": "a young girl holding a tennis racquet on a tennis court" + }, + { + "label": "a lone surfer trying to ride a small wave", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "plate of food with gravy on mesh table with knife", + "pred": "a plate of food on a table" + }, + { + "label": "cakes are sitting on the counter", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "women are sitting on a red blanket with food and drinks", + "pred": "a large group of people sitting around a picnic table" + }, + { + "label": "a man on ice skates sliding across a ramp in the snow", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "a tennis player gets ready to hit a ball", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a vintage photo of a woman with a tennis racket", + "pred": "a young girl holding a tennis racquet on a tennis court" + }, + { + "label": "a woman in a pink top with a video game controller", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a windsurfer glides across choppy seas in the glistening sun", + "pred": "a person riding a board on top of a body of water" + }, + { + "label": "a tennis racket and a laptop on the floor", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "people crowded around a picnic blanket", + "pred": "a large group of people sitting around a picnic table" + }, + { + "label": "pretty girls sitting on a blanket in the grass", + "pred": "a large group of people sitting around a picnic table" + }, + { + "label": "a guy on a surf board in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "unable to see this image in this particular hit", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a downward picture of a surfer catching a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man laying his head down next to electronics, a butterfly, and a book", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a man is riding a surfboard through a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person on a snowboard who is performing a trick", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a man doing a trick upside down on his snow board", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a male tennis player about to hit the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "the snowboarder does a flip at a competition", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a person on a surfboard riding a wave in the ocean", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a male tennis player is about to swing with his racket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man is laying by a racket, laptop, cell phone, and other objects", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "an over head shot of a young person surfing on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person jumping a snow board in the air", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a cake made to look like a wrestling ring", + "pred": "a cake sitting on top of a train bed" + }, + { + "label": "a woman that is looking at a white remote", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a man is swinging a tennis racket at a ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a surfer at the beach riding waves in the ocean", + "pred": "a person riding a surfboard on top of a wave" + }, + { + "label": "a woman in a red shirt is looking at her phone", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a white bed sitting in the corner of a room next to windows", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "a man getting ready to swing at a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a birthday cake that looks like a boxing ring", + "pred": "a cake sitting on top of a train bed" + }, + { + "label": "a man that is on a tennis court with a racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman holding a nintendo wii game controller near a man", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a woman in a red top inspect the remote control panel's features", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a small pizza in the middle of a table", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a small boy is riding a wave on a green yellow and black body board", + "pred": "a boy riding a wave on top of a surfboard" + }, + { + "label": "someone is sitting at a table with pizza and other food on it", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a pizza and salad is sitting on a table", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a kid sitting on a bed with a remote", + "pred": "a little boy holding a nintendo wii game controller" + }, + { + "label": "a woman is playing with a video game controller", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a person standing on a beach with surfboard", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a male tennis player wearing a blue shirt playing on the court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a person on a court with a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a kid on a surfboard in the water", + "pred": "a boy riding a wave on top of a surfboard" + }, + { + "label": "a person standing on a blue floor holding a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a table with a plate of pizza and a plate of shrimp on it", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a boy smiles as he rides his boogie board to shore", + "pred": "a boy riding a wave on top of a surfboard" + }, + { + "label": "a young boy riding a surf board in the water", + "pred": "a boy riding a wave on top of a surfboard" + }, + { + "label": "the man holds a ping pong paddle under the shelf on a wall", + "pred": "a man standing in front of a wall holding a tennis racket" + }, + { + "label": "yellow shirted tennis player looking for incoming ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a male tennis player trying to hit the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a slightly made/messy bed against the corner in a white room", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "a young man standing below a shelf full of odds and ends", + "pred": "a man standing in front of a wall holding a tennis racket" + }, + { + "label": "a man leaning back with a tennis racquet in his hand", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man is lifting a dumbbell weight with one hand", + "pred": "a man standing in front of a wall holding a tennis racket" + }, + { + "label": "an unmade bed with pillows and a decorative head board", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "wrestling ring sitting in the middle of an open room", + "pred": "a cake sitting on top of a train bed" + }, + { + "label": "a person standing in a room near a tennis racket", + "pred": "a man standing in front of a wall holding a tennis racket" + }, + { + "label": "a person on a court with a tennis racket", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man with a paddle underneath a shelf", + "pred": "a man standing in front of a wall holding a tennis racket" + }, + { + "label": "a man hitting a tennis ball with a racquet", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "man dressed in leopard robe next to a bed", + "pred": "a woman standing next to a bed in a room" + }, + { + "label": "a man walking across a beach holding a white surfboard", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a man biting into a doughnut with a sly look", + "pred": "a man with glasses eating a donut" + }, + { + "label": "a plate of cheese bread next to bread sticks and wine", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a man swinging a tennis racquet at a ball on a court", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a bedroom with large windows a ceiling fan and an unmade bed", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "a round pan covered with aluminum in the stove", + "pred": "a pan filled with food inside of an oven" + }, + { + "label": "a tennis player is standing on the court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man standing on top of a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a person riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person standing on a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man wearing glasses eating a donut", + "pred": "a man with glasses eating a donut" + }, + { + "label": "a man holding a surfboard standing by the water", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a tennis player getting ready to serve the ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man in a wet-suit surfing on a board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man on a blue surfboard on top of some rough water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the unmade bed has three pillows on it", + "pred": "a bedroom with a bed and a window" + }, + { + "label": "the oven contains a dish that is covered with tin foil", + "pred": "a pan filled with food inside of an oven" + }, + { + "label": "a casserole covered in foil is inside an oven", + "pred": "a pan filled with food inside of an oven" + }, + { + "label": "the man stands holding a surfboard as he looks out at the sea", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a surfer wearing a wetsuit is riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a male surfer enjoying surfing the ocean waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a child holding a sippy cup and the remote", + "pred": "a little boy holding a nintendo wii game controller" + }, + { + "label": "two peanut butter and jelly sandwiches sliced in half", + "pred": "a sandwich cut in half sitting on a plate" + }, + { + "label": "a man wearing glasses and eating a donut", + "pred": "a man with glasses eating a donut" + }, + { + "label": "a man wearing glasses eating a glazed donut out of doors", + "pred": "a man with glasses eating a donut" + }, + { + "label": "a nerdy young man in a baseball cap and leopard print bathrobe stands next to a bed", + "pred": "a woman standing next to a bed in a room" + }, + { + "label": "a man is wearing a leopard print robe", + "pred": "a woman standing next to a bed in a room" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a toddler in the bathroom brushing his teeth", + "pred": "a young boy brushing his teeth in the bathroom" + }, + { + "label": "a man glares as other people behind him look on", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a young man wearing an animal print robe next to a white bed", + "pred": "a woman standing next to a bed in a room" + }, + { + "label": "two plates of food and a beer in the middle of the table", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a tennis player on a court with a racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a dish covered in aluminum foil is baking in an oven", + "pred": "a pan filled with food inside of an oven" + }, + { + "label": "a young woman on a tennis court preparing to serve the ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a child wearing a baseball cap with a remote control and a sippy cup", + "pred": "a little boy holding a nintendo wii game controller" + }, + { + "label": "a young boy brushing his teeth in the bathroom", + "pred": "a young boy brushing his teeth in the bathroom" + }, + { + "label": "a birthday cake that looks like a wrestling rink", + "pred": "a cake sitting on top of a train bed" + }, + { + "label": "two plates both have food next to a bottle of wine", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a man is on the court holding his racket", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a pot of food cooking in an oven", + "pred": "a pan filled with food inside of an oven" + }, + { + "label": "a man in a leopard robe stands next to a bed", + "pred": "a woman standing next to a bed in a room" + }, + { + "label": "the little boy is drinking from a sippy cup and holding the remote control", + "pred": "a little boy holding a nintendo wii game controller" + }, + { + "label": "a brunette male tennis player stands ready to receive a serve", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "cinnamon toast and eggs that are half eaten on a table", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a tennis player anticipating the ball on the court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a tasty looking sandwich that is cut in half to eat", + "pred": "a sandwich cut in half sitting on a plate" + }, + { + "label": "a clean bed in a hotel room with towels and soap laid out", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "a little boy that has a toothbrush in his mouth", + "pred": "a young boy brushing his teeth in the bathroom" + }, + { + "label": "a man in a green shirt stands by a girl holding a piece of cake on a plate", + "pred": "a man standing next to a woman holding a sandwich" + }, + { + "label": "a man in black wetsuit on white surfboard riding wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "sandwich cut with knife and plate", + "pred": "a sandwich cut in half sitting on a plate" + }, + { + "label": "bed made with folded towels and walls with window", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "a little kid sitting on top of a bed holding a remote", + "pred": "a little boy holding a nintendo wii game controller" + }, + { + "label": "a tennis player on a court with a racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman is talking to a man and holding a plate with a piece of cake", + "pred": "a man standing next to a woman holding a sandwich" + }, + { + "label": "a young man is on his surf board with someone", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a delicious looking sandwich on a plate with a knife", + "pred": "a sandwich cut in half sitting on a plate" + }, + { + "label": "a man leaning his mouth down to a plate that has a sandwich on it and a blue water bottle behind it", + "pred": "a man eating a slice of pizza in a kitchen" + }, + { + "label": "a young child with no shirt on, in a bathroom and brushing their teeth with a green colored toothbrush", + "pred": "a young boy brushing his teeth in the bathroom" + }, + { + "label": "a little girl on a tennis court that has a racquet", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man surfing rocking waves in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is on his surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a hotel room bed with folded towels on the corner", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "a man standing in front of a woman", + "pred": "a man standing next to a woman holding a sandwich" + }, + { + "label": "folded towels sitting on a bed in a hotel room", + "pred": "a bed with a white comforter and pillows" + }, + { + "label": "a young surfer in a wetsuit surfs a small wave", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man on a field with a tennis racket in his hand", + "pred": "a man on a court with a tennis racket" + }, + { + "label": "a tennis player holding a tennis racket on a court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man is dressed in blue playing tennis", + "pred": "a man on a court with a tennis racket" + }, + { + "label": "a young man rides a surf board on a small wave while a man swims", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "two people playing a match of tennis on a court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "without using hands, a man tries to bite a pair of sandwiches", + "pred": "a man is eating a slice of pizza" + }, + { + "label": "a girl is playing tennis and is going to pitch the ball", + "pred": "a woman on a court with a tennis racket" + }, + { + "label": "a surfer is on the water and is waiting for a wave", + "pred": "a man on a surfboard riding a wave" + }, + { + "label": "a man with a tennis racket walks from the net of a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man and woman are laughing together", + "pred": "a man standing next to a woman holding a sandwich" + }, + { + "label": "a man standing on a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man eating a sandwich off of a white plate", + "pred": "a man is eating a slice of pizza" + }, + { + "label": "a white bed topped with lots of pillows and a wooden headboard", + "pred": "a bed with a white blanket and pillows" + }, + { + "label": "a cut in half sandwich sitting inside of a microwave", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "this a case full of doughnuts and cinnamon buns", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a man in shorts and a long sleeve shirt playing tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man smiling while standing in front of a woman with a piece of cake", + "pred": "a man standing next to a woman holding a sandwich" + }, + { + "label": "a smiling guy sticking his face near a big sandwich", + "pred": "a man is eating a slice of pizza" + }, + { + "label": "a man taking a bite of a sandwich without using his hands", + "pred": "a man is eating a slice of pizza" + }, + { + "label": "a room with a tv in the background and a laptop screen", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a sandwich on a plate with three slices of bread, tomatoes and chips on the side", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a row of doughnuts being passed through a fryer", + "pred": "a conveyor belt filled with donuts" + }, + { + "label": "a homemade pizza sits on a metal sheet", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a plate holding a double decker sandwich", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a very nice looking display full of pastry items", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a triple decker sandwich is sitting on a desk", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "two tennis players shaking hands on the court", + "pred": "two women playing tennis on a tennis court" + }, + { + "label": "a homemade pizza with a funny shape on a pan", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a pizza pepperoni and veggies sitting on a pan", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a conveyor belt with a lot of donuts getting fried up", + "pred": "a conveyor belt filled with donuts" + }, + { + "label": "a display of a variety of donuts at a store", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a fryer has rows and rows of doughnuts on an assembly line", + "pred": "a conveyor belt filled with donuts" + }, + { + "label": "a doughnut factory making doughnuts in oil", + "pred": "a conveyor belt filled with donuts" + }, + { + "label": "a machine that holds a lot of donuts and cooks them", + "pred": "a conveyor belt filled with donuts" + }, + { + "label": "large bacon lettuce and tomato sandwich with a side of chips", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a home made pizza with pepperoni and sausage", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "to black women tennis players shake hands on court", + "pred": "two women playing tennis on a tennis court" + }, + { + "label": "two tennis players on a court with rackets", + "pred": "two women playing tennis on a tennis court" + }, + { + "label": "a persons view of watching a tv and working on a laptop", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a child taking a bite of a pizza slice on a plate", + "pred": "a young boy eating a slice of pizza" + }, + { + "label": "a woman holding a tennis racquet in the air", + "pred": "a man standing on top of a sandy beach" + }, + { + "label": "three shelves of assorted donuts in a bakery", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a laptop on a couch across from a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "two women at a beach with tennis rackets in their hands and one girl looking very excited with her tennis racket in the air", + "pred": "a man standing on top of a sandy beach" + }, + { + "label": "a sandwich with nachos and a salad on a plate", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "twp people shaking hands on a tennis court", + "pred": "two women playing tennis on a tennis court" + }, + { + "label": "food that is on a plate", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a paper plate that has two pieces of pizza on it", + "pred": "a slice of pizza on a paper plate" + }, + { + "label": "two slices of pizza on a paper plate", + "pred": "a slice of pizza on a paper plate" + }, + { + "label": "a bakery that has several different kinds of doughnuts", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a plate that has a sandwich, some chips, and a salad on it", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a cut in half sandwich sitting on top of a white plate", + "pred": "two sandwiches sitting on top of a white plate" + }, + { + "label": "a woman tennis player is about to return the ball", + "pred": "a woman on a court with a tennis racket" + }, + { + "label": "a woman hitting a tennis ball with her knees bent", + "pred": "a woman on a court with a tennis racket" + }, + { + "label": "slices of pizza on top of a white plate", + "pred": "a slice of pizza on a paper plate" + }, + { + "label": "a woman holding a baseball bat over her head on the sand", + "pred": "a man standing on top of a sandy beach" + }, + { + "label": "a sandwich is cut sitting on a plate", + "pred": "two sandwiches sitting on top of a white plate" + }, + { + "label": "the large ham sandwich is cut into hlaves", + "pred": "two sandwiches sitting on top of a white plate" + }, + { + "label": "friends going to the beach playing badminton", + "pred": "a man standing on top of a sandy beach" + }, + { + "label": "a sandwich has meat, cheese, lettuce and tomato", + "pred": "two sandwiches sitting on top of a white plate" + }, + { + "label": "a person holding a plate with a sandwich, salad and chips on it", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a woman playing tennis and others watching her", + "pred": "a woman on a court with a tennis racket" + }, + { + "label": "a man serving a tennis ball on top of a tennis court", + "pred": "a tennis player swinging a racket at a ball" + }, + { + "label": "two slices of pizza sitting on a paper plate", + "pred": "a slice of pizza on a paper plate" + }, + { + "label": "a person sits at a table in front of a sandwich on dark bread, a salad and cucumbers", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a table at a restaurant has a sandwich and soup in white dishes", + "pred": "two sandwiches sitting on top of a white plate" + }, + { + "label": "a little kid eating a big slice of pizza at a table", + "pred": "a young boy eating a slice of pizza" + }, + { + "label": "a large flat screen tv sitting in a living room surrounded by furniture", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "an oddly shaped pizza sitting on a table", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "the woman is on the court playing a game of tennis", + "pred": "a woman on a court with a tennis racket" + }, + { + "label": "a woven basket with slices of pizza in it", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "two women handing out cake on plates on a dining table", + "pred": "women standing around a table with a cake" + }, + { + "label": "a man on a surfboard riding a wave in the ocean", + "pred": "a person on a surfboard riding a wave" + }, + { + "label": "two slices of pizza are sitting on a paper plate", + "pred": "a slice of pizza on a paper plate" + }, + { + "label": "people standing on top of a beach", + "pred": "a man standing on top of a sandy beach" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a person on a surfboard riding a wave" + }, + { + "label": "a man playing a tennis match is serving a tennis ball", + "pred": "a tennis player swinging a racket at a ball" + }, + { + "label": "people are eating pizza and drinking soda at a table", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "three workers stand next to each other with their baked goods behind them", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a person on a surf board riding a wave", + "pred": "a person on a surfboard riding a wave" + }, + { + "label": "two snowboarders in the air completing stunts", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a man is playing tennis on the tennis court", + "pred": "a tennis player swinging a racket at a ball" + }, + { + "label": "a laptop sitting in a room with a big tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a woman player is squatted down playing tennis", + "pred": "a woman on a court with a tennis racket" + }, + { + "label": "a boy getting ready to blow out candles on a birthday cake", + "pred": "a boy blowing out candles on a birthday cake" + }, + { + "label": "people on snow boards high up in the air", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a very large pizza on top of a pan on a table", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "two women stand close to a cake that is mostly gone", + "pred": "women standing around a table with a cake" + }, + { + "label": "a man in striped shorts leaning against a board on a beach", + "pred": "a woman holding a surfboard on a beach" + }, + { + "label": "three people standing in front of trays of doughnuts and bagels", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a person surfing a wave on the ocean", + "pred": "a person on a surfboard riding a wave" + }, + { + "label": "two snowboarders high in the air off of a jump", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a very nice cake dish with some pastries in it", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "slices of pizza in baskets on a table outside", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "three people in work uniforms and visors standing together in front of various types of donuts", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "an older woman sitting at a table with a cake", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "a young boy about to blow out candles", + "pred": "a young boy blowing out candles on a birthday cake" + }, + { + "label": "a small bed with lots of bottles underneath", + "pred": "a bed that has a lot of stuff on it" + }, + { + "label": "a man on a beach sitting on his surfboard", + "pred": "a woman standing on a beach holding a surfboard" + }, + { + "label": "a person sitting on a surf board on a beach", + "pred": "a woman standing on a beach holding a surfboard" + }, + { + "label": "an elderly woman is seated at a table with a small cake in front of her", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "two plates of pizza and a drink on a wooden table", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "the front of a restaurant with someone holding up food", + "pred": "a person holding a donut in front of a store" + }, + { + "label": "i young boy eating a large piece of pizza", + "pred": "a young boy eating a slice of pizza" + }, + { + "label": "donuts on display behind a glass with its name by the donut", + "pred": "a display case with a variety of pastries on it" + }, + { + "label": "a young boy sinking his teeth into a piece of pizza", + "pred": "a young boy eating a slice of pizza" + }, + { + "label": "a single bed sits on a wood floor surrounded by partially-filled bottles of colored liquid", + "pred": "a bed that has a lot of stuff on it" + }, + { + "label": "a woman sitting at a table with a cake in front of her", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "a woman standing behind a counter where several desserts are displayed in a glass container", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "slices of pizza sitting on white paper", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "a boy is blowing his candles on his ninth birthday", + "pred": "a young boy blowing out candles on a birthday cake" + }, + { + "label": "a woman sits behind a case of pastries", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a young kid sits in front of a birth day cake", + "pred": "a young boy blowing out candles on a birthday cake" + }, + { + "label": "a boy getting ready to blow out birthday candles with a girl watching", + "pred": "a young boy blowing out candles on a birthday cake" + }, + { + "label": "a pastry that is sitting on a plate", + "pred": "a display case with a variety of pastries on it" + }, + { + "label": "a tennis player that is serving the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a person holding a piece of food in front of a cafe", + "pred": "a person holding a donut in front of a store" + }, + { + "label": "a doughnut sitting on a plate that has the prices listed on paper", + "pred": "a display case with a variety of pastries on it" + }, + { + "label": "a man flying through the air while riding a snowboard", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a person that is standing on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person in a stripped dress leaning against a surf board", + "pred": "a woman standing on a beach holding a surfboard" + }, + { + "label": "two woman are slicing and plating pieces of cake", + "pred": "women standing around a table with a cake" + }, + { + "label": "a sandwich with a drink in the back", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a bed with a bunch of water bottles gathered around it", + "pred": "a bed that has a lot of stuff on it" + }, + { + "label": "a little boy sits at a table in a restaurant eating a slice of pizza", + "pred": "a young boy eating a slice of pizza" + }, + { + "label": "a man kind of high in the air while doing a snowboard trick", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "people doing tricks in the air on their snow boards", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a man on a tennis court about to hit the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a person is holding up a half eaten pastry", + "pred": "a person holding a donut in front of a store" + }, + { + "label": "the two toasted sandwich halves are next to a side of cole slaw", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a plate with a sandwich and a bowl of pasta salad on a table", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "an old lady sitting at a table while looking at her birthday cake", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "a bed on an empty floor surrounded by plastic bottles", + "pred": "a bed that has a lot of stuff on it" + }, + { + "label": "three female workers stand in front of rows of pastries", + "pred": "a man and a woman standing in front of a display of donuts" + }, + { + "label": "a woman sitting at a table with a birthday cake in front of her", + "pred": "a woman sitting at a table with a cake in front of her" + }, + { + "label": "a breakfast plate with toast, vegetables, eggs and meat", + "pred": "a white plate topped with breakfast foods and a cup of coffee" + }, + { + "label": "a newly married couple cutting up a giant hot dog cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a plate full of different types of foods", + "pred": "a white plate topped with breakfast foods and a cup of coffee" + }, + { + "label": "someone jumping in the air on their snowboard", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a table with dessert items sitting with displays posted up behind them", + "pred": "a display case with a variety of pastries on it" + }, + { + "label": "a guy is doing snow boarding tricks in the snow while people are watching him on the sidelines", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "bottle sitting under a little bed", + "pred": "a bed that has a lot of stuff on it" + }, + { + "label": "a man standing next to a surfboard on the sand", + "pred": "a woman standing on a beach holding a surfboard" + }, + { + "label": "a person holding a piece of food in front of a sign", + "pred": "a person holding a donut in front of a store" + }, + { + "label": "a plate with toast, eggs, corn and some meat next to some coffee", + "pred": "a white plate topped with breakfast foods and a cup of coffee" + }, + { + "label": "a plate filled with eggs, corn, toast and coffee", + "pred": "a white plate topped with breakfast foods and a cup of coffee" + }, + { + "label": "a baby holding a record in his hand", + "pred": "a little boy sitting on the floor next to a stuffed animal" + }, + { + "label": "a sandwich, drink, salad and pepper shaker atop a white table", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "a nice couple cutting the cake besides many people", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a woman sitting in front of a case filled with sweets", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a bride and groom standing next to a table cutting their cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a woman staring and some do nuts in a plate", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a woman standing near some cakes in a glass", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a yummy looking sandwich with a salad and a drink", + "pred": "a white plate topped with a sandwich and salad" + }, + { + "label": "two women stand over a table with a cake cut into pieces", + "pred": "women standing around a table with a cake" + }, + { + "label": "a big tasty looking pizza with some toppings and soda", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "girls in colorful shirts standing by some pastries", + "pred": "a man and a woman standing in front of a display of donuts" + }, + { + "label": "a person standing before a big sign holding up a pastry", + "pred": "a person holding a donut in front of a store" + }, + { + "label": "two women are cutting and serving a large cake", + "pred": "women standing around a table with a cake" + }, + { + "label": "a newly married couple cutting their wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "different kinds of doughnuts in a display case", + "pred": "a display case with a variety of pastries on it" + }, + { + "label": "people are at an outdoor lunch table in a park", + "pred": "people standing around a table with a cake" + }, + { + "label": "a pizza sitting in front of a can of pepsi", + "pred": "a pizza sitting on top of a table next to a beer" + }, + { + "label": "a little boy in pajamas playing with his toys", + "pred": "a little boy sitting on the floor next to a stuffed animal" + }, + { + "label": "two women are selling cakes and other items inside of an outdoor stand", + "pred": "people standing around a table with a cake" + }, + { + "label": "a large pizza and a soda sitting on a table", + "pred": "a pizza sitting on top of a table next to a beer" + }, + { + "label": "a couple wearing heavy coats laughing while eating pizza", + "pred": "a man with a hat and a woman with a scarf" + }, + { + "label": "the desk with a laptop has papers strewn all over it", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a man walking while holding a ball in his hand", + "pred": "a man swinging a baseball bat on top of a field" + }, + { + "label": "a tree with a donut as an ornament", + "pred": "a frosted donut sitting on top of a christmas tree" + }, + { + "label": "a man throwing a ball while smiling and on a field", + "pred": "a man swinging a baseball bat on top of a field" + }, + { + "label": "a woman reaching with her tennis racquet on a court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man riding a wave on a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman running across a tennis court so she can hit the pall", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a man and women who are looking at a small child", + "pred": "a man brushing a woman's teeth with a pair of scissors" + }, + { + "label": "a pizza sits on a plate with one piece taken out of it", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a single surfer riding a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person putting some pastries into a bag", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a young boy holding a child on top of his lap", + "pred": "a man brushing a woman's teeth with a pair of scissors" + }, + { + "label": "a surfer goes airborne on top of a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a green netted bed in a light filled bedroom", + "pred": "a bed with a canopy on top of it" + }, + { + "label": "a surfer reaches the peak of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a female holding a tennis racket and lunging for a tennis ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a baker is placing their goods inside a bag", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a woman laying in bed reading a book while wearing purple socks", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "a woman that has purple socks and a book", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "a man throwing a ball in a black and white photo", + "pred": "a man swinging a baseball bat on top of a field" + }, + { + "label": "a plastic tree with a doughnut hanging by a strip of red ribbon", + "pred": "a frosted donut sitting on top of a christmas tree" + }, + { + "label": "a man and a woman playing with a baby", + "pred": "a man brushing a woman's teeth with a pair of scissors" + }, + { + "label": "a christmas ornament is a donut with a squirrel on it", + "pred": "a frosted donut sitting on top of a christmas tree" + }, + { + "label": "a man holding a kid and a mother smilling", + "pred": "a man brushing a woman's teeth with a pair of scissors" + }, + { + "label": "a room with table, chair, tv monitor and stand", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a large pizza on a plate with forks", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a living room with wood floors, a couch, wooden chair bookshelves and coffee table", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a person working at a store selling pasties", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a doughnut hanging from a christmas tree as a decoration", + "pred": "a frosted donut sitting on top of a christmas tree" + }, + { + "label": "this girl is laying on the bed reading", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "a living room with hard wood flooring and two book shelves", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a pizza sitting on top of a metal pan on a table", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a donut being used as an ornament for a chistmas tree", + "pred": "a frosted donut sitting on top of a christmas tree" + }, + { + "label": "man holding a ball he is about to throw", + "pred": "a man swinging a baseball bat on top of a field" + }, + { + "label": "a person putting doughnuts into a bag in a shop", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a man and woman play with a small child", + "pred": "a man brushing a woman's teeth with a pair of scissors" + }, + { + "label": "the woman is reading something while laying down in bed", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "pans of potatoes and a person wearing a red apron in a commercial kitchen", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a very nicely decorated living room in someone's house", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a picnic table with pizza on two trays", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "bed covered in mosquito netting in a bedroom with windows on three walls", + "pred": "a bed with a canopy on top of it" + }, + { + "label": "a fork being held over a very cheesy pizza that's missing a slice", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a woman is laying in bed reading a book", + "pred": "a woman laying on a bed with her legs crossed" + }, + { + "label": "a man holding a tennis racquet on top of a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "hot dogs on a paper plate", + "pred": "two hot dogs sitting on top of a white plate" + }, + { + "label": "a dining room with some plants are seen", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a dinner table with four chairs two potted plants a fireplace", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a bed in a hut covered in a bug net", + "pred": "a bed with a canopy on top of it" + }, + { + "label": "foot ball players standing on top of a football field", + "pred": "a number of people on a field playing a game of soccer" + }, + { + "label": "a beautiful woman sitting at a table with two pizzas", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "a room with plants on little tables by the windows", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a bed with lots of pillows and blankets under a canopy", + "pred": "a bed with a canopy on top of it" + }, + { + "label": "a wooden table with four wooden chairs in front of two windows", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a woman sitting in front of a giant pizza", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "a fireplace and dining table in a dining room", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "players and a referee playing on a football field", + "pred": "a number of people on a field playing a game of soccer" + }, + { + "label": "man swinging tennis racket while group of people watches", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "bed in room with candles covered by a mosquito net", + "pred": "a bed with a canopy on top of it" + }, + { + "label": "a hot dog is smothered with bacon, onions, and mustard", + "pred": "two hot dogs sitting on top of a white plate" + }, + { + "label": "a woman sitting at an outdoor table with two pizzas on it", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "the woman is sitting at the table and eating pizza", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "the two hot dogs on the plate are ready to be eaten", + "pred": "two hot dogs sitting on top of a white plate" + }, + { + "label": "football players in the air", + "pred": "a number of people on a field playing a game of soccer" + }, + { + "label": "the girl with glasses is eating a slice of pizza", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "a hot dog in a bun is topped with mustard", + "pred": "two hot dogs sitting on top of a white plate" + }, + { + "label": "a woman sitting at a table in front of her pizza", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "a girl sitting at a table in front of two pizzas", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "a very large pizza that is on some kind of pizza pan", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "people that is surfing on some water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a plate of hot dog on a table with a glass", + "pred": "two hot dogs sitting on top of a white plate" + }, + { + "label": "people that are sitting in front of laptops", + "pred": "people sitting around a table with laptops" + }, + { + "label": "people in a room and using the laptops", + "pred": "people sitting around a table with laptops" + }, + { + "label": "a surfer is riding a wave in the ocean with some swimmers", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people playing a game with remote controllers", + "pred": "a man standing next to a woman holding a nintendo wii game controller" + }, + { + "label": "three guys are catching waves and one is on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "three surfers are close together on the waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player is about to play some tennis game", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "three men out on the ocean water two of the men watching their friend surf waves blue oceans water a man wearing a green shirt and yellow shorts", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man swinging a tennis racquet at a ball on a court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "the man is holding the child and lighting the candle", + "pred": "a man and a little girl sitting at a picnic table" + }, + { + "label": "a rocking chair has a pillow in its seat", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man riding a snowboard down the side of a snow covered slope", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "spectators watching a professional men's tennis match indoors", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a beautiful young woman holding a nintendo wii game controller", + "pred": "a man standing next to a woman holding a nintendo wii game controller" + }, + { + "label": "a stack of different electronics devices on a table", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "a man lighting candles on a birthday cake for a little girl", + "pred": "a man and a little girl sitting at a picnic table" + }, + { + "label": "people sitting around a table using computers", + "pred": "people sitting around a table with laptops" + }, + { + "label": "two football players reach for the ball at the same time", + "pred": "a number of people on a field playing a game of soccer" + }, + { + "label": "a person kitesurfing over the waves of the ocean's shore", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a white plate topped with an icing and sauce covered dessert", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a man is playing tennis on the court racket in hand", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "two electronic devices on top of the laptop", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "recording devices and cellphones are stacked on a laptop", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "a girl with some food and drink at a table", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a kite surfer is doing a flying trick over some water", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "people gaze at laptop screens", + "pred": "people sitting around a table with laptops" + }, + { + "label": "a man and a child sitting in front of a cake at a bench", + "pred": "a man and a little girl sitting at a picnic table" + }, + { + "label": "two people in a living room hold wii remote controls", + "pred": "a man standing next to a woman holding a nintendo wii game controller" + }, + { + "label": "a guy in a green shirt is preparing to hit a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a slice of cake with some syrup next to it", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a boy waring headphones is playing a game on his computer", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a man who is holding a young girl while lighting a candle on a cake", + "pred": "a man and a little girl sitting at a picnic table" + }, + { + "label": "a male in a brown shirt is typing on a keyboard", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "two people are playing a video game and a male is watching", + "pred": "a man standing next to a woman holding a nintendo wii game controller" + }, + { + "label": "people in a room with remotes", + "pred": "a man standing next to a woman holding a nintendo wii game controller" + }, + { + "label": "a laptop with some other electronics on top of it", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "people sitting at a table", + "pred": "a man and a little girl sitting at a picnic table" + }, + { + "label": "a young girl eating pizza dressed as a egyption", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a young man sitting at a computer desk in front of a computer", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a white plate topped with food next to a cup of coffee", + "pred": "a white plate topped with breakfast foods and a cup of coffee" + }, + { + "label": "a man who is attempting to hit a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman in a black jacket and a pizza", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "kind of cake that is on a white plate", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a man snowboarding down the side of a snowy mountain", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "sever people are sitting next to each other while using laptops", + "pred": "people sitting around a table with laptops" + }, + { + "label": "a laptop and three cellphones on a yellow table", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "a girl sitting around a table in a restaurant eating a pizza", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a receiver and a defender jump for the ball as a referee looks on during a football game", + "pred": "a number of people on a field playing a game of soccer" + }, + { + "label": "a man wearing a wet suit riding the wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the boy is enjoying playing the game on the computer", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a male tennis player hitting a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a snowboarder in a brown jacket is doing a trick", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a little boy standing in a room next to a chicken sculpture", + "pred": "a little boy sitting on the floor next to a stuffed animal" + }, + { + "label": "a young girl eating pizza in a restaurant", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a large clock mounted to the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "the pizza is being served with a cold soda", + "pred": "a pizza sitting on top of a table next to a beer" + }, + { + "label": "a man is flying up in the air and having fun", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a tennis player is swinging at a tennis ball on a sunny day", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young man is snowboarding on top of some snow", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a row of surfboards sticking out of the sand sitting next to each other", + "pred": "a row of surfboards sitting next to each other" + }, + { + "label": "a bed topped with three white pillows covered in a canopy", + "pred": "a bed with a white bedspread and pillows" + }, + { + "label": "people standing in front of a table filled with cup cakes", + "pred": "people standing around a table with a cake" + }, + { + "label": "two pizzas sitting in pie pans on top of a stove", + "pred": "two pizzas sitting on top of a counter top" + }, + { + "label": "person snowboarding down a steep snow covered slope", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a person snowboards on top of a snowy path", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a woman eating a piece of pizza standing next to a man", + "pred": "a man with a hat and a woman with a scarf" + }, + { + "label": "a sandwich sitting on top of a pile of fries", + "pred": "a hot dog on a bun with french fries" + }, + { + "label": "women serving baked goods under a canopy", + "pred": "people standing around a table with a cake" + }, + { + "label": "a small desert with a fork next to it", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a child standing on the floor with a toothbrush in hand", + "pred": "a little boy sitting on the floor next to a stuffed animal" + }, + { + "label": "two women standing behind table with cupcakes, cake and a warmer", + "pred": "people standing around a table with a cake" + }, + { + "label": "two youths wearing parka style coats, one eating and the other laughing", + "pred": "a man with a hat and a woman with a scarf" + }, + { + "label": "the person holds both hands in the air while snowboarding", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a small child holding a toothbrush stands in front of colorful chicken decorations", + "pred": "a little boy sitting on the floor next to a stuffed animal" + }, + { + "label": "a girl in a cleopatra outfit eating pizza at a table", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a plate with an orange cake dessert and a fork", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a row of surf boards placed in the sand", + "pred": "a row of surfboards sitting next to each other" + }, + { + "label": "a bed with white and beige linens and a clear drape", + "pred": "a bed with a white bedspread and pillows" + }, + { + "label": "two people with heavy winter coats are eating", + "pred": "a man with a hat and a woman with a scarf" + }, + { + "label": "young woman wearing winter clothing alongside friend preparing to eat slice of pizza", + "pred": "a man with a hat and a woman with a scarf" + }, + { + "label": "so many people on the sea skating and swimming", + "pred": "a number of people on surfboards in the water" + }, + { + "label": "a young man sitting in front of a computer screen and laptop wearing headphones", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "surfboards standing in a row on the beach", + "pred": "a row of surfboards sitting next to each other" + }, + { + "label": "a man surfing in the ocean with a sail boat behind him", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people surfing the waves in the ocean", + "pred": "a number of people on surfboards in the water" + }, + { + "label": "a person riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "surfers are catching the waves near the beach", + "pred": "a number of people on surfboards in the water" + }, + { + "label": "a man on a surfboard is riding a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfer is riding the waves as a sailboat sails", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a guy is waterboarding in the ocean on a windy day", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a man on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a bride and groom cut their wedding cake as others look on", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "two pizza pies sitting atop a stove getting ready to be cut", + "pred": "two pizzas sitting on top of a counter top" + }, + { + "label": "a pizza with a slice missing is sitting on a pizza stand", + "pred": "a woman sitting at a table with a pizza in front of her" + }, + { + "label": "a surfer rides a small wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "surfers ride waves in the ocean", + "pred": "a number of people on surfboards in the water" + }, + { + "label": "a analogue clock is places next to a sign", + "pred": "a clock on the side of a building" + }, + { + "label": "a made bed with mosquito netting above it", + "pred": "a bed with a white bedspread and pillows" + }, + { + "label": "a person riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a big clock sits on the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "pies sitting on top of a stove witha fork and knife", + "pred": "two pizzas sitting on top of a counter top" + }, + { + "label": "a clock and a spoon atop a commercial building", + "pred": "a clock on the side of a building" + }, + { + "label": "people riding boards on top of a wave", + "pred": "a number of people on surfboards in the water" + }, + { + "label": "a clock on a building that says 8:25", + "pred": "a clock on the side of a building" + }, + { + "label": "a bed with white and gray bedding and netting overhead", + "pred": "a bed with a white bedspread and pillows" + }, + { + "label": "food items served in small tray displayed on table", + "pred": "a hot dog on a bun with french fries" + }, + { + "label": "a person kite boarding in rough seas near the shoreline", + "pred": "a man flying through the air while riding a kiteboard" + }, + { + "label": "a full size bed with mosquito netting above, all in neutral colors", + "pred": "a bed with a white bedspread and pillows" + }, + { + "label": "a row of surfboards leaned up against a wood rail in the sand", + "pred": "a row of surfboards sitting next to each other" + }, + { + "label": "surfboards are propped against a rail on the beach", + "pred": "a row of surfboards sitting next to each other" + }, + { + "label": "a man riding a surfboard on a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player stands on a court holding a racket and smiles", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a person on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman standing on a tennis court in the sun", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a tennis player poses with her racquet on the court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a person sitting down with a tennis racket", + "pred": "a man sitting on a tennis court holding a racquet" + }, + { + "label": "a person on a surf board riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "lady standing on the tennis court posing with the racquet", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a person on a court with a tennis racket", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a person on a surfboard in the water", + "pred": "a man and a dog standing on a surfboard in the water" + }, + { + "label": "a man on a surfboard that is in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two pizzas on tin plates on an oven with a fork and knife", + "pred": "two pizzas sitting on top of a counter top" + }, + { + "label": "the surfer is getting ready to ride the wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "pizzas are sat out on a table", + "pred": "two pizzas sitting on top of a counter top" + }, + { + "label": "man surfing a wave on a dull day", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a hot dog sitting on top of a mound of french fries", + "pred": "a hot dog on a bun with french fries" + }, + { + "label": "people on a beach with surf boards", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "people sitting on a beach", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "person cutting cake at a theme restaurant characters", + "pred": "a man cutting into a cake at a party" + }, + { + "label": "women serving hot dogs", + "pred": "a man standing next to a woman at a food truck" + }, + { + "label": "a half eaten pizza is sitting on a plate", + "pred": "a little girl sitting at a table eating a slice of pizza" + }, + { + "label": "a man standing on a tennis court holding a tennis racquet", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a surfer riding in a stormy looking wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman putting a hot dog on a bun under a blue tent", + "pred": "a man standing next to a woman at a food truck" + }, + { + "label": "a man cuting a piece of cake while a person in costume stands behind him", + "pred": "a man cutting into a cake at a party" + }, + { + "label": "a man riding a wave on a blue ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman standing on top of a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a little girl sitting in front of a white plate with pizza", + "pred": "a little girl sitting at a table eating a slice of pizza" + }, + { + "label": "a tennis player drying off his face with a towel", + "pred": "a man sitting on a tennis court holding a racquet" + }, + { + "label": "a person riding waves in a body of water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "groups of competitive surfers sitting with their surfboards on the beach", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "a young man ridding a small wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "person prepares surfboard while dog stands on it with face in person's", + "pred": "a man and a dog standing on a surfboard in the water" + }, + { + "label": "people on a beach with buildings in the background and surfboards", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "young people gather with surfboards on a tropical beach", + "pred": "a crowd of people standing on top of a beach" + }, + { + "label": "a tennis player with a racket on the court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a child at a table with a plate of pizza", + "pred": "a little girl sitting at a table eating a slice of pizza" + }, + { + "label": "a woman that is next to a surfboard with a dog", + "pred": "a man and a dog standing on a surfboard in the water" + }, + { + "label": "a man that is sitting on a bench near a racquet", + "pred": "a man sitting on a tennis court holding a racquet" + }, + { + "label": "a doll with a bonnet and a book on a pillow", + "pred": "a baby in a bed with a stuffed animal" + }, + { + "label": "a man surfing the waves on a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the little girl is busy eating her pizza at the table", + "pred": "a little girl sitting at a table eating a slice of pizza" + }, + { + "label": "bread in a paper bag on top of french fries in paper container with a drink on the side", + "pred": "a hot dog on a bun with french fries" + }, + { + "label": "a smiling man sitting by a very nice looking cake", + "pred": "a man cutting into a cake at a party" + }, + { + "label": "tennis player running with ball in mid air", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "woman with surfboard getting kisses from dog at waters edge", + "pred": "a man and a dog standing on a surfboard in the water" + }, + { + "label": "a man that is sitting down cutting a cake", + "pred": "a man cutting into a cake at a party" + }, + { + "label": "a man looking through a book on top of a table", + "pred": "a man reading a book on a bed" + }, + { + "label": "a girl that is on a tennis court with a racket", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "this person is riding a big wave on the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman bending over to kiss a dog on a surfboard", + "pred": "a man and a dog standing on a surfboard in the water" + }, + { + "label": "girl holding up two fingers while sitting in front of plate with pizza slide on it", + "pred": "a little girl sitting at a table eating a slice of pizza" + }, + { + "label": "a man sitting on top of a green bench with a tennis racquet", + "pred": "a man sitting on a tennis court holding a racquet" + }, + { + "label": "a male tennis player sitting and wiping his head with a towel", + "pred": "a man sitting on a tennis court holding a racquet" + }, + { + "label": "a man is carving into a cake covered in fruit", + "pred": "a man cutting into a cake at a party" + }, + { + "label": "a person on a surf board by a big wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a baby doll laying on top of a bed under a book", + "pred": "a baby in a bed with a stuffed animal" + }, + { + "label": "a woman is out on a court playing tennis", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "french fries and a bag with bread sticking out", + "pred": "a hot dog on a bun with french fries" + }, + { + "label": "a vintage baby doll with the book \"goody two shoes\" on it's lap", + "pred": "a baby in a bed with a stuffed animal" + }, + { + "label": "an old doll laying on a bed with a book", + "pred": "a baby in a bed with a stuffed animal" + }, + { + "label": "a woman prepares to hit a tennis ball during a match", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man sitting on a bed looking at a book", + "pred": "a man reading a book on a bed" + }, + { + "label": "a man eating a hot dog with cheese and onions", + "pred": "a man eating a hot dog in a bun" + }, + { + "label": "surfer riding large breaking wave on open ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man making a face while biting a hot dog with cheese on it", + "pred": "a man eating a hot dog in a bun" + }, + { + "label": "the young man in the blue shirt is playing tennis", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man in a hat is biting into a hotdog", + "pred": "a man eating a hot dog in a bun" + }, + { + "label": "a doll laying in a bed with a book", + "pred": "a baby in a bed with a stuffed animal" + }, + { + "label": "the young man is playing a game of tennis", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man is flipping through a book on a bed", + "pred": "a man reading a book on a bed" + }, + { + "label": "a food vendor serves a hotdog at an outdoor market", + "pred": "a man standing next to a woman at a food truck" + }, + { + "label": "the woman is putting a hot dog into the bun", + "pred": "a man standing next to a woman at a food truck" + }, + { + "label": "a man running with a racket trying to.hit a tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man eating a hotdog that has a lot of cheese", + "pred": "a man eating a hot dog in a bun" + }, + { + "label": "a man sitting on a bed flipping through pages of a book", + "pred": "a man reading a book on a bed" + }, + { + "label": "a boy sliding down a waterslide at a waterpark", + "pred": "a man riding a wave on top of a blue surfboard" + }, + { + "label": "the workers are busy serving meals under the tent", + "pred": "a man standing next to a woman at a food truck" + }, + { + "label": "a man in a black jacket is flipping through a large book", + "pred": "a man reading a book on a bed" + }, + { + "label": "two men holding their surfboards near an ocean", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "two male surfers carrying their surfboards at the beach", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a boy is riding the wave on a boogie board", + "pred": "a man riding a wave on top of a blue surfboard" + }, + { + "label": "a boy draped in a blanket holds a remote control on a couch", + "pred": "a little girl sitting on a couch playing with a wii controller" + }, + { + "label": "a kid is laying down on a board in the water", + "pred": "a man riding a wave on top of a blue surfboard" + }, + { + "label": "a man standing on top of a beach holding a surfboard", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a man eagerly stuffing a cheesy hot dog into his mouth", + "pred": "a man eating a hot dog in a bun" + }, + { + "label": "a boy rides a body board in a wave machine", + "pred": "a man riding a wave on top of a blue surfboard" + }, + { + "label": "a small boy in an orange shirt on a blue and white belly board", + "pred": "a man riding a wave on top of a blue surfboard" + }, + { + "label": "a teddy bear that has a red scarf on", + "pred": "a teddy bear sitting on top of a blanket" + }, + { + "label": "a panda bear head with a red bandanna wrapped around it", + "pred": "a teddy bear sitting on top of a blanket" + }, + { + "label": "a boy sitting on top of a couch under a pink blanket", + "pred": "a little girl sitting on a couch playing with a wii controller" + }, + { + "label": "a man wearing sunglasses while holding a plate of pizza", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a little boy sitting down with his blanket and a toy", + "pred": "a little girl sitting on a couch playing with a wii controller" + }, + { + "label": "the two surfers art talking on the beach", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a man is sitting on a chair with some pizza", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "two surfers walking on the beach carrying their surfboards", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a teddy bear has a red handkerchief on it", + "pred": "a teddy bear sitting on top of a blanket" + }, + { + "label": "a series of photos showing a person laying on a bed", + "pred": "a living room filled with furniture and pillows" + }, + { + "label": "a man eating food off of a plate", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "competior preparing to return volley during tennis match", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "the young man is holding a plate of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "the tennis player is ready to return the ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man playing a tennis game in front of a crowd", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "people playing a game of baseball on a field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a bbq topped with lots of sausages sitting side by side", + "pred": "hot dogs are being cooked on a grill" + }, + { + "label": "a very old panda bear doll with a handkerchief", + "pred": "a teddy bear sitting on top of a blanket" + }, + { + "label": "links of sausage on the grill", + "pred": "hot dogs are being cooked on a grill" + }, + { + "label": "a stuffed bear with no mouth wearing a red handkerchief", + "pred": "a teddy bear sitting on top of a blanket" + }, + { + "label": "a man is sitting in a hospital room with a piece of pizza on a plate", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "rows of cooking hot dogs on a grill", + "pred": "hot dogs are being cooked on a grill" + }, + { + "label": "small group with hand held video controllers interacting with out of frame screen", + "pred": "a large group of people standing in a room" + }, + { + "label": "a number of hot dogs cooking on a grill", + "pred": "hot dogs are being cooked on a grill" + }, + { + "label": "a male baseball player is up to bat", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a crowd of people play with the wii video game console", + "pred": "a large group of people standing in a room" + }, + { + "label": "an old fashion baseball game", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a man swinging a tennis racket during a tennis match", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man playing in a tennis match with a large crowd", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "people are playing a game and having some fun", + "pred": "a large group of people standing in a room" + }, + { + "label": "a desert on a plate with a spoon on the side of the plate", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "men standing around a room together", + "pred": "a large group of people standing in a room" + }, + { + "label": "a kid is wearing a blanket on a coach", + "pred": "a little girl sitting on a couch with a stuffed animal" + }, + { + "label": "a plate with strawberries and ice cream on a cake", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "photos are arranged to show a couple holding hands in bed", + "pred": "a living room filled with furniture and pillows" + }, + { + "label": "a man opens pizza box and stares at the camera", + "pred": "a man sitting in front of a box of pizza" + }, + { + "label": "kids are standing in a room", + "pred": "a large group of people standing in a room" + }, + { + "label": "stuff in a home living room", + "pred": "a living room filled with furniture and pillows" + }, + { + "label": "a man is sleeping with the covers pulled up high", + "pred": "a man laying on a bed with a blanket" + }, + { + "label": "sandwiches are on a pan", + "pred": "a sandwich cut in half sitting on a tray" + }, + { + "label": "two sandwhiches sitting on a pan with tin foil", + "pred": "a sandwich cut in half sitting on a tray" + }, + { + "label": "two sandwiches on rye bread sit on a foil covered pan", + "pred": "a sandwich cut in half sitting on a tray" + }, + { + "label": "cooked breads are on top of a plate", + "pred": "a sandwich cut in half sitting on a tray" + }, + { + "label": "a young kid is holding a box of pizza", + "pred": "a young boy standing in front of a box of pizza" + }, + { + "label": "a man sleeps on a pillow with a blanket", + "pred": "a man laying on a bed with a blanket" + }, + { + "label": "a boy wearing yellow is holding a pizza in a box", + "pred": "a young boy standing in front of a box of pizza" + }, + { + "label": "two sandwiches with toasted bread set on a baking sheet that has tinfoil over it", + "pred": "a sandwich cut in half sitting on a tray" + }, + { + "label": "a man riding a snowboard on top of a snow covered slope", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a man flying through the air while riding a snowboard", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a man asleep under a blanket on a bed", + "pred": "a man laying on a bed with a blanket" + }, + { + "label": "a man on a snowboard doing a jump", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a child wearing a hat is holding a pizza box with pizza inside", + "pred": "a young boy standing in front of a box of pizza" + }, + { + "label": "a man sleeping in a bed covered with a large plaid blanket", + "pred": "a man laying on a bed with a blanket" + }, + { + "label": "a man asleep in his bed next to his open laptop", + "pred": "a man laying on a bed with a blanket" + }, + { + "label": "a young boy dressed in yellow holding a pizza in a box", + "pred": "a young boy standing in front of a box of pizza" + }, + { + "label": "a boy with a fedora on holding a pizza box open", + "pred": "a young boy standing in front of a box of pizza" + }, + { + "label": "a person is in the air on a snowboard", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a person jumping a snow board in the air", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "people look on as an airborne snowboarder competes", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a person jumping a snow board in the air", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a burrito sitting on top of a white plate", + "pred": "a plate of food on a table" + }, + { + "label": "a tennis player prepares to serve a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a small room with a bed and window letting in light", + "pred": "a bed sitting in a bedroom next to a window" + }, + { + "label": "i want the pizza that has extra cheese on it", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a cooked pizza pie on a tray with another that is uncooked", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a hotel room scene with focus on the bed and the window", + "pred": "a bed sitting in a bedroom next to a window" + }, + { + "label": "a person does a trick on their snowboard on a mountain", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "a snow boarder doing a flip for the audience", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "man doing things on the table", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a thing is in the outline and it shows up like something", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "three plates of food showing a meal in the shape of log covered with vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "a man playing tennis going for a low ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a tennis player with a racket hitting the ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman holding a game controller as her friend watches", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a pizza that is sitting on a wooden plank", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a pizza that is sitting on a plastic tray", + "pred": "a pizza sitting on top of a metal pan on a table" + }, + { + "label": "women are playing video games", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "people getting their food from a bag", + "pred": "a person sitting on a grass covered ground eating a sandwich" + }, + { + "label": "he's almost got this tennis ball at the end of his racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "people surround a sandwich and a wrap from publix", + "pred": "a person sitting on a grass covered ground eating a sandwich" + }, + { + "label": "a man is surfing in the ocean on a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man with a racquet standing on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "sandwiches that are on a paper napkin", + "pred": "a person sitting on a grass covered ground eating a sandwich" + }, + { + "label": "a pizza that is sitting on a table", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "a sandwich that has a lot of lettuce on it", + "pred": "a person sitting on a grass covered ground eating a sandwich" + }, + { + "label": "a man playing tennis on a blue tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "three people opening a wrapped sandwich out on the grass", + "pred": "a person sitting on a grass covered ground eating a sandwich" + }, + { + "label": "two fresh pizzas with mushrooms and olives sitting on pizza paddles", + "pred": "a pizza sitting on top of a wooden cutting board" + }, + { + "label": "a man on a surfboard surfing a nice big wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man looks on as he finishes his meal", + "pred": "a man eating a sandwich in a restaurant" + }, + { + "label": "a men in business attire eating a piece of folded over pizza", + "pred": "a man eating a sandwich in a restaurant" + }, + { + "label": "people are gathered together for an event", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a person is taken in this very picture", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "an individual is taken in this very picture", + "pred": "a man eating a sandwich in a restaurant" + }, + { + "label": "a partially eaten pizza sitting on a tray", + "pred": "a pizza sitting on top of a metal pan on a table" + }, + { + "label": "a pizza with different toppings sitting on a pan", + "pred": "a pizza sitting on top of a metal pan on a table" + }, + { + "label": "a young boy laying in bed with a pacifier in his mouth", + "pred": "a baby laying on top of a bed" + }, + { + "label": "three plates, spoons and glasses on a dining table", + "pred": "a plate of food on a table" + }, + { + "label": "a pizza with meat and red peppers and parmesan cheese", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "a young boy sitting on a bed in a bedroom", + "pred": "a room with a bed, chair, desk and lamp" + }, + { + "label": "a tennis player in all white playing on a court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man holding a paper plate while eating food", + "pred": "a man eating a sandwich in a restaurant" + }, + { + "label": "plates with food on them on a table", + "pred": "a plate of food on a table" + }, + { + "label": "two women standing next to each other with one holding video game controllers", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a pizza sits half eaten on a plate", + "pred": "a pizza sitting on top of a metal pan on a table" + }, + { + "label": "two single beds are pushed up against each other", + "pred": "a hotel room with a bed and two lamps" + }, + { + "label": "a bearded man in a suit eating pizza", + "pred": "a man eating a sandwich in a restaurant" + }, + { + "label": "a young boy sitting on a bed with a lamp on beside it", + "pred": "a room with a bed, chair, desk and lamp" + }, + { + "label": "a kid is sitting on a small bed in a room", + "pred": "a room with a bed, chair, desk and lamp" + }, + { + "label": "a type of pizza made at home sitting on a counter top", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "a half cut pizza on a plate on the table", + "pred": "a pizza sitting on top of a metal pan on a table" + }, + { + "label": "the room is equipped with two seperate twin beds", + "pred": "a hotel room with a bed and two lamps" + }, + { + "label": "a little boy sits on a bed with a chair next to it", + "pred": "a room with a bed, chair, desk and lamp" + }, + { + "label": "plates with food inside sits next to each other", + "pred": "a plate of food on a table" + }, + { + "label": "children and an adult on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two women holding remotes playing a game", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a couplee of kids are playing on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people are looking over a tennis volley net while a young boy wearing glasses is bouncing a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "the child is waiting for his parents to come in", + "pred": "a room with a bed, chair, desk and lamp" + }, + { + "label": "a tennis player is reaching up with one arm and has a racquet in the other hand", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a large slice of pizza with cheese and marinara sauce on a plate", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "the tennis player throws the ball up to serve", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man crouched on a surfboard as he rides under a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a donut shop is full of different flavors of donuts", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a neatly made bed sitting next to a window", + "pred": "a hotel room with a bed and two lamps" + }, + { + "label": "a sliced of pizza is served on a white plate", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "a child is landing on a shallow pillow", + "pred": "a baby laying on top of a bed" + }, + { + "label": "a hotel has a small tv on the dresser", + "pred": "a bedroom with a television and a dresser" + }, + { + "label": "two computer monitors on a desk with a keyboard and mouse", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a television on a dresser in what appears to be a hotel room", + "pred": "a bedroom with a television and a dresser" + }, + { + "label": "a newly married couple sharing a piece of there wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a child laying on a bed with a white pillow", + "pred": "a baby laying on top of a bed" + }, + { + "label": "looking down at a desktop with two monitors, a key board, mouse and cell phones on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "plates of food have a tortillas and meat on them", + "pred": "a plate of food on a table" + }, + { + "label": "pizza sitting on stack of plates on wood background", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a raw pizza with red peppers and cheese is on the counter", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "the bride and groom stand behind a square, multi-layer wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a large slice of pizza on a plate", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "the bedroom with the bedspread is dimly lit", + "pred": "a bed sitting in a bedroom next to a window" + }, + { + "label": "a bed is very close to a window with dark curtains", + "pred": "a bed sitting in a bedroom next to a window" + }, + { + "label": "a table topped with a smart phone next to a white bag", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "two white twin beds pushed together in a bedroom", + "pred": "a hotel room with a bed and two lamps" + }, + { + "label": "a hotel room with a little desk in the corner of the room", + "pred": "a bedroom with a television and a dresser" + }, + { + "label": "spectators watching a man swinging at a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man teaching young people how to play tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "the children are learning how to play tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "birthday gifts on table in a dark room", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a hotel room with a small television and a work desk", + "pred": "a bedroom with a television and a dresser" + }, + { + "label": "a plate of pastry on a wood table and a glass of drink", + "pred": "a table topped with cakes and cupcakes on top of a wooden table" + }, + { + "label": "three white dishes with three different sorts of food on them", + "pred": "a plate of food on a table" + }, + { + "label": "a work desk complete with computers and camera", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a boy with a green shirt and a black pair of shorts playing soccer", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "three different meals on plates with silverware and beverages", + "pred": "a plate of food on a table" + }, + { + "label": "two twin beds in a room with a picture of flowers above it", + "pred": "a hotel room with a bed and two lamps" + }, + { + "label": "the neatly made bed is beside an open window", + "pred": "a bed sitting in a bedroom next to a window" + }, + { + "label": "a big slice of pizza on a plate next to a glass of beverage", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "fruit flavored donuts lined up in a glass fronted cabinet", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a pizza on a white plate on a wooden table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a small childi is laying in a bed", + "pred": "a baby laying on top of a bed" + }, + { + "label": "a birthday cake made to look like a bag, shoe, car, and iphone", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a newly married couple standing next to a four layer wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a table with a happy birthday message holds several items that were probably birthday gifts", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a bag, toy car, shoe, and iphone are on the table", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "monitors are on a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a boy standing by a soccer ball on a field", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "parents watching young boys playing soccer on a green field", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "a hotel room with television and desk in the corner", + "pred": "a bedroom with a television and a dresser" + }, + { + "label": "a small pizza with olives is place on a stack of plates", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man is riding the giant wave on his board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a foot long hot dog sitting on top of a bun", + "pred": "a person holding a hot dog in front of a counter" + }, + { + "label": "windows sitting inside of a room", + "pred": "a room with a bed, a table, and a window" + }, + { + "label": "young men playing a game of basketball", + "pred": "people playing a game of basketball on a court" + }, + { + "label": "a rack with some doughnuts in a glass case", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a desk with a keyboard, mouse and two monitors on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a plate with a slice of pizza sits on a table", + "pred": "a slice of pizza sitting on top of a white plate" + }, + { + "label": "a dish of flan sits on a table next two drink glasses", + "pred": "a table topped with cakes and cupcakes on top of a wooden table" + }, + { + "label": "a room with some big window on the side of it", + "pred": "a room with a bed, a table, and a window" + }, + { + "label": "a plate filled with some little tiny cakes", + "pred": "a table topped with cakes and cupcakes on top of a wooden table" + }, + { + "label": "a surfing instructor teaches students with surfboards on a beach in front of large hotel buildings", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "a young child with a pacifier lying down in his bed", + "pred": "a baby laying on top of a bed" + }, + { + "label": "different plates with food served on them", + "pred": "a plate of food on a table" + }, + { + "label": "a toothbrush with toothpaste next to a tube on a counter", + "pred": "a toothbrush sitting on top of a counter" + }, + { + "label": "a boy is standing next to a red ball outside", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "a toothbrush with some crest paste on it", + "pred": "a toothbrush sitting on top of a counter" + }, + { + "label": "after a long day surfing, this couple walks down the shoreline", + "pred": "two people walking on a beach with surfboards" + }, + { + "label": "two plates each with a fajita with meat and vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "a vase full of white flowers sitting on a wooden table", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "blue toothpaste applied to a red toothbrush", + "pred": "a toothbrush sitting on top of a counter" + }, + { + "label": "a display case in a bakery filled with donuts", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "four people learning how to surf on the beach", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "pair of surfers paddling out to open ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a new husband and wife feeding each other wedding cake as a photographer takes pictures", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "remotes that are in cloth holders", + "pred": "a couch with a bunch of remote controls on it" + }, + { + "label": "a man that is jumping in the air with a skateboard", + "pred": "a man riding a skateboard on top of a snow covered ground" + }, + { + "label": "a pizza placed on a white plate on a wooden table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a teapot and food on a plate", + "pred": "a table topped with cakes and cupcakes on top of a wooden table" + }, + { + "label": "a male skateboarder that an ollie off the curb of a snowy street", + "pred": "a man riding a skateboard on top of a snow covered ground" + }, + { + "label": "a hotdog with mustard and relish is being prepared in a food cart", + "pred": "a person holding a hot dog in front of a counter" + }, + { + "label": "the table has a flower arrangement in an ornate vase", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "two people who are swimming in the water on surfboards", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the sun setting on the beach, and surfers walking the wet beach", + "pred": "two people walking on a beach with surfboards" + }, + { + "label": "the people are practicing riding their surfboards on the beach", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "people on the beach and some have surf boards", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "people standing on a beach riding surfboards", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "two people walking on the beach carrying surf boards", + "pred": "two people walking on a beach with surfboards" + }, + { + "label": "two surfers walk down the beach holding their boards", + "pred": "two people walking on a beach with surfboards" + }, + { + "label": "a man riding a surfboard under the swell of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a just married coule feed each other cake while a photographer takes photos", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a person prepares a hot dog with mustard and ketchup", + "pred": "a person holding a hot dog in front of a counter" + }, + { + "label": "four different controllers in a couches controller case and a person", + "pred": "a couch with a bunch of remote controls on it" + }, + { + "label": "a pizza that is on a stack of plates", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a hot dog that has some ketchup and mustard on it", + "pred": "a person holding a hot dog in front of a counter" + }, + { + "label": "a plate of cupcakes on a napkin with spoons and drink glasses", + "pred": "a table topped with cakes and cupcakes on top of a wooden table" + }, + { + "label": "a young boy on a soccer field standing in front of a ball", + "pred": "a young boy kicking a soccer ball on a field" + }, + { + "label": "the action in a competitive professional basketball game", + "pred": "people playing a game of basketball on a court" + }, + { + "label": "two young people are body boarding in the open water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people carrying surf boar walk on a beach", + "pred": "two people walking on a beach with surfboards" + }, + { + "label": "a man holding a piece of pizza in front of a kid", + "pred": "a man and a child eating pizza in a living room" + }, + { + "label": "the four remotes are inside of pockets on the arm of a couch", + "pred": "a couch with a bunch of remote controls on it" + }, + { + "label": "a remote control storage pouch attached to a couch", + "pred": "a couch with a bunch of remote controls on it" + }, + { + "label": "an assortment of doughnuts are arranged in a display case", + "pred": "a display case filled with lots of donuts" + }, + { + "label": "a remote control holder attached to living room furniture that is full of controllers", + "pred": "a couch with a bunch of remote controls on it" + }, + { + "label": "a glass vase with some flowers inside of it", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "little stones sitting around a dime", + "pred": "a table topped with different types of doughnuts" + }, + { + "label": "the older hospital room looks like it could be remodeled", + "pred": "a room with a bed, a table, and a window" + }, + { + "label": "a red tooth brush sitting next to a tube of toothpaste", + "pred": "a toothbrush sitting on top of a counter" + }, + { + "label": "a young man and a small boy are talking about a piece of pizza", + "pred": "a man and a child eating pizza in a living room" + }, + { + "label": "a hotdog sitting among many condiments", + "pred": "a person holding a hot dog in front of a counter" + }, + { + "label": "a skateboarder is doing a trick on his board", + "pred": "a man riding a skateboard on top of a snow covered ground" + }, + { + "label": "a male skateboarder in a black jacket doing a trick", + "pred": "a man riding a skateboard on top of a snow covered ground" + }, + { + "label": "two young boys are enjoying pizza and pepsi", + "pred": "two children sitting at a table eating pizza" + }, + { + "label": "two young boys sit at a table with pizza", + "pred": "two children sitting at a table eating pizza" + }, + { + "label": "a quarter is surrounded by some rocks with holes", + "pred": "a table topped with different types of doughnuts" + }, + { + "label": "a bouquet of flowers on a marble table in the lobby of a business location with an escalator", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "a male tennis player in white shorts is playing tennis", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "two people lying on belly on surfboards close to each other, in large watery expanse", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the sandwich features a large portion of meat", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "this woman has just returned a volley in tennis", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a white plate of food on a table", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a pair of people wearing wet suits paddle in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a sandwich and sauce on a white plate", + "pred": "a plate of food on a table" + }, + { + "label": "two pizzas with cheese and an egg on top", + "pred": "a pizza sitting on top of a pan" + }, + { + "label": "a dime sits in the middle of a group of stones", + "pred": "a table topped with different types of doughnuts" + }, + { + "label": "a fried egg with a runny yolk tops a mini whole wheat pizza made with melted cheese and spinach", + "pred": "a pizza sitting on top of a pan" + }, + { + "label": "a man is holding a tennis racket while posing", + "pred": "a man holding a tennis racket in his hand" + }, + { + "label": "an old doctors office with two windows with curatins", + "pred": "a room with a bed, a table, and a window" + }, + { + "label": "a man holding a tennis racket in a field", + "pred": "a man holding a tennis racket in his hand" + }, + { + "label": "residential living room with fireplace and large television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "an assortment of rags hang on a metal rack", + "pred": "a room with a bed, a table, and a window" + }, + { + "label": "a man holding a tennis racket playing tennis", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "sandwich sitting on table next to two glasses", + "pred": "a plate of food on a table" + }, + { + "label": "skateboarder does a jump off of the street corner", + "pred": "a man riding a skateboard on top of a snow covered ground" + }, + { + "label": "a sandwich on a toasted roll sits atop a green leafy salad with tomatoes", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a man with a receding hairline offers a slice of pizza to a toddler", + "pred": "a man and a child eating pizza in a living room" + }, + { + "label": "three people are playing with a red kick ball", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "the man balances on one leg after serving a tennis ball", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a red toothbrush next to a bottle of crest toothpaste", + "pred": "a toothbrush sitting on top of a counter" + }, + { + "label": "a person shows off his tennis racket in a suit", + "pred": "a man holding a tennis racket in his hand" + }, + { + "label": "3 people in a dirt field playing soccer", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "someone playing in a tennis tournament with a crowd looking on", + "pred": "a man swinging a tennis racquet on top of a tennis court" + }, + { + "label": "a coin with a portrait and some rings on the table", + "pred": "a table topped with different types of doughnuts" + }, + { + "label": "a vase sitting on top of a table with flowers in it", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "a person walking in the ocean with a surfboard under their arm", + "pred": "a man carrying a surfboard on top of a body of water" + }, + { + "label": "the man stands next to a child standing on a canoe with a paddle", + "pred": "a man standing on top of a beach next to a boat" + }, + { + "label": "a man carries his surfboard near incoming waves", + "pred": "a man carrying a surfboard on top of a body of water" + }, + { + "label": "a pizza with veggies and eggs on it", + "pred": "a pizza sitting on top of a pan" + }, + { + "label": "a man feeding pizza to a reluctant toddler", + "pred": "a man and a child eating pizza in a living room" + }, + { + "label": "looking down at the spectators and players during a basketball game", + "pred": "people playing a game of basketball on a court" + }, + { + "label": "a man offering a child a bite of a pizza slice", + "pred": "a man and a child eating pizza in a living room" + }, + { + "label": "the man is the sport jacket is holding a racket", + "pred": "a man holding a tennis racket in his hand" + }, + { + "label": "men standing on either side of a surfboard", + "pred": "a man holding a surfboard next to another man" + }, + { + "label": "a man and young child are standing with canoes in a harbor filled with boats", + "pred": "a man standing on top of a beach next to a boat" + }, + { + "label": "a man that is holding a surfboard in hand", + "pred": "a man carrying a surfboard on top of a body of water" + }, + { + "label": "a man watches tv from his couch in a living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "two halves of a sub with sauce and two drinks", + "pred": "a plate of food on a table" + }, + { + "label": "basketball players in the middle of a game", + "pred": "people playing a game of basketball on a court" + }, + { + "label": "a man with shorts and long tube socks holds a racket", + "pred": "a man holding a tennis racket in his hand" + }, + { + "label": "a sandwich that has something green and red in it", + "pred": "a sandwich cut in half sitting on top of a napkin" + }, + { + "label": "a white plate with a cut in half sandwich on top of it", + "pred": "a plate of food on a table" + }, + { + "label": "someones living room white a person is watching tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a person in a wet suit walking into the ocean", + "pred": "a man carrying a surfboard on top of a body of water" + }, + { + "label": "a dime surrounded by a bunch of stones with holes in them", + "pred": "a table topped with different types of doughnuts" + }, + { + "label": "a pizza topped with cheese, veggies and an egg", + "pred": "a pizza sitting on top of a pan" + }, + { + "label": "a french dip sandwich that is on a plate", + "pred": "a plate of food on a table" + }, + { + "label": "a man standing next to a child in a green boat", + "pred": "a man standing on top of a beach next to a boat" + }, + { + "label": "people at the beach bringing their boat in", + "pred": "a man standing on top of a beach next to a boat" + }, + { + "label": "a stuffed animal sitting in front of a tooth brush", + "pred": "a toothbrush sitting on top of a toothbrush holder" + }, + { + "label": "a sandwich lunch is displayed on a table", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "men running across a soccer field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a pizza with broccoli and spinach topped with an egg", + "pred": "a pizza sitting on top of a pan" + }, + { + "label": "three people are kicking around an orange ball", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "three people playing ball game on sandy ground", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "the bread has meat on it and vegetable", + "pred": "a sandwich cut in half sitting on top of a napkin" + }, + { + "label": "a shake is sitting next to a cake", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "the basketball game is played by teams in white or blue uniforms", + "pred": "people playing a game of basketball on a court" + }, + { + "label": "a meatball sandwich sitting on a plate", + "pred": "a sandwich cut in half sitting on top of a napkin" + }, + { + "label": "the sandwich had been cut and was ready to eat", + "pred": "a sandwich cut in half sitting on top of a napkin" + }, + { + "label": "a surfer walks into the waves on the shore", + "pred": "a man carrying a surfboard on top of a body of water" + }, + { + "label": "someone is working on grilling some food on a grill", + "pred": "a person preparing food on a stove top" + }, + { + "label": "a man relaxing on the couch watching television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a person sitting a the couch in a living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "people getting ready to go boating", + "pred": "a man standing on top of a beach next to a boat" + }, + { + "label": "kids at a table with some food", + "pred": "two children sitting at a table eating pizza" + }, + { + "label": "people are kicking a ball in a field", + "pred": "a person jumping in the air to catch a frisbee" + }, + { + "label": "a person cooking some food on a grill", + "pred": "a person preparing food on a stove top" + }, + { + "label": "this cross section of a sandwich is still wrapped", + "pred": "a sandwich cut in half sitting on top of a napkin" + }, + { + "label": "a piece of cake and a milkshake with two forks", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "pitas on a grill get topped with vegetables", + "pred": "a person preparing food on a stove top" + }, + { + "label": "milkshake in tall glass and piece of cake on plate near forks", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "men are looking at a design of a shark", + "pred": "a man holding a surfboard next to another man" + }, + { + "label": "the busuit has a piece of meat in it", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a person with a surfboard in a room", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the boys are playing soccer and they are running the ball", + "pred": "young men playing a game of soccer" + }, + { + "label": "two men fake biting a surfboard for a picture", + "pred": "a man holding a surfboard next to another man" + }, + { + "label": "a male skater jumps in the air at a skate park", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man on a blue raft attempting to catch a ride on a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "sandwiches sitting on a window display together", + "pred": "a hot dog on a bun on a table" + }, + { + "label": "a man on a skateboard in the air coming on to a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man riding a surfboard across a wave in an ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a young woman in pink leggings playing tennis", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "young boys playing soccer on s field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a brown table with a chocolate drink and a piece of white cake", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "two men biting a surfboard with a shark on it", + "pred": "a man holding a surfboard next to another man" + }, + { + "label": "pizzas are cooking on the small grill outside", + "pred": "a person preparing food on a stove top" + }, + { + "label": "pieces of bread sitting on a grill with a person putting vegetables on top of them", + "pred": "a person preparing food on a stove top" + }, + { + "label": "a sandwich display and a sign at an eatery", + "pred": "a hot dog on a bun on a table" + }, + { + "label": "two men imitating a shark picture on a surfboard", + "pred": "a man holding a surfboard next to another man" + }, + { + "label": "a large chocolate milkshake and a slice of cake", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a skateboarder is doing tricks on a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "two soccer teams going after the soccer ball", + "pred": "young men playing a game of soccer" + }, + { + "label": "the boy is looking back at a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two small children sit at the table and eat pizza", + "pred": "two children sitting at a table eating pizza" + }, + { + "label": "a man is in the air as he performs a stunt on a skateboard", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a display case shows off a sandwich with a sign", + "pred": "a hot dog on a bun on a table" + }, + { + "label": "a toothbrush is being pushed against the stuffed animal", + "pred": "a toothbrush sitting on top of a toothbrush holder" + }, + { + "label": "group of soccer players on field kicking ball", + "pred": "young men playing a game of soccer" + }, + { + "label": "a tennis player hits the tennis ball with her racket", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "two little boys eating pizza and soda at school", + "pred": "two children sitting at a table eating pizza" + }, + { + "label": "a woman hitting a tennis ball with a tennis racquet", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a young man is body surfing and paddling in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a stuffed bunny is holding a tooth brush", + "pred": "a toothbrush sitting on top of a toothbrush holder" + }, + { + "label": "a tooth brush sits next to a toy", + "pred": "a toothbrush sitting on top of a toothbrush holder" + }, + { + "label": "a young man skateboarding jumps on a concrete ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man is on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man riding a wave on a surfboard at the beach", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "four tennis players with rackets on a court", + "pred": "tennis players in action on the court" + }, + { + "label": "a stuffed animal that has a tooth brush", + "pred": "a toothbrush sitting on top of a toothbrush holder" + }, + { + "label": "a mens doubles tennis tournament on a grass court", + "pred": "tennis players in action on the court" + }, + { + "label": "a man in a black shirt plays on an ocean wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a boy riding a boogie board in the ocean waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is using his board to surf a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a display case holding a sandwich with meat and cheese", + "pred": "a hot dog on a bun on a table" + }, + { + "label": "a woman with a snowboard with a man standing next to her on a ski slope", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a woman is feeding food to this small child", + "pred": "a little girl sitting at a table eating a donut" + }, + { + "label": "a deli display case with sandwiches and strawberries", + "pred": "a hot dog on a bun on a table" + }, + { + "label": "four men on a tennis court playing a doubles tennis match", + "pred": "tennis players in action on the court" + }, + { + "label": "two people standing atop a snowy hill with snow boards in hand ready to head down the slope", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "people riding waves on top of boards", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a woman feeds a toddler a hot dog while he holds a purple bottle", + "pred": "a little girl sitting at a table eating a donut" + }, + { + "label": "a woman hits the tennis ball during a match", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a tennis player swinging a racket at a ball", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "two people are standing in the snow with a snow board", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "four people in red shirts playing tennis with onlookers", + "pred": "tennis players in action on the court" + }, + { + "label": "people that are surfing in water", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "people playing a game of tennis with a large audience", + "pred": "tennis players in action on the court" + }, + { + "label": "a person holding skis on a snowy surface", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a person feeding a little boy a hot dog as he sits at an iron table", + "pred": "a little girl sitting at a table eating a donut" + }, + { + "label": "a tennis player hitting a serve on a court", + "pred": "a tennis player in action on the court" + }, + { + "label": "people standing on top of a snow covered slope", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "kids playing soccer in a field", + "pred": "young boys playing a game of soccer" + }, + { + "label": "a man and a young child in wet suits surfing in the ocean", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a woman wearing glasses looking at slices of pizza", + "pred": "a man sitting at a table with a pizza in front of him" + }, + { + "label": "a tennis player jumps and stretches to return the ball", + "pred": "a tennis player in action on the court" + }, + { + "label": "eating a donut makes for a quick and easy breakfast", + "pred": "a person sitting at a table with a donut and cup of coffee" + }, + { + "label": "kids playing soccer wearing blue and orange uniforms", + "pred": "young boys playing a game of soccer" + }, + { + "label": "two asian women eating chili dogs while standing on a street", + "pred": "two women eating hot dogs on a city street" + }, + { + "label": "a room with rose wallpaper and a large bed", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a woman feeding a little boy french fries at a restaurant", + "pred": "a little girl sitting at a table eating a donut" + }, + { + "label": "two women preparing to eat a hot dog on a city side", + "pred": "two women eating hot dogs on a city street" + }, + { + "label": "a man swinging a tennis racquet on a court", + "pred": "a tennis player in action on the court" + }, + { + "label": "the goalkeeper in orange grabs the ball among a group of children playing soccer", + "pred": "young boys playing a game of soccer" + }, + { + "label": "mom has to help him eat his hot dog and bun", + "pred": "a little girl sitting at a table eating a donut" + }, + { + "label": "the man is playing a game of tennis on the court", + "pred": "a tennis player in action on the court" + }, + { + "label": "the woman are eating their hot dogs while walking", + "pred": "two women eating hot dogs on a city street" + }, + { + "label": "a little boy grips a soccer ball in his arms surrounded by other youth soccer players", + "pred": "young boys playing a game of soccer" + }, + { + "label": "a bedroom with dresser, desk, and bed in it", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a man jumping into the air on a tennis court", + "pred": "a tennis player in action on the court" + }, + { + "label": "a man sits at a table with a bunch of doughnuts", + "pred": "a person sitting at a table with a donut and cup of coffee" + }, + { + "label": "a woman smiling and looking at a delicious looking pizza", + "pred": "a man sitting at a table with a pizza in front of him" + }, + { + "label": "a scanned photograph from a newspaper in iowa", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "two young women are eating hot dogs while walking down the sidewalk", + "pred": "two women eating hot dogs on a city street" + }, + { + "label": "a woman holds a fork and looks at a pizza", + "pred": "a man sitting at a table with a pizza in front of him" + }, + { + "label": "a slice of pizza that is on top of a napkin", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a bedroom", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "a messy and unmade bed and a red chair", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a man that is skiing down a snowy field", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "two women eat chili dogs on a city sidewalk", + "pred": "two women eating hot dogs on a city street" + }, + { + "label": "bride and grooms arms cutting the wedding cake with fruit on top", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "a man and small child standing on a surf board and riding some waves", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a bedroom with a bed, a dresser, a desk, a mirror, and decorated walls", + "pred": "a bedroom with a bed and a dresser" + }, + { + "label": "tennis player serving a tennis ball on a clay court", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a young boy on a surfboard being taught to surf", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a man sitting at a table that has plates with donuts on it", + "pred": "a person sitting at a table with a donut and cup of coffee" + }, + { + "label": "a soiled bed with the mattress falling off the bed", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "frosted cakes with little decorations on top in a display case for sale", + "pred": "a display case filled with cakes and cupcakes" + }, + { + "label": "a slice of pizza sitting on top of a table", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a viw of a cake with pieces cut off of it", + "pred": "a cake sitting on top of a table next to candles" + }, + { + "label": "a lady wearing glasses looking at a large pizza", + "pred": "a man sitting at a table with a pizza in front of him" + }, + { + "label": "a couple cuts into a wedding cake with grapes and oranges", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "a woman leaning on ski spikes on a snowy mountain", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a plate of donuts on a tray sitting on a table in a bakery", + "pred": "a person sitting at a table with a donut and cup of coffee" + }, + { + "label": "a desk with five computers in a row on it", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "someone ordered a piece of pizza for dinner that does not have much cheese on it", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a table with laptops, monitor screens, keyboards, mice, phone handsets and chairs", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a display window full of lots of cakes", + "pred": "a display case filled with cakes and cupcakes" + }, + { + "label": "a youth holds a soccer ball while another youth is behind him, looking at the first youth", + "pred": "young boys playing a game of soccer" + }, + { + "label": "a dirty bed room with dirty sheets on the bed", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a man is swinging a tennis racket on a court", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a room with holes in the wall and dirt on the bed looking utterly disgusting", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a man with long hair wearing a red suit surfing", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a piece of pizza with thousand island dressing and a coke zero on the side", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a desk with several computers sitting on top of it", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "rows of cylindrical cakes for sale in a bakery, seen behind glass", + "pred": "a display case filled with cakes and cupcakes" + }, + { + "label": "a woman looking a pizza with assorted toppings", + "pred": "a man sitting at a table with a pizza in front of him" + }, + { + "label": "two hands cut into a cake with fruit on top of it", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "a bed that looks like it has blood on it and a big hole in the paneling", + "pred": "a bedroom with a bed and a lamp" + }, + { + "label": "a dining table with cakes and a tv monitor", + "pred": "a display case filled with cakes and cupcakes" + }, + { + "label": "a man holding a tennis racket over his head", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "desserts sitting behind a glass window with display cards in front of them", + "pred": "a display case filled with cakes and cupcakes" + }, + { + "label": "a man that is on a surfboard in water", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "an office chair at a desk filled with computers and phones", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a man on a surfboard in the water at the beach", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a meal of donuts and a beverage is seen in front of a man at a restaurant", + "pred": "a person sitting at a table with a donut and cup of coffee" + }, + { + "label": "a cake with a section missing sitting next to a burning candle", + "pred": "a cake sitting on top of a table next to candles" + }, + { + "label": "a very big work station with a bunch of computers", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a bridge and groom cutting their wedding cake that has fruit on top", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "a person lifting a little stool with their feet and a person holding a cell phone", + "pred": "a person holding a cell phone next to a chair" + }, + { + "label": "a man starting to stand up on a surfboard in the ocean", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a candle next to a bunt cake on a green plate", + "pred": "a cake sitting on top of a table next to candles" + }, + { + "label": "tennis player in mid-jump with racquet overhead and tennis ball at edge of photo", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a partially eaten bundt cake next to a lit candle", + "pred": "a cake sitting on top of a table next to candles" + }, + { + "label": "a woman standing on a chair next to a person holding a cell phone", + "pred": "a person holding a cell phone next to a chair" + }, + { + "label": "a persons feet in slippers is next to an image of a dated cell phone", + "pred": "a person holding a cell phone next to a chair" + }, + { + "label": "a man dressed in orange is playing tennis", + "pred": "a man hitting a tennis ball with a racquet" + }, + { + "label": "a person holding a cell phone in their hand", + "pred": "a person holding a cell phone next to a chair" + }, + { + "label": "a slice of pizza with a swirl of sauce on top", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "people standing around a white cake", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "a cake sitting on top of a table next to a candle", + "pred": "a cake sitting on top of a table next to candles" + }, + { + "label": "someone that is holding a cell phone and has blue socks", + "pred": "a person holding a cell phone next to a chair" + }, + { + "label": "a woman holding a tennis racquet on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "people that are playing some wii", + "pred": "people standing in a living room playing a video game" + }, + { + "label": "happy looking people by a cake", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "a person that is cutting a cake on a tasble", + "pred": "a person cutting a cake with a knife" + }, + { + "label": "four people standing in a room playing a video game", + "pred": "people standing in a living room playing a video game" + }, + { + "label": "people are playing wii in their living room", + "pred": "people standing in a living room playing a video game" + }, + { + "label": "a man in a neon snowsuit is standing on skis", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a man in a wet suit is surfing", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "people playing with a wii in the living room", + "pred": "people standing in a living room playing a video game" + }, + { + "label": "a woman on the tennis court playing tennis", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "plates of food and glasses of wine sitting on a table", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "a table thath as some pizza and wine on it", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "a boy is riding a skateboard on a ramp", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "women holding game controllers in their hands", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a person posing for a picture on a mountain", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a chili dog in the bun", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "two women holding objects in their hands", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "three men and a woman playing a wii video game", + "pred": "people standing in a living room playing a video game" + }, + { + "label": "a female tennis p;ayer that is about to serve the ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a couple glasses of wine sitting on a table of food", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "a boy skateboarding on a stake board ramp", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "people are gathered at a reception with appetizers", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "a man is standing on a snowy hills with his skiis", + "pred": "a person standing on top of a snow covered slope" + }, + { + "label": "a man who is skateboarding on a ramp", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "two women play wii in a room with a white sofa", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "young girls sitting on wooden decking with decorated cake", + "pred": "a little girl sitting on top of a red fire hydrant" + }, + { + "label": "a young child that is sitting by a red cake", + "pred": "a little girl sitting on top of a red fire hydrant" + }, + { + "label": "a young boy riding a skate board inside a building", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a boy doing a trick on a skateboard on a ramp", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "man preforming stunt on skateboard outside in the city", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two woman playing a video game in their living room", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a persons arm reaching over a table filled with food", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "plates of food and two glasses of red wine are on a table", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "two girls holding wii controllers, playing video games in a living room", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a skateboarder with his board on the edge of a concrete divider while another boy chases the skateboarder with a camera", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "two pizzaa and two glasses of wine on the table", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "a male surfer that is riding in the wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a long hot dog that has toppings on it", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a family gathering and they are celebrating with a cake", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "a man on a surf board rides a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a hot dog cart across from the radio city music hall", + "pred": "a street vendor selling food on a city street" + }, + { + "label": "a tennis player prepares to react during a match", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "woman snow boarding off of a cliff in the air", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a bedroom with the bed unmade", + "pred": "a bed that has a blanket on it" + }, + { + "label": "a man in white is playing on a tennis court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a child with a red spider man cake", + "pred": "a little girl sitting on top of a red fire hydrant" + }, + { + "label": "a man films a skate boarder doing a trick", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a plate with a hot dog covered in chili on it", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a man in a wet suit riding a wave on a surf board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman in a skirt preparing to hit a ball while playing tennis", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man that is on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfer riding the waves,on a surf board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man in a defensive stance with a tennis racquet", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man riding a skateboard down a cement ramp", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a smiling group of people watching a married couple cut a wedding cake", + "pred": "a number of people in a kitchen preparing food" + }, + { + "label": "a chili dog on a homemade bun is worth the wait", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a man filming a person skateboarding on a wall", + "pred": "a man riding a skateboard on top of a cement block" + }, + { + "label": "a table with several dishes on it with a television", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a table with food, bowls and cups", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a person holding a chili hot dog on a napkin", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a woman getting food off of a table, with a purple sweater on", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "men and one young man eating pizza", + "pred": "people sitting at a table with a pizza in front of them" + }, + { + "label": "a person holding a sandwich next to a cup of coffee", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a woman sitting in front of a laptop computer", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a woman sitting on the bed of a dark room with the laptop screen lighting on her face", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a person doing a trick on a snowboard over a hill", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a person is eating food at the table", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a male tennis player playing on the court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man that is on a tennis court with a racquet", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man walking toward a line of surfboards lined up along a shop wall", + "pred": "a man standing in front of a surfboard in front of a building" + }, + { + "label": "a hotdog stand near radio city", + "pred": "a street vendor selling food on a city street" + }, + { + "label": "a surfer in the ocean on the crest of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "guys sitting at a table eating pizza and talking", + "pred": "people sitting at a table with a pizza in front of them" + }, + { + "label": "someone holding a hotdog in their hand", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a snowboarder hitting a trick on a mountain", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "surf boards leaning against the building", + "pred": "a man standing in front of a surfboard in front of a building" + }, + { + "label": "a bed with a blanket on it", + "pred": "a bed that has a blanket on it" + }, + { + "label": "an unmade bed next to a sunny window", + "pred": "a bed that has a blanket on it" + }, + { + "label": "a boy sitting cross legged on a porch with a cake in front of him", + "pred": "a little girl sitting on top of a red fire hydrant" + }, + { + "label": "a little girl puts her hand in a pasta dish", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "a child sitting cross legged in front of a birthday cake", + "pred": "a little girl sitting on top of a red fire hydrant" + }, + { + "label": "a rumbled bed sits empty as sun shines in the adjacent window", + "pred": "a bed that has a blanket on it" + }, + { + "label": "a little girl in a blue apron and chefs hat and a girl in a red apron and hat", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "three guys sitting at a table with two pizzas", + "pred": "people sitting at a table with a pizza in front of them" + }, + { + "label": "sandwhich with everything on it and a coke", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a man holding a surfboard outside a building in a driveway", + "pred": "a man standing in front of a surfboard in front of a building" + }, + { + "label": "a snowboarder in a black jacket is doing a trick", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a man standing by a display of surfboards and wetsuits", + "pred": "a man standing in front of a surfboard in front of a building" + }, + { + "label": "a man walks up to where surfboards are propped up against a wall and wetsuits are hanging on a rack", + "pred": "a man standing in front of a surfboard in front of a building" + }, + { + "label": "people are seen eating several large pizzas", + "pred": "people sitting at a table with a pizza in front of them" + }, + { + "label": "a sandwich is being eaten and sodas are on the table", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a person on a snow board flying in the air down the snow", + "pred": "a man flying through the air while riding a snowboard" + }, + { + "label": "a bed covered in blankets and pillows next to a window", + "pred": "a bed that has a blanket on it" + }, + { + "label": "the men are enjoying the very large pizzas", + "pred": "people sitting at a table with a pizza in front of them" + }, + { + "label": "the diners are enjoying their filled beef sandwiches", + "pred": "a person holding a hot dog in a bun" + }, + { + "label": "a man riding a board on waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a food cart parked on the side of a road", + "pred": "a street vendor selling food on a city street" + }, + { + "label": "a pizza that is sliced up in pieces", + "pred": "pizzas sitting on top of a counter in a kitchen" + }, + { + "label": "a woman swings her tennis racket while reaching upward", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a girl sitting in the dark using a computer", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a guy is showing his prowess while surfing the waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman with her laptop on a bed in a dark room", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a young girl preparing a dish of some sort", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "a man riding a wave on top of a yellow board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a table topped with a train styled cake", + "pred": "a tray of food on a table" + }, + { + "label": "the food cart is right outside the arena", + "pred": "a street vendor selling food on a city street" + }, + { + "label": "a female sitting in a bed with the lights off working on a lap top computer", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "small cakes are on a piece of tinfoil", + "pred": "a tray of food on a table" + }, + { + "label": "a variety of partially eaten pizzas are sitting on several plates", + "pred": "pizzas sitting on top of a counter in a kitchen" + }, + { + "label": "pastries sitting on aluminum foil next to a bowl with a knife and spatula in it", + "pred": "a tray of food on a table" + }, + { + "label": "a counter topped with plates of pizza covered in cheese", + "pred": "pizzas sitting on top of a counter in a kitchen" + }, + { + "label": "a man badly beating laying unconscious near a nurse", + "pred": "a man is laying in a hospital bed" + }, + { + "label": "a young girl standing in front of a plate of food", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "a pizza buffet with many pizza varieties of pizza on plates", + "pred": "pizzas sitting on top of a counter in a kitchen" + }, + { + "label": "a man holding a microphone in one hand while he holds a skateboard in the other", + "pred": "a man holding a skateboard in front of his face" + }, + { + "label": "a man surfing on his surfboard through the waves of the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "baked dessert items being prepared in kitchen area", + "pred": "a tray of food on a table" + }, + { + "label": "a child holding chocolate donut with both hands", + "pred": "a boy holding a piece of food in his hands" + }, + { + "label": "a young boy is standing against a wall eating an apple", + "pred": "a boy holding a piece of food in his hands" + }, + { + "label": "a white frosted donut with sprinkles and a jump rope with leather roping next to it", + "pred": "a doughnut with sprinkles on top of it" + }, + { + "label": "a young girl playing with soccer balls", + "pred": "a little girl that is standing in the grass with a soccer ball" + }, + { + "label": "a young girl making a plate of food", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "little boy in stripped shirt holding donut in hands", + "pred": "a boy holding a piece of food in his hands" + }, + { + "label": "a woman playing tennis and holding a racquet in her hand", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a bed in a hotel is carrying sheets and pillows as it sit next to a lamp", + "pred": "a neatly made bed in a hotel room" + }, + { + "label": "a small child that is holding a toothbrush and brushing their teeth", + "pred": "a baby brushing his teeth with a tooth brush" + }, + { + "label": "a little girl standing in the grass with two soccer balls in front of her", + "pred": "a little girl that is standing in the grass with a soccer ball" + }, + { + "label": "a donut that with sprinkles on half sits atop a nautilus jump rope", + "pred": "a doughnut with sprinkles on top of it" + }, + { + "label": "a young girl standing on top of a grass covered field", + "pred": "a little girl that is standing in the grass with a soccer ball" + }, + { + "label": "surfers that are in the water", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a child brushing their teeth in a bathroom", + "pred": "a baby brushing his teeth with a tooth brush" + }, + { + "label": "this man has several injuries on his face", + "pred": "a man is laying in a hospital bed" + }, + { + "label": "a king bead and chair with lamps in a hotel room", + "pred": "a neatly made bed in a hotel room" + }, + { + "label": "a girl holding a tennis racket in her hand while on the tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a young women holding a tennis racket", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man has cuts in head as he lays across a bed", + "pred": "a man is laying in a hospital bed" + }, + { + "label": "a person with several severe cuts on their face and head", + "pred": "a man is laying in a hospital bed" + }, + { + "label": "a man holding a skateboard and a microphone", + "pred": "a man holding a skateboard in front of his face" + }, + { + "label": "a young man holding a microphone and a skate board", + "pred": "a man holding a skateboard in front of his face" + }, + { + "label": "a young skateboarder talking into a microphone", + "pred": "a man holding a skateboard in front of his face" + }, + { + "label": "heart shaped cakes are on display", + "pred": "a table topped with cakes decorated with flowers" + }, + { + "label": "a young boy holding a doughnut with a bite out of it", + "pred": "a boy holding a piece of food in his hands" + }, + { + "label": "young girl on surfboard riding wave with young boys nearby looking on", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a very small cute kid brushing his teeth", + "pred": "a baby brushing his teeth with a tooth brush" + }, + { + "label": "a woman is holding a tennis racket on a court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a frosted donut sitting on top of a jump rope", + "pred": "a doughnut with sprinkles on top of it" + }, + { + "label": "a spread of pastries and doughnuts available for purchase", + "pred": "a display case filled with lots of different types of donuts" + }, + { + "label": "a white bed in a bedroom next to a table on a lamp", + "pred": "a neatly made bed in a hotel room" + }, + { + "label": "a young child that is brushing his teeth", + "pred": "a baby brushing his teeth with a tooth brush" + }, + { + "label": "a young woman holding a tennis racquet on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a display rack of assorted kinds of donuts", + "pred": "a display case filled with lots of different types of donuts" + }, + { + "label": "a hot dog vendor sits outside a famous building in the city", + "pred": "a street vendor selling food on a city street" + }, + { + "label": "doughnut with icing displayed with leather jumping rope", + "pred": "a doughnut with sprinkles on top of it" + }, + { + "label": "shelves that are holding a variety of donuts", + "pred": "a display case filled with lots of different types of donuts" + }, + { + "label": "large assortment of baked pizzas on counter ready for consumption", + "pred": "pizzas sitting on top of a counter in a kitchen" + }, + { + "label": "a little girl is standing outside with a soccer ball", + "pred": "a little girl that is standing in the grass with a soccer ball" + }, + { + "label": "a guy holding a skate board is speaking into a microphone", + "pred": "a man holding a skateboard in front of his face" + }, + { + "label": "food is on display in a case", + "pred": "a display case filled with lots of different types of donuts" + }, + { + "label": "the girl is balancing with one leg on the surfboard", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a able topped with lots of heart shaped cakes", + "pred": "a table topped with cakes decorated with flowers" + }, + { + "label": "a white donut with a jumping rope to work it off", + "pred": "a doughnut with sprinkles on top of it" + }, + { + "label": "a piece of cake that is sitting on foil", + "pred": "a tray of food on a table" + }, + { + "label": "the young child is standing beside two soccer balls", + "pred": "a little girl that is standing in the grass with a soccer ball" + }, + { + "label": "a small boy in a striped shirt eating something", + "pred": "a boy holding a piece of food in his hands" + }, + { + "label": "the shelves have on different types of donuts", + "pred": "a display case filled with lots of different types of donuts" + }, + { + "label": "large collection of cakes shaped like hearts on a display", + "pred": "a table topped with cakes decorated with flowers" + }, + { + "label": "a hotel room with one bed and blue chair", + "pred": "a neatly made bed in a hotel room" + }, + { + "label": "a young girl is surfing and just about to wipe out", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "a hotel room with a bed and a chair and white walls", + "pred": "a neatly made bed in a hotel room" + }, + { + "label": "people sitting around a table", + "pred": "a large group of people sitting at a table eating pizza" + }, + { + "label": "a man holding a cheeseburger made out of donuts", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a cheeseburger is topped with a glazed doughnut", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a tennis player swings his tennis racket", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "the small child is brushing it's teeth with a green toothbrush", + "pred": "a baby brushing his teeth with a tooth brush" + }, + { + "label": "people are surfing or swimming at the ocean", + "pred": "a woman riding a wave on top of a surfboard" + }, + { + "label": "two women are looking at many colorful, heart shaped cakes", + "pred": "a table topped with cakes decorated with flowers" + }, + { + "label": "a tenn player that is returning a tennis ball back to his opponent", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man holding a tennis racquet on top of a tennis court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "an man with several injuries rests his head on a pillow", + "pred": "a man is laying in a hospital bed" + }, + { + "label": "a man swinging his tennis racket to he can hit a ball", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a display of several elaborately decorated pink and white cakes", + "pred": "a table topped with cakes decorated with flowers" + }, + { + "label": "pizzas are on display under a case", + "pred": "a pizza sitting on top of a counter in a restaurant" + }, + { + "label": "a burger that is topped with a donut", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a man holding a tennis racket in his hand while on the tennis court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a white plate topped with food next to a plate of onion rings", + "pred": "a plate of food on a table" + }, + { + "label": "a woman holding food up to her mouth", + "pred": "a man eating a hot dog in a restaurant" + }, + { + "label": "a box contains six donuts with varying types of glazes and toppings", + "pred": "a box filled with different types of donuts" + }, + { + "label": "guys at a restaurant talking and eating", + "pred": "a large group of people sitting at a table eating pizza" + }, + { + "label": "a hamburger stuffed with fillings but a glazed doughnut in place of the top bun", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "a man flying through the air while riding a snowboard", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "people walking on top of a beach", + "pred": "people standing on top of a beach" + }, + { + "label": "a smiling young man laying in a parking spot", + "pred": "a person laying on the ground on a sidewalk" + }, + { + "label": "a box filled with six donuts covered on toppings", + "pred": "a box filled with different types of donuts" + }, + { + "label": "a person holding up a chocolate doughnut with a face drawn on it", + "pred": "a person holding a chocolate frosted donut" + }, + { + "label": "a man and female standing side by side with a cake cutter in their hand", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a bride and groom are cutting their wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a box with half a dozen glazed and frosted donuts", + "pred": "a box filled with different types of donuts" + }, + { + "label": "a close up look into a box filled with pastries", + "pred": "a box filled with different types of donuts" + }, + { + "label": "a very cute lady holding a hot dog to her face", + "pred": "a man eating a hot dog in a restaurant" + }, + { + "label": "a woman with short brown hair getting ready to bite into a hot dog", + "pred": "a man eating a hot dog in a restaurant" + }, + { + "label": "people that are eating a pizza", + "pred": "a large group of people sitting at a table eating pizza" + }, + { + "label": "a pizza with canadian bacon and pineapple in a fluted pan", + "pred": "a pizza sitting in a pan on top of a table" + }, + { + "label": "a person getting ready to take a bite of a hot dog", + "pred": "a man eating a hot dog in a restaurant" + }, + { + "label": "a couple holding a knife and cutting their wedding cake together", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a person with their mouth open holding a hot dog", + "pred": "a man eating a hot dog in a restaurant" + }, + { + "label": "a bride and groom prepare to cut the wedding cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "plates of food with onion rings and cheesecake and a cup of cocoa on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a happy couple is cutting a decorated cake", + "pred": "a bride and groom cutting their wedding cake" + }, + { + "label": "a burger with a doughnut for the bun", + "pred": "a person holding a sandwich in their hand" + }, + { + "label": "the box contains six donuts, but only two are chocolate covered", + "pred": "a box filled with different types of donuts" + }, + { + "label": "a pizza in a pan topped with cheese and meat", + "pred": "a pizza sitting in a pan on top of a table" + }, + { + "label": "a display of different pizzas in a restaurant", + "pred": "a pizza sitting on top of a counter in a restaurant" + }, + { + "label": "a man holding up what appears to be a chocolate desert", + "pred": "a person holding a chocolate frosted donut" + }, + { + "label": "young men eating pizza in a restaurant", + "pred": "a large group of people sitting at a table eating pizza" + }, + { + "label": "a person lies down along the lines in a parking space", + "pred": "a person laying on the ground on a sidewalk" + }, + { + "label": "a small homemade pizza in a pie plate", + "pred": "a pizza sitting in a pan on top of a table" + }, + { + "label": "a man looking at a lot if hot dogs in a bun in a pan", + "pred": "a man sitting at a picnic table eating a hot dog" + }, + { + "label": "a man lying on the ground in a parking spot", + "pred": "a person laying on the ground on a sidewalk" + }, + { + "label": "a buffet with many pizzas lined up behind glass", + "pred": "a pizza sitting on top of a counter in a restaurant" + }, + { + "label": "a man that is holding a tray of hot dogs", + "pred": "a man sitting at a picnic table eating a hot dog" + }, + { + "label": "people sitting at tables at a restaurant", + "pred": "a large group of people sitting at a table eating pizza" + }, + { + "label": "different kinds of pizzas displayed on a buffet line", + "pred": "a pizza sitting on top of a counter in a restaurant" + }, + { + "label": "a person is lying down in a parking space", + "pred": "a person laying on the ground on a sidewalk" + }, + { + "label": "a man holds a patter full of grilled hotdogs in buns", + "pred": "a man sitting at a picnic table eating a hot dog" + }, + { + "label": "a man laying on a painted line holding his knee in a parking lot", + "pred": "a person laying on the ground on a sidewalk" + }, + { + "label": "a person makes a sandwich on a paper plate", + "pred": "a person cutting up a sandwich on a plate" + }, + { + "label": "plates of food and a cup of coffee on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a man holding a pan with hot dogs on buns", + "pred": "a man sitting at a picnic table eating a hot dog" + }, + { + "label": "a man performing on a skateboard ramp jump", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a person holding up a tasty looking treat", + "pred": "a person holding a chocolate frosted donut" + }, + { + "label": "man on steps with tray of grilled hot dogs on buns", + "pred": "a man sitting at a picnic table eating a hot dog" + }, + { + "label": "a young person jumping their snow board in the air as they ski down a mountain", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a pineapple and ham pizza in a pizza tin", + "pred": "a pizza sitting in a pan on top of a table" + }, + { + "label": "a boy holding a game controller and playing a video game", + "pred": "a young boy standing in front of a tv playing a video game" + }, + { + "label": "a person holding a cookie with icing that has one of it's arms bitten off", + "pred": "a person holding a chocolate frosted donut" + }, + { + "label": "a man riding a skateboard down a cement ramp", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a young child standing in front of a tv holding a wii controller", + "pred": "a young boy standing in front of a tv playing a video game" + }, + { + "label": "the skateboarder is jumping near a metal fence", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a person jumping a snow board in the air", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a pizza that is in a silver pan and sitting on a white surface", + "pred": "a pizza sitting in a pan on top of a table" + }, + { + "label": "a person sailing in the air on a snow board", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a person riding a skateboard on the side of the road", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a person is snowboarding off of a rock formation", + "pred": "a man riding a snowboard down a snow covered slope" + }, + { + "label": "a hearty fish dinner, with a side of onion rings and coffee", + "pred": "a plate of food on a table" + }, + { + "label": "a couch with pillows sitting in a living room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a plate with creamy chicken and vegetables, a side of onion rings, a cup of coffee and a slice of cheesecake", + "pred": "a plate of food on a table" + }, + { + "label": "the man stands on fence railing beside a table with food on it", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a man riding on the back of a surfboard next to kids", + "pred": "a man and a woman on a surfboard in the water" + }, + { + "label": "a buffet display case filled with lots of pizzas on pans", + "pred": "a pizza sitting on top of a counter in a restaurant" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man in a red t shirt riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a kid holding his arm up as he plays a video game in the living room", + "pred": "a young boy standing in front of a tv playing a video game" + }, + { + "label": "a plate that has food on it on a table", + "pred": "a person cutting up a sandwich on a plate" + }, + { + "label": "a man balancing his surfboard on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman on a tennis court is swinging a racquet", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "people skateboarding in a graffiti filled area", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a close up picture of someone preparing a sandwich", + "pred": "a person cutting up a sandwich on a plate" + }, + { + "label": "a slice of pizza sitting next to a coffee cup on an outdoor table", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "the man is surfing through the waves in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man in a wetsuit and red shirt, riding a surfboard at the edge of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "office space with cat on the television and work", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a cat is on the television screen in an office", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a small child that is playing a game on a video game console", + "pred": "a young boy standing in front of a tv playing a video game" + }, + { + "label": "a crowd is watching the two teams play soccer", + "pred": "a person kicking a soccer ball on a field" + }, + { + "label": "a woman is preparing a sandwich on a paper plate", + "pred": "a person cutting up a sandwich on a plate" + }, + { + "label": "the person is surfing through the long wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man kicking a soccer ball on the field", + "pred": "a person kicking a soccer ball on a field" + }, + { + "label": "a kid on a skate board does a trick off a roof", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a man is standing at the railing of his balcony", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "the people have surfboards and are on the beach", + "pred": "people standing on top of a beach" + }, + { + "label": "surboarders are in the water and waiting on the shore", + "pred": "people standing on top of a beach" + }, + { + "label": "a guy riding his skate board on the sidewalk", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a person prepares a sandwich on a plate", + "pred": "a person cutting up a sandwich on a plate" + }, + { + "label": "a person holds an oddly shaped cookie in front of the camera", + "pred": "a person holding a chocolate frosted donut" + }, + { + "label": "a man and three children are on the surfboards", + "pred": "a man and a woman on a surfboard in the water" + }, + { + "label": "a woman that is hold a device in her hand while standing on a court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a two layer cake sitting on top of a table", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "people watching soccer players in a form of a soccer game", + "pred": "a person kicking a soccer ball on a field" + }, + { + "label": "a woman standing on a tennis court holding a racquet", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a bluebery cake is on a plate and is topped with butter", + "pred": "a piece of cake on a plate on a table" + }, + { + "label": "surfers stand with surfboards on a beach for the early morning sunrise", + "pred": "people standing on top of a beach" + }, + { + "label": "a young boy in his pajamas is playing a video game", + "pred": "a young boy standing in front of a tv playing a video game" + }, + { + "label": "a soccer player prepares to kick a soccer ball", + "pred": "a person kicking a soccer ball on a field" + }, + { + "label": "a woman prepares to serve a tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a tennis player playing tennis on the tennis court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a woman holding up a tennis racket during a match", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "living room featuring a couch and coffee table", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a man leaning on a railing is looking at the plate of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "pizza on a cutting board is next to goblets with a beer bottle", + "pred": "a pizza sitting on top of a wooden table next to a bottle of wine" + }, + { + "label": "a man teaching kids how to ride a surf board in the water", + "pred": "a man and a woman on a surfboard in the water" + }, + { + "label": "someone roasting hot dogs in a fire outside", + "pred": "a grill that has a bunch of hot dogs on it" + }, + { + "label": "a cat leaning off of a bed looking at the floor", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "someone kicking a soccer ball on the soccer field", + "pred": "a person kicking a soccer ball on a field" + }, + { + "label": "a person is riding a ramp on a skateboard", + "pred": "a man on a skateboard doing a trick in the air" + }, + { + "label": "a piece of pizza sits next to beer in a bottle and glass", + "pred": "a pizza sitting on top of a wooden table next to a bottle of wine" + }, + { + "label": "people are sitting on surfboards in the water", + "pred": "a man and a woman on a surfboard in the water" + }, + { + "label": "a piece of cake with butter on it sits next to an orange slice", + "pred": "a piece of cake on a plate on a table" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person using a surfboard in a large body of water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "an orange cat sitting on top of a table", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a bbq pit filled with lots of cooking hot dogs", + "pred": "a grill that has a bunch of hot dogs on it" + }, + { + "label": "a room that has a tv, window, and books, in it", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a woman holding a tennis racket over her shoulder", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a two layered cake sits on a table top", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a person on a surfboard riding the waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a large piece of blueberry cake on a plate", + "pred": "a piece of cake on a plate on a table" + }, + { + "label": "man sitting in snow with snowboard attached to shoes", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "a skateboarder mid-air above a building covered in graffiti", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "a small tv is affixed to the wall with shelves below it", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a woman holding a tennis racket in her hand", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a town square that has a skateboarding ramp that a boy is using", + "pred": "a man on a skateboard doing a trick" + }, + { + "label": "three people playing tennis on a grass court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a plate of food attractively arranged on a table", + "pred": "a piece of cake on a plate on a table" + }, + { + "label": "a living room with a couch table and opening to another room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a tv on the wall with a cat on the screen", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "people play a game of baseball in a field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "an informal baseball game is held in an open field", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a boy covered up with his blanket holding the television remote", + "pred": "a little girl sitting on a couch with a stuffed animal" + }, + { + "label": "man displaying open pizza box with message written on inside", + "pred": "a man sitting in front of a box of pizza" + }, + { + "label": "a man is pointing at a pizza box with a some words on the inner side", + "pred": "a man sitting in front of a box of pizza" + }, + { + "label": "adults seen lying in bed in mosaic photograph montage", + "pred": "a living room filled with furniture and pillows" + }, + { + "label": "a boy holding open and gesturing towards a pizza box kid with a message written on it", + "pred": "a man sitting in front of a box of pizza" + }, + { + "label": "a collage of photos that shoes two people laying on a bed", + "pred": "a living room filled with furniture and pillows" + }, + { + "label": "a little boy with a pink blanket and a remote control sitting on a couch", + "pred": "a little girl sitting on a couch with a stuffed animal" + }, + { + "label": "a dessert topped with ice cream, and strawberries sits on a plate", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "a white dish that has an ice cream and cookie style dessert on it, along with powdered sugar sprinkled over it", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "a plate with an ice cream dessert on it", + "pred": "a white plate topped with a piece of cake" + }, + { + "label": "a kid is showing a pizza with a joke written inside the box cover", + "pred": "a man sitting in front of a box of pizza" + }, + { + "label": "the people are selecting their donuts at the counter", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a white plate topped with a pizza and cheese", + "pred": "a pizza sitting on top of a blue plate" + }, + { + "label": "a man wearing glasses eating a hot dog", + "pred": "a man with glasses eating a slice of pizza" + }, + { + "label": "the many sausages are arranged on the portable grill", + "pred": "hot dogs are being cooked on a grill" + }, + { + "label": "man riding a wave on a board", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfer in the ocean trying not to wipeout", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man eats a hot dog while looking at the camera", + "pred": "a man with glasses eating a slice of pizza" + }, + { + "label": "a pizza with several vegetable toppings sitting on a storage tub", + "pred": "a pizza sitting on top of a blue plate" + }, + { + "label": "two boys are looking at the bakery goods on display", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a man and a woman eat doughnuts from a box", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a man in a black suit surfing a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man and woman eating doughnuts out of a box at a coffee shop", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a man surfing beside a bird on a cloudy day", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "man on surfboard riding large breaking wave at ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man on surf board riding a wave over his head", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a boy and a woman are in front of a counter", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a man is standing behind a glass counter", + "pred": "people standing around a table filled with donuts" + }, + { + "label": "a man that is on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two people at a table eating doughnuts and drinking milk", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a man that is on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is riding on a surfboard at the beach", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people are riding surfboards on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman that is standing on a tennis court with a racquet", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "two people surf as two others are bodyboarding on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman and her son picking out sweets at a bakery", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "a man and woman that are standing with a surfboard", + "pred": "a woman sitting next to a man on a surfboard" + }, + { + "label": "a woman taking a bite of a doughnut in a restaurant", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "four surfers are trying to catch a wave as they stand", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people are working behind the counter of a bakery", + "pred": "people standing around a table filled with donuts" + }, + { + "label": "people ordering food at a bakery", + "pred": "people standing around a table filled with donuts" + }, + { + "label": "people are riding the waves on their surfboards", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a woman trying to catch a wave on her surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man on a surfboard riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the gourmet pizza includes several very special ingredients", + "pred": "a pizza sitting on top of a blue plate" + }, + { + "label": "an attendant in a doughnut shop waiting on customers", + "pred": "a woman standing in front of a counter filled with donuts" + }, + { + "label": "the tennis player wearing a purple outfit is about to hit the tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "the two images show a dining table and a lamp on another table near a door", + "pred": "a room with a table and chairs in it" + }, + { + "label": "people on surfboards who are riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people eating some doughnuts on a table", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a man in a wet suit riding a surfboard on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man riding on top of a wave with a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a boy sitting next to a girl holding a big white surfboard", + "pred": "a woman sitting next to a man on a surfboard" + }, + { + "label": "a blue bin with a pizza on a plate with toppings on top of it", + "pred": "a pizza sitting on top of a blue plate" + }, + { + "label": "two people laugh near a surfboard in a room", + "pred": "a woman sitting next to a man on a surfboard" + }, + { + "label": "a woman rides on a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man riding a board in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a lady wearing red playing tennis on a blue and green court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a person sitting down holding a surf board", + "pred": "a woman sitting next to a man on a surfboard" + }, + { + "label": "a young man with glasses eating a hot dog with bun", + "pred": "a man with glasses eating a slice of pizza" + }, + { + "label": "a table with chairs near a window", + "pred": "a room with a table and chairs in it" + }, + { + "label": "ding room and living room area inside a home", + "pred": "a room with a table and chairs in it" + }, + { + "label": "a small pizza on a paper plate", + "pred": "a pizza sitting on top of a blue plate" + }, + { + "label": "the store makes fresh doughnuts on site for the customers", + "pred": "people standing around a table filled with donuts" + }, + { + "label": "a surfer is riding a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a waffle with cream and strawberries sits on a plate", + "pred": "a sandwich on a plate on a table" + }, + { + "label": "a girl is getting ready to surf on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "their underbelly of the surfboard shows that it has been used frequently", + "pred": "a woman sitting next to a man on a surfboard" + }, + { + "label": "the people are posing for a group photo", + "pred": "a large group of children standing on top of a tennis court" + }, + { + "label": "amish men and women making homemade doughnuts at a flea market", + "pred": "people standing around a table filled with donuts" + }, + { + "label": "a man with thick black glasses eats a hotdog", + "pred": "a man with glasses eating a slice of pizza" + }, + { + "label": "a female tennis player prepares to swing at a tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a dog is chewing on a soccer ball", + "pred": "a dog is playing with a toy in the grass" + }, + { + "label": "a female tennis player with ball in front of her, racket drawn back", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a young man is on his skateboard doing a trick", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "grabbing the front of the skateboard maintains control over it", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a large family poses for picture on tennis court", + "pred": "a large group of children standing on top of a tennis court" + }, + { + "label": "a man who is putting a hot dog in his mouth", + "pred": "a man with glasses eating a slice of pizza" + }, + { + "label": "a man is doing tricks on a skateboard", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "a man who is riding on a skateboard", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "pit bull playing with soccer ball in the grass", + "pred": "a dog is playing with a toy in the grass" + }, + { + "label": "boogie boarder about to catch a wave about to break on the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a dog laying on a soccer ball on a field", + "pred": "a dog is playing with a toy in the grass" + }, + { + "label": "a two tier cake with some frosting and strawberries in the middle", + "pred": "a sandwich on a plate on a table" + }, + { + "label": "a boy is riding a bowl on a skateboard", + "pred": "a man riding a skateboard down the side of a ramp" + }, + { + "label": "young children standing next to each other", + "pred": "a large group of children standing on top of a tennis court" + }, + { + "label": "a dog chewing on top of a large white ball", + "pred": "a dog is playing with a toy in the grass" + }, + { + "label": "a woman rides a wave lying down on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a boy is eating donut holes while sitting at a dinner table", + "pred": "a little boy sitting at a table eating a donut" + }, + { + "label": "the sandwich cookie has fruit in the middle of it", + "pred": "a sandwich on a plate on a table" + }, + { + "label": "a woman is taking a picture of food with a mobile device", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "the small girl is lying on the mattress of a crib", + "pred": "a small dog laying on top of a bed" + }, + { + "label": "a dog is playing with a ball in the grass", + "pred": "a dog is playing with a toy in the grass" + }, + { + "label": "photos showing two different rooms", + "pred": "a room with a table and chairs in it" + }, + { + "label": "female snowboarder riding down a trail smiling at camera", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man standing on a beach while holding a white surfboard", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "young girl lying on mattress with railing on three sides", + "pred": "a small dog laying on top of a bed" + }, + { + "label": "a person is snowboarding slowly down a covered hill", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a girl toddler laying on a day bed", + "pred": "a small dog laying on top of a bed" + }, + { + "label": "small certain was child eating donuts off a blue plate", + "pred": "a little boy sitting at a table eating a donut" + }, + { + "label": "a patty, with frosting on it, in the middle", + "pred": "a sandwich on a plate on a table" + }, + { + "label": "a woman that is standing on a snowboard in the snow", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a man holding a surfboard on a beach with a pier", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a woman standing on top of a sandy beach with a surfboard", + "pred": "a man carrying a surfboard on top of a beach" + }, + { + "label": "a woman that is sitting down in front of a table", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "people that are standing near a tennis net", + "pred": "a large group of children standing on top of a tennis court" + }, + { + "label": "a plate that has cake on top of it", + "pred": "a sandwich on a plate on a table" + }, + { + "label": "a man standing at the beach with a surfboard and a paddle", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a young girl lying in a convertible toddler crib", + "pred": "a small dog laying on top of a bed" + }, + { + "label": "a little boy smiling for a picture as he eats", + "pred": "a little boy sitting at a table eating a donut" + }, + { + "label": "single paddle boarder walking on the shore of a beach", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a man and a girl standing next to two cakes in the kitchen", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a dining table sits with a table cloth, near bright, open windows", + "pred": "a room with a table and chairs in it" + }, + { + "label": "a person walks on the beach, carrying a surf board", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a man holds a parasail on the beach as another man watches", + "pred": "a man carrying a surfboard on top of a beach" + }, + { + "label": "a cake that is sitting in the grass", + "pred": "a flower pot sitting in the middle of a field" + }, + { + "label": "a woman taking a photo of her food with a cell phone", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a square of cheesecake on a marble cutting board with a two-pronged fork", + "pred": "a piece of cake sitting on top of a cutting board" + }, + { + "label": "a white frosted cake sitting in front of some white flowers", + "pred": "a flower pot sitting in the middle of a field" + }, + { + "label": "two men at the beach one of which is holding a surfboard and a para sail", + "pred": "a man carrying a surfboard on top of a beach" + }, + { + "label": "a cake is sitting in the grass in front of white flowers", + "pred": "a flower pot sitting in the middle of a field" + }, + { + "label": "child playing and relaxing within a crib of white walls", + "pred": "a small dog laying on top of a bed" + }, + { + "label": "the expert surfer is trying to also parasail", + "pred": "a man carrying a surfboard on top of a beach" + }, + { + "label": "a piece of cake sitting on a square plate", + "pred": "a piece of cake sitting on top of a cutting board" + }, + { + "label": "people riding waves in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person using a wind surfboard, on the beach", + "pred": "a man carrying a surfboard on top of a beach" + }, + { + "label": "two remotes on a mattress with an adjustable sleep number one in the middle", + "pred": "a remote control sitting on top of a bed" + }, + { + "label": "a boy smiling and eating some food on a plate", + "pred": "a little boy sitting at a table eating a donut" + }, + { + "label": "young child looking enthused over some dessert on table", + "pred": "a little boy sitting at a table eating a donut" + }, + { + "label": "remote controls are arranged on a bare mattress", + "pred": "a remote control sitting on top of a bed" + }, + { + "label": "a trio of men drinking wine at a restaurant table", + "pred": "three people sitting at a table with plates of food" + }, + { + "label": "three men sitting at a table with some wine glasses", + "pred": "three people sitting at a table with plates of food" + }, + { + "label": "a man and a young girl choosing between two cakes", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a woman in a white top at a table with food", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a person riding a surfboard on top of a body of water" + }, + { + "label": "a small piece of dessert sitting on a gray plate", + "pred": "a piece of cake sitting on top of a cutting board" + }, + { + "label": "a woman with a hoody and gloves on standing in the snow", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a tiny square of cake beside a two tonged fork", + "pred": "a piece of cake sitting on top of a cutting board" + }, + { + "label": "a fork and a piece of cheese cake on a gray platter", + "pred": "a piece of cake sitting on top of a cutting board" + }, + { + "label": "a women who is taking a picture of her food", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a man and little girl in front of a cake", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a woman in a pink jacket and printed pants snowboarding", + "pred": "a woman riding skis down a snow covered slope" + }, + { + "label": "a para sailor with his board with sail in the surf", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a man on a surf board stands in shallow water", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a man and little girl are in a kitchen looking at cakes", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "kids posing for a picture on a tennis court", + "pred": "a large group of children standing on top of a tennis court" + }, + { + "label": "a meal is lying on a plate on a table", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "part of a sandwich sitting on a table", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a person on a skate board ride down a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "three remotes sitting on top of a mattress", + "pred": "a remote control sitting on top of a bed" + }, + { + "label": "a person standing on a skateboard on top of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man and a child in the kitchen with two cakes", + "pred": "a woman cutting into a cake with a knife" + }, + { + "label": "a person is on a surfboard in the water", + "pred": "a person riding a surfboard on top of a body of water" + }, + { + "label": "three men at a restaurant drinking wine", + "pred": "three people sitting at a table with plates of food" + }, + { + "label": "a man is riding a surfboard at the beach", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "surfers in an ocean on their surfboards", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two tennis players in blue shirts playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people on a court playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a cake laying on the ground near flowers", + "pred": "a flower pot sitting in the middle of a field" + }, + { + "label": "a person riding a surfboard in the water", + "pred": "a person riding a surfboard on top of a body of water" + }, + { + "label": "a person standing on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "woman sitting at table with beverages consuming sandwich", + "pred": "a man sitting at a table with a bowl of food" + }, + { + "label": "a huge, crashing wave with lots of spray is carrying a kneeling wet-suited surfer to shore", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a surfer coming in on a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man on a surfboard surfing a large wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the man in swim gear is dealing with his object", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a surfer rides the face of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a sleep number bed with the comfort remotes", + "pred": "a remote control sitting on top of a bed" + }, + { + "label": "a box full of matching, ridged donuts with glaze", + "pred": "a tray filled with lots of different types of donuts" + }, + { + "label": "a surfer looks tiny while surfing in the ocean", + "pred": "a person riding a surfboard on top of a body of water" + }, + { + "label": "a guy is skateboarding through cones on a street", + "pred": "a man on a skateboard in the middle of a road" + }, + { + "label": "a wake boarder setting up his raft in the ocean", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a man that is standing in the water near a wind surfboard", + "pred": "a man riding a surfboard on top of a wave in the ocean" + }, + { + "label": "a box of doughnuts just short of a dozen", + "pred": "a tray filled with lots of different types of donuts" + }, + { + "label": "people that are sitting around a table", + "pred": "three people sitting at a table with plates of food" + }, + { + "label": "a box that has doughnuts inside of it", + "pred": "a tray filled with lots of different types of donuts" + }, + { + "label": "people that are inside of the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person on a skateboard is balancing on the edge of a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a man that is standing on a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "an unmade bed has three remote controls on top of it", + "pred": "a remote control sitting on top of a bed" + }, + { + "label": "a dog laying on a bed", + "pred": "a black dog laying on top of a bed" + }, + { + "label": "children on teams are running toward a soccer ball", + "pred": "young children playing soccer on a field" + }, + { + "label": "three men pose and smile at a table", + "pred": "three people sitting at a table with plates of food" + }, + { + "label": "a lady hold a game controller, pointed towards a laptop", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a blurry woman is holding a tennis racquet in the air", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "men in wetsuits surfing on small waves by a rock pier", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "people who are standing in the grass", + "pred": "young children playing soccer on a field" + }, + { + "label": "an open box of doughnuts on a table", + "pred": "a tray filled with lots of different types of donuts" + }, + { + "label": "a man riding a board on top of a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "an animal laying under a blanket on top of a bed", + "pred": "a black dog laying on top of a bed" + }, + { + "label": "a young man standing on top of a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man that is surfing on some water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man in a wet suit stands on a surfboard and rows with a paddle", + "pred": "a man riding a paddle board on top of a body of water" + }, + { + "label": "a woman running across a tennis court in a shirt skirt", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "this lady is using controllers and those men are watching", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a paddle boarder on a large, still body of water", + "pred": "a man riding a paddle board on top of a body of water" + }, + { + "label": "men standing on top of a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people are riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a bedroom with a bed and small table near by", + "pred": "a bed sitting next to a window in a room" + }, + { + "label": "young children participating in a coed soccer game", + "pred": "young children playing soccer on a field" + }, + { + "label": "a woman eating a sandwich in front of two paper cups filled with a hot liquid", + "pred": "a man sitting at a table with a bowl of food" + }, + { + "label": "a wave at the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "an apartment room with a bed an table and a view out the window", + "pred": "a bed sitting next to a window in a room" + }, + { + "label": "a tennis player with a racket on a court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "surfboards that are in the sand", + "pred": "surfboards are laying on the beach" + }, + { + "label": "two surf boars on a beach near the water", + "pred": "surfboards are laying on the beach" + }, + { + "label": "little kids playing soccer with each other", + "pred": "young children playing soccer on a field" + }, + { + "label": "a guy on a skateboard about to go down a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a dog on its bed lay down for some food", + "pred": "a black dog laying on top of a bed" + }, + { + "label": "a box of pastries is sitting on a table", + "pred": "a tray filled with lots of different types of donuts" + }, + { + "label": "couple of men during couples match playing tennis about to contact ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a person riding a surf board on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a skateboard going around cones in a skateboard competition", + "pred": "a man on a skateboard in the middle of a road" + }, + { + "label": "a brown dog on a bed sitting under the covers", + "pred": "a black dog laying on top of a bed" + }, + { + "label": "man on long board skating down steep road", + "pred": "a man on a skateboard in the middle of a road" + }, + { + "label": "two people playing a doubles match on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "woman playing nintendo wii in font of business people in office", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a bald headed man eating a slice of cake", + "pred": "a man eating a hot dog in a park" + }, + { + "label": "a lady that has a wii remote in her hand", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a sandy beach with surf boards sitting on top of it", + "pred": "surfboards are laying on the beach" + }, + { + "label": "children are playing soccer on a sunny day", + "pred": "young children playing soccer on a field" + }, + { + "label": "a person riding a surf board on a body of water", + "pred": "a person riding a surfboard on top of a body of water" + }, + { + "label": "a woman eating a sandwich with a drink in front of her", + "pred": "a man sitting at a table with a bowl of food" + }, + { + "label": "man eating a piece of cake off of a white played outdoors", + "pred": "a man eating a hot dog in a park" + }, + { + "label": "a plate with a burger that is halfway eaten", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "skate boarders are running a track with cones", + "pred": "a man on a skateboard in the middle of a road" + }, + { + "label": "a tennis player poses, racket in his right hand, left arm behind him", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a women looks toward the tennis ball she just hit", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a white cake is by a bunch of flowers", + "pred": "a flower pot sitting in the middle of a field" + }, + { + "label": "a woman of asian heritage eating a sandwich at a table with two cups of hot beverages", + "pred": "a man sitting at a table with a bowl of food" + }, + { + "label": "a dog that is laying down on a bed", + "pred": "a black dog laying on top of a bed" + }, + { + "label": "an asian woman eating by a large window", + "pred": "a man sitting at a table with a bowl of food" + }, + { + "label": "a man that is eating some kind of piece of cake", + "pred": "a man eating a hot dog in a park" + }, + { + "label": "items including two surf boards on the beach", + "pred": "surfboards are laying on the beach" + }, + { + "label": "a skateboarder weaving in and out of cones", + "pred": "a man on a skateboard in the middle of a road" + }, + { + "label": "professionally dressed men watching a woman holding a wii controller", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "the man is posing for a picture with his snowboard", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a man on a surfboard with two people swimming behind him", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man is holding a long racquet on a surfboard in the middle of the sea", + "pred": "a man riding a paddle board on top of a body of water" + }, + { + "label": "a made up dinner table with a flower vase on the table", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "a chair sitting in the middle of the room, in a black and white photo", + "pred": "a woman sitting in a chair in front of a mirror" + }, + { + "label": "a room with chairs and a large mirror", + "pred": "a woman sitting in a chair in front of a mirror" + }, + { + "label": "the skier is happy to pose for the picture", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "no one is in the room but there are chairs", + "pred": "a woman sitting in a chair in front of a mirror" + }, + { + "label": "a guy wearing a wet suit surfing the wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man posing for the camera, eating a piece of cake", + "pred": "a man eating a hot dog in a park" + }, + { + "label": "surf boards, towels chairs and bags are lying on a beach", + "pred": "surfboards are laying on the beach" + }, + { + "label": "a simple modern bedroom sheets on the bed", + "pred": "a bed sitting next to a window in a room" + }, + { + "label": "a half eaten meal sitting on a plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a sandwich with a bite taken on a plate", + "pred": "a sandwich sitting on top of a white plate" + }, + { + "label": "a man with glasses on biting into a piece of cake", + "pred": "a man eating a hot dog in a park" + }, + { + "label": "a man who is on a skateboard on a ramp", + "pred": "a man riding a skateboard up the side of a ramp" + }, + { + "label": "a bed room that has a table, chairs, and bed in it", + "pred": "a bed sitting next to a window in a room" + }, + { + "label": "a man in a wetsuit riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a girl swinging a tennis racquet on a court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "the tennis player does not know what to expect with the next serve", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man that is standing with a snowboard in the snow", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a man that is standing on a motorcycle in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a tennis player is getting ready to hit a ball", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man standing on a snowboard on a mountain peak", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "a dining room has a dining table and chairs, wall tapestry, and bar cart", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "male tennis player delivery service during a game", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man leaning over holding a tennis racket", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "the bedroom is clean and ready for the guests to use", + "pred": "a woman sitting in a chair in front of a mirror" + }, + { + "label": "black and white of a person wearing a wetsuit standing on a surfboard and holding out a paddle, in a large body of water outside", + "pred": "a man riding a paddle board on top of a body of water" + }, + { + "label": "slices of pizza upside down on a plate on a table", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a man in a defensive stance on a tennis court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "the table has been decorated with a very modern look", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "three chairs sitting in a room near a mirror", + "pred": "a woman sitting in a chair in front of a mirror" + }, + { + "label": "pizza slices next to a couple of bread slices", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a person standing in the snow near a snow board", + "pred": "a man standing on top of a snow covered slope" + }, + { + "label": "two slices of flipped over pizza on a plate", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a man in a wet suit riding a wave on a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a table with a vase on the middle of it", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "a pizza sitting on a table, with a couple slices on it", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "a table that has a vase on it near a blanket hanging on a wall", + "pred": "a dining room table with a vase of flowers on it" + }, + { + "label": "a room with purple walls, carpet and bed comforter", + "pred": "a bed sitting next to a window in a room" + }, + { + "label": "a male surfer on a white board riding a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man with a wet suit on standing on a surfboard in the water", + "pred": "a man riding a paddle board on top of a body of water" + }, + { + "label": "one of the slices of pizza on the dish is turned upside down", + "pred": "a slice of pizza sitting on top of a paper plate" + }, + { + "label": "the waves crash behind a man surfing in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a person standing on a tennis court with a racket", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a person playing the nintendo wii in their messy living room", + "pred": "a person standing in a living room holding a nintendo wii game controller" + }, + { + "label": "a guy in black water suit surfing a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "man with food items walking on sidewalk while listening to audio", + "pred": "a man eating a hot dog in front of a store" + }, + { + "label": "a room that has a lady with a remote in hand", + "pred": "a person standing in a living room holding a nintendo wii game controller" + }, + { + "label": "people that are standing up in a room", + "pred": "two people standing in a living room playing a video game" + }, + { + "label": "a woman in a messy living room playing the wii", + "pred": "a person standing in a living room holding a nintendo wii game controller" + }, + { + "label": "two surfers catching two different waves, one after the other", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man that is on a tennis court with a racket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two people are riding on surfboards in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man on a surfboard riding a wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "pizza on a table at an outdoor restaurant at night", + "pred": "a pizza sitting on top of a table in a restaurant" + }, + { + "label": "tennis player and white outfit swinging his racket on the court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a person standing in a living room with a remote control", + "pred": "a person standing in a living room holding a nintendo wii game controller" + }, + { + "label": "a man is playing tennis and is going to return the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man with glasses and earbuds holding a cup and a paper bag", + "pred": "a man eating a hot dog in front of a store" + }, + { + "label": "a man playing tennis on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man is holding a plate and smiling happily", + "pred": "a man holding a plate of food in front of him" + }, + { + "label": "a man at the net makes a forehand volley in a tennis match", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young man playing tennis and preparing to hit the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man is on a court with a tennis racket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man who is about to server a tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a tennis player with a ball and a racket", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man holding two plates of food while smiling", + "pred": "a man holding a plate of food in front of him" + }, + { + "label": "a personal pizza on table in restaurant", + "pred": "a pizza sitting on top of a table in a restaurant" + }, + { + "label": "a person walking with a bad and a cup", + "pred": "a man eating a hot dog in front of a store" + }, + { + "label": "a smiling man holding a little plate of food", + "pred": "a man holding a plate of food in front of him" + }, + { + "label": "surfers ride towering waves on the open ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "young couple happily snuggling on their bed together", + "pred": "a man and a woman laying on a bed" + }, + { + "label": "two plates that have food on a counter", + "pred": "a plate of sandwiches and a bottle of beer on a counter" + }, + { + "label": "plates of food with fruit and sandwiches and beer", + "pred": "a plate of sandwiches and a bottle of beer on a counter" + }, + { + "label": "side by side view of two oval plates, one with fork, with chicken salad sandwiches and rosy new potatoes, by an open and an unopened bottle of", + "pred": "a plate of sandwiches and a bottle of beer on a counter" + }, + { + "label": "a couple is sleeping in a bed with red sheets", + "pred": "a man and a woman laying on a bed" + }, + { + "label": "a man riding a wave on top of a surfboard", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man serving a neon green tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a guy is posing with a plate of food", + "pred": "a man holding a plate of food in front of him" + }, + { + "label": "people listening to music or possible playing video games", + "pred": "two people standing in a living room playing a video game" + }, + { + "label": "a man walking with a drink and a bag while listening to earbud headphones", + "pred": "a man eating a hot dog in front of a store" + }, + { + "label": "a counter with two plates with sandwiches and eggs on top of them", + "pred": "a plate of sandwiches and a bottle of beer on a counter" + }, + { + "label": "a young man serving a tennis ball with a green wall behind him", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "pizza pie sitting on top of a table in a restaurant", + "pred": "a pizza sitting on top of a table in a restaurant" + }, + { + "label": "a guy tossing a tennis ball up and preparing to serve", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "two men ride surfboards through the crashing waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two little girls in tennis uniforms standing next to a scooter", + "pred": "two little girls standing next to each other on a skateboard" + }, + { + "label": "two flatbread pieces covered with different ingredients in between a flight of beers", + "pred": "a table topped with a tray of food and a glass of beer" + }, + { + "label": "a meal of sandwiches, potatoes, and red stripe beer", + "pred": "a plate of sandwiches and a bottle of beer on a counter" + }, + { + "label": "a man holding a tennis racquet on top of a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "the man standing on the surfboard is surfing in the blurry photo", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a single surfer striking a pose after catching a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the personal sized pizza is on a table in the restaurant full of people", + "pred": "a pizza sitting on top of a table in a restaurant" + }, + { + "label": "a table topped with three mugs of beer and two pizza's", + "pred": "a table topped with a tray of food and a glass of beer" + }, + { + "label": "two young girls with a tennis racket and a scooter", + "pred": "two little girls standing next to each other on a skateboard" + }, + { + "label": "a man throws a tennis ball into the air to serve it", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man in black wetsuit riding surfboard on top of water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "two small flat breads with beer samplers on each side", + "pred": "a table topped with a tray of food and a glass of beer" + }, + { + "label": "the group of people are really into the game", + "pred": "two people standing in a living room playing a video game" + }, + { + "label": "a man carries a bag of food and a drink away from a roadside eatery", + "pred": "a man eating a hot dog in front of a store" + }, + { + "label": "a recently married couple displayed behind glass", + "pred": "a woman sitting on top of a bed next to a painting" + }, + { + "label": "the teen group is serving pizza and drinks to the younger children", + "pred": "people standing around a table with a pizza" + }, + { + "label": "a pizza with tomatoes on it sitting on a table in a restaurant", + "pred": "a pizza sitting on top of a table in a restaurant" + }, + { + "label": "people are socializing in a room", + "pred": "two people standing in a living room playing a video game" + }, + { + "label": "a wooden table holding multiple beers and a plate of food with pizza on it", + "pred": "a table topped with a tray of food and a glass of beer" + }, + { + "label": "pizzas sitting on a table", + "pred": "a table topped with a tray of food and a glass of beer" + }, + { + "label": "server smiling while carrying food inside a busy restaurant", + "pred": "a man holding a plate of food in front of him" + }, + { + "label": "a male tennis player in a red shirt playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man plays wii sports boxing in a very messy living room", + "pred": "a person standing in a living room playing a video game" + }, + { + "label": "two little girls posing for a picture, on a tennis court", + "pred": "two little girls standing next to each other on a skateboard" + }, + { + "label": "two man spooning in a bed with a brown duvet", + "pred": "a man and a woman laying on a bed" + }, + { + "label": "young people eat pizzas and drink from pitchers", + "pred": "people standing around a table with a pizza" + }, + { + "label": "a man and his wife on a bed", + "pred": "a woman sitting on top of a bed next to a painting" + }, + { + "label": "two young girls on a tennis court with a racquet and a scooter", + "pred": "two little girls standing next to each other on a skateboard" + }, + { + "label": "a young girl in a white top poses with a yellow tennis racket", + "pred": "a little girl holding a tennis racquet on top of a fence" + }, + { + "label": "a young girl with fluffy hair holds a tennis racket", + "pred": "a little girl holding a tennis racquet on top of a fence" + }, + { + "label": "a woman holding a birthday cake with one candle near a man with a baby in his lap", + "pred": "a woman feeding a child a cake on a table" + }, + { + "label": "a child is posing with a tennis racquet", + "pred": "a little girl holding a tennis racquet on top of a fence" + }, + { + "label": "people standing inside of a living room", + "pred": "two people standing in a living room playing a video game" + }, + { + "label": "a toothbrush in a cup sitting next to a sink", + "pred": "a cup with a toothbrush and toothpaste in it" + }, + { + "label": "a couple that just got married lying in a bed", + "pred": "a woman sitting on top of a bed next to a painting" + }, + { + "label": "a man snuggled up to another man under the covers in a bed", + "pred": "a man and a woman laying on a bed" + }, + { + "label": "a young girl standing on a grate with a racket", + "pred": "a little girl holding a tennis racquet on top of a fence" + }, + { + "label": "the picture of the couple in bed is displayed in the large window", + "pred": "a woman sitting on top of a bed next to a painting" + }, + { + "label": "two cute girls with a scooter and tennis raquet", + "pred": "two little girls standing next to each other on a skateboard" + }, + { + "label": "men snuggling on a bed with one under the cover", + "pred": "a man and a woman laying on a bed" + }, + { + "label": "two surfers are riding two large ocean waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a small girl is holding a yellow racket", + "pred": "a little girl holding a tennis racquet on top of a fence" + }, + { + "label": "a person holding a tennis racket in their hand", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man and a woman are laying in a bed", + "pred": "a woman sitting on top of a bed next to a painting" + }, + { + "label": "a large pizza is on a white plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "young people holding a pizza party", + "pred": "people standing around a table with a pizza" + }, + { + "label": "a young man holds up a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman looks at a child being held by a man", + "pred": "a woman feeding a child a cake on a table" + }, + { + "label": "two men and woman opening boxes of pizza in a room", + "pred": "people standing around a table with a pizza" + }, + { + "label": "a toothbrush is sitting in a colorful cup", + "pred": "a toothbrush sitting on top of a cup next to a toothbrush holder" + }, + { + "label": "a young man preparing to serve during a tennis match", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "fancy colored toothbrush sitting in decorative mug, in a bathroom", + "pred": "a toothbrush sitting on top of a cup next to a toothbrush holder" + }, + { + "label": "a pair of men with small mustaches dress as tennis players", + "pred": "two men standing next to each other holding tennis racquets" + }, + { + "label": "a beef, peppers and cheese pizza on top of a plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a baby who is being held by a man", + "pred": "a woman feeding a child a cake on a table" + }, + { + "label": "a man skillfully water skiing in wild water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "men that are standing around with rackets", + "pred": "two men standing next to each other holding tennis racquets" + }, + { + "label": "a man that is holding a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "woman carrying cake near man holding baby at outdoor celebration", + "pred": "a woman feeding a child a cake on a table" + }, + { + "label": "modern kitchen with dinning area and all wood flooring", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "two men with tennis rackets and tennis balls", + "pred": "two men standing next to each other holding tennis racquets" + }, + { + "label": "a bathroom sink with two toothbrush holders on it", + "pred": "a toothbrush sitting on top of a cup next to a toothbrush holder" + }, + { + "label": "a toothbrush is sitting inside a cup next to a sink", + "pred": "a toothbrush sitting on top of a cup next to a toothbrush holder" + }, + { + "label": "a kitchen and dining room with an ocean side view", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "a man in a lacoste shirt playing tennis outside", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a sink that has a stove and a sink", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "two men wearing polos, headbands and shorts, holding tennis balls and rackets", + "pred": "two men standing next to each other holding tennis racquets" + }, + { + "label": "a tennis player getting ready to play a game", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "people are getting some food and drinks together", + "pred": "people standing around a table with a pizza" + }, + { + "label": "a person is eating pizza with a knife and fork", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a person holding up a child with a cake", + "pred": "a woman feeding a child a cake on a table" + }, + { + "label": "a large air bubble on the crust of this pizza", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a small pizza that is on a white plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man holding a tennis racket at the tennis courts", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "two men posing for a picture in a tennis game in a funny way", + "pred": "two men standing next to each other holding tennis racquets" + }, + { + "label": "a pizza sitting on top of a white plate with lots of toppings", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a photo looking into a kitchen and dining room with many blue accents", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "a whole pizza on a red checked table cloth", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a kitchen with a metallic stove top sitting under a window", + "pred": "a kitchen with a sink and a window" + }, + { + "label": "a pizza sitting on top of a white plate covered in cheese and toppings", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a plate of food", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a vegetable pizza on a plate on a table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man is about to serve a tennis ball", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a toddler with a toothbrush sitting on top of the lid of a toilet", + "pred": "a little boy sitting on a toilet with a toothbrush in his mouth" + }, + { + "label": "boy wearing a helmet while playing a video game", + "pred": "a little girl riding a skateboard on top of a table" + }, + { + "label": "a skier approaches a red bar stuck into the snow on a snowy hill", + "pred": "a person riding skis on top of a snow covered slope" + }, + { + "label": "men playing a game with remote controllers", + "pred": "a man sitting on a couch playing a game with a nintendo wii controller" + }, + { + "label": "a small child eating a plate of food with their hands", + "pred": "a little girl sitting in front of a plate of food" + }, + { + "label": "two women playing tennis in a stadium with a grass court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a bowl of tomato soup with two grilled cheese sandwiches on a plate", + "pred": "a bowl of soup and a spoon on a table" + }, + { + "label": "a girl reading a book on a bed next to a man", + "pred": "a man brushing his teeth with a toothbrush" + }, + { + "label": "people that are skiing posing for pictures", + "pred": "three people standing on top of a snow covered slope" + }, + { + "label": "a birthday cake shaped like a wrestling ring", + "pred": "a cake sitting on top of a train bed" + }, + { + "label": "a man lies on the floor next to some gadgets", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a table with plates of food and a bottle of alcohol", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "two sandwiches have been halved and placed on a plate with a knife", + "pred": "a sandwich cut in half sitting on a plate" + }, + { + "label": "pizza an other food on a table at a restaurant", + "pred": "a pizza sitting on top of a plate on a table" + }, + { + "label": "a man riding a surfboard in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man hitting a tennis ball during a tennis match", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man helping a boy on a paddle board in the water", + "pred": "a man and a woman on a surfboard in the water" + }, + { + "label": "a man taking a bite of a doughnut while wearing glasses", + "pred": "a man with glasses eating a donut" + }, + { + "label": "a man surfing on a surfboard in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the sun shines as the man plays tennis at a tennis court", + "pred": "a man swinging a tennis racket at a ball" + }, + { + "label": "a person grabbing a slice of pizza with cheese and mushrooms", + "pred": "a person holding a slice of pizza" + }, + { + "label": "a man standing near the ocean with his surf board", + "pred": "a man walking on the beach with a surfboard" + }, + { + "label": "a smiling young boy lying on a surfboard rides in on the surf", + "pred": "a boy riding a wave on top of a surfboard" + }, + { + "label": "a remote control sitting on a table with the telivision", + "pred": "a remote control sitting on top of a wooden table" + }, + { + "label": "beach full of surfers inside and outside of the water", + "pred": "people standing on top of a beach" + }, + { + "label": "woman in tennis garb preparing to serve tennis ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a young child brushing his teeth in the bathroom", + "pred": "a young boy brushing his teeth in the bathroom" + }, + { + "label": "a black man running towards the tennis ball with his racket", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a boy riding waves on his surf board in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man leads on the railing while food sits on the table", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a couch by a coffee table, remote controller and fan", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a surfer heads out towards the waves with his board", + "pred": "a person standing on a surfboard in the ocean" + }, + { + "label": "a man holds a tennis racket in his hand and looks up", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a plate of blueberry coffee cake with butter and an orange slice on a table with breakfast foods", + "pred": "a piece of cake on a plate on a table" + }, + { + "label": "a surfer stands riding down the side of a small wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a snowboard in the middle of a back flip", + "pred": "a person jumping a snow board in the air" + }, + { + "label": "two adults working behind a counter displaying pastries", + "pred": "a man standing in front of a display of donuts" + }, + { + "label": "a couch and table sit in a living room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "half eaten pizza on cutting board next to alcohol", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a man that has a tennis racket in his hand", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a body of water that has a guy surfing on it", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man sitting down with a snowboard strapped on", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "a woman looks up to hit a ball in a tennis match", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "people walking across asphalt, dressed informally", + "pred": "a man standing next to a woman holding a frisbee" + }, + { + "label": "the person is riding the waves in the water", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a piece of pizza on a cutting board beside a bottle and glasses", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a snow boarder sits in the snow looking at the camera", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "hot dogs on a skewer roasting over a fire", + "pred": "a grill that has a bunch of hot dogs on it" + }, + { + "label": "the cake is prepared and ready to be eaten", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "the man playing tennis is reaching up to hit the ball", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "wooden cutting board with a slice of pizza", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a tennis court with multiple games happening at once", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "a man riding a long wave in the ocean", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "an orange cat playing on the bed sheets", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "three people, two wearing blue shirts, are on the tennis court", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "hot dogs are being cooked over a fire outside", + "pred": "a grill that has a bunch of hot dogs on it" + }, + { + "label": "a male snowboarder sits with his board on a snowy hill", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "a white boxy birthday cake with red flowers and blue accents on a decorated table with gray cover and candles", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a woman holding a tennis racket, playing tennis on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "the hot dogs are being roasted on the camp fire", + "pred": "a grill that has a bunch of hot dogs on it" + }, + { + "label": "people playing tennis on a video game with a large television on", + "pred": "people playing a video game in a living room" + }, + { + "label": "a two layer cake sitting on a table near candles", + "pred": "a birthday cake with a train on top of it" + }, + { + "label": "a parasailer in the distance with two surfers", + "pred": "a person on a surfboard in the water" + }, + { + "label": "a surfer riding through a barrel on a wave", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "a man sits in the snow with a snowboard still on his feet", + "pred": "a man sitting on a snowboard in the snow" + }, + { + "label": "an orange cat about to jump onto a tile floor from a bed", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "tennis players play on an outdoor court", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "a lone surfer is on the water riding the waves", + "pred": "a man riding a wave on top of a surfboard" + }, + { + "label": "the cat is perched on the edge of the bed", + "pred": "a cat that is laying down on a bed" + }, + { + "label": "a man reaches into the air with a tennis racket, in an attempt to hit a flying tennis ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man with a tennis racket on a court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man reahced up his arms as he gets ready to get a hit a tennis ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a young black male serving a tennis ball on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a young man is in blue and white playing tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man skis using a sail in open snow-packed field", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a number of vintage refrigerators and freezers sitting outdoors", + "pred": "a row of old refrigerators sitting next to each other" + }, + { + "label": "girl trying out a game at a trade show", + "pred": "a man and woman standing next to each other in a room" + }, + { + "label": "a computer desk and chair looks like a home office", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "old refrigerators in front of an open door", + "pred": "a row of old refrigerators sitting next to each other" + }, + { + "label": "a man on a snowboard para sailing in the snow", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "tall boxes are stacked on a brown sidewalk.outside", + "pred": "a row of old refrigerators sitting next to each other" + }, + { + "label": "old appliances outside the back door of a repair shop", + "pred": "a row of old refrigerators sitting next to each other" + }, + { + "label": "a man on a snowboard using a parachute", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a home office containing computer and televison equipment", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "two monitors and a laptop sit on a desk in front of a empty chair", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "kitchen appliances outside a building with yellow doors", + "pred": "a row of old refrigerators sitting next to each other" + }, + { + "label": "a man is holding a baseball bat", + "pred": "a man standing in a field with a flower in his hand" + }, + { + "label": "a baseball player at home plate preparing to swing", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a baseball player waiting to hit the baseball", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "people standing around a waiting room with a flat screen tv", + "pred": "a man and woman standing next to each other in a room" + }, + { + "label": "a pile of junk sitting next to a curb on green grass", + "pred": "a pile of trash sitting on the side of a road" + }, + { + "label": "trade show visitors and workers in a vendor booth", + "pred": "a man and woman standing next to each other in a room" + }, + { + "label": "people wait in a red reception area", + "pred": "a man and woman standing next to each other in a room" + }, + { + "label": "a batter ready to swing at home plate", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a pile of garbage sitting on the curb in front of a wall", + "pred": "a pile of trash sitting on the side of a road" + }, + { + "label": "a clock sits above green bushes under a blue sky", + "pred": "a clock that is on top of a pole" + }, + { + "label": "the baseball player is ready to swing the bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a small group of people standing in a red and white room", + "pred": "a man and woman standing next to each other in a room" + }, + { + "label": "a laptop computer sitting on a desk next to a smart phone", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "an un-attended office desk with multiple monitors and a laptop computer", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a man is holding a bat in a field", + "pred": "a man standing in a field with a flower in his hand" + }, + { + "label": "a pile of old furnishings on the curb for trash pickup", + "pred": "a pile of trash sitting on the side of a road" + }, + { + "label": "a man in blue shorts putting together a blue and purple kite on a blue towel at the beach", + "pred": "a man laying on the beach with a kite" + }, + { + "label": "an office with a desk, chair and multiple computers", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a guy standing on a snowboard in the snow", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a clock on a stand displays the time in a garden", + "pred": "a clock that is on top of a pole" + }, + { + "label": "a man prepares to fly his kite on a sandy beach", + "pred": "a man laying on the beach with a kite" + }, + { + "label": "a man fixing a kite on the beach", + "pred": "a man laying on the beach with a kite" + }, + { + "label": "two young men standing around a table in front of a chalk board", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a young man on the beach assembling a kite", + "pred": "a man laying on the beach with a kite" + }, + { + "label": "a man is on a snow board with a kite", + "pred": "a woman standing on top of a snow covered slope" + }, + { + "label": "a clock that is surrounded by tall grass in a park", + "pred": "a clock that is on top of a pole" + }, + { + "label": "garbage and old chairs are thrown onto a curb", + "pred": "a pile of trash sitting on the side of a road" + }, + { + "label": "an extremely focused man playing with the wii", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a man leans back, preparing to swing a bat", + "pred": "a man standing in a field with a flower in his hand" + }, + { + "label": "the opened laptop is sitting on the table along with other technological tools", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a man in a field of wild flowers holding an orange bat", + "pred": "a man standing in a field with a flower in his hand" + }, + { + "label": "a man with glasses sitting on a chair with a wiimote", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a computer sitting on top of a table", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a man in casual wear holding a baseball type bat", + "pred": "a man standing in a field with a flower in his hand" + }, + { + "label": "spectators watching as competitors play a double tennis game", + "pred": "a tennis match is being played on a grass court" + }, + { + "label": "an old time looking clock surrounded by greenery", + "pred": "a clock that is on top of a pole" + }, + { + "label": "a table with a laptop, phone and other devices sitting on it", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "two guys in an office walking towards the chalk board", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "an old standing clock surrounded by tall grass", + "pred": "a clock that is on top of a pole" + }, + { + "label": "2 young men in a room with a blackboard", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "two guys in a large room with a blackboard", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a clock set to twenty after three in a field", + "pred": "a clock that is on top of a pole" + }, + { + "label": "two men are in a building with brick walls", + "pred": "a man and a woman standing next to each other" + }, + { + "label": "a man in dinosaur covered clown suit talking on a phone on a trolley", + "pred": "a young girl riding on the back of a bus" + }, + { + "label": "a crowd of people gathered watching kites in the air", + "pred": "a crowd of people flying kites in the sky" + }, + { + "label": "a man dressed like clown getting off bus", + "pred": "a young girl riding on the back of a bus" + }, + { + "label": "a clown dressed in a suit bedecked with dinosaurs steps off a cable car", + "pred": "a young girl riding on the back of a bus" + }, + { + "label": "people on a hillside watching hot air balloons", + "pred": "a crowd of people flying kites in the sky" + }, + { + "label": "a member of a tennis doubles team just returned a volley", + "pred": "a tennis match is being played on a grass court" + }, + { + "label": "tennis players in a court playing couples tennis", + "pred": "a tennis match is being played on a grass court" + }, + { + "label": "a large crowd of people watching the sky as something flies by", + "pred": "a crowd of people flying kites in the sky" + }, + { + "label": "a crowd of people flying kites in a blue cloudy sky", + "pred": "a crowd of people flying kites in the sky" + }, + { + "label": "a man in a clown suit is stepping off a trolley", + "pred": "a young girl riding on the back of a bus" + }, + { + "label": "a tennis player serving the ball during a doubles tennis game", + "pred": "a tennis match is being played on a grass court" + }, + { + "label": "a young man playing with video game controllers", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a crowd of people gathering and flying kites", + "pred": "a crowd of people flying kites in the sky" + }, + { + "label": "a tennis match of doubles is taking place in a full stadium", + "pred": "a tennis match is being played on a grass court" + }, + { + "label": "a flat screen tv on a wooden tv stand", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a serious man is holding video game controllers", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "an entertainment center with a tv, movies, and decor", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a man flying a kite on a beach with people standing around", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a computer on a desk next to a laptop", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a man surfing in the ocean as the sun sets", + "pred": "a person standing on a beach with a surfboard" + }, + { + "label": "a wall with different types of decorations of art pieces", + "pred": "a collection of vases sitting on a shelf in a room" + }, + { + "label": "a clown like individual walking off a tram", + "pred": "a young girl riding on the back of a bus" + }, + { + "label": "people gathered taking pictures with a cell phone", + "pred": "a man taking a picture with his cell phone" + }, + { + "label": "a man surfing in the ocean at sunset", + "pred": "a person standing on a beach with a surfboard" + }, + { + "label": "the movie \"walk the line\" is playing on a flatscreen tv", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a mosaic of vases hung on a wall", + "pred": "a collection of vases sitting on a shelf in a room" + }, + { + "label": "an imac desktop next to a mac laptop on a desk", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a nintendo wii controller in a person's hand", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "two apple computers are on a white desk", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a smart phone sitting next to a canned soft drink and a pen on a wooden table", + "pred": "a cell phone sitting on top of a wooden table" + }, + { + "label": "a small desk with lamp, phone, and laptop on it", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a lap top computer is open and on and is sitting on a desk next to a glass of liquid and a lamp", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "assorted vases hanging on a wall next to each other", + "pred": "a collection of vases sitting on a shelf in a room" + }, + { + "label": "the tv is placed in a well decorated room", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "an open laptop computer sitting on a desk next to a lamp", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a tv with a man singing on it and the room has pictures everywhere", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "glass is hanging on the white wall all bunched together", + "pred": "a collection of vases sitting on a shelf in a room" + }, + { + "label": "a person standing on a beach holding onto a kite string", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "an up close photo of the bottom of a wii remote", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a laptop with a stationary mouse attached to it", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a teddy bear sitting on a blue chair", + "pred": "a brown teddy bear sitting on top of a blanket" + }, + { + "label": "a man flying a kite while standing on a beach", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a man holding up his smart phone to take a picture", + "pred": "a man taking a picture with his cell phone" + }, + { + "label": "buttons on a nintendo wiiremote", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "red clouds as sun sets over the ocean", + "pred": "a person standing on a beach with a surfboard" + }, + { + "label": "a refrigerator mostly empty with only a few bottles of water inside", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a man and a woman playing a game on the nintendo wii", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a laptop and desktop computer on a white desk", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a man and a woman playing a game", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a tan teddy bear wearing a bow tie sitting on a bed", + "pred": "a brown teddy bear sitting on top of a blanket" + }, + { + "label": "a fancy metal cloth is seen against huge barred windows at a stone train station", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a man and woman playing a video game while holding hands over their heads", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a clock", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a refrigerator with four plastic bottles and one is dark blue", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a white wii component with two buttons and four lights", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a man waves to people in the distance on a beach", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a man holding his cell phone up in a crowd", + "pred": "a man taking a picture with his cell phone" + }, + { + "label": "a laptop computer with an attached trackball device, showing the windows logo on the screen", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a large tower with a clock on it advertising transportation via train", + "pred": "a clock tower with a flag on top of it" + }, + { + "label": "an iphone, a blue pen, and a soda", + "pred": "a cell phone sitting on top of a wooden table" + }, + { + "label": "the new sony y series laptop is connected to a special mouse", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a white wall displaying art that look like vases", + "pred": "a collection of vases sitting on a shelf in a room" + }, + { + "label": "a computer sits at a hotel desk, and the lamp is on", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a pizza casserole with two kinds of crackers on the side", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "an iphone, pen and soda can on a table", + "pred": "a cell phone sitting on top of a wooden table" + }, + { + "label": "a beige teddy bear is sitting on a chair", + "pred": "a brown teddy bear sitting on top of a blanket" + }, + { + "label": "a shot of a clock in the train station", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a plate of food is sitting on a red clothe", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man and a women in an odd position holding wii remotes", + "pred": "a man and a woman playing a video game" + }, + { + "label": "four bottles sit in an otherwise empty refrigerator", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "people sitting and one man looking at his cellphone", + "pred": "a man taking a picture with his cell phone" + }, + { + "label": "a pizza pie sits in a dish on a table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a person holding a smart phone in the palm of their hand", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a windows laptop computer with a large mouse", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a homemade cheese pizza and crackers are on the table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "the controller of a wii system is pictured", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "an ocean scene with a wake border", + "pred": "a person standing on a beach with a surfboard" + }, + { + "label": "a teddy bear sits on a floral patterned chair", + "pred": "a brown teddy bear sitting on top of a blanket" + }, + { + "label": "two flags flying in the wind while atop a train station clock", + "pred": "a clock tower with a flag on top of it" + }, + { + "label": "a man in a crowd taking pictures with a cell phone", + "pred": "a man taking a picture with his cell phone" + }, + { + "label": "an old town clock with the u.s. flag and a state flag on top", + "pred": "a clock tower with a flag on top of it" + }, + { + "label": "someones living room with a sewing machine and plants", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "one person is kite surfing at the beach", + "pred": "a person standing on a beach with a surfboard" + }, + { + "label": "a windows laptop with a corded mouse on top of a counter", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a clock in a brightly lit room with windows", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a hand holding a gray and blue clock and some peoples legs", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a blue tinted photograph of a man flying a kite on the beach", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a couple fighting each other over a wii remote control", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a cozy living room with small potted plants and a flat screen", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a computer desk with several pieces of computer equipment", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "blender with portions of its contents spilled around it", + "pred": "a blender sitting on top of a counter top" + }, + { + "label": "a tan colored teddy bear sits on a crochet covered chair", + "pred": "a brown teddy bear sitting on top of a blanket" + }, + { + "label": "a nice black over and under washer and dryer set", + "pred": "a stainless steel oven sitting inside of a kitchen" + }, + { + "label": "a laptop computer is open on a wooden desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a clock displays a time for the public to see", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a soda, cell phone and pen sit on a desk near a computer keyboard", + "pred": "a cell phone sitting on top of a wooden table" + }, + { + "label": "baseball memorabilia is displayed in glass stacked casings", + "pred": "a collage of photos of various items in a kitchen" + }, + { + "label": "the clock tower that has a sign saying \"go by train\" is surrounded by greenery", + "pred": "a clock tower with a flag on top of it" + }, + { + "label": "a cheese pizza pie is in the serving dish on the counter", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "hand holding an electronic component with a clock on it", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a soda can, a pen, a cell phone and a fruit drink mix packet sitting on a table with a computer keyboard", + "pred": "a cell phone sitting on top of a wooden table" + }, + { + "label": "a glass enclosure with a variety of vintage baseball memorbilia", + "pred": "a collage of photos of various items in a kitchen" + }, + { + "label": "an old cellphone that doesn't flip or have a touch screen", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "the dial clock of a cellphone displayed in hand", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "scissors are next to a pie crust in a dish", + "pred": "a loaf of bread sitting on top of a wooden table" + }, + { + "label": "people at a table working on small laptops", + "pred": "a large group of people sitting at a table with laptops" + }, + { + "label": "room with sofa, sewing machine, and potted plants", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a clock in a building in front of windows", + "pred": "a clock that is on the side of a building" + }, + { + "label": "person in a parka taking pictures with a mobile phone camera", + "pred": "a person holding a cell phone in the snow" + }, + { + "label": "a blender on the counter with liquid in it and spilled on the counter", + "pred": "a blender sitting on top of a counter top" + }, + { + "label": "a person in a parka looking at a phone", + "pred": "a person holding a cell phone in the snow" + }, + { + "label": "a person wearing a heavy coat while holding up a cell phone", + "pred": "a person holding a cell phone in the snow" + }, + { + "label": "a beach towel covers a tv across from plants on the wall and in front of the window", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a pair of black machines stacked on each other", + "pred": "a stainless steel oven sitting inside of a kitchen" + }, + { + "label": "friends are visiting at a table with tablets", + "pred": "a large group of people sitting at a table with laptops" + }, + { + "label": "blender on a messy counter in a kitchen filled with food", + "pred": "a blender sitting on top of a counter top" + }, + { + "label": "people sitting around a table with laptops and notebooks", + "pred": "a large group of people sitting at a table with laptops" + }, + { + "label": "breakfast foods are on top of a refrigerator", + "pred": "a sign that is on top of a refrigerator" + }, + { + "label": "people sitting at a table using computers", + "pred": "a large group of people sitting at a table with laptops" + }, + { + "label": "a large pizza sitting on a pizza pan with a slice missing", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a electronic sign at an airport listing the flights", + "pred": "a clock that is on top of a wall" + }, + { + "label": "photos of sports memorabilia including shirts, caps, and baseball bats", + "pred": "a collage of photos of various items in a kitchen" + }, + { + "label": "a train station clock tower with flags flying above it", + "pred": "a clock tower with a flag on top of it" + }, + { + "label": "four bottles of liquid set in a refrigerator", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a young child holding onto a kite while standing on a green grass covered field", + "pred": "a little boy standing in a field holding a kite" + }, + { + "label": "shots of many baseball uniforms on display as well as some baths", + "pred": "a collage of photos of various items in a kitchen" + }, + { + "label": "a small toy sits on a plate with pizza and crusts", + "pred": "a piece of pizza sitting on top of a white plate" + }, + { + "label": "a little kid pointing his camera at a stage where people are dressed up", + "pred": "a young man standing in front of a crowd of people" + }, + { + "label": "museum displays of baseball uniforms and bats", + "pred": "a collage of photos of various items in a kitchen" + }, + { + "label": "a person and their dog are browsing on the mac book", + "pred": "a dog laying on top of a laptop computer" + }, + { + "label": "a woman wearing a creepy mask standing next to a child", + "pred": "a woman standing next to a man in a costume" + }, + { + "label": "a clock with scroll work on the side of a building", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a refrigerator that has nothing but water in it", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a two oven unit standing in a kitchen", + "pred": "a stainless steel oven sitting inside of a kitchen" + }, + { + "label": "a blender with liquid sprayed onto the counter top", + "pred": "a blender sitting on top of a counter top" + }, + { + "label": "an old clock hanging up against the side of a wall", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a blender on the c9unter that has spilled everywhere", + "pred": "a blender sitting on top of a counter top" + }, + { + "label": "a big clock a rod iron roof and a round window", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a white refrigerator with some cereal on top", + "pred": "a sign that is on top of a refrigerator" + }, + { + "label": "refrigerator with multiple breakfast items on the top of it", + "pred": "a sign that is on top of a refrigerator" + }, + { + "label": "two stuffed animals sit at a table with honey", + "pred": "a brown teddy bear sitting next to a cup of coffee" + }, + { + "label": "cereal and juice are placed on top of a fridge", + "pred": "a sign that is on top of a refrigerator" + }, + { + "label": "seven people seated at table talking and working on computer devices", + "pred": "a large group of people sitting at a table with laptops" + }, + { + "label": "a small boy is looking at his cellphone", + "pred": "a young man standing in front of a crowd of people" + }, + { + "label": "a baseball team playing a baseball game in front of a crowd", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "two women and two girls in makeup and one is talking on a cellphone", + "pred": "a woman standing next to a man in a costume" + }, + { + "label": "a brown and black dog standing next to a man sitting on a laptop computer", + "pred": "a dog laying on top of a laptop computer" + }, + { + "label": "two people and a child are dressed up in costumes", + "pred": "a woman standing next to a man in a costume" + }, + { + "label": "a supreme pizza with two slices taken out", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a station with departing times on the board", + "pred": "a clock that is on top of a wall" + }, + { + "label": "mushroom pizza has two slices taken out of it", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a flight board in an airplane from 10-29-2011", + "pred": "a clock that is on top of a wall" + }, + { + "label": "a little boy standing on a field with a kite over his head", + "pred": "a little boy standing in a field holding a kite" + }, + { + "label": "small boy holding a kite over his head waiting", + "pred": "a little boy standing in a field holding a kite" + }, + { + "label": "a pizza cut in half on a plate", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a timetable for flight arrivals and departures", + "pred": "a clock that is on top of a wall" + }, + { + "label": "three types of microwaves on top of each other", + "pred": "a stainless steel oven sitting inside of a kitchen" + }, + { + "label": "a black dual oven stove with controls on the top", + "pred": "a stainless steel oven sitting inside of a kitchen" + }, + { + "label": "a small bunny character is on a plate of pizza", + "pred": "a piece of pizza sitting on top of a white plate" + }, + { + "label": "a dog is resting it's head on a laptop while watching the screen", + "pred": "a dog laying on top of a laptop computer" + }, + { + "label": "a child watching an event and taking a picture with his cell phone", + "pred": "a young man standing in front of a crowd of people" + }, + { + "label": "a tennis player lunges to return a wide serve", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "two stuffed bears are positioned at a table with a jar of honey", + "pred": "a brown teddy bear sitting next to a cup of coffee" + }, + { + "label": "a beige living room with a cabinet,flowers, lamp and armchair", + "pred": "a living room filled with furniture and a vase of flowers" + }, + { + "label": "a child standing outdoors in the yard playing with a kite", + "pred": "a little boy standing in a field holding a kite" + }, + { + "label": "the batter stands at the plate ready to swing, as the players stand ready in the outfield", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a small room with a futon couch, a sewing machine on a table, and a flatscreen tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a plate of pizza with a toy bunny", + "pred": "a piece of pizza sitting on top of a white plate" + }, + { + "label": "a dog has it's face on a laptop computer", + "pred": "a dog laying on top of a laptop computer" + }, + { + "label": "a large combination pizza with two pieces gone", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a foreign airline status board with a clock", + "pred": "a clock that is on top of a wall" + }, + { + "label": "two teddy bears at a table with honey", + "pred": "a brown teddy bear sitting next to a cup of coffee" + }, + { + "label": "a boy taking a picture with his phone", + "pred": "a young man standing in front of a crowd of people" + }, + { + "label": "the kitchen is lit with overhead lights, shining on the cupboard and sink", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a clock in a depot with the time reading 4:21", + "pred": "a clock mounted to the side of a building" + }, + { + "label": "a young boy is recording a performance on a cellphone of several people", + "pred": "a young man standing in front of a crowd of people" + }, + { + "label": "a kitchen with white cabinets and brick walls", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "young children sharing a laptop in a messy room with several laptops, books, and papers", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a tennis player trying to hit a tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "two teddy bears sitting at a table looking at a jar of honey", + "pred": "a brown teddy bear sitting next to a cup of coffee" + }, + { + "label": "a little funny rabbit figure is sitting in the middle of half eaten pizza", + "pred": "a piece of pizza sitting on top of a white plate" + }, + { + "label": "a man playing tennis on a tennis court", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "two children use their laptops in a room", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a dog resting its head on a laptop keyboard", + "pred": "a dog laying on top of a laptop computer" + }, + { + "label": "a small toy is sitting on a plate of pizza", + "pred": "a piece of pizza sitting on top of a white plate" + }, + { + "label": "i do not know what this is supposed to be", + "pred": "a sign that is on top of a refrigerator" + }, + { + "label": "a woman dressed as a zombie in a pink dress with a little girl", + "pred": "a woman standing next to a man in a costume" + }, + { + "label": "4 different colored sea horses flying with 4 birds", + "pred": "kites that are flying in the sky" + }, + { + "label": "people with their faces painted in makeup", + "pred": "a woman standing next to a man in a costume" + }, + { + "label": "a nintendo wii remote is being used to control a projector", + "pred": "a person holding a pair of scissors in their hands" + }, + { + "label": "a hallway table with a vase of flowers next to a printed sitting chair", + "pred": "a living room filled with furniture and a vase of flowers" + }, + { + "label": "two people on a beach flying a kite in the air", + "pred": "people standing on top of a beach flying a kite" + }, + { + "label": "a baseball game with a bunch of people in the stands", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a laptop computer sitting on a desk with a speaker", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a small, white formica kitchen with a refrigerator, sink and small electrical appliances", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "two young children sitting on a desk using a laptop computer", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a woman in a jacket with a hood looking at a cell phone", + "pred": "a person holding a cell phone in the snow" + }, + { + "label": "sea horses with birds flying in the sky", + "pred": "kites that are flying in the sky" + }, + { + "label": "baseball players getting paid to play a game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "douchey kid in vest who is about to fail at kite flying", + "pred": "a little boy standing in a field holding a kite" + }, + { + "label": "two people on a beach flying a kite", + "pred": "people standing on top of a beach flying a kite" + }, + { + "label": "four seahorses in the sky next to four birds", + "pred": "kites that are flying in the sky" + }, + { + "label": "a keyboard, mouse, and wires on a desk", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "two people fly a kite on a beach", + "pred": "people standing on top of a beach flying a kite" + }, + { + "label": "a baseball player preparing to bat during a game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "an open laptop and speakers on top of a desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a living room with a large vase with flowers", + "pred": "a living room filled with furniture and a vase of flowers" + }, + { + "label": "a person holding a remote facing several large screens", + "pred": "a person holding a pair of scissors in their hands" + }, + { + "label": "the door of the refrigerator has several papers on it", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "the tennis player is running to hit the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a little girl is kneeling in front of an open refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a kitchen illuminated by a track lighting unit", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "seahorses are photos hoped into a blue sky above sand dunes", + "pred": "kites that are flying in the sky" + }, + { + "label": "a woman is helping a young boy to play a computer game", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a man with a tennis racket is in the air with legs spread apart next to a tennis ball in motion", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a keyboard and a mouse sitting next to each other on a table", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "the cabinet has a various assortment of decorations on it", + "pred": "a living room filled with furniture and a vase of flowers" + }, + { + "label": "an open laptop computer sitting on top of a wooden desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "two people are on a beach flying a kite", + "pred": "people standing on top of a beach flying a kite" + }, + { + "label": "a vase filled with water and white flowers", + "pred": "a vase filled with flowers sitting on a window sill" + }, + { + "label": "two people standing on a sandy beach flying a kite", + "pred": "people standing on top of a beach flying a kite" + }, + { + "label": "a person sitting on desk operating a laptop next to two other", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a child in front of a well stocked refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a large clock tower in the center of a city", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a baseball player swinging a baseball bat at a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a child kneeling in front of an open refrigerator and looking in at an empty lower shelf", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a wall that has a wavy light patterns on it", + "pred": "a person holding a pair of scissors in their hands" + }, + { + "label": "a laptop sitting on a desk with a chat window displayed", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a powered on laptop computer next to a speaker on a desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a batter hits the ball in a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a girl is looking into an open refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "people standing around holding nintendo wii controllers", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a room decorated with a desk, a chair and some flowers", + "pred": "a living room filled with furniture and a vase of flowers" + }, + { + "label": "a clean white keyboard laying on the table", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a man holding a tennis racket and ball as if to start a serve", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a person i. a hood jacket capturing a photo using a flip phone", + "pred": "a person holding a cell phone in the snow" + }, + { + "label": "a keyboard sitting on a desk next to a computer mouse", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a boy swinging a baseball bat at a game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "people are standing around playing a video game", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "two teddy bears sitting at a table with honey", + "pred": "a brown teddy bear sitting next to a cup of coffee" + }, + { + "label": "people standing and holding video game remote controllers", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a hallway next to a bedroom doorway and a blue padded chair", + "pred": "a small room with a bed and a desk" + }, + { + "label": "a batter swings at the ball during a baseball game", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a hand is holding a tag with a cross on it", + "pred": "a person holding a pair of scissors in their hands" + }, + { + "label": "the chair, the bed, and the curtain are the same shade of blue", + "pred": "a small room with a bed and a desk" + }, + { + "label": "a computer keyboard, flash drive, and mouse on a marble tabletop", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a man poised with racket on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a vase of white flowers sitting on a window sill", + "pred": "a vase filled with flowers sitting on a window sill" + }, + { + "label": "the man is lying on the sidewalk with one leg in the air", + "pred": "a person sitting on the ground with a skateboard" + }, + { + "label": "a large white bowl sits on a slide out shelf under a microwave", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "the hand is pointing a remote at a screen", + "pred": "a person holding a pair of scissors in their hands" + }, + { + "label": "city street with focal view to building with maroon steeple and clocks under a standing platform", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a large group of people posing for a picture", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a little girl looking inside the refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "white flowers sit in a vase by the window", + "pred": "a vase filled with flowers sitting on a window sill" + }, + { + "label": "a room in a home with a chair set up against the wall", + "pred": "a small room with a bed and a desk" + }, + { + "label": "an organized baseball match between two teams with the batter swinging", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a clear vase of simple flowers is sitting in a windowsill", + "pred": "a vase filled with flowers sitting on a window sill" + }, + { + "label": "a stoneware container on a pull out shelf in front of a microwave", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "a man swinging a baseball bat on a baseball field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a baseball player after he had swung a bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a woman and a man playing a video game in the living room", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a batter swings the bat as the crowd watches attentively", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "clock tower sitting in the center of a busy city street", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a bedroom through a doorway", + "pred": "a small room with a bed and a desk" + }, + { + "label": "a male tennis player is preparing to serve the ball tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man is laying down in a pavement balancing a ball on his foot while others watch", + "pred": "a person sitting on the ground with a skateboard" + }, + { + "label": "a man laying on the street playing with a soccer ball while people look on", + "pred": "a person sitting on the ground with a skateboard" + }, + { + "label": "a tray extends from below a microwave where a dish sits", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a large clock tower in front of a building next to a fountain", + "pred": "a clock tower on the side of a building" + }, + { + "label": "a man laying on his back while kicking a soccer ball", + "pred": "a person sitting on the ground with a skateboard" + }, + { + "label": "a man reaching into a freezer while standing next to a woman in a park", + "pred": "a man standing in front of an open oven" + }, + { + "label": "a man swinging a tennis racquet on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman in a striped shirt playing a video game", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a man getting ready to serve a tennis ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a busy city with a building that has a clock on it", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a young boy swinging a baseball bat at a baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "people standing with remotes in hand", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a man balancing a soccer ball on his foot", + "pred": "a person sitting on the ground with a skateboard" + }, + { + "label": "a teenager getting ready to swing at a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a house where you can see the bedroom and relaxing room", + "pred": "a small room with a bed and a desk" + }, + { + "label": "a flag is flying in a green grassy area", + "pred": "a red stop sign sitting in the middle of a park" + }, + { + "label": "a man is aiming to hit a tennis ball on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "large colorful clock with a brown top on a tall building near parked cars", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a young baseball player stands at the plate, in motion to hit an oncoming ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baseball player taking a swing at the ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a young man swinging a baseball bat in front of a catcher", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "man placing an item in an outdoor oven on a farm", + "pred": "a man standing in front of an open oven" + }, + { + "label": "a man is swinging a bat a ball being pitched at him", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man swinging a racket on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a gentleman is removing food from a cooker in a yard", + "pred": "a man standing in front of an open oven" + }, + { + "label": "a clock tower in a central public area", + "pred": "a clock tower on the side of a building" + }, + { + "label": "people are having fun on a crowded beach", + "pred": "people standing on a beach near the ocean" + }, + { + "label": "a boy swinging his baseball bat at a baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a large amount of people laying out on a beach", + "pred": "people standing on a beach near the ocean" + }, + { + "label": "a little kid swinging a bat in a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "mn on a field playing a game of baseball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "two sets of hands are each holding a cell phone while another hand in the background is holding a glass", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a vase with white flowers sitting next to an open window", + "pred": "a vase filled with flowers sitting on a window sill" + }, + { + "label": "people at the beach enjoying the day and surfing", + "pred": "people standing on a beach near the ocean" + }, + { + "label": "two adult hands touching cell phones together as a third watches", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "people flying kites on top of a sandy beach", + "pred": "people on a beach flying a kite" + }, + { + "label": "an edited picture with sea horses flying in the sky", + "pred": "kites that are flying in the sky" + }, + { + "label": "a beach filled with a crowd of people playing and laying on the sand", + "pred": "people standing on a beach near the ocean" + }, + { + "label": "two men holding smart phones next to each other", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a person is ready to hit a tennis ball on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people sit around a pool and a clock tower", + "pred": "a clock tower on the side of a building" + }, + { + "label": "a woman playing a video game with the nintendo wii", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a large clock tower sitting over a fountain of water", + "pred": "a clock tower on the side of a building" + }, + { + "label": "a woman holding a game controller with a man looking on", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a sunny day at the beach with a lot of people", + "pred": "people standing on a beach near the ocean" + }, + { + "label": "two people playing baseball and a couple of observers", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "an umpire is in jump action while the pitcher launches the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "boys playing baseball on a field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people are on the beach flying kites that look like arches in the sky", + "pred": "people on a beach flying a kite" + }, + { + "label": "people on a quiet beach playing with kites", + "pred": "people on a beach flying a kite" + }, + { + "label": "a large clock standing in front a building with lots of windows", + "pred": "a clock tower on the side of a building" + }, + { + "label": "a man is cooking in an outdoor state of the art commercial looking oven in the midst of a farm", + "pred": "a man standing in front of an open oven" + }, + { + "label": "two people sitting down playing a video game", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a dish in front of a toaster oven", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "someone in sandals is standing over a broken cell phone in pieces", + "pred": "a person sitting on a wooden floor with a cell phone" + }, + { + "label": "a man outside cooking at an event and serving customers", + "pred": "a man standing in front of an open oven" + }, + { + "label": "two men are holding phones together to create a linking", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "two people bump their cell phones together at a party", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a pitcher throwing a baseball toward a batter", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "birds and clouds roll over a sandy beach", + "pred": "people on a beach flying a kite" + }, + { + "label": "a park setting on a sunny day with an american flag", + "pred": "a red stop sign sitting in the middle of a park" + }, + { + "label": "a cellophone broken into pieces by a womans feet", + "pred": "a person sitting on a wooden floor with a cell phone" + }, + { + "label": "people flying colorful kites on a deserted beach", + "pred": "people on a beach flying a kite" + }, + { + "label": "a microwave has a little board coming out from underneath", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "a person wearing sandals stands by a broken cell phone", + "pred": "a person sitting on a wooden floor with a cell phone" + }, + { + "label": "christmas decorations surrounding a clock tower in a town square", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "a clock tower and a large christmas tree in the center of a plaza", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "a patriotic kite flying through the clear blue sky", + "pred": "kites flying in the blue sky" + }, + { + "label": "a flag pole with a large bird flying over it in a park", + "pred": "a red stop sign sitting in the middle of a park" + }, + { + "label": "a man with glasses sitting in front of a laptop computer", + "pred": "a man sitting in a dark room with a laptop" + }, + { + "label": "a woman with pretty painted toe nails standing in front of a broken cell phone", + "pred": "a person sitting on a wooden floor with a cell phone" + }, + { + "label": "a raised united states of america flag on a pole", + "pred": "a red stop sign sitting in the middle of a park" + }, + { + "label": "a red, white, and blue kite sails through the blue sky", + "pred": "kites flying in the blue sky" + }, + { + "label": "the kite is red, white, and blue and is flying", + "pred": "kites flying in the blue sky" + }, + { + "label": "a man with a tennis racket and ball is on a tennis court", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "two red, white and blue kites flying in the sky", + "pred": "kites flying in the blue sky" + }, + { + "label": "a man holding a tennis racket playing on a tennis court", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a teddy bear leaning against a tree next to the road", + "pred": "a teddy bear sitting on the side of a street" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a man gets ready to launch a colorful kite on the beach", + "pred": "a woman flying a kite on a beach" + }, + { + "label": "series of light decorations at a city center with a tree and a clock tower", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "a teddy bear propped against a tree beside a road", + "pred": "a teddy bear sitting on the side of a street" + }, + { + "label": "a tennis player preparing to swing at a ball", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a man types quickly on a laptop at night", + "pred": "a man sitting in a dark room with a laptop" + }, + { + "label": "a red, white and blue kit flying among the sky", + "pred": "kites flying in the blue sky" + }, + { + "label": "a brown teddy bear sitting up against a tree", + "pred": "a teddy bear sitting on the side of a street" + }, + { + "label": "a teddy bear is leaning on a tree", + "pred": "a teddy bear sitting on the side of a street" + }, + { + "label": "a small child laying in bed playing nintendo wii", + "pred": "a little boy laying on a bed holding a nintendo wii controller" + }, + { + "label": "an old fashioned refrigerator sitting in front of wooden cabinets", + "pred": "a white refrigerator sitting inside of a kitchen" + }, + { + "label": "a man is flying a kite on a beach", + "pred": "a woman flying a kite on a beach" + }, + { + "label": "a man holding a baseball bat while standing next to home plate", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man at the beach trying to fly a kite", + "pred": "a woman flying a kite on a beach" + }, + { + "label": "a man up to hit in the middle of a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a city square decorated with a tree and lights", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "a man in a tee looking at a computer", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a man standing by a table looking at a laptop", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a big teddy bear is leaning against a tree", + "pred": "a teddy bear sitting on the side of a street" + }, + { + "label": "a large stone building with a clock on it", + "pred": "a large clock tower towering over a city" + }, + { + "label": "a grassy field with pink flowers and a flag in the middle", + "pred": "a red stop sign sitting in the middle of a park" + }, + { + "label": "a young man stands over a lap top computer screen", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a man with a beard and mustache thoughtfully stares into a computer screen at some sort of a meeting", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a small child lounges with a remote in his hand", + "pred": "a little boy laying on a bed holding a nintendo wii controller" + }, + { + "label": "baseball batter and catcher awaiting the pitch at the plate", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man holding onto a kite with one hand and spool on the other", + "pred": "a woman flying a kite on a beach" + }, + { + "label": "a proffessional baseball player up to bat with a crowd behind him", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "big ben and part of parliament from across the street", + "pred": "a large clock tower towering over a city" + }, + { + "label": "a man looking down at an open laptop", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a person is preparing to swing a tennis racket on a tennis court", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "christmas lights strung from the clock tower next to a tall tree", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "man using his laptop computer in a dark room", + "pred": "a man sitting in a dark room with a laptop" + }, + { + "label": "a boy prepares to hit a ball at a baseball game", + "pred": "a little league baseball game in progress" + }, + { + "label": "group of small children running down the field playing soccer", + "pred": "young girls playing a game of soccer" + }, + { + "label": "a man and two women sitting on a tan ledge", + "pred": "a woman sitting next to a man on a park bench" + }, + { + "label": "young boy swinging bat at a game with onlookers", + "pred": "a little league baseball game in progress" + }, + { + "label": "baseball game close up of batter, catcher and baseball fans", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the meal consists of chopped chicken with cheese and brocolli", + "pred": "a plate of food on a table" + }, + { + "label": "three adults sitting while checking cell phone messages", + "pred": "a woman sitting next to a man on a park bench" + }, + { + "label": "a man laying on top of a tennis court while holding a tennis racquet", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "a demonic looking chucky like doll standing next to a white clock", + "pred": "a figurine of a woman with a clock on her head" + }, + { + "label": "young children playing a game of soccer", + "pred": "young girls playing a game of soccer" + }, + { + "label": "people enjoying a game of kick ball with many younger ones involved", + "pred": "young girls playing a game of soccer" + }, + { + "label": "a styrofoam plate with shredded chicken and a dish of broccoli with cheese sauce", + "pred": "a plate of food on a table" + }, + { + "label": "three people sitting next to each other on a cement wall", + "pred": "a woman sitting next to a man on a park bench" + }, + { + "label": "a man looking at a laptop with a confused look", + "pred": "a man sitting at a table using a laptop computer" + }, + { + "label": "a plate of food on a carpeted floor", + "pred": "a plate of food on a table" + }, + { + "label": "a person getting ready to fly a kite on the beach", + "pred": "a woman flying a kite on a beach" + }, + { + "label": "an asian baby laying down and playing wii", + "pred": "a little boy laying on a bed holding a nintendo wii controller" + }, + { + "label": "a vintage yellow refrigerator surrounded by wood cabinetry", + "pred": "a white refrigerator sitting inside of a kitchen" + }, + { + "label": "people holding up cell phones side by side", + "pred": "a man and a woman looking at their cell phones" + }, + { + "label": "two women standing next to each other in a train station", + "pred": "two women standing next to each other at a bus stop" + }, + { + "label": "a pretty young lady standing in front of a couch behind a wooden table", + "pred": "a woman standing next to a man on a couch" + }, + { + "label": "a man sits in a coffee shop working on his laptop computer", + "pred": "a man sitting at a table using a laptop computer" + }, + { + "label": "a building in shadow with a clock tower", + "pred": "a large clock tower towering over a city" + }, + { + "label": "a man holding a baseball bat wearing a baseball uniform", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a little boy swinging a bat while adults watch", + "pred": "a little league baseball game in progress" + }, + { + "label": "a man in a baseball uniform holding a bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a man on a laptop in a coffee shop", + "pred": "a man sitting at a table using a laptop computer" + }, + { + "label": "boys wearing red shirts running around after a soccer ball", + "pred": "young girls playing a game of soccer" + }, + { + "label": "a room with a couch, table set with dinnerware and a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "kite flying between water area and building complex, probably japan", + "pred": "a large body of water with a group of people standing on top of it" + }, + { + "label": "a colorful clock tower along a street and near apartments", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "two teenage girls paying a video game together", + "pred": "two women are playing a video game together" + }, + { + "label": "a painting of a doll sitting down and a clock close by", + "pred": "a figurine of a woman with a clock on her head" + }, + { + "label": "two girls play ninendo wii while standing in front of a couch", + "pred": "two women are playing a video game together" + }, + { + "label": "a large cheese pizza being served to customers", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a girl is playing a game system while other kids look on", + "pred": "people sitting on a couch playing a video game" + }, + { + "label": "a little boy laying down holding a wii remote", + "pred": "a little boy laying on a bed holding a nintendo wii controller" + }, + { + "label": "a man is up to bat on a baseball field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "three people sitting on a wall looking at their cell phones", + "pred": "a woman sitting next to a man on a park bench" + }, + { + "label": "a sidewalk covered in snow", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "a young boy laying in bed holding nintendo wii controllers", + "pred": "a little boy laying on a bed holding a nintendo wii controller" + }, + { + "label": "three people are sitting and waiting on a planter", + "pred": "a woman sitting next to a man on a park bench" + }, + { + "label": "a little boy in a blue shirt is playing baseball", + "pred": "a little league baseball game in progress" + }, + { + "label": "a metal clock tower on a sidewalk in front of a bulding", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "a large kite on a field of green grass", + "pred": "a person flying a kite in a grassy field" + }, + { + "label": "a young boy wearing a baseball uniform holding a baseball bat", + "pred": "a young boy holding a baseball bat in front of a fence" + }, + { + "label": "a female is talking on the phone and a laptop on a table", + "pred": "a woman sitting at a table with a cell phone" + }, + { + "label": "a man slicing a small pizza", + "pred": "a man in a kitchen preparing food on a stove top" + }, + { + "label": "group of children and adults playing a video game", + "pred": "people sitting on a couch playing a video game" + }, + { + "label": "a brown glass on the table for display art", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "colorful clock tower, mostly red with typical european buildings", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "boys playing baseball, with one little boy at bat and parents watching", + "pred": "a little league baseball game in progress" + }, + { + "label": "two small children holding remote controls while sitting on a floor", + "pred": "two young boys sitting on a wooden floor playing a video game" + }, + { + "label": "a disturbing doll sits next to a clock in a mirrored image", + "pred": "a figurine of a woman with a clock on her head" + }, + { + "label": "three children flying a box kite near the ocean", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "a crowd of people holding their cameras up taking pictures", + "pred": "a man and a woman looking at their cell phones" + }, + { + "label": "people holding camera phones in there hands", + "pred": "a man and a woman looking at their cell phones" + }, + { + "label": "children watch while a girl in a pink sweatshirt plays with a wii remote while another person with a little girl on their lap snuggle in a chair", + "pred": "people sitting on a couch playing a video game" + }, + { + "label": "a glass with a lady bunched up holding her legs and head tilted with a with candle on the side and lights", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "people are playing wii in the living room", + "pred": "people sitting on a couch playing a video game" + }, + { + "label": "an old wooden clock attached to the wall", + "pred": "a clock that is on top of a wall" + }, + { + "label": "kites can be seen in the air through umbrellas", + "pred": "kites flying in the sky" + }, + { + "label": "two kites, one with a smily face fly high in the sunny sky", + "pred": "kites flying in the sky" + }, + { + "label": "a man typing on a laptop computer in the dark", + "pred": "a man sitting in a dark room with a laptop" + }, + { + "label": "a man sitting at a desk on a laptop computer", + "pred": "a man sitting at a table using a laptop computer" + }, + { + "label": "a red headed doll sitting next to a clock", + "pred": "a figurine of a woman with a clock on her head" + }, + { + "label": "a painted glass in front of some lights", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a child is chasing after a box kite", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "a man laying down with a tennis racket", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "woman in party dress sitting in beauty shop with hair dryer", + "pred": "a woman sitting on a chair looking at her cell phone" + }, + { + "label": "two women walking on a train platform", + "pred": "two women standing next to each other at a bus stop" + }, + { + "label": "a fresh pizza that just came out the oven", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a woman sitting outside with a laptop and ciggorets while talking on phone", + "pred": "a woman sitting at a table with a cell phone" + }, + { + "label": "a phone on top of a calculator", + "pred": "a remote control sitting on top of a desk" + }, + { + "label": "small children chasing a soccer ball", + "pred": "young girls playing a game of soccer" + }, + { + "label": "a tall tower with a clock on top", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a broom is hanging on the wall of a house", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a man prepares to swing his bat while another man looks at him on the baseball field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a large building with a tower and a clock", + "pred": "a large clock tower towering over a city" + }, + { + "label": "a large brown wooden clock mounted to a wall", + "pred": "a clock that is on top of a wall" + }, + { + "label": "two girls in a room are looking at something", + "pred": "a woman standing next to a man on a couch" + }, + { + "label": "young children are at the beach flying a toy story kite", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "two children sitting on the floor, one is a baby", + "pred": "two young boys sitting on a wooden floor playing a video game" + }, + { + "label": "a large, red clock tower is on a street sidewalk", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a flat screen monitor shows a brightly colored image on the screen", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "the grandfather clock is many years old and worn", + "pred": "a clock that is on top of a wall" + }, + { + "label": "a large colorful kite is being flown over a field", + "pred": "a person flying a kite in a grassy field" + }, + { + "label": "a man types swiftly on his laptop in the darkness", + "pred": "a man sitting in a dark room with a laptop" + }, + { + "label": "a large painted clock tower in the middle of town", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "friends hanging out in a kitchen together", + "pred": "people are gathered around a kitchen table" + }, + { + "label": "kites flying in the blue sky", + "pred": "kites flying in the sky" + }, + { + "label": "people in an audience taking pictures with their cell phones", + "pred": "a man and a woman looking at their cell phones" + }, + { + "label": "two young boys sitting on floor, one playing a computer game", + "pred": "two young boys sitting on a wooden floor playing a video game" + }, + { + "label": "a comfortable hotel room featuring a big screen television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "two kites flying in the sky over an open and closed umbrella", + "pred": "kites flying in the sky" + }, + { + "label": "a kite flying through the air in a field", + "pred": "a person flying a kite in a grassy field" + }, + { + "label": "a man is using his laptop in a cafe", + "pred": "a man sitting at a table using a laptop computer" + }, + { + "label": "a clock on a pole on a sidewalk", + "pred": "a clock on the side of a building" + }, + { + "label": "people in a park flying a kite with a long tail", + "pred": "a person flying a kite in a grassy field" + }, + { + "label": "two children playing near a kite flying in the sky", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "a large white clock tower filled with light", + "pred": "a clock tower with a blue sky" + }, + { + "label": "a calculator and cell phone lay on a desk in front of a keyboard", + "pred": "a remote control sitting on top of a desk" + }, + { + "label": "a crowd of people sitting down next to each other", + "pred": "a large group of people sitting in front of laptops" + }, + { + "label": "a snow covered city street lined with small shops", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "a beautiful young woman swinging a tennis racquet on a tennis court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a woman in a dress and pale makeup sitting by a table", + "pred": "a woman sitting on a chair looking at her cell phone" + }, + { + "label": "people at a public event using cell phones to take pictures of the event", + "pred": "a man and a woman looking at their cell phones" + }, + { + "label": "a baseball player runs into home plate during a game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a man cutting through a pizza that is sitting on top of a stove", + "pred": "a man in a kitchen preparing food on a stove top" + }, + { + "label": "a man swinging a baseball bat during a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the big ben clock tower towering over the city of london", + "pred": "a large clock tower towering over a city" + }, + { + "label": "two young children sitting on the ground playing nintendo", + "pred": "two young boys sitting on a wooden floor playing a video game" + }, + { + "label": "two girls with brown hair play with wii remotes", + "pred": "two women are playing a video game together" + }, + { + "label": "a man is running the bases in a baseball game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "three children fly a kite along the beach", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "two children in a room with tables and couches", + "pred": "a woman standing next to a man on a couch" + }, + { + "label": "a plate of shredded chicken with a broccoli cheese sauce", + "pred": "a plate of food on a table" + }, + { + "label": "a large cheesy pizza on a wooden counter", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "the girl in a pink sweater is playing a video game", + "pred": "people sitting on a couch playing a video game" + }, + { + "label": "a small room with living room and dining room stuff", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a white plate with a slice of cake and an orange wedge", + "pred": "a piece of fruit on a plate next to a glass of orange juice" + }, + { + "label": "a desktop computer monitor sitting on top of a desk next to a mouse", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "two girls are playing a game on their nintendo wii", + "pred": "two women are playing a video game together" + }, + { + "label": "a mirror image of a red haired doll clock", + "pred": "a figurine of a woman with a clock on her head" + }, + { + "label": "a sign hanging of the side of a building on top of a clock", + "pred": "a clock on a pole in front of a building" + }, + { + "label": "a nicely decorated living room and dining area", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a clock tower that is blue reading \"lenox hill hospital\"", + "pred": "a clock on the side of a building" + }, + { + "label": "players playing a baseball game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a white plate topped wti chicken and a cup of guacamole", + "pred": "a plate of food on a table" + }, + { + "label": "a grandfather clock marks an elegant starting position for visiting shops", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "an entertainment room set up with a table for two for coffee", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a charming living room utilizes a cast iron stove as a focal point", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "people are playing tennis behind a long fence", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a clock tower posted on the street", + "pred": "a clock on the side of a building" + }, + { + "label": "a kite is flying in a clear sky", + "pred": "a kite that is flying in the sky" + }, + { + "label": "a rustic fireplace along a wall in a living room", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "woman listening on her phone while smoking a cigarette", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "a man on a bicycle watching someone on stage", + "pred": "a man in a band playing drums on a stage" + }, + { + "label": "a cell phone on top of a calculator near a computer keyboard", + "pred": "a remote control sitting on top of a desk" + }, + { + "label": "a huge dragon kite flown with a steeple", + "pred": "a kite that is flying in the sky" + }, + { + "label": "regular small town street after it has snowed", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "people on a tennis court are playing tennis", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a woman poses in a dress next to a hair dryer", + "pred": "a woman sitting on a chair looking at her cell phone" + }, + { + "label": "colorful kite being flown in a city park land", + "pred": "a person flying a kite in a grassy field" + }, + { + "label": "a man is runing to home base in a baseball game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "people congregated around a lake flying a large kite", + "pred": "a large body of water with a group of people standing on top of it" + }, + { + "label": "large kite flying above a well-attended waterfront event", + "pred": "a large body of water with a group of people standing on top of it" + }, + { + "label": "a woman sits in a chair talking on the phone", + "pred": "a woman sitting at a table with a cell phone" + }, + { + "label": "a man standing on a tennis court waves to someone", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "the boy waits to hit the incoming baseball", + "pred": "a young boy holding a baseball bat in front of a fence" + }, + { + "label": "the green clock shows the time to passersby", + "pred": "a clock on the side of a building" + }, + { + "label": "a man placing a pizza pie in the oven", + "pred": "two people in a kitchen preparing food" + }, + { + "label": "siblings playing video games on the floor at dad's feet", + "pred": "two young boys sitting on a wooden floor playing a video game" + }, + { + "label": "people using electronic devises all facing in the same direction", + "pred": "a large group of people sitting in front of laptops" + }, + { + "label": "a tennis player taking a swing at a ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a model in a blue and white dress sits for a photo", + "pred": "a woman sitting on a chair looking at her cell phone" + }, + { + "label": "a person that smoking and on the phone", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "a great shot of a very nice and large city somewhere", + "pred": "a city with tall buildings and a clock tower" + }, + { + "label": "a glass vase is beside a white candle", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "a woman with white makeup is in a salon", + "pred": "a woman sitting on a chair looking at her cell phone" + }, + { + "label": "a man in a baseball uniform ready to swing at a pitch", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a living room with a unique looking carpet and a fire place", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a chef is pulling a pizza out of a pizza oven", + "pred": "two people in a kitchen preparing food" + }, + { + "label": "a person operating a blender hooked up to a small motor", + "pred": "two men in a kitchen working on a blender" + }, + { + "label": "a cup on the table", + "pred": "a glass of orange juice sitting on top of a table" + }, + { + "label": "people are sitting in chairs on phones and computers", + "pred": "a large group of people sitting in front of laptops" + }, + { + "label": "a person sitting at a table talking on a phone", + "pred": "a woman sitting at a table with a cell phone" + }, + { + "label": "a pie sitting in a pan on top of a table next to a pair of scissors", + "pred": "a loaf of bread sitting on top of a wooden table" + }, + { + "label": "a street clock that has been weathered to a mint green color", + "pred": "a clock on the side of a building" + }, + { + "label": "a very old antique clock on a wall", + "pred": "a clock that is on top of a wall" + }, + { + "label": "the player lies extended on a tennis court", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "a fridge in the middle of some cabinets", + "pred": "a white refrigerator sitting inside of a kitchen" + }, + { + "label": "a young girl is using a video game remote control", + "pred": "a woman standing next to a man on a couch" + }, + { + "label": "two people playing a video game", + "pred": "two women are playing a video game together" + }, + { + "label": "a table with a calculator and phone siting on it", + "pred": "a remote control sitting on top of a desk" + }, + { + "label": "a man in a white shirt and gray pants walks toward a grassy area as kids in baseball uniforms and an umpire are near him", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "people around the table with a juicing contraption", + "pred": "two men in a kitchen working on a blender" + }, + { + "label": "a woman sitting at a talbe with a laptop while talking on her phone", + "pred": "a woman sitting at a table with a cell phone" + }, + { + "label": "two women at a train station", + "pred": "two women standing next to each other at a bus stop" + }, + { + "label": "a woman smoking while talking on a cell phone", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "a cell phone calculator and a computer", + "pred": "a remote control sitting on top of a desk" + }, + { + "label": "a man making food on a range in a kitchen", + "pred": "a man in a kitchen preparing food on a stove top" + }, + { + "label": "everyone in the group is using electronic devices", + "pred": "a large group of people sitting in front of laptops" + }, + { + "label": "a tennis player stretching to hit a tennis ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a statue with two stuffed animals on top of it sitting in a patch of dirt", + "pred": "a teddy bear sitting on top of a fire hydrant" + }, + { + "label": "a young man prepares food in a modern kitchen", + "pred": "a man in a kitchen preparing food on a stove top" + }, + { + "label": "a baseball player taking a swing at a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a very large kite flying in the air", + "pred": "a kite that is flying in the sky" + }, + { + "label": "a tennis player laying down on the court", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "two girls are playing tennis on a tennis court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a large kite is being flown above a town's skyline", + "pred": "a large body of water with a group of people standing on top of it" + }, + { + "label": "people sitting in chairs using electronics", + "pred": "a large group of people sitting in front of laptops" + }, + { + "label": "night scene of a party outside showing man on a bike and a blender on the ground", + "pred": "a man in a band playing drums on a stage" + }, + { + "label": "a river is seen from afar and the river is next to a city that features old buildings", + "pred": "a city with tall buildings and a clock tower" + }, + { + "label": "a teddy bear in jail clothes posed on top of a trash can", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "an old clock hangs on the wall and gives the time", + "pred": "a clock that is on top of a wall" + }, + { + "label": "a living room with an area rug and a couch", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a tennis player at a professional match reaching to hit a ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a person slices a pizza fresh out of the oven", + "pred": "a man in a kitchen preparing food on a stove top" + }, + { + "label": "a pizza on a wooden table", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "group of men sitting on bicycles watching a show on stage", + "pred": "a man in a band playing drums on a stage" + }, + { + "label": "a tall tower with a clock on top with buildings near by", + "pred": "a city with tall buildings and a clock tower" + }, + { + "label": "people stand at a table that appears to hold some machinery", + "pred": "two men in a kitchen working on a blender" + }, + { + "label": "a girl is onstage singing while the guest on the bike enjoys himself", + "pred": "a man in a band playing drums on a stage" + }, + { + "label": "a man serves a tennis ball during a match", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a woman wearing a blue t-shirt while looking at her cell phone and sitting on a bench next to a bright pink wall", + "pred": "a young man sitting on a bench next to a toilet" + }, + { + "label": "a large wooden block with roman numeral numbers", + "pred": "a clock that is on top of a table" + }, + { + "label": "a cheese pizza on a wooden table", + "pred": "a pizza sitting on top of a wooden table" + }, + { + "label": "a tin with pie crust in the bottom", + "pred": "a loaf of bread sitting on top of a wooden table" + }, + { + "label": "a woman hitting a tennis ball with a tennis racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a large clock tower next to a small white church", + "pred": "a clock tower on the side of a street" + }, + { + "label": "a male tennis player lays on the ground", + "pred": "a person on a court with a tennis racket" + }, + { + "label": "a male tennis player with a blue shirt is playing tennis", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a kite is a town", + "pred": "a kite that is flying in the sky" + }, + { + "label": "two women play singles tennis outdoor surrounded by trees", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a pizza chef putting a pizza in an oven in a professional kitchen", + "pred": "two people in a kitchen preparing food" + }, + { + "label": "a large, colorful kite flown over an urban area", + "pred": "a kite that is flying in the sky" + }, + { + "label": "a man holding a baseball bat while standing on a baseball field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a girl sits on the bench with one foot up", + "pred": "a young man sitting on a bench next to a toilet" + }, + { + "label": "a man flying a kite above a tall building in a cloudy blue sky", + "pred": "a man flying a kite in front of a tall building" + }, + { + "label": "a young girl standing in front of a pizza", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "a tennis player sticks out his hand on a court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a red living room filled with furniture and two windows", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a lady talking on the phone and smoking a cigarette", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "two children being entertained by preparing pizza at home", + "pred": "a woman and two children preparing food on a kitchen counter" + }, + { + "label": "a woman is sitting at her jewelry display and talking on the phone", + "pred": "a woman sitting on the ground talking on a cell phone" + }, + { + "label": "flags wave beneath the illuminated clock and tower", + "pred": "a clock tower with a blue sky" + }, + { + "label": "a man is in action with the ball on a tennis court", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a tennis player on an indoor court pauses to raise three fingers in the air", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "man on tennis court with hand up to say stop", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man playing tennis, wearing black shorts and a white shirt", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man holding a tennis racket is holding up his hand", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young player taking a swing at a ball", + "pred": "a young boy holding a baseball bat in front of a fence" + }, + { + "label": "a key bank sign with a clock on a building", + "pred": "a clock on a pole in front of a building" + }, + { + "label": "people standing around in the kitchen", + "pred": "people are gathered around a kitchen table" + }, + { + "label": "a woman talks on the phone in front of a jewelry display", + "pred": "a woman sitting on the ground talking on a cell phone" + }, + { + "label": "two people are playing tennis in an outside court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a handlebar controlled device mounted to an acrylic stand", + "pred": "two men in a kitchen working on a blender" + }, + { + "label": "six people on a bus, with five of them on their electronics", + "pred": "people sitting on top of a bus" + }, + { + "label": "people in kitchen taking a pizza out of an oven", + "pred": "two people in a kitchen preparing food" + }, + { + "label": "a woman is talking on her phone while dragging on a cigarette", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "a man is running to hit a tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a woman selling jewelry laid on a blanket on the sidewalk", + "pred": "a woman sitting on the ground talking on a cell phone" + }, + { + "label": "a woman is throwing a tennis ball to serve", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "two children in the kitchen making hand made pizzas", + "pred": "a woman and two children preparing food on a kitchen counter" + }, + { + "label": "a man plays tennis on a clay court", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a girls sits on a bench while looking at her phone", + "pred": "a young man sitting on a bench next to a toilet" + }, + { + "label": "a refrigerator standing in front of some cabinets", + "pred": "a white refrigerator sitting inside of a kitchen" + }, + { + "label": "a woman is giving a baby a bottle while others are congregated in the kitchen", + "pred": "people are gathered around a kitchen table" + }, + { + "label": "a kite flown above a body of water with many spectators", + "pred": "a large body of water with a group of people standing on top of it" + }, + { + "label": "people using their telephones on a subway car", + "pred": "people sitting on top of a bus" + }, + { + "label": "woman talking on cell phone while doing arts and crafts", + "pred": "a woman sitting on the ground talking on a cell phone" + }, + { + "label": "a man lunging to hit a tennis ball on a court", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "two women in winter types clothes sitting at a train station", + "pred": "two women standing next to each other at a bus stop" + }, + { + "label": "people sitting on a public transit train", + "pred": "people sitting on top of a bus" + }, + { + "label": "a lady is sitting on a bench barefooted while using her phone", + "pred": "a young man sitting on a bench next to a toilet" + }, + { + "label": "a pie crust inside of a pie ring", + "pred": "a loaf of bread sitting on top of a wooden table" + }, + { + "label": "an old clock is illuminated at night on a street corner", + "pred": "a red light on the corner of a street" + }, + { + "label": "young girl sitting on a bench checking her cell phone", + "pred": "a young man sitting on a bench next to a toilet" + }, + { + "label": "a female tennis player on the court serving a ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "two women standing in a train station looking at their phones", + "pred": "two women standing next to each other at a bus stop" + }, + { + "label": "two kites flying directly overhead against a clear blue sky", + "pred": "kites flying in the sky" + }, + { + "label": "men and women operating a juicing machine", + "pred": "two men in a kitchen working on a blender" + }, + { + "label": "a woman sitting next to a display on the ground of jewelry is talking on the phone", + "pred": "a woman sitting on the ground talking on a cell phone" + }, + { + "label": "big ben towering over the city of london england", + "pred": "a city with tall buildings and a clock tower" + }, + { + "label": "a person flying a kite high above buildings", + "pred": "a man flying a kite in front of a tall building" + }, + { + "label": "a large clock sitting on a sidewalk in front of a brick building", + "pred": "a red light on the corner of a street" + }, + { + "label": "a scone with an orange slice on a plate", + "pred": "a piece of fruit on a plate next to a glass of orange juice" + }, + { + "label": "a woman holding her cell phone tucked in a wool cover", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "two little girls in the kitchen making cheese pizzas", + "pred": "a woman and two children preparing food on a kitchen counter" + }, + { + "label": "a giant teddy bear sitting on a garbage can", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "two people in a commercial kitchen making pizza", + "pred": "two people in a kitchen preparing food" + }, + { + "label": "blurry photograph of a lamppost clock light on a street corner", + "pred": "a red light on the corner of a street" + }, + { + "label": "a young woman with a slice of pizza in her mouth", + "pred": "a woman sitting on a couch eating a slice of pizza" + }, + { + "label": "a security officer using a segway as a footrest", + "pred": "a man riding a skateboard on top of a parking meter" + }, + { + "label": "a female tennis player tossing a tennis ball up", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "an empty street and steeple with a clock on it", + "pred": "a clock tower on the side of a street" + }, + { + "label": "an old fashioned refrigerator surrounded by modern cabinets", + "pred": "a white refrigerator sitting inside of a kitchen" + }, + { + "label": "five people sitting on a subway checking their phones", + "pred": "people sitting on top of a bus" + }, + { + "label": "a pie crust inside a spring form pan on a wooden counter", + "pred": "a loaf of bread sitting on top of a wooden table" + }, + { + "label": "friends riding a subway while using cell phones", + "pred": "people sitting on top of a bus" + }, + { + "label": "a teddy bear dressed in prison stripes sitting on top of a trash can", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a street corner has a clock on a post", + "pred": "a red light on the corner of a street" + }, + { + "label": "an aerial view of the city of london on a cloudy day", + "pred": "a city with tall buildings and a clock tower" + }, + { + "label": "a city street at night with a lit clock on the corner", + "pred": "a red light on the corner of a street" + }, + { + "label": "a tennis player swinging his racket on a tennis court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "the boy and girl are making pizzas together", + "pred": "a woman and two children preparing food on a kitchen counter" + }, + { + "label": "a misshapen piece of pizza and a can of soda", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "two men play a game with wii remotes", + "pred": "a man and a woman playing a video game together" + }, + { + "label": "computer setup with a multiple colored screen on it", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "baseball players standing next to a kid on a field", + "pred": "a little league baseball game in progress" + }, + { + "label": "a dead body sitting inside of an open refrigerator", + "pred": "a man that is standing in front of a refrigerator" + }, + { + "label": "a woman on a tennis court getting ready to serve the ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "two little girls standing next to each other making pizza", + "pred": "a woman and two children preparing food on a kitchen counter" + }, + { + "label": "a bank sign that also has a clock attached to it", + "pred": "a clock on a pole in front of a building" + }, + { + "label": "two athletes actively playing a game of baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a women tennis player throwing the ball up for a serve", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a living room filled with furniture and a flat screen tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a person hitting a ball with a stick in a office", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "two women sitting in two separate train cars", + "pred": "a woman sitting on a train looking at her phone" + }, + { + "label": "a beef pizza with mountain and water on a bench", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "clock showing 11:05 as time under bank logo sign", + "pred": "a clock on a pole in front of a building" + }, + { + "label": "asian women are playing baseball in a store", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a woman standing in front of an outdoor wall decorated with images and clocks", + "pred": "a wall with many different types of clocks on it" + }, + { + "label": "a woman tennise player standing at the service line and throwing a tennis ball up in the air to serve it", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a living room with yellow walls and a black and white area rug", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "two men standing in a room and holding wii video game controllers", + "pred": "a man and a woman playing a video game together" + }, + { + "label": "a person performing on the stage and a man sitting on the bike", + "pred": "a man in a band playing drums on a stage" + }, + { + "label": "an old clock showing the current time", + "pred": "a clock that is on top of a table" + }, + { + "label": "the two people stand next to each other playing the video game", + "pred": "a man and a woman playing a video game together" + }, + { + "label": "a woman with a stick hitting something red and blurry in the air indoors", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a person is looking at a display of clocks", + "pred": "a wall with many different types of clocks on it" + }, + { + "label": "a man is hiding inside of a refrigerator", + "pred": "a man that is standing in front of a refrigerator" + }, + { + "label": "a young woman is swinging at an object indoors", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "two woman are sitting on a passenger train", + "pred": "a woman sitting on a train looking at her phone" + }, + { + "label": "a clock that has a second clock for the second hand", + "pred": "a clock that is on top of a table" + }, + { + "label": "a kitchen with a lot of people inside of it", + "pred": "people are gathered around a kitchen table" + }, + { + "label": "a girl getting ready to serve on the tennis court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "people sitting by the windows in a train", + "pred": "a woman sitting on a train looking at her phone" + }, + { + "label": "an apple computer monitor sits on a desk", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "a man is inside the refrigerator with a carrot in his mouth", + "pred": "a man that is standing in front of a refrigerator" + }, + { + "label": "a tree branch in the foreground with a clock tower set against a blue sky", + "pred": "a clock tower with a blue sky" + }, + { + "label": "a man stands in front of a wall featuring a variety of dials, clocks, and pictures", + "pred": "a wall with many different types of clocks on it" + }, + { + "label": "a kid plays with a baseball as some players practice", + "pred": "a little league baseball game in progress" + }, + { + "label": "a family of all ages gather together in a kitchen", + "pred": "people are gathered around a kitchen table" + }, + { + "label": "a homemade pizza on a cutting board", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "a homemade pizza is on a cutting board", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "a computer screen has many colors, with a mouse and speakers next to it on the table", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "passenger train in the night hours with no smoking sign, and two women", + "pred": "a woman sitting on a train looking at her phone" + }, + { + "label": "a cat is perched on the back of a sofa in a multi colored room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "man in blue shirt attempting to fit into a refrigerator", + "pred": "a man that is standing in front of a refrigerator" + }, + { + "label": "a person sitting inside of an empty refrigerator", + "pred": "a man that is standing in front of a refrigerator" + }, + { + "label": "a women is playing stick ball between counters", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a cell phone fits snugly in a crocheted phone case", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "key bank with a clock under the sign", + "pred": "a clock on a pole in front of a building" + }, + { + "label": "a large white stuffed bear sits on a trash can", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a pair of two people play video games with controllers", + "pred": "a man and a woman playing a video game together" + }, + { + "label": "a child sits with a ball and bats around them", + "pred": "a little league baseball game in progress" + }, + { + "label": "two women look at their phones on the train", + "pred": "a woman sitting on a train looking at her phone" + }, + { + "label": "a living room painted red with black couches and coffee tables", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "two young men are playing a wii video game", + "pred": "a man and a woman playing a video game together" + }, + { + "label": "a very large pizza with different toppings on it", + "pred": "a pizza sitting on top of a table next to a bottle of beer" + }, + { + "label": "a person standing looking at a large statue with clocks built into it", + "pred": "a wall with many different types of clocks on it" + }, + { + "label": "a living room with walls painted beige and furnishings and accents in shades of blue and purple", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man holding his face up to a tv with a video game on display", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a small boy sits on the ground playing with a baseball at a baseball field", + "pred": "a little league baseball game in progress" + }, + { + "label": "a woman playing a wii game with other people", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "a small lit baseball field at night with people playing baseball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a woman with blonde hair and glasses plays a video game", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "a little statue in some dirt", + "pred": "a stuffed bear sitting on top of a fire hydrant" + }, + { + "label": "a table holding a variety of beverages at an outdoor party", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "an oddly shaped pizza resting on a picnic table near several beverages", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "a wall has many different clocks on display", + "pred": "a wall with many different types of clocks on it" + }, + { + "label": "the woman is enjoying playing a wii interactive video game", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "a blender with margarita ingredients on a table with coolers and a keg", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "a sitting child and several adults outside of a batting cage", + "pred": "a little league baseball game in progress" + }, + { + "label": "a person stands at the base ready to hit a ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "this blonde woman is getting ready to play a game", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "the pizza is ready to go into the oven", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "people flying kites on a bright sunny day", + "pred": "a field full of kites flying in the sky" + }, + { + "label": "a homemade margarita maker on a table outside", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "an emo girl holding a smart phone with a shaved head", + "pred": "a woman sitting on a couch holding a cell phone" + }, + { + "label": "a white teddy bear sitting on top of a trash can", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a young boy in a baseball uniform getting ready to swing at a pitch", + "pred": "a little boy in a baseball uniform swinging a bat" + }, + { + "label": "a clock tower on a late eveining day", + "pred": "a clock tower with a blue sky" + }, + { + "label": "a woman has crocheted case for her iphone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a pizza on the cutting board", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "a close-up photo of uncooked pizza on a cutting board", + "pred": "a pizza sitting on top of a stove top" + }, + { + "label": "a crowd of people flying kites in the grass", + "pred": "a field full of kites flying in the sky" + }, + { + "label": "a child has a baseball helmet and a bat", + "pred": "a little boy in a baseball uniform swinging a bat" + }, + { + "label": "a clock shows the time in the classic way", + "pred": "a clock that is on top of a table" + }, + { + "label": "two beautiful young women baking a turkey in a pan", + "pred": "two women standing next to each other in a kitchen" + }, + { + "label": "kites are being flown in the air", + "pred": "a field full of kites flying in the sky" + }, + { + "label": "a crowd of people flying kites over a field", + "pred": "kites flying in the sky over a city" + }, + { + "label": "a table topped with blenders and bottles of alcohol and cups", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "a beautiful blonde woman in tight blue jeans", + "pred": "a woman standing next to a man in a living room" + }, + { + "label": "a woman's hand holding a crocheted iphone cover", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a baseball player standing next to home base on a baseball field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "it is winter, and this young woman wearing her cold weaterh coat also has her smartphone in a handknitted sleeve", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "outdoor impromptu bar scene on wooden bench, ice coolers, blender, bottles and several other items, appearing very crowded", + "pred": "a kitchen counter filled with lots of food" + }, + { + "label": "kites fly over the grass on a clear day", + "pred": "a field full of kites flying in the sky" + }, + { + "label": "a tall clock tower and a tree against a blue sky", + "pred": "a clock tower with a blue sky" + }, + { + "label": "the security officer on a segway is using his cell phone", + "pred": "a man riding on the back of a blue scooter" + }, + { + "label": "the stuffed teddy bear is sitting near the wall", + "pred": "a white teddy bear sitting on a white surface" + }, + { + "label": "baseball players engaged in a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a living room witj a couch some chairs and a tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man is flying a kite at the beach", + "pred": "a man standing on a beach flying a kite" + }, + { + "label": "arrows show what to do with the bowls of food", + "pred": "a plastic container filled with different types of food" + }, + { + "label": "a guys stands in the sand playing with a kite", + "pred": "a man standing on a beach flying a kite" + }, + { + "label": "a boy that is flying a remote control plane in the air", + "pred": "a man flying a kite high in the sky" + }, + { + "label": "a stuffed, white bear is on the bed with a person", + "pred": "a white teddy bear sitting on top of a bed" + }, + { + "label": "a stuffed teddy bear with a person in bed", + "pred": "a white teddy bear sitting on top of a bed" + }, + { + "label": "a stuffed teddy bear sitting up", + "pred": "a white teddy bear sitting on a white surface" + }, + { + "label": "a stuffed bear on a white floor", + "pred": "a white teddy bear sitting on a white surface" + }, + { + "label": "a microwave with a stuffed animal inside reads 2:46", + "pred": "a brown and white dog sitting in front of a microwave" + }, + { + "label": "one guy is showing another guy the intricacies of the wii", + "pred": "two men standing next to each other in a room" + }, + { + "label": "players are in the middle of a baseball game with old glory present", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the door to a microwave is open and is exposing a stuffed animal is propped inside", + "pred": "a brown and white dog sitting in front of a microwave" + }, + { + "label": "two people are playing a baseball video game", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a close up food in plastic containers with a blue plastic fork", + "pred": "a plastic container filled with different types of food" + }, + { + "label": "a young woman is holding a slice of pizza with her mouth", + "pred": "a woman sitting on a couch eating a slice of pizza" + }, + { + "label": "an illuminated floral display forms the centerpiece of the arrangement in this close up of a dining room table setting", + "pred": "a table that has some vases on it" + }, + { + "label": "a cross with teddy bears tied to it", + "pred": "a stuffed bear sitting on top of a fire hydrant" + }, + { + "label": "a stuffed rabbit has been placed inside of a microwave oven", + "pred": "a brown and white dog sitting in front of a microwave" + }, + { + "label": "gourmet food on a picnic table with drinks", + "pred": "a pizza sitting on top of a table" + }, + { + "label": "stemware is set face down on an elegantly set table", + "pred": "a table that has some vases on it" + }, + { + "label": "two men are holding video game controllers preparing to play", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a watch set to 12:25 sits on the table", + "pred": "a clock sitting on top of a table" + }, + { + "label": "two men standing in front of a flat screen tv", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a stuffed animal is inside of a microwave", + "pred": "a brown and white dog sitting in front of a microwave" + }, + { + "label": "two desktop computers sitting on top of a desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "two people playing a game on a tv", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "two stuff bears on top of an angel statue", + "pred": "a teddy bear sitting on top of a fire hydrant" + }, + { + "label": "a grassy field with kites being flown above", + "pred": "a field full of kites flying in the sky" + }, + { + "label": "a little white bear with black eyes and nose on a comforter", + "pred": "a white teddy bear sitting on top of a bed" + }, + { + "label": "man flying a kite on the beach while others run along the sand", + "pred": "a man standing on a beach flying a kite" + }, + { + "label": "a white fuzzy stuffed animal depicting a polar bear", + "pred": "a white teddy bear sitting on top of a white surface" + }, + { + "label": "a grave sight with teddy bears on a statue", + "pred": "a teddy bear sitting on top of a fire hydrant" + }, + { + "label": "a man flying a kite with two strings on a beach", + "pred": "a man standing on a beach flying a kite" + }, + { + "label": "two plastic containers sitting on top of a wooden table", + "pred": "a plastic container filled with different types of food" + }, + { + "label": "a stuffed animal in the light sitting on the ground", + "pred": "a white teddy bear sitting on top of a white surface" + }, + { + "label": "comfortable, modern living room overlooking a wooded area", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "people flying a kite on a sandy beach near a body of water", + "pred": "a man standing on a beach flying a kite" + }, + { + "label": "a woman with a nose ring using a phone", + "pred": "a woman sitting on a couch holding a cell phone" + }, + { + "label": "a chrome colored wrist watch laying near other items", + "pred": "a clock sitting on top of a table" + }, + { + "label": "two kids are playing baseball in wii sports", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a monochromatic image of a desk with two laptops", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "two young men playing a game on the nintendo wii", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a young man with his head next to the tv", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "man flying a kite high above hotel buildings", + "pred": "a man flying a kite in front of a tall building" + }, + { + "label": "female tennis player preparing to serve the ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a white faced clock with roman numerals surrounded by a painting", + "pred": "a clock that is on top of a table" + }, + { + "label": "the silver watch in front of a computer monitor", + "pred": "a clock sitting on top of a table" + }, + { + "label": "a watch sitting on top of a table next to a computer", + "pred": "a clock sitting on top of a table" + }, + { + "label": "a woman about to serve a tennis ball at a tennis court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a metallic refrigerator freezer in a kitchen next to a cabinet", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a white stuffed teddy bear sleeping on top of a woman's bosom", + "pred": "a white teddy bear sitting on top of a bed" + }, + { + "label": "a large clock tower on top of a church building", + "pred": "a clock that is on top of a building" + }, + { + "label": "an office with a couple of computers on a desk and a work ligt", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "two people playing a video game on a television", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a man sits on a chair and plays video games", + "pred": "a woman sitting on a couch in a living room" + }, + { + "label": "a large glass window in a living room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a person that is playing a video game", + "pred": "a woman sitting on a couch in a living room" + }, + { + "label": "a very nice living room that is very clean", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a table topped with two wine glasses and a centerpiece", + "pred": "a table that has some vases on it" + }, + { + "label": "the mans wrist watch is laying on the table", + "pred": "a clock sitting on top of a table" + }, + { + "label": "a hand holding a smart phone with apps on a screen", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a computer on a desk with a splatter screen saver pattern", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "side by side stainless refrigerator in a kitchen", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "two men are playing a wii video game", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a batter prepares to hit a baseball that has just been thrown", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a little boy wearing a baseball hat holding a baseball bat", + "pred": "a young boy holding a baseball bat on a field" + }, + { + "label": "a woman with a slice of pizza in her mouth next to another woman", + "pred": "a woman sitting on a couch eating a slice of pizza" + }, + { + "label": "a living room with windows looking out onto a forest", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a white teddy bear is tucked into his bed", + "pred": "a white teddy bear sitting on top of a bed" + }, + { + "label": "a stuffed toy bunny lurking inside a microwave oven", + "pred": "a brown and white dog sitting in front of a microwave" + }, + { + "label": "the table with a vase and flour", + "pred": "a table that has some vases on it" + }, + { + "label": "a young boy swings a plastic bat while wearing a large helmet", + "pred": "a young boy holding a baseball bat on a field" + }, + { + "label": "a big, open room with large windows and wooden floors", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a hand holding a smart phone above a wooden table", + "pred": "a person holding a cell phone in front of a laptop" + }, + { + "label": "a person's hand holding up an active smartphone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a fancy dinner setting, with a centerpiece and turned-over wine glasses", + "pred": "a table that has some vases on it" + }, + { + "label": "a hand holds an iphone displaying various applications", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a clock mounted on the side of a building next to a street", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a living room with a wooden floor filled with furniture", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "two men both working on the same computer screen", + "pred": "two men standing next to each other in a room" + }, + { + "label": "a young lady throwing a blue frisbee while standing on a lush green field", + "pred": "a girl standing in the grass with a frisbee" + }, + { + "label": "a pole on top of a large clock tower", + "pred": "a clock that is on top of a building" + }, + { + "label": "a beautiful woman standing on the side of a rad next to a street", + "pred": "a woman walking down a street next to tall buildings" + }, + { + "label": "a man talking on a cellphone sitting at a table", + "pred": "a man that is holding a piece of paper" + }, + { + "label": "a statue of a person holding an kite next to a child", + "pred": "a statue of a man flying a kite" + }, + { + "label": "a baseball player in mid swing hitting a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "two dishes of food and several blue arrows", + "pred": "a plastic container filled with different types of food" + }, + { + "label": "a large silver refrigerator with two doors and an ice dispenser", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "far shot of the clock and flag pole of a building", + "pred": "a clock that is on top of a building" + }, + { + "label": "a living room with red walls and dark furniture, with light streaming in two windows", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a little girl looking at a pizza pie", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "banana bread and orange juice with a orange wedge is sweet tasting", + "pred": "a piece of fruit on a plate next to a glass of orange juice" + }, + { + "label": "a shiny metallic refrigerator in a brown colored kitchen", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a living room with a table and tv", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "sort of vegetables in a bowl", + "pred": "a plastic container filled with different types of food" + }, + { + "label": "a building with a clock tower on top and a flagpole extending into the sky, with no flag on it", + "pred": "a clock that is on top of a building" + }, + { + "label": "a blurry photo of a baseball player holding a bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a police officer is sittign down talking", + "pred": "a man riding a skateboard on top of a parking meter" + }, + { + "label": "a woman holding onto a piece of pizza with her mouth", + "pred": "a woman sitting on a couch eating a slice of pizza" + }, + { + "label": "a woman is looking at a cell phone", + "pred": "a woman sitting on a couch holding a cell phone" + }, + { + "label": "the laptop computer is on the desk under the light", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a image that says make meaning matter", + "pred": "a person holding a cell phone in front of a laptop" + }, + { + "label": "a clock tower has a white pole on top", + "pred": "a clock that is on top of a building" + }, + { + "label": "a plate with a slice of orange with a piece of cake", + "pred": "a piece of fruit on a plate next to a glass of orange juice" + }, + { + "label": "the hand is holding an iphone for the picture", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a young woman reading a text message that appears in the air next to her", + "pred": "a woman sitting on a couch holding a cell phone" + }, + { + "label": "a young woman poses comically with a piece of pizza in her mouth", + "pred": "a woman sitting on a couch eating a slice of pizza" + }, + { + "label": "a baseball player in a black jersey swinging a bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the dessert is next to a glass of orange juice", + "pred": "a piece of fruit on a plate next to a glass of orange juice" + }, + { + "label": "a man playing tennis who is about to return a serve", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a stack of books sitting on a desk with a bottle of beer", + "pred": "a pile of books sitting on top of a wooden table" + }, + { + "label": "a person watching tv in a living room with lamps", + "pred": "a woman sitting on a couch in a living room" + }, + { + "label": "a young child in a khaki pants and a hitting helmet, holding a small baseball bat while standing in the grass", + "pred": "a young boy holding a baseball bat on a field" + }, + { + "label": "a girl playing tennis with a bad knee", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a large colorful living room with an abundance of large windows", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "the man is in his living room playing a video game", + "pred": "a woman sitting on a couch in a living room" + }, + { + "label": "a tennis player sets his racket to hit the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "tilted shot of a clock tower attached to a building", + "pred": "a clock tower on the side of a street" + }, + { + "label": "a guy making a video game character", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a smart phone displays some text and a picture", + "pred": "a person holding a cell phone in front of a laptop" + }, + { + "label": "a small boy holding a bat with a hat pulled over his face", + "pred": "a young boy holding a baseball bat on a field" + }, + { + "label": "blurry shot of batter and catcher in game of baseball", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a living room set is displayed next to a large window with a view of a wooded area", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a clock tower stands on the side of a building", + "pred": "a clock tower on the side of a street" + }, + { + "label": "a hand holding a cell phone using the internet", + "pred": "a person holding a cell phone in front of a laptop" + }, + { + "label": "a bottle of beer sits next to the keyboard and mouse at the computer table", + "pred": "a computer keyboard and mouse sitting on a desk" + }, + { + "label": "a living room with a couple of furniture", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a man holds phone up to his ear while eating", + "pred": "a man that is holding a piece of paper" + }, + { + "label": "an electronic device is being held as it displays a message and an image", + "pred": "a person holding a cell phone in front of a laptop" + }, + { + "label": "an old and somewhat rundown building with a clock above the door", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a little boy about to hit a baseball during a game", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a tennis player in a knee brace gets ready to serve the ball", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a stack of random books are placed in front of a computer", + "pred": "a pile of books sitting on top of a wooden table" + }, + { + "label": "a street scene looking at a building with a clock on the wall", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a two door, stainless steel refrigerator under a wine cabinet", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a little-league baseball game with a kid up to bat", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a statue of a boy and a girl flying a kite in front of a building", + "pred": "a statue of a man flying a kite in front of a building" + }, + { + "label": "a blurred action photo of a girl throwing a disc", + "pred": "a girl standing in the grass with a frisbee" + }, + { + "label": "two girls walk off the windy beach while a kite flies overhead", + "pred": "a woman flying a kite on a beach next to a crowd of people" + }, + { + "label": "a pile of books sitting on top of a computer desk", + "pred": "a pile of books sitting on top of a wooden table" + }, + { + "label": "a stack of text and comic books on a table", + "pred": "a pile of books sitting on top of a wooden table" + }, + { + "label": "a stack of books sit on a desk next to a bottle of beer", + "pred": "a pile of books sitting on top of a wooden table" + }, + { + "label": "a statue of a boy is holding a kite in his hand and standing next to a girl statue", + "pred": "a statue of a man flying a kite in front of a building" + }, + { + "label": "a little boy holding a bat standing at home plate", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "beautiful women walking on a beach under a kite", + "pred": "a woman flying a kite on a beach next to a crowd of people" + }, + { + "label": "a left hand holding onto a black smart ohone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "the side of the building has a large clock and several windows", + "pred": "a building with a clock on the front of it" + }, + { + "label": "2 girls walking on the beach and a kite in the sky", + "pred": "a woman flying a kite on a beach next to a crowd of people" + }, + { + "label": "a room that has two windows and a blue couch", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "people flying kites in the sand on a windy beach", + "pred": "a woman and child flying a kite on a beach" + }, + { + "label": "a woman holding a small item in a field", + "pred": "a woman standing on a hill talking on a cell phone" + }, + { + "label": "a boy preparing to swing a baseball bat with parents looking on", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "woman with glasses and a police uniform using a mobile phone", + "pred": "a woman in a blue shirt talking on a cell phone" + }, + { + "label": "people on a beach with a colored windsock and american flag colored windsocks", + "pred": "a woman flying a kite on a beach next to a crowd of people" + }, + { + "label": "a female tennis player on grass about to serve", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "woman in purple shirt examines her cellphone in the open field", + "pred": "a woman standing on a hill talking on a cell phone" + }, + { + "label": "two women leaving a beach with kites flying", + "pred": "a woman flying a kite on a beach next to a crowd of people" + }, + { + "label": "a boy holding a baaeball bat at a game", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a woman points a hair drier like it is a gun", + "pred": "a woman taking a picture of herself in the mirror" + }, + { + "label": "a person is flying a kite near some buildings", + "pred": "a man flying a kite in front of a tall building" + }, + { + "label": "a man on a cell phone", + "pred": "a man that is holding a piece of paper" + }, + { + "label": "tennis player swinging at tennis ball with racket", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a small child is holding onto lawn decorations", + "pred": "a little boy that is standing in the grass with a kite" + }, + { + "label": "a city during the nite showing multi-colored lights and people", + "pred": "a woman walking down a street next to tall buildings" + }, + { + "label": "woman standing in a field of grass trying to use her cell phone", + "pred": "a woman standing on a hill talking on a cell phone" + }, + { + "label": "a beige older building with a window display of clothing and a large clock above the door", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a set of three pizzas in a display case.next to desserts", + "pred": "a display case filled with different types of doughnuts" + }, + { + "label": "a bottle of beer sits next to a computer at a desk", + "pred": "a computer keyboard and mouse sitting on a desk" + }, + { + "label": "a statue of children flying a kite in front of a building", + "pred": "a statue of a man flying a kite in front of a building" + }, + { + "label": "a table with a laptop and various other items", + "pred": "a table topped with various items including a laptop computer" + }, + { + "label": "smiling, bespectacled female officer on a phone call", + "pred": "a woman in a blue shirt talking on a cell phone" + }, + { + "label": "dark haired man with a mustache talking on the phone and eating", + "pred": "a man that is holding a piece of paper" + }, + { + "label": "young lady standing in an open field with a cell phone in her hand", + "pred": "a woman standing on a hill talking on a cell phone" + }, + { + "label": "a digital slr camera next to a smart phone camera", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a man is eating a talking on the phone", + "pred": "a man that is holding a piece of paper" + }, + { + "label": "a man sitting on a chair playing a video game", + "pred": "a woman sitting on a couch in a living room" + }, + { + "label": "a woman in a blue uniform holding a cell phone up to her ear", + "pred": "a woman in a blue shirt talking on a cell phone" + }, + { + "label": "a woman checking her phone on the sidewalk, next to an empty city street", + "pred": "a woman walking down a street next to tall buildings" + }, + { + "label": "looking at beautiful scenery through the lens of a phone camera", + "pred": "a woman standing on a hill talking on a cell phone" + }, + { + "label": "a lady her children with a kite on the beach", + "pred": "a woman and child flying a kite on a beach" + }, + { + "label": "young boy posing in front of a flying kite in the park", + "pred": "a young girl is flying a kite in a field" + }, + { + "label": "a woman is standing looking at something", + "pred": "a girl standing in the grass with a frisbee" + }, + { + "label": "a little boy standing in the grass with a kite in the sky", + "pred": "a young girl is flying a kite in a field" + }, + { + "label": "buildings and a woman wearing a black dress and lights", + "pred": "a woman walking down a street next to tall buildings" + }, + { + "label": "a man hitting a tennis ball with a bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "an open laptop computer sitting next to a phone", + "pred": "two cell phones sitting next to each other on a desk" + }, + { + "label": "people on a sandy beach with a kite", + "pred": "a woman and child flying a kite on a beach" + }, + { + "label": "a little baby sitting on the floor with a cell phone", + "pred": "a small child playing with a remote control" + }, + { + "label": "the look on the tennis player's face telegraphs a possible error", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a woman wearing a dark colored dress stands curbside near a large building", + "pred": "a woman walking down a street next to tall buildings" + }, + { + "label": "a modern living room with very unique furniture", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "large clock tower sitting in front of a park", + "pred": "a tall clock tower towering over a city" + }, + { + "label": "an expensive camera sitting next to a smart phone", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a computer on a desk with a bottle of beer next to it", + "pred": "a computer keyboard and mouse sitting on a desk" + }, + { + "label": "a baby sitting in between to large stuffed animals", + "pred": "a baby that is laying down with a teddy bear" + }, + { + "label": "a young boy is posing in a large grassy area", + "pred": "a young girl is flying a kite in a field" + }, + { + "label": "a camera is placed next to a cellular phone", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a tall clock tower with trees all around", + "pred": "a clock tower on the side of a street" + }, + { + "label": "a blue moon beer is sitting on a desk along with a computer monitor, keyboard, mouse, computer, and speaker", + "pred": "a computer keyboard and mouse sitting on a desk" + }, + { + "label": "a woman with a book bag sits on a ledge with her cell phone", + "pred": "a woman sitting on a brick wall talking on a cell phone" + }, + { + "label": "a beer is sitting next to a computer", + "pred": "a computer keyboard and mouse sitting on a desk" + }, + { + "label": "a large, ornate clock tower rises above another skyscraper", + "pred": "a tall clock tower towering over a city" + }, + { + "label": "a little boy standing in a field below a kite", + "pred": "a young girl is flying a kite in a field" + }, + { + "label": "a woman is pointing and holding a hair dryer", + "pred": "a woman taking a picture of herself in the mirror" + }, + { + "label": "a young girl looking at a huge pizza in amazement", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "people in a park with a tall clock tower", + "pred": "a tall clock tower towering over a city" + }, + { + "label": "a cell phone sits next to a black camera", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a boy with a bat has a batting helmet pulled over his face", + "pred": "a young boy holding a baseball bat on a field" + }, + { + "label": "a living room filled with furniture and a table", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a desk with a laptop a tea pot and a cup", + "pred": "a table topped with various items including a laptop computer" + }, + { + "label": "a man plays with his family on the beach", + "pred": "a woman and child flying a kite on a beach" + }, + { + "label": "a crowd watches a batter try to hit a baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a large room that has both a kitchen and living room", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a cellphone next to a laptop computer", + "pred": "two cell phones sitting next to each other on a desk" + }, + { + "label": "a small child sitting playing with a cell phone", + "pred": "a small child playing with a remote control" + }, + { + "label": "a woman in uniform is talking on a cell phone", + "pred": "a woman in a blue shirt talking on a cell phone" + }, + { + "label": "a beautiful woman sitting on a brick wall", + "pred": "a woman sitting on a brick wall talking on a cell phone" + }, + { + "label": "a women with several piercings looking at her cell phone", + "pred": "a woman sitting on a couch holding a cell phone" + }, + { + "label": "a distant view of several kites flying in the air", + "pred": "kites flying in the sky over a city" + }, + { + "label": "a large cock sitting in the middle of a street", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "a girl wearing an orange shirt on some grass", + "pred": "a girl standing in the grass with a frisbee" + }, + { + "label": "a young woman standing on a sandy beach", + "pred": "a woman and child flying a kite on a beach" + }, + { + "label": "a young woman holding a hair dryer like a gun", + "pred": "a woman taking a picture of herself in the mirror" + }, + { + "label": "a phone mounted to a wall next to a doorway", + "pred": "a cell phone hooked up to a cord" + }, + { + "label": "a sony camera and a cell phone are on a table", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a baby girl is sitting on the floor looking at a cell phone", + "pred": "a small child playing with a remote control" + }, + { + "label": "a clock tower in front of a building", + "pred": "a tall clock tower towering over a city" + }, + { + "label": "young man in orange jersey swinging a baseball bat", + "pred": "a young baseball player swinging a bat at a ball" + }, + { + "label": "a table covered with various items that include a laptop, tea kettle and plate", + "pred": "a table topped with various items including a laptop computer" + }, + { + "label": "a man is holding a base ball bat standing at the dirt", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a large brick clock tower stands high above the trees", + "pred": "a tall clock tower towering over a city" + }, + { + "label": "a room with chair, bicycle, television and a christmas tree", + "pred": "a living room filled with furniture and a christmas tree" + }, + { + "label": "a boy is out on the park flying a kite", + "pred": "a young girl is flying a kite in a field" + }, + { + "label": "a woman brandishes a hair dryer with a suspicious look", + "pred": "a woman taking a picture of herself in the mirror" + }, + { + "label": "a woman is holding a hair dryer in her hand", + "pred": "a woman taking a picture of herself in the mirror" + }, + { + "label": "three different types of pizzas and other items on display at a pizzeria", + "pred": "a display case filled with different types of doughnuts" + }, + { + "label": "a view down into a living room and kitchen", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a girl is sitting on a wall and looking down at her cell phone", + "pred": "a woman sitting on a brick wall talking on a cell phone" + }, + { + "label": "a kitchen has wooden cabinets and black countertops", + "pred": "a kitchen with a stove top oven and a microwave" + }, + { + "label": "a living room with seating areas, tables, and windows", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a man on a tennis court who has just hit the tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a vodafone sitting on a table next to a mac laptop", + "pred": "two cell phones sitting next to each other on a desk" + }, + { + "label": "a woman sits on a ledge and looks at her phone", + "pred": "a woman sitting on a brick wall talking on a cell phone" + }, + { + "label": "a vodafone cell phone sitting next to a laptop", + "pred": "two cell phones sitting next to each other on a desk" + }, + { + "label": "what your ceiling fan thinks your house looks like", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "an empty kitchen is photographed as if for a real estate listing", + "pred": "a kitchen with a stove top oven and a microwave" + }, + { + "label": "a statue of two people flying a kite", + "pred": "a statue of a man flying a kite in front of a building" + }, + { + "label": "a boy in a brown coat playing with a camera", + "pred": "a small child playing with a remote control" + }, + { + "label": "people flying kites on a grassy field next to buildings", + "pred": "a crowd of people flying kites in a park" + }, + { + "label": "a child with various yard decorations some of which look like fish", + "pred": "a little boy that is standing in the grass with a kite" + }, + { + "label": "a security officer sitting on a fence while talking on a cell phone and holding onto a segway", + "pred": "a man riding a skateboard on top of a parking meter" + }, + { + "label": "a little baby sitting up surrounded by teddy bears", + "pred": "a baby that is laying down with a teddy bear" + }, + { + "label": "a flip phone sitting next to a laptop computer", + "pred": "two cell phones sitting next to each other on a desk" + }, + { + "label": "a smiling woman in uniform on a cell phone", + "pred": "a woman in a blue shirt talking on a cell phone" + }, + { + "label": "multiple kinds of pizzas are on display in a case", + "pred": "a display case filled with different types of doughnuts" + }, + { + "label": "a kitchen with dark wood cabinets and black appliances", + "pred": "a kitchen with a stove top oven and a microwave" + }, + { + "label": "the lid to the dishwasher is open in the kitchen", + "pred": "a kitchen with a stove top oven and a microwave" + }, + { + "label": "a baby sitting in the middle of a bunch of teddy bears", + "pred": "a baby that is laying down with a teddy bear" + }, + { + "label": "a girl throwing a boomerang in a backyard", + "pred": "a girl standing in the grass with a frisbee" + }, + { + "label": "a baseball player standing on a field holding a bat", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a living room with an old fashioned tv and a couch", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "pizza are on display for the hungry diners", + "pred": "a display case filled with different types of doughnuts" + }, + { + "label": "a child is amazed by a very large pizza", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "a girl is sitting on a brick wall using her cell phone", + "pred": "a woman sitting on a brick wall talking on a cell phone" + }, + { + "label": "a small child sitting on the floor holding a cell phone", + "pred": "a small child playing with a remote control" + }, + { + "label": "a baby snuggled between teddy bears while hands in mouth", + "pred": "a baby that is laying down with a teddy bear" + }, + { + "label": "a christmas tree is lit up in a house window", + "pred": "a living room filled with furniture and a christmas tree" + }, + { + "label": "a man in yellow shirt and black shorts playing a game of tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a guy playing baseball with people watching from the stands", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baby sitting between big stuffed animals", + "pred": "a baby that is laying down with a teddy bear" + }, + { + "label": "a set of women's personal care items sitting on a bed", + "pred": "a pair of scissors sitting on top of a towel" + }, + { + "label": "a baseball player hit the ball during a game", + "pred": "a young baseball player swinging a bat at a ball" + }, + { + "label": "baseball player standing on a field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a living area with a red couch, mirror, window and painting", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a girl in a brown jacket staring a whole pizza", + "pred": "a little boy sitting at a table with a pizza" + }, + { + "label": "a white clock tower at the top of a tiled building", + "pred": "a tower with a clock on top of it" + }, + { + "label": "different kites flying over a parking lot", + "pred": "kites flying in the sky over a city" + }, + { + "label": "cluttered work space includes computer and tea kettle", + "pred": "a table topped with various items including a laptop computer" + }, + { + "label": "kites flying in the sky with cars parked", + "pred": "kites flying in the sky over a city" + }, + { + "label": "a tennis player running to swing ata ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "four different pizzas in a glass case and a few other food items", + "pred": "a display case filled with different types of doughnuts" + }, + { + "label": "a room that has a christmas tree that has been decorated", + "pred": "a living room filled with furniture and a christmas tree" + }, + { + "label": "a small white tower off of a tiled roof", + "pred": "a tower with a clock on top of it" + }, + { + "label": "a man is hitting a baseball with a baseball bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a modern living room with a christmas tree set up in front of the window", + "pred": "a living room filled with furniture and a christmas tree" + }, + { + "label": "a man standing behind a woman holding a bat", + "pred": "a woman holding a baseball bat next to a man" + }, + { + "label": "a kitchen with black counters and appliances", + "pred": "a kitchen with a stove top oven and a microwave" + }, + { + "label": "a white cord hanging down a wall", + "pred": "a cell phone hooked up to a cord" + }, + { + "label": "a crowd of people standing on a field flying kites", + "pred": "people are flying kites in a field" + }, + { + "label": "a bike in view in a living room with a christmas tree", + "pred": "a living room filled with furniture and a christmas tree" + }, + { + "label": "two men passing each other on the stair.s", + "pred": "a man riding a skateboard down the side of a stairway" + }, + { + "label": "a desk topped with snacks and electronics with office supplies", + "pred": "a table topped with various items including a laptop computer" + }, + { + "label": "two women are taking a turkey out of the oven", + "pred": "two women standing next to each other in a kitchen" + }, + { + "label": "one man traveling up a stairway and another waling down the stairway on a phone", + "pred": "a man riding a skateboard down the side of a stairway" + }, + { + "label": "a large white and blue clock tower sitting over a roof", + "pred": "a tower with a clock on top of it" + }, + { + "label": "a man checks his cell phone in a waiting area", + "pred": "a man that is sitting down in a room" + }, + { + "label": "a security employee sitting on a ledge on a cell phone", + "pred": "a man riding a skateboard on top of a parking meter" + }, + { + "label": "a metal cup filled with scissors and two ladels", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "public clock tells the time on a street corner", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "a living room filled with furniture and a rug", + "pred": "a cat sitting on the floor in a living room" + }, + { + "label": "a clock tower stands near a road, trees, and houses", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "traffic at a street corner with a lamp post clock", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "a woman in white dress playing a game of tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a person on their cellular phone", + "pred": "a person sitting on a couch using a cell phone" + }, + { + "label": "a very old fashioned living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "two men walking opposite directions on a staircase", + "pred": "a man riding a skateboard down the side of a stairway" + }, + { + "label": "kids playing a game of baseball", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a room with an old sofa, coffee table, lamp and t.v", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "multiple kites fly high in the sky near a stadium", + "pred": "kites flying in the sky over a city" + }, + { + "label": "a man looks at his cell phone in a hallway", + "pred": "a man that is sitting down in a room" + }, + { + "label": "people walk through a park as few kites fly in the air", + "pred": "a crowd of people flying kites in a park" + }, + { + "label": "a family room with a couch and a tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man looks at something that he is holding", + "pred": "a man that is sitting down in a room" + }, + { + "label": "a 70s themed living room displays an old tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "kites are flying in the sky over the water at a park", + "pred": "a park filled with lots of people flying kites" + }, + { + "label": "a man walking down a flight of stairs holding onto a cell phone", + "pred": "a man riding a skateboard down the side of a stairway" + }, + { + "label": "people look on as a ball heads towards a batter", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a clock on a pole is in the intersection of the streets", + "pred": "a clock on a pole in the middle of a street" + }, + { + "label": "a middle aged man is looking at his phone", + "pred": "a man that is sitting down in a room" + }, + { + "label": "the cord and warning label on a hair dryer", + "pred": "a cell phone hooked up to a cord" + }, + { + "label": "two computer monitors are turned on on a computer desk", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "a young woman takes a self portrait in the mirror", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a man with glasses looking at his cell phone", + "pred": "a man that is sitting down in a room" + }, + { + "label": "a pen and several personal hair care items sit side by side on a blanketed surface", + "pred": "a pair of scissors sitting on top of a towel" + }, + { + "label": "computer with two screens showing both screens and the keyboard", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "men are walking up and down the stairs", + "pred": "a man riding a skateboard down the side of a stairway" + }, + { + "label": "a man has his face up to a video game monitor", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "people are flying kites in the park and walking", + "pred": "a crowd of people flying kites in a park" + }, + { + "label": "three children are playing baseball outside in a field", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a lan line phone is hanging on the wall", + "pred": "a cell phone hooked up to a cord" + }, + { + "label": "a line of products on a white surface", + "pred": "a pair of scissors sitting on top of a towel" + }, + { + "label": "a lot if people are in the conference too", + "pred": "a person sitting on a couch using a cell phone" + }, + { + "label": "people flying kites over a lake in a park", + "pred": "a park filled with lots of people flying kites" + }, + { + "label": "a computer on a desk with two monitors", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "people watching a player swing a baseball bat", + "pred": "a young baseball player swinging a bat at a ball" + }, + { + "label": "the big ben clock tower towering over the city of london", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a white phone cord and a phone and its phone wire", + "pred": "a cell phone hooked up to a cord" + }, + { + "label": "two computer monitors behind a keyboard and mouse", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "a little girl sitting at the end of a bed looking at a teddy bear", + "pred": "a little girl sitting on a bed next to a lamp" + }, + { + "label": "a computer desk topped with a laptop computer with two monitors", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "a woman takes a self portrait in a mirror", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a man standing in the snow while talking on a cell phone", + "pred": "a man on a cell phone in the snow" + }, + { + "label": "a vase with various flowers in it on a display case", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man in a tennis tournament getting ready to hit the ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "an open laptop computer sitting on top of a wooden table", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a person sitting in a meeting room holding their cell phone", + "pred": "a person sitting on a couch using a cell phone" + }, + { + "label": "people flying kites in a park next to a lake", + "pred": "a park filled with lots of people flying kites" + }, + { + "label": "woman taking her picture in a mirror with her cell phone", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "two men playing baseball in a field on a sunny day", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a man with blue jersey holding a baseball bat", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a ghost sitting on a living room chair", + "pred": "a living room filled with furniture and a lamp" + }, + { + "label": "a child catching a ball at the ball park", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "teddy bears are re-enacting soldiers on the beach with others looking on", + "pred": "a man sitting on top of a boat in the water" + }, + { + "label": "a sign with teddy bears on it is advertising a tea room", + "pred": "a sign that is on the side of a street" + }, + { + "label": "a little girl in a pink shirt holding a game controller", + "pred": "a woman standing in a living room holding a nintendo wii game controller" + }, + { + "label": "woman posing for a picture while holding a cellphone", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "toys on a beach made to look like he military", + "pred": "a man sitting on top of a boat in the water" + }, + { + "label": "people a bench some grass trees and kites", + "pred": "a park filled with lots of people flying kites" + }, + { + "label": "a filed full of people flying colorful kites", + "pred": "a park filled with lots of people flying kites" + }, + { + "label": "teddy bears are dressed in army outfits", + "pred": "a man sitting on top of a boat in the water" + }, + { + "label": "a fold out sign sitting on a rainy sidewalk", + "pred": "a sign that is on the side of a street" + }, + { + "label": "a tennis player getting ready to hir a serve", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman holding a smart phone in a room", + "pred": "a woman taking a picture of herself in a mirror" + }, + { + "label": "a sign on a sidewalk has a teddy bear on it", + "pred": "a sign that is on the side of a street" + }, + { + "label": "a baseball player in an orange jersey taking a swing", + "pred": "a young baseball player swinging a bat at a ball" + }, + { + "label": "a baseball player hitting the ball during a baseball game", + "pred": "a young baseball player swinging a bat at a ball" + }, + { + "label": "a woman sitting in a seat holding a cell phone", + "pred": "a person sitting on a couch using a cell phone" + }, + { + "label": "a sign with teddy bears and some people walking on a wet street", + "pred": "a sign that is on the side of a street" + }, + { + "label": "two ladies taking a turkey outside of an oven", + "pred": "two women standing next to each other in a kitchen" + }, + { + "label": "a laptop computer sitting on top of a desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a person walking down a street past a teddy bear sign", + "pred": "a sign that is on the side of a street" + }, + { + "label": "two baseball players are playing baseball on a field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "families with lots of children in a park", + "pred": "a large group of people walking around a park" + }, + { + "label": "a set up to look like d-day but with teddy bears", + "pred": "a man sitting on top of a boat in the water" + }, + { + "label": "the view of a top of a buildings spire showing a small clock on it", + "pred": "a tower with a clock on top of it" + }, + { + "label": "a living room filled with furniture and set of glass doors", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a young man dressed for skiing talking on a cell phone", + "pred": "a man on a cell phone in the snow" + }, + { + "label": "a kitchen with hard wood floors and a yellow smiley face balloon", + "pred": "a living room filled with furniture and a refrigerator" + }, + { + "label": "young guys standing next to each other in a living room", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a table topped with wooden combs and plastic display cases", + "pred": "a table topped with a bunch of forks and utensils" + }, + { + "label": "an abandoned refrigerator next to a building with a window", + "pred": "a refrigerator sitting in the middle of a parking lot" + }, + { + "label": "a man holding his face next to a picture on a television screen while holding a game controller", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "two people standing next to an open oven with a turkey on a tray in it", + "pred": "two women standing next to each other in a kitchen" + }, + { + "label": "a person swinging a tennis racket on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman holding a small girl with sun glasses on her head", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "men play baseball and the batter runs for base", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "the big ben clock tower towering over the city of london", + "pred": "a clock tower in front of a large body of water" + }, + { + "label": "old english castle sitting on side of river", + "pred": "a clock tower in front of a large body of water" + }, + { + "label": "a white steeple near the roof of a neighboring building", + "pred": "a tower with a clock on top of it" + }, + { + "label": "a woman throws a ball up to serve in tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman walking down a street talking on a cell phone", + "pred": "a woman taking a picture of herself on her cell phone" + }, + { + "label": "a baseball player holding a bat standing next to home plate", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a bridge spanning the width of a river", + "pred": "a tall clock tower towering over the city of london" + }, + { + "label": "a young man talks on his cell phone", + "pred": "a man on a cell phone in the snow" + }, + { + "label": "a man is in action on a green tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "three chefs preparing food in a kitchen", + "pred": "a man preparing food in a kitchen" + }, + { + "label": "a young boy holding nintendo wii game controllers", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "people having a few laughs with each other", + "pred": "a woman holding a baseball bat next to a man" + }, + { + "label": "scissors and other utensils in a cup sitting on a desk", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "people in a meeting and a lady with a very nice phone", + "pred": "a person sitting on a couch using a cell phone" + }, + { + "label": "a refrigerator freezer sitting in a yellow kitchen", + "pred": "a white refrigerator freezer sitting on top of a wooden floor" + }, + { + "label": "people are flying different kites in a field on a cloudy day", + "pred": "people are flying kites in a field" + }, + { + "label": "a pen, hairbrush, and other objects sitting on a bed", + "pred": "a pair of scissors sitting on top of a towel" + }, + { + "label": "boy on ski slope talking on cell phone", + "pred": "a man on a cell phone in the snow" + }, + { + "label": "people flying kites by the river", + "pred": "people are flying kites in a field" + }, + { + "label": "the thames river near westminster on a cloudy evening", + "pred": "a clock tower in front of a large body of water" + }, + { + "label": "a large cathedral and clocktower building sits in front of an ocean with ferry and sailboats riding past", + "pred": "a clock tower in front of a large body of water" + }, + { + "label": "a field beside a lake is occupied by many kite flyers", + "pred": "people are flying kites in a field" + }, + { + "label": "a woman on her cellphone standing on the sidewalk in a city", + "pred": "a woman taking a picture of herself on her cell phone" + }, + { + "label": "a living room with a white couch and library shelves", + "pred": "a cat sitting on the floor in a living room" + }, + { + "label": "two people playing video games", + "pred": "a man and a woman standing in a living room" + }, + { + "label": "girls stands in living room with microphone", + "pred": "a woman standing in a living room holding a nintendo wii game controller" + }, + { + "label": "a pen, a plastic name bracelet, a barrette, a flashlight and a brush are lined up", + "pred": "a pair of scissors sitting on top of a towel" + }, + { + "label": "two guys playing baseball, with trees in the back", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "teddy bears posed to look like a d-day scene", + "pred": "a man sitting on top of a boat in the water" + }, + { + "label": "people standing in a field flying kites", + "pred": "people are flying kites in a field" + }, + { + "label": "television cameras capture a tennis player during a match", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a young girl with a video game controller in her hand", + "pred": "a woman standing in a living room holding a nintendo wii game controller" + }, + { + "label": "a scenic river view with the a palace", + "pred": "a clock tower in front of a large body of water" + }, + { + "label": "a vase with flowers on a display near a wall", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a living room with a large door way and a chair", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a girl is standing by a storefront while talking on her phone", + "pred": "a woman taking a picture of herself on her cell phone" + }, + { + "label": "two people standing next to a table playing nintendo wii", + "pred": "a man and a woman standing in a living room" + }, + { + "label": "a young man with ski goggles talking on a cell phone on a snowy day", + "pred": "a man on a cell phone in the snow" + }, + { + "label": "a large digital clock mounted to a wall", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "a small den with a couch, a bag on the floor, a book shelf, and a wire going from the wall to near the window", + "pred": "a cat sitting on the floor in a living room" + }, + { + "label": "a cute girl in pink is playing a video game", + "pred": "a woman standing in a living room holding a nintendo wii game controller" + }, + { + "label": "a living room with a tray holding a laptop next to a couch", + "pred": "a cat sitting on the floor in a living room" + }, + { + "label": "young child playing with several lawn type ornaments", + "pred": "a little boy that is standing in the grass with a kite" + }, + { + "label": "a bridge next to a tall building and the big ben tower", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a tower of a gray and white building has a weather vane and two clocks", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a baseball player holding a bat on the field", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "an old clock tower stands near a bridge and other large old, medieval type structures", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a little girl sitting on a bed with a teddy bear", + "pred": "a little girl sitting on a bed next to a lamp" + }, + { + "label": "a small child sitting on a bed looking at a teddy bear", + "pred": "a little girl sitting on a bed next to a lamp" + }, + { + "label": "a girl is playing a wii videogame at christmas time", + "pred": "a woman standing in a living room holding a nintendo wii game controller" + }, + { + "label": "the steeple had a clock and wind direction piece on top", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a child sitting on a bed looking at a teddy bear", + "pred": "a little girl sitting on a bed next to a lamp" + }, + { + "label": "a rooftop next to a clock tower with a wind indicator on top", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a weather vane atop a cathedral clock tower", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a ghostly image of a man sitting on a couch in a living room", + "pred": "a living room filled with furniture and a lamp" + }, + { + "label": "a smiling young mother holding her infant child", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "a man sitting on a chair with his feet proper up", + "pred": "a living room filled with furniture and a lamp" + }, + { + "label": "a baby is holding some poles in the middle of a grass field", + "pred": "a little boy that is standing in the grass with a kite" + }, + { + "label": "an old man is flying his kite in the middle of no where", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a man pokes his head in front of an oven open to baking cookies", + "pred": "a man standing in front of a stove with a pizza in front of him" + }, + { + "label": "a woman in sunglasses is outside holding a baby", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "three people standing next to each other all smiling", + "pred": "a woman holding a baseball bat next to a man" + }, + { + "label": "two woman poses while taking a turkey out of the oven", + "pred": "two women standing next to each other in a kitchen" + }, + { + "label": "a woman holding a baby while she has something in her mouth", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "a women looking over at something while talking on the phone", + "pred": "a woman taking a picture of herself on her cell phone" + }, + { + "label": "metal jar holding scissors, ladles, and tongs on a counter", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "the young boys are playing a game of baseball in the park", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a girl sitting on a bed in a room", + "pred": "a little girl sitting on a bed next to a lamp" + }, + { + "label": "the living room is clean and is ready to be used", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "the man is close to an oven full of cookies that are being prepared", + "pred": "a man standing in front of a stove with a pizza in front of him" + }, + { + "label": "a living room with a white sofa and a gray rug", + "pred": "a cat sitting on the floor in a living room" + }, + { + "label": "a baseball player about to bat", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a cluttered desk filled with monitors and various items", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "the vase is holding an arrangement of dried vines", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "the sillouhette of a man sits in a chair in a dimly lit room", + "pred": "a living room filled with furniture and a lamp" + }, + { + "label": "man baking goods in the oven", + "pred": "a man standing in front of a stove with a pizza in front of him" + }, + { + "label": "a double exposure of a man sitting in a chair in a dimly lit room", + "pred": "a living room filled with furniture and a lamp" + }, + { + "label": "a flower arrangement in the vase", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man walking on the sand", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a vase full of flowers is sitting on display", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a silver cup is holding scissors and tongs", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a desk with two computer monitors, a laptop computer, keyboard and set of headphones", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "the palace of westminster, featuring elizabeth tower that holds big ben", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "people fly kites in a large park in the middle of a city", + "pred": "a crowd of people flying kites in a park" + }, + { + "label": "the top of the clock tower with a weathervane", + "pred": "a clock tower on top of a building with a sky background" + }, + { + "label": "a pastel green room with pictures mounted on the wall and a red chair near a large window", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a boy trying to catch a ball at a little league game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a castle is shown on the water next to a bridge", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a variety of computer equipment sitting on a desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a baseball player doing warm up exercises before going up to bat", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "an open laptop on a desk surrounded by clutter", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a chair next to a desk with a laptop and phone sitting on it", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a very attractive woman holding a little girl that is chewing something", + "pred": "a woman holding a baby in her arms" + }, + { + "label": "a living room filled with some balloons and a bookshelf", + "pred": "a living room filled with furniture and a refrigerator" + }, + { + "label": "a woman standing on a sidewalk while using a cell phone", + "pred": "a woman taking a picture of herself on her cell phone" + }, + { + "label": "magenta and plaid furniture sit in a brightly lit living room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "moms and kids sitting out in a field", + "pred": "a large group of people walking around a park" + }, + { + "label": "an outdated plaid blue couch sits in the living room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a bridge with an amusement park", + "pred": "a tall clock tower towering over the city of london" + }, + { + "label": "a collection of kitchen utensils in a metal bowl", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a white desk with three computers on it", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "people with a man in the background with a stick", + "pred": "a woman holding a baseball bat next to a man" + }, + { + "label": "a living room with a couch, chair and a coffee table", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a chair by a window in a living room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "white clock tower next to a river by a bridge", + "pred": "a tall clock tower towering over the city of london" + }, + { + "label": "a logged on laptop sitting on a table", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a lime green room with older style furnishings and curtains", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a display case of three different wooden combs", + "pred": "a table topped with a bunch of forks and utensils" + }, + { + "label": "carefully sculpted pieces of wood in a display case", + "pred": "a table topped with a bunch of forks and utensils" + }, + { + "label": "a keyboard and mouse sitting on a desk", + "pred": "a computer mouse sitting on top of a wooden desk" + }, + { + "label": "parents and children, some with toys, in a park walking in line", + "pred": "a large group of people walking around a park" + }, + { + "label": "a small child playing with some toys in a field", + "pred": "a little boy that is standing in the grass with a kite" + }, + { + "label": "a wall displaying an assorted collection of different clocks", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "people, mostly children, are gathering around a tent", + "pred": "a large group of people walking around a park" + }, + { + "label": "a clock tower in the middle of a town square", + "pred": "a clock tower with a sign on top of it" + }, + { + "label": "an area outside a dwelling that has been flooded with standing water and trash piled up", + "pred": "a refrigerator sitting in the middle of a parking lot" + }, + { + "label": "a wall with several different clocks hanging from it with a mirror next to them", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "a crowd of adults and children are at a park", + "pred": "a large group of people walking around a park" + }, + { + "label": "a man and boy with video game controllers playing a game", + "pred": "a man and a woman standing in a living room" + }, + { + "label": "a dirty fridge standing in the middle of a patio", + "pred": "a refrigerator sitting in the middle of a parking lot" + }, + { + "label": "multiple time pieces displayed on the wall and on a flat surface", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "a person flying a kite in sandy, watery area", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a work area with a laptop computer and phone", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a man standing by an oven while making some cookies", + "pred": "a man standing in front of a stove with a pizza in front of him" + }, + { + "label": "a clock tower is shown in the middle of a display", + "pred": "a clock tower with a sign on top of it" + }, + { + "label": "beautiful scene of the water, the bridge, and a tall clock tower", + "pred": "a tall clock tower towering over the city of london" + }, + { + "label": "a man swinging a tennis racket and hitting a ball on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a laptop computer sits on a cluttered desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "two women playing a game with a nintendo wii controller", + "pred": "a woman and a man standing in a living room holding nintendo wii controllers" + }, + { + "label": "a man and boy playing a game with a nintendo wii controller", + "pred": "a man and a woman standing in a living room" + }, + { + "label": "a man and a boy hold video controllers on opposite sides of a dining table containing a projector", + "pred": "a man and a woman standing in a living room" + }, + { + "label": "a page left open on a laptop on a cluttered desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "the ump and baseball players on the field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "two people standing close to each other playing nintendo wii", + "pred": "a woman and a man standing in a living room holding nintendo wii controllers" + }, + { + "label": "a baseball player standing in the grass with a bat in his hand", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a baseball player crosses home plate as his teammate waits", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a red-shirted team playing a game of baseball", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "a man holding a tennis racket getting ready to hit a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man standing by an oven with the door open", + "pred": "a man standing in front of a stove with a pizza in front of him" + }, + { + "label": "a guy holds a bat and put it on a girl's head", + "pred": "a woman holding a baseball bat next to a man" + }, + { + "label": "a man touching home plate on a baseball field", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "wooden objects and beads in a display case", + "pred": "a table topped with a bunch of forks and utensils" + }, + { + "label": "a room with a refrigerator has balloons in it", + "pred": "a living room filled with furniture and a refrigerator" + }, + { + "label": "a bridge with a clock tower at one side and a ferris wheel at the other side", + "pred": "a tall clock tower towering over the city of london" + }, + { + "label": "two people playing wii in a living room", + "pred": "a woman and a man standing in a living room holding nintendo wii controllers" + }, + { + "label": "a wall with several different clocks on it, in both traditional and modern styles", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "a desk set up as a workstation with a laptop", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a clock tower sitting in the parking lot of a building", + "pred": "a clock tower with a sign on top of it" + }, + { + "label": "a person flying a kite on wet sand", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a building with a short clocktower in the front of it", + "pred": "a clock tower with a sign on top of it" + }, + { + "label": "a mouse and a keyboard on top of a desk", + "pred": "a computer mouse sitting on top of a wooden desk" + }, + { + "label": "a man flying a kite at the beach near the ocean", + "pred": "a person on a beach flying a kite" + }, + { + "label": "two women play a game in a living room", + "pred": "a woman and a man standing in a living room holding nintendo wii controllers" + }, + { + "label": "large wooden forks and other items on display", + "pred": "a table topped with a bunch of forks and utensils" + }, + { + "label": "a man making a pizza in a kitchen", + "pred": "a man preparing food in a kitchen" + }, + { + "label": "two people playing video game while standing one in purple is smiling", + "pred": "a woman and a man standing in a living room holding nintendo wii controllers" + }, + { + "label": "a display of clocks inside a shop window", + "pred": "a number of signs on a wall" + }, + { + "label": "thee computer keyboard is white and it has a matching white mouse", + "pred": "a computer mouse sitting on top of a wooden desk" + }, + { + "label": "a refrigerator up against a wall in a kitchen", + "pred": "a white refrigerator freezer sitting on top of a wooden floor" + }, + { + "label": "a woman sitting down at a table with pizza", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a car parked by a clock and some flowers", + "pred": "a clock sitting on top of a sidewalk next to a street" + }, + { + "label": "two guys standing in a room with remotes", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a fridge with a bunch of words on it with magnets", + "pred": "a white refrigerator freezer sitting on top of a wooden floor" + }, + { + "label": "two clocks are hung on a wall behind a glass sign", + "pred": "a number of signs on a wall" + }, + { + "label": "a studio apartment with balloons marking clues to find", + "pred": "a living room filled with furniture and a refrigerator" + }, + { + "label": "on a desk sits a keyboard and mouse", + "pred": "a computer mouse sitting on top of a wooden desk" + }, + { + "label": "the side of a white refrigerator with a lot of writing on it", + "pred": "a white refrigerator freezer sitting on top of a wooden floor" + }, + { + "label": "the garage is littered with garbage on the floor", + "pred": "a refrigerator sitting in the middle of a parking lot" + }, + { + "label": "a clock sits in a planter decorated with flowers", + "pred": "a clock sitting on top of a sidewalk next to a street" + }, + { + "label": "guys with tennis rackets waiting on a ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "two people holding wii remote controls in a living room", + "pred": "a woman and a man standing in a living room holding nintendo wii controllers" + }, + { + "label": "people guys walking down a long hall way", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "two boys standing up playing a video game", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a tennis player takes a wide stance to return a ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "two clocks with different times and a sign in an foreign language", + "pred": "a number of signs on a wall" + }, + { + "label": "a boy carries a stuffed animal as he walks beside some flowers", + "pred": "a boy walking down a path with a garden hose in his hand" + }, + { + "label": "a small boy walking along a path and carrying a teddy bear", + "pred": "a boy walking down a path with a garden hose in his hand" + }, + { + "label": "a desktop with a white mouse and keyboard", + "pred": "a computer mouse sitting on top of a wooden desk" + }, + { + "label": "a male tennis player stands on court and prepares to hit the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a clock tower sculpture on roundabout next to a building", + "pred": "a clock tower with a sign on top of it" + }, + { + "label": "a tennis player hitting a ball in a low position", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a refrigerator on a patio flooded with water, beverage cans and a beer bottle", + "pred": "a refrigerator sitting in the middle of a parking lot" + }, + { + "label": "a refrigerator has been doubled as a city map", + "pred": "a white refrigerator freezer sitting on top of a wooden floor" + }, + { + "label": "two square clocks behind a window with asian writing on it", + "pred": "a number of signs on a wall" + }, + { + "label": "a long room with balloons and arrows on the floor", + "pred": "a living room filled with furniture and a refrigerator" + }, + { + "label": "a desk with a laptop with a mouse and phone", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a man in white shirt and shorts playing a game of tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a young boy walking on a path lined with flowers, with a teddy bear", + "pred": "a boy walking down a path with a garden hose in his hand" + }, + { + "label": "a little boy holding a teddy bear walking past purple flowers", + "pred": "a boy walking down a path with a garden hose in his hand" + }, + { + "label": "two stone clocks are sitting on a shelf", + "pred": "a number of signs on a wall" + }, + { + "label": "a little boy is staring attentively while playing a video game", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a small child holds two video game controllers", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a man standing on a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a boy in grey shirt holding a nintendo wii controller", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a copse of men sitting next to each other at a table", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "two guys standing in a room playing video games", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "man looking over paperwork while holding pen on desk", + "pred": "a black and white photo of a person reading a book" + }, + { + "label": "a man running at the end of a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a young child playing nintendo wii", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a person holding many papers and cutting one with scissors", + "pred": "a black and white photo of a person reading a book" + }, + { + "label": "an outdoor clock clock surrounded by mums in a street median", + "pred": "a clock sitting on top of a sidewalk next to a street" + }, + { + "label": "competitor with referee looking on green tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "two people sitting at a table posing for a photo", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "two woman leaning against a wall wearing baby slings", + "pred": "two women standing next to each other in front of a wall" + }, + { + "label": "a car is parked next to a decorative clock", + "pred": "a clock sitting on top of a sidewalk next to a street" + }, + { + "label": "people in a kitchen preparing food on a counter", + "pred": "a man preparing food in a kitchen" + }, + { + "label": "two people sitting at a table with two pizzas", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "two women in colorful dresses lean against a white wall and one of them is on a cell phone", + "pred": "two women standing next to each other in front of a wall" + }, + { + "label": "two ladies, one making a phone call while the other carrying a baby", + "pred": "two women standing next to each other in front of a wall" + }, + { + "label": "two women with standing with babies, with one woman on a mobile", + "pred": "two women standing next to each other in front of a wall" + }, + { + "label": "two lady's wearing long dresses and carrying baskest", + "pred": "two women standing next to each other in front of a wall" + }, + { + "label": "a woman is eating pizza with a fork", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a little girl holding a baseball bat on grass", + "pred": "a young girl holding a baseball bat in front of a fence" + }, + { + "label": "a man and woman posing for a photo with pizza on the table they are sitting at", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "person holding up a piece of paper with scissors on it", + "pred": "a black and white photo of a person reading a book" + }, + { + "label": "this little boy is walking down a dirt road while hold his stuffed animal toy", + "pred": "a boy walking down a path with a garden hose in his hand" + }, + { + "label": "a car is parked near a clock that is surrounded by flowers at the bottom of the pole", + "pred": "a clock sitting on top of a sidewalk next to a street" + }, + { + "label": "a couple sitting at a table with a couple of pizzas", + "pred": "a man and a woman sitting at a table with pizza" + }, + { + "label": "a coo coo clock mounted to the side of a wall", + "pred": "a clock that is hanging on a wall" + }, + { + "label": "guys cooking in a restaruant kitchen that is open to the restaurant", + "pred": "a man preparing food in a kitchen" + }, + { + "label": "cooks are gathered preparing a meal in the kitchen", + "pred": "a man preparing food in a kitchen" + }, + { + "label": "a woman posing in front of a sculpture at a bar", + "pred": "a woman standing next to a clock in a room" + }, + { + "label": "she happily downs another piece of their pizza", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "people standing in a field and flying kites", + "pred": "a person flying a kite in a park" + }, + { + "label": "a woman smiling for the camera in front of a wall clock", + "pred": "a woman standing next to a clock in a room" + }, + { + "label": "a woman holding a fork and reaching for a slice of pizza", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "an old, captioned picture of a telegraph editor readying stories for a paper", + "pred": "a black and white photo of a person reading a book" + }, + { + "label": "a woman smiling near a large clock on the wall", + "pred": "a woman standing next to a clock in a room" + }, + { + "label": "a living room with a loveseat and chairs surrounding a table", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "a woman sitting at a table with two pizzas and a plate on it", + "pred": "a woman sitting at a table with a plate of pizza" + }, + { + "label": "a woman standing in front of a fiber optic tree", + "pred": "a woman standing next to a clock in a room" + }, + { + "label": "a woman holding a tennis racquet on top of a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a hand with scissors cutting into some sheets of paper", + "pred": "a black and white photo of a person reading a book" + }, + { + "label": "a woman smiles at an evening event in front of a clock", + "pred": "a woman standing next to a clock in a room" + }, + { + "label": "a multi colored clock hangs on the wall", + "pred": "a clock that is hanging on a wall" + }, + { + "label": "the girl is sitting inside the broken fridge on the side of the road", + "pred": "a woman and a man sitting on a sidewalk next to a white refrigerator" + }, + { + "label": "a man holding a baseball bat during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the young boy is playing in the living room of his house", + "pred": "a little boy standing on top of a couch in a living room" + }, + { + "label": "two ladies seated with cups of drinks, one smoking while the other seated inside a fridge", + "pred": "a woman and a man sitting on a sidewalk next to a white refrigerator" + }, + { + "label": "a woman taking a selfie with a mobile phone", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "the man is trying to hit the baseball during the game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a wall clock shaped like a birdhouse with tassels hanging from it", + "pred": "a clock that is hanging on a wall" + }, + { + "label": "a blond girl holding a baseball bat and smiling with her hand over her mouth", + "pred": "a young girl holding a baseball bat in front of a fence" + }, + { + "label": "a pitcher, batter and catcher during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a very ornately decorated and brightly colored clock", + "pred": "a clock that is hanging on a wall" + }, + { + "label": "a batter at the plate during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people flying kites in grassy field", + "pred": "a person flying a kite in a park" + }, + { + "label": "stuffed animals are arranged together", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a little boy has a hairbrush in his hands", + "pred": "a little boy standing on top of a couch in a living room" + }, + { + "label": "a player is up to bat in a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a person sitting in an old refrigerator on the sidewalk, drinking beer", + "pred": "a woman and a man sitting on a sidewalk next to a white refrigerator" + }, + { + "label": "clock that is on the wall", + "pred": "a clock that is hanging on a wall" + }, + { + "label": "two teddy bears are seated with the other stuffed animals", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a living room with matching couch, and chairs", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "an open refrigerator including bottles of various food", + "pred": "a refrigerator filled with lots of food and drinks" + }, + { + "label": "couch and chair near window with lacy curtain and a wood table in the center and a table with flowers between the couch and chair", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "a girl in a tennis outfit getting ready to swing a tennis raquet on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a young girl wearing a dress plays with a baseball bat", + "pred": "a young girl holding a baseball bat in front of a fence" + }, + { + "label": "a young boy flying a kite with other people", + "pred": "a person flying a kite in a park" + }, + { + "label": "people stand outside of a series of stores", + "pred": "people standing in front of a building with a clock on it" + }, + { + "label": "a baseball player bunting at a baseball on a field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "this refrigerator is packed with many foods and drinks", + "pred": "a refrigerator filled with lots of food and drinks" + }, + { + "label": "a glass fish bowl with rocks and weeds in it", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a girl with a baseball bat in the backyard smiles", + "pred": "a young girl holding a baseball bat in front of a fence" + }, + { + "label": "people with kites in their hands", + "pred": "a person flying a kite in a park" + }, + { + "label": "a menagerie of stuffed animals lined up on the floor", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a toddler playing with a hairbrush in a living room", + "pred": "a little boy standing on top of a couch in a living room" + }, + { + "label": "an open refrigerator filled up with food and condiments", + "pred": "a refrigerator filled with lots of food and drinks" + }, + { + "label": "a young boy stands in the living room playing with a brush", + "pred": "a little boy standing on top of a couch in a living room" + }, + { + "label": "stuffed bears and ducks are lined up on the floor", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a child looks on in amusement while holding a baseball bat", + "pred": "a young girl holding a baseball bat in front of a fence" + }, + { + "label": "a baseball player with the cardinals getting ready to hit a baseball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people on this field flying kites", + "pred": "a person flying a kite in a park" + }, + { + "label": "a toddler holding a hairbrush above his head", + "pred": "a little boy standing on top of a couch in a living room" + }, + { + "label": "people playing baseball while the pitcher is ready to pitch", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the contents of a refrigerator filled to over flowing", + "pred": "a refrigerator filled with lots of food and drinks" + }, + { + "label": "a living area with two chairs and a coffee table", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "the man is getting ready to hit the ball in the baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "outside view of people walking in front of a store", + "pred": "people standing in front of a building with a clock on it" + }, + { + "label": "a store building that has a white and black clock on it", + "pred": "people standing in front of a building with a clock on it" + }, + { + "label": "ball players are looking home plate and talking", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "stuffed teddy bears and ducks for sale at a stall", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a woman on a tennis court, holding up a tennis racket with both hands", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a woman with a beer sits inside a refrigerator on the footpath", + "pred": "a woman and a man sitting on a sidewalk next to a white refrigerator" + }, + { + "label": "rocks and plants displayed in water inside clear glass vase", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a baseball player holding a baseball bat during a game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a plant floating in a water filled vase with some rocks", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a woman smoking a cigarette near a girl sitting inside of a refridgerator", + "pred": "a woman and a man sitting on a sidewalk next to a white refrigerator" + }, + { + "label": "a batter, catcher and umpire during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "an open refrigerator in a kitchen next to a counter", + "pred": "a refrigerator filled with lots of food and drinks" + }, + { + "label": "a baseball player at home base is swinging his arm to hit the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "old fashion like furniture are sitting near a table in a room", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "two people are at a computer desk with a mouse", + "pred": "a person sitting at a desk using a laptop computer" + }, + { + "label": "an old fashion vase with flowers and rocks inside", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a vase filled with water that has rocks and a plant in it", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a woman taking a photo of herself in the mirror", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a hitter, catcher, and umpire near home plate during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a woman holding a tennis racket on a court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "the ingredients are on the kitchen counter next to the blender", + "pred": "a variety of foods on a counter top" + }, + { + "label": "ingredients placed on a table for a dish", + "pred": "a variety of foods on a counter top" + }, + { + "label": "batter punts a ball during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a baseball player swinging a bat a a baseball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a woman holding a cell phone with both hands", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a lady playing with a wii on a large screen", + "pred": "a woman standing in front of a projector playing a video game" + }, + { + "label": "a pile of different ingredients sitting next to a metal blender", + "pred": "a variety of foods on a counter top" + }, + { + "label": "a man sitting at a table using a laptop computer", + "pred": "a person sitting at a desk using a laptop computer" + }, + { + "label": "a baseball player on home plate swinging a bat", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the girl is ready to hit the tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a room with a movie screen and a lot of graffiti", + "pred": "a woman standing in front of a projector playing a video game" + }, + { + "label": "people walking and standing in front of a building with a clock on it", + "pred": "people standing in front of a building with a clock on it" + }, + { + "label": "wind kites hanging", + "pred": "a variety of colorful kites hanging from the ceiling of a building" + }, + { + "label": "a woman is typing on a laptop on a wooden table", + "pred": "a person sitting at a desk using a laptop computer" + }, + { + "label": "a woman types on a laptop while someone else operates the mouse", + "pred": "a person sitting at a desk using a laptop computer" + }, + { + "label": "a pitcher throws a baseball to a batter", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a porch with several wind catchers hung from hooks", + "pred": "a variety of colorful kites hanging from the ceiling of a building" + }, + { + "label": "people staring at a woman holding a bat", + "pred": "a man holding a bat in front of a group of people" + }, + { + "label": "a living room with colored windows, sofas and chairs", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a very large and very posh living room", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "very complex design clock on the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "a large building with a tower that has a clock", + "pred": "a large brick building with a clock tower" + }, + { + "label": "people flying kites at the beach", + "pred": "people on a beach flying kites" + }, + { + "label": "a person sitting at table with a cup looking at a cell phone", + "pred": "a man sitting at a table with a cup of coffee" + }, + { + "label": "a child in a room with a remote in hand", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a young boy is playing wii on the couch", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a with plate with a chocolate pastry and whip cream", + "pred": "a plate of food on a table" + }, + { + "label": "people on a beach with a kite flying in the sky", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "a small child sitting on the couch holding a wii remote", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "young people are flying kites at a park", + "pred": "a person flying a kite in a park" + }, + { + "label": "a tall red bricked clock tower with three windows", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "two men playing a game of tennis on a court", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a boy wearing an orange t-shirt playing a video game while sitting on a couch", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a very tall building surrounded by lush green grass", + "pred": "a large brick building with a clock tower" + }, + { + "label": "people standing on a lush green field flying a kite", + "pred": "a person flying a kite in a park" + }, + { + "label": "people on a beach prepare to use their glides", + "pred": "people on a beach flying kites" + }, + { + "label": "the man in the park is flying his kite", + "pred": "a person flying a kite in a park" + }, + { + "label": "high stone tower with windows in an old village", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "people are flying kites on the beach", + "pred": "people on a beach flying kites" + }, + { + "label": "two people playing tennis with rackets on a grass court", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a plate of scones covered with chocolate sauce", + "pred": "a plate of food on a table" + }, + { + "label": "a man sitting at a table viewing a mobile device", + "pred": "a man sitting at a table with a cup of coffee" + }, + { + "label": "three people on a beach with kites in the sky", + "pred": "people on a beach flying kites" + }, + { + "label": "people that are walking on beach", + "pred": "people on a beach flying kites" + }, + { + "label": "a statute built into the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "no image here to provide a caption for", + "pred": "a plate of food on a table" + }, + { + "label": "a large multi-story building tower displays a clock", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "a plate filled with pastry on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a large brick tower with a clock on top", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "a large group of people on a sandy beach", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "blurry image of men in living room playing a stand-up video game", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a turquoise sign with numbers on a building", + "pred": "a clock on the side of a building" + }, + { + "label": "a guy playing wii in a blurry photo", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "two young men playing a game of tennis", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a man sitting texting while having a drink", + "pred": "a man sitting at a table with a cup of coffee" + }, + { + "label": "the huge living room is furnished with expensive things", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "people on an island beach", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "the clock tower on the old brick building looks impressive", + "pred": "a large brick building with a clock tower" + }, + { + "label": "a tray with pastries drizzled with chocolate and whip cream", + "pred": "a plate of food on a table" + }, + { + "label": "a young man checking his phone while enjoying a cup of tea", + "pred": "a man sitting at a table with a cup of coffee" + }, + { + "label": "a large formal living room with stained glass windows", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a boy in an orange t-shirt plays a video game", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a tower building with a clock up high", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "i am unable to see an image above", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man in white shirt and wristbands playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "an elaborate decoration hangs on the side of a tall building", + "pred": "a clock on the side of a building" + }, + { + "label": "a man swinging his racket at a ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "this youngster tries to get his kite off the ground", + "pred": "a person flying a kite in a park" + }, + { + "label": "blurry photo of a young man playing a video game", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "people playing tennis on a court surrounded by green hedges", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a three story institution with trimmed hedges in front", + "pred": "a large brick building with a clock tower" + }, + { + "label": "a large living room area features a white couch and a glass table", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "two men playing tennis on the tennis court", + "pred": "two people playing tennis on a tennis court" + }, + { + "label": "a male tennis player that is going to serve the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man getting ready to serve the ball in a tennis game", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "an intricate metal clock on the face of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "people with a laptop at a table", + "pred": "a woman using a laptop computer on a desk" + }, + { + "label": "the men are playing video games on the wii together", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "people standing in a field flying kites", + "pred": "people are flying kites in a field" + }, + { + "label": "student working on the computer while another student shows her a mobile phone", + "pred": "a woman using a laptop computer on a desk" + }, + { + "label": "a building with many windows and a clock next to grassy field", + "pred": "a large brick building with a clock tower" + }, + { + "label": "a baseball player is getting ready to hit a ball", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "people fill a park area under a cloudy sky while kites pepper the sky", + "pred": "people are flying kites in a field" + }, + { + "label": "people together on a beach", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "a young man waiting to take his swing", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a man standing in a room with a remote", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "people flying kits under a party cloudy sky", + "pred": "people are flying kites in a field" + }, + { + "label": "people seated at a table with plates of food", + "pred": "a woman sitting at a table in front of a group of people" + }, + { + "label": "a hand with finger on a blender filled with liquid", + "pred": "a blender sitting on top of a counter next to a person" + }, + { + "label": "a man with a cup of coffee and a cell phone", + "pred": "a man sitting at a table with a cup of coffee" + }, + { + "label": "people mingling on a beach with a kite floating in the sky", + "pred": "people standing on top of a sandy beach" + }, + { + "label": "a man standing on a tennis court holding a racquet", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a large clock on the side of a building above cars on the street", + "pred": "a large clock on the side of a building" + }, + { + "label": "a person standing in a field with a bat", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a man in a park, flies his kite with a long tail", + "pred": "a person flying a kite in a park" + }, + { + "label": "a small boy in batting stance on a sandlot", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "people standing in front of a large building", + "pred": "a large building with a clock on the side of it" + }, + { + "label": "a living room that is filled with furniture", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a room with a television, a sofa, and a seat", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a metal blender on top of a stone counter", + "pred": "a blender sitting on top of a counter next to a person" + }, + { + "label": "this living room is painted yellow with beige couches", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a small baseball little league player is at bat", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a person wearing a towel is drying their hair with a hair dryer", + "pred": "a woman is using a hair dryer to dry her hair" + }, + { + "label": "a child standing in a bathroom wrapped in a towel", + "pred": "a woman is using a hair dryer to dry her hair" + }, + { + "label": "people standing on a field under a cloudy blue sky", + "pred": "people are flying kites in a field" + }, + { + "label": "a woman with her hand over her glass while sitting at a dinner table", + "pred": "a woman sitting at a table in front of a group of people" + }, + { + "label": "a large clock fixed to a building as vehicles pass by", + "pred": "a large clock on the side of a building" + }, + { + "label": "vehicles riding in front of building with a huge clock on it", + "pred": "a large clock on the side of a building" + }, + { + "label": "people in a field with various kites in the sky", + "pred": "people are flying kites in a field" + }, + { + "label": "a hand holding a nintendo wii game controller", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a living room with a table in front of a flat screen tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man intensely looking while holding a tennis racquet", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a hand poised to push a button on a liquid filled blender", + "pred": "a blender sitting on top of a counter next to a person" + }, + { + "label": "a huge clock in a city center stating the time of 5:54pm", + "pred": "a large clock on the side of a building" + }, + { + "label": "a person in a field flying a kite in the sky", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "people sitting at a table", + "pred": "a woman sitting at a table in front of a group of people" + }, + { + "label": "a person presses the power button on a blender containing liquid", + "pred": "a blender sitting on top of a counter next to a person" + }, + { + "label": "a living room with a couch, coffee table, tv on a stand and a chair with ottoman", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a courtyard with people walking about it next to clock tower", + "pred": "a large building with a clock on the side of it" + }, + { + "label": "a very old building has a large clock tower", + "pred": "a large building with a clock on the side of it" + }, + { + "label": "a woman and child sitting at table with food and drinks", + "pred": "a woman sitting at a table in front of a group of people" + }, + { + "label": "the little league batter is taking a swing at home plate", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a kitchen with a teapot on the stove and books on a shelf", + "pred": "a stack of books on a shelf next to a fireplace" + }, + { + "label": "two girls at a desk playing with a laptop", + "pred": "a woman using a laptop computer on a desk" + }, + { + "label": "a man on a tennis court holding his racket and waiting", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a very large clock on the side of a building", + "pred": "a large clock on the side of a building" + }, + { + "label": "two computers are sitting on top of the desk", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a young man in a red shirt is playing tennis", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a person on a field flying a kite with trees", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a family dines at a packed sushi bar and buffet", + "pred": "a woman sitting at a table in front of a group of people" + }, + { + "label": "a woman with backpack flying a kite in grassy field", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a woman in a bathroom blow drying her hair", + "pred": "a woman is using a hair dryer to dry her hair" + }, + { + "label": "someone holding a wii remote towards a tv", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "this girl is flying a kite near a tree and and small boy", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a woman flies a kite near a young child", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a young batter is awaiting a pitch during a game", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "two computers on a large wooden computer desk", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "four people walk through the courtyard of a large building", + "pred": "a large building with a clock on the side of it" + }, + { + "label": "a mother and child fly a kite in a grassy field, with a tower", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a blender on a counter being operated by a person", + "pred": "a blender sitting on top of a counter next to a person" + }, + { + "label": "two young boys playing t-ball at ball park", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a frozen pizza is coming out of an oven", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a frozen pizza being cooked in a small stove", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "people are playing baseball on a field", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a lady flying a kite during the day in a park", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a book filled windowsill in between a kitchen and dining room", + "pred": "a stack of books on a shelf next to a fireplace" + }, + { + "label": "a person pointing a wii controller at a computer screen", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a person with a towel over them blow drying their hair", + "pred": "a woman is using a hair dryer to dry her hair" + }, + { + "label": "a frozen pizza in the oven already cooked", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a woman wearing a towel holding a blow dryer", + "pred": "a woman is using a hair dryer to dry her hair" + }, + { + "label": "a big screen tv and a wii gaming console on a rooftop", + "pred": "a television set sitting on top of a wooden bench" + }, + { + "label": "the man is sitting next to his bed on the laptop", + "pred": "a person sitting on a bed looking out a window" + }, + { + "label": "a large kite with three orange, white and black fish", + "pred": "a row of colorful kites flying in the sky" + }, + { + "label": "a person in a bedroom on a laptop", + "pred": "a person sitting on a bed looking out a window" + }, + { + "label": "large streamers, some look like a clown fish", + "pred": "a row of colorful kites flying in the sky" + }, + { + "label": "a wii game of baseball outside on bench", + "pred": "a television set sitting on top of a wooden bench" + }, + { + "label": "children sitting down next to a laptop computer", + "pred": "a woman using a laptop computer on a desk" + }, + { + "label": "an old stone and brick building three stories high", + "pred": "a large building with a clock on the side of it" + }, + { + "label": "a kitchen countertop and some books on a shelf", + "pred": "a stack of books on a shelf next to a fireplace" + }, + { + "label": "a flat screen tv sitting on top of a wooden bench", + "pred": "a television set sitting on top of a wooden bench" + }, + { + "label": "a desk with a keyboard, laptop and monitor", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a white clock tower next to a brown building at night", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a person with a laptop sitting in front of a window", + "pred": "a person sitting on a bed looking out a window" + }, + { + "label": "white stove top oven with a pizza cooking inside of it", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a little league baseball game in progress, player swinging the bat", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a desktop computer sitting on top of a glass table", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a frozen pizza is cooked in an oven", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a tower with a clock on it during the night", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "the furniture is posed in the room with a sign that says do not touch", + "pred": "a living room filled with furniture and a coffee table" + }, + { + "label": "a woman holds a phone next to the laptop a child is working on", + "pred": "a woman using a laptop computer on a desk" + }, + { + "label": "a television that has been placed outside, a video game is being played on it", + "pred": "a television set sitting on top of a wooden bench" + }, + { + "label": "large fish balloons hanging from poles outside", + "pred": "a row of colorful kites flying in the sky" + }, + { + "label": "the room is crowded with many things including chairs, a bicycle, and a table with cups on it", + "pred": "a living room filled with furniture and a coffee table" + }, + { + "label": "a video game controller being pointed at a television", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "the television screen ifs on the roof of the building", + "pred": "a television set sitting on top of a wooden bench" + }, + { + "label": "the people fly a kite by the tall stone building", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a silver fridge sits in a room next to a microwave", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a lady and a little girl flying a kite on a grassy field", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a large clock tower structure lit up in the early night sky", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a tall clock tower with a clock sitting on it's face", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a computer monitor next to a keyboard, laptop and a mouse", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a woman and girl flying a kite near a large castle", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "chairs sitting around a table", + "pred": "a living room filled with furniture and a coffee table" + }, + { + "label": "a lush green field full of people flying kites", + "pred": "a row of colorful kites flying in the sky" + }, + { + "label": "a metallic refrigerator freezer next to a microwave oven", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a wall mounted golden clock on the side of a building", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a woman and a man sitting on a couch next to each other", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a pizza sitting on top of a white plate next to a glass of beer", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a large white clock tower towering over a city", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a laptop with external keyboard, mouse, phone and photo on a desk", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "two men in living room playing a game with a nintendo wii controller", + "pred": "a man and a woman playing a video game in a living room" + }, + { + "label": "a man in white shirt sitting at a laptop in bedroom", + "pred": "a person sitting on a bed looking out a window" + }, + { + "label": "a stove and some books in a kitchen", + "pred": "a stack of books on a shelf next to a fireplace" + }, + { + "label": "a roman numeral clock is display atop a large tower", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a small area containing a refrigerator and a microwave positioned on a shelf", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a black and silver fridge next to a large mirror", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "ai man and a woman playing with a wii", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a vase of feathers on a shelf by some art", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man and woman sitting on a couch playing a game", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a couple sitting on a couch holding wii remotes", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a man sits on his bed with a laptop in his bedroom as a ray of sunlight streams through the window", + "pred": "a person sitting on a bed looking out a window" + }, + { + "label": "the case on the shelf is holding several feathers", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "three men and one woman sit at a table eating pizza", + "pred": "people sitting at a table with plates of food" + }, + { + "label": "two people in a living room playing a wii video game", + "pred": "a man and a woman playing a video game in a living room" + }, + { + "label": "a home office with a chrome and glass desk and computer equipment", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "electronic devises and a tangle of wires are on and around the desk", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "people sitting around a table eating pizza", + "pred": "people sitting at a table with plates of food" + }, + { + "label": "a man on his phone in some kind of room", + "pred": "a woman standing in front of a wall in a kitchen" + }, + { + "label": "a person holding a wii controller for video game", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a building with a lot of windows and large clock outside", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a man on a cell phone standing next to a bed", + "pred": "a woman standing in front of a wall in a kitchen" + }, + { + "label": "vase full of feathers sitting on a table next to a floral drape", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a refrigerator up against a wall with a mirror", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "it is all kinds of books on the book selves", + "pred": "a stack of books on a shelf next to a fireplace" + }, + { + "label": "a large clock tower lit up at night time near another building", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a clocktower standing high with lights on", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a man on a cell phone with some tools on a bed nearby", + "pred": "a woman standing in front of a wall in a kitchen" + }, + { + "label": "two people sitting together on a couch playing wii", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a living area with a number of chairs", + "pred": "a living room filled with furniture and a coffee table" + }, + { + "label": "a man in his apartment bedroom answering his cell phone", + "pred": "a woman standing in front of a wall in a kitchen" + }, + { + "label": "group of young adults eating pizza and drinking beer at a restaurant", + "pred": "people sitting at a table with plates of food" + }, + { + "label": "a room with a man in it talking on his phone", + "pred": "a woman standing in front of a wall in a kitchen" + }, + { + "label": "a home computer on a desk in a room", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "multiple colors of origami birds in a heat shaped vase", + "pred": "a glass vase filled with lots of different colored flowers" + }, + { + "label": "people sit at a wooden table with pizzas on it in an outdoor place", + "pred": "people sitting at a table with plates of food" + }, + { + "label": "a whole pizza on a white plate on a table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a clock that reads 8:29 with a street lamp", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a stove with a tea kettle and cooking pot on top", + "pred": "a stove with an oven door open in a kitchen" + }, + { + "label": "a marble table with white plate holding a pizza", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a clock with a light in a clock tower at dusk", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "large kites flying in the sky", + "pred": "a row of colorful kites flying in the sky" + }, + { + "label": "a computer sitting on a see through desk", + "pred": "a flat screen tv sitting on top of a wooden desk" + }, + { + "label": "a white stove top oven with two tea pots on top of it", + "pred": "a stove with an oven door open in a kitchen" + }, + { + "label": "a sheet with a flower designed is next to an actual vase", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a heart shaped, glass container filled with origami birds", + "pred": "a glass vase filled with lots of different colored flowers" + }, + { + "label": "a little kid that is playing with stuff", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "four people enjoying a meal are posing for their picture", + "pred": "people sitting at a table with plates of food" + }, + { + "label": "a pizza covered with various toppings and some fruit wedges", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a person hanging paper kites to a wire", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "a pizza with many toppings and lemon slices", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a desktop computer with it's monitor sitting on it's side", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a table is set with pizza and beer and a salad", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a lap top sits on a small desk with jars and candles around it", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a beer sits untouched on a table with other food", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a teenager hanging paper tassels from a long string", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "a computer, mouse and keyboard on a desk", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a clock reads almost 2:30 with a building behind it", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a laptop computer sitting on top of a wooden desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a man standing on a stair stepper holding a wii controller", + "pred": "a man and a woman playing a video game in a living room" + }, + { + "label": "a large gold clock at some type of station", + "pred": "a clock that is on the side of a building" + }, + { + "label": "three jars are on a desk above a laptop", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a desk with a laptop and jars and candles", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a small table with tea cups and three chairs around it", + "pred": "a living room filled with furniture and a coffee table" + }, + { + "label": "a wooden table with a vase of flowers and a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a glass hart shaped sculpture sitting on top of orgasmic birds", + "pred": "a glass vase filled with lots of different colored flowers" + }, + { + "label": "people using video game controllers in a living room", + "pred": "a man and a woman playing a video game in a living room" + }, + { + "label": "three baseball players walking around while holding bats", + "pred": "two baseball players standing next to each other on a field" + }, + { + "label": "a child standing completely upright in front of a refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a laptop computer is surrounded by jars and candles", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "an oven with a pot and kettle on top", + "pred": "a stove with an oven door open in a kitchen" + }, + { + "label": "a mouse, keyboard, and a monitor on a desk", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a pizza with several toppings", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a very tall tower with a clock at the top", + "pred": "a tall tower with a clock on it's side" + }, + { + "label": "a television in a living room with magazines on the coffee table", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a woman in a blue top with headphones and two cellphones", + "pred": "a woman sitting in a chair using a cell phone" + }, + { + "label": "a vase with flowers sitting on a table near a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a heart shaped glass jar with origami birds in it", + "pred": "a glass vase filled with lots of different colored flowers" + }, + { + "label": "a pizza topped with cheese, vegetables and lemon wedges", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "two lemon slices garnish a food topping of tomatoes and diced meat mixed with a white sauce and spread over crusty bread", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a child sitting down in front of a bowl", + "pred": "a little girl sitting in front of a bowl of cereal" + }, + { + "label": "a tv sitting in a living room on a hard wood floor", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "men on a field playing baseball", + "pred": "a baseball game in progress with the batter up to plate" + }, + { + "label": "baseball players holding a black bat", + "pred": "two baseball players standing next to each other on a field" + }, + { + "label": "a woman in blue sweater holding two cellphones while wearing headphones", + "pred": "a woman sitting in a chair using a cell phone" + }, + { + "label": "a large building with a clock at the top of it", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "an oven with a stove top, a teapot and another pot sitting on top", + "pred": "a stove with an oven door open in a kitchen" + }, + { + "label": "a couch in a living room with three pillows", + "pred": "a white couch sitting on top of a white couch" + }, + { + "label": "white stove with pot and kettle on top and the light on in the oven", + "pred": "a stove with an oven door open in a kitchen" + }, + { + "label": "men on a field playing baseball", + "pred": "two baseball players standing next to each other on a field" + }, + { + "label": "a person holding a phone in each hand and wearing a head set in front of a christmas tree", + "pred": "a woman sitting in a chair using a cell phone" + }, + { + "label": "the young girl is standing in front of the refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a shelf with a white and blue vase, artwork and black cloth", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a desk with a keyboard and monitor", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a building with a clock built into it", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a very tidy living room with a white couch with pillows on it", + "pred": "a white couch sitting on top of a white couch" + }, + { + "label": "a woman wearing headphones looking at some electronics", + "pred": "a woman sitting in a chair using a cell phone" + }, + { + "label": "a man is taking a photo of a city with his phone", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a baseball game is being played before a crowd", + "pred": "a baseball game in progress with the batter up to plate" + }, + { + "label": "large four sided clock hangs on the corner of the building", + "pred": "a clock on the side of a building" + }, + { + "label": "a clean and tidy living room with a couch, a table, and a painting on the wall", + "pred": "a white couch sitting on top of a white couch" + }, + { + "label": "view from the base of a large ornate clock tower", + "pred": "a tall tower with a clock on it's side" + }, + { + "label": "a tall lighted clock on top of a brick tower", + "pred": "a tall tower with a clock on it's side" + }, + { + "label": "a baseball pitcher throws the ball as the batter prepares to swing", + "pred": "a baseball game in progress with the batter up to plate" + }, + { + "label": "a living room with a couch a table and a panting", + "pred": "a white couch sitting on top of a white couch" + }, + { + "label": "a clock suspended on the outside of a brown stone building", + "pred": "a clock on the side of a building" + }, + { + "label": "a grey clock tower above building with sky", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a teddy bear is placed on a metallic sculpture", + "pred": "a teddy bear sitting in a basket on a table" + }, + { + "label": "three baseball players from the chicago cubs teams", + "pred": "two baseball players standing next to each other on a field" + }, + { + "label": "a clear heart shaped jar filled with many colors of paper cranes", + "pred": "a glass vase filled with lots of different colored flowers" + }, + { + "label": "two guys playing a game on the wii", + "pred": "a man and a woman playing a video game in a living room" + }, + { + "label": "a child eats food from a bowl at a table", + "pred": "a little girl sitting in front of a bowl of cereal" + }, + { + "label": "a little blonde girl standing in front of a fridge", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a large brick clock tower with lights at the top", + "pred": "a tall tower with a clock on it's side" + }, + { + "label": "a young boy tying paper kites to a string stretched across a room", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "a clock tower behind a building with a sky background", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a building with a large clock on the outside", + "pred": "a clock on the side of a building" + }, + { + "label": "a man taking a picture of the city with his cellphone", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a small vase of flowers sit on a wooden table near magazines", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a teddy bear sitting on some kind of seat", + "pred": "a teddy bear sitting in a basket on a table" + }, + { + "label": "a clock attached to a brick building", + "pred": "a clock on the side of a building" + }, + { + "label": "adult men in baseball uniforms walking in a baseball field", + "pred": "two baseball players standing next to each other on a field" + }, + { + "label": "a brown teddy bear sitting on an odd looking chair", + "pred": "a teddy bear sitting in a basket on a table" + }, + { + "label": "a tall monitor is near a keyboard and a mouse", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a tall building with a clock tower that is lit up at the top", + "pred": "a tall tower with a clock on it's side" + }, + { + "label": "a clock set up in front of windows where you can see the shadows of people inside", + "pred": "a clock that is on the side of a building" + }, + { + "label": "the man in the business suit takes a video of city buildings", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a child eating from a very large bowl", + "pred": "a little girl sitting in front of a bowl of cereal" + }, + { + "label": "a living room with a cream colored couch", + "pred": "a white couch sitting on top of a white couch" + }, + { + "label": "a man in suit taking a photograph with a cellphone", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a clock fastened to a brick store front reads 10 after 10", + "pred": "a clock on the side of a building" + }, + { + "label": "a woman has headphones on and is holding two cell phones", + "pred": "a woman sitting in a chair using a cell phone" + }, + { + "label": "looking through the safety net, baseball player getting ready to hit the ball", + "pred": "a baseball game in progress with the batter up to plate" + }, + { + "label": "baseball players on the field are competing during a game", + "pred": "a baseball game in progress with the batter up to plate" + }, + { + "label": "a boy hangs up paper kites on a string", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "a stuffed teddy bear sitting on a metal sculpture", + "pred": "a teddy bear sitting in a basket on a table" + }, + { + "label": "a little girl is standing in front of a refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a brown teddy bear sitting on a huge box", + "pred": "a teddy bear sitting on a window sill" + }, + { + "label": "a stuffed animal on a cardboard box", + "pred": "a teddy bear sitting on a window sill" + }, + { + "label": "a girl in orange sweater using spoon in bowl", + "pred": "a little girl sitting in front of a bowl of cereal" + }, + { + "label": "a small brown teddy bear sitting on top of a box", + "pred": "a teddy bear sitting on a window sill" + }, + { + "label": "a business man photographs a city with his cell phone", + "pred": "a man in a suit talking on a cell phone" + }, + { + "label": "a clock on the side of a clock tower", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a large metal chair with a brown teddy bear in it", + "pred": "a teddy bear sitting in a basket on a table" + }, + { + "label": "a pen is sitting on top of a laptop", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a wooden table with a purple laptop and orange pen", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a stuffed bear on a cardboard box", + "pred": "a teddy bear sitting on a window sill" + }, + { + "label": "a young girl stands in front of the refrigerator", + "pred": "a little girl standing in front of a refrigerator" + }, + { + "label": "a woman in camouflage showing a device to young women", + "pred": "a woman holding a cell phone in front of a group of children" + }, + { + "label": "a man in green shirt with cellphone reflecting in a mirror", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a pen sitting on top of an electronic devise", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a young girl is eating out of a big bowl", + "pred": "a little girl sitting in front of a bowl of cereal" + }, + { + "label": "a woman in uniform shows something on her cell phone to a group of girls", + "pred": "a woman holding a cell phone in front of a group of children" + }, + { + "label": "a scale with a musical instrument sitting on top of it", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a person talking on a phone with a tree", + "pred": "a man talking on a cell phone next to a tree" + }, + { + "label": "a yellow pen on top of a closed lap top computer", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "bark on a tree with a young man on a cell phone", + "pred": "a man talking on a cell phone next to a tree" + }, + { + "label": "people in a grass field flying a kite in the sky", + "pred": "a woman is flying a kite in a park" + }, + { + "label": "the women are playing a video game together", + "pred": "a woman and a man playing a video game" + }, + { + "label": "a boy playing with a kite in the park", + "pred": "a woman is flying a kite in a park" + }, + { + "label": "a man on a court swinging a tennis racket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman sitting on a couch in front of a laptop", + "pred": "a person sitting on a couch with a laptop" + }, + { + "label": "a little brown teddy bear sitting alone on top of a carboard box", + "pred": "a teddy bear sitting on a window sill" + }, + { + "label": "the refrigerators are lined up against the wall", + "pred": "two white refrigerators sitting next to each other" + }, + { + "label": "a woman in a military uniform showing a cell phone to a group of girls", + "pred": "a woman holding a cell phone in front of a group of children" + }, + { + "label": "a man standing with a cell phone by a tree", + "pred": "a man talking on a cell phone next to a tree" + }, + { + "label": "a colorful kite flying by some people in the park", + "pred": "a woman is flying a kite in a park" + }, + { + "label": "a row of refrigerator freezers sitting next to each other", + "pred": "two white refrigerators sitting next to each other" + }, + { + "label": "a woman and a young girl holding a kite on a green field", + "pred": "a woman is flying a kite in a park" + }, + { + "label": "a man sitting in a room taking a selfie in a mirror", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a large pizza with meatballs and tomatoes on top of it", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "two girls are playing the wii game system together", + "pred": "a woman and a man playing a video game" + }, + { + "label": "a white tray topped with lots of different coffee cups", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "children gathered around an adult in a military uniform showing them a cell phone", + "pred": "a woman holding a cell phone in front of a group of children" + }, + { + "label": "a person standing in a forest using a cell phone", + "pred": "a man talking on a cell phone next to a tree" + }, + { + "label": "a large clock tower towering over a city glowing brightly at night", + "pred": "a large building with a clock tower on top of it" + }, + { + "label": "a stove top oven sitting on a pile of junk outdoors", + "pred": "an old stove top oven sitting on the side of a road" + }, + { + "label": "people standing on a field flying a colorful kite", + "pred": "a woman is flying a kite in a park" + }, + { + "label": "a man holding a baseball bat preparing to swing it", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a computer keyboard sitting next to a mouse on a wooden table", + "pred": "a computer mouse sitting on top of a wooden table" + }, + { + "label": "two women in glasses using nintendo wii remote controllers", + "pred": "a woman and a man playing a video game" + }, + { + "label": "a pizza with sausage tomato green peppers and cheese", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "two friends are sitting on the couch, enjoying a game played on the wii", + "pred": "a woman and a man playing a video game" + }, + { + "label": "baseball player in the cage practicing his swings", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a tennis player is looking up to the sky", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman in pajama pants is on a computer", + "pred": "a person sitting on a couch with a laptop" + }, + { + "label": "a man sitting cross legged in front of a mirror on the floor taking a self portrait", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "various size white refrigerators on display in dark room", + "pred": "two white refrigerators sitting next to each other" + }, + { + "label": "the man is meditating in front of the mirror", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "young women holding remote game controls while playing", + "pred": "a woman and a man playing a video game" + }, + { + "label": "a man sitting on the floor taking a picture of himself in a mirror", + "pred": "a man taking a picture of himself in a mirror" + }, + { + "label": "a white keyboard and a white mouse", + "pred": "a computer mouse sitting on top of a wooden table" + }, + { + "label": "six females gathered around a cell phone smiling", + "pred": "a woman holding a cell phone in front of a group of children" + }, + { + "label": "refrigerators are lined up by a wall", + "pred": "two white refrigerators sitting next to each other" + }, + { + "label": "a man playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman sitting on sofa with a laptop in front of her", + "pred": "a person sitting on a couch with a laptop" + }, + { + "label": "a purple flower is in a watering can on the window sill", + "pred": "a vase filled with pink flowers sitting on a window sill" + }, + { + "label": "looking down at a computer keyboard and mouse", + "pred": "a computer mouse sitting on top of a wooden table" + }, + { + "label": "a man playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "girl on a couch with her computer on a table", + "pred": "a person sitting on a couch with a laptop" + }, + { + "label": "a man swinging a tennis racket in a t-shirt", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman sitting down with a laptop on a table in front of her", + "pred": "a person sitting on a couch with a laptop" + }, + { + "label": "ornate cup and saucer clock displayed against red background", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "a pizza is covered with olives sausages and tomato", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "an old oven left outside in the garbage", + "pred": "an old stove top oven sitting on the side of a road" + }, + { + "label": "an old watering can used as a window sill planter", + "pred": "a vase filled with pink flowers sitting on a window sill" + }, + { + "label": "a variety of refrigerators on display", + "pred": "two white refrigerators sitting next to each other" + }, + { + "label": "full pizza with tomatoes, mushrooms, sausage, pepperoni, and peppers", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "a man in red jacket and shorts in a batting cage", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a pizza with ingredients that include tomatoes and meatballs", + "pred": "a pizza sitting on top of a pizza pan" + }, + { + "label": "the tree bark in the foreground is clear while the person in the background is blurry", + "pred": "a man talking on a cell phone next to a tree" + }, + { + "label": "a clock that has replaced numbers with teacups", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "the back row of buildings of residences at night", + "pred": "a large building with a clock tower on top of it" + }, + { + "label": "an oven is sitting outside in a dumpster", + "pred": "an old stove top oven sitting on the side of a road" + }, + { + "label": "a man plays tennis in front of a large audience", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a computer mouse and keyboard on a table", + "pred": "a computer mouse sitting on top of a wooden table" + }, + { + "label": "a clock hanging on a wall with the numbers being replaced by cups and saucers", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "two children standing near wrought iron fence near brick building", + "pred": "people standing in front of a building" + }, + { + "label": "a man gets ready to swing at a pitch during batting practice", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a kitchen stove laying in a dumpster", + "pred": "an old stove top oven sitting on the side of a road" + }, + { + "label": "a old stove in a dumpster in a parking lot", + "pred": "an old stove top oven sitting on the side of a road" + }, + { + "label": "a man works on his laptop in the dark", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "the baseball player is practicing his swing for his favorite game", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a baseball player talks with an umpire", + "pred": "baseball players standing on top of a field" + }, + { + "label": "children scale and stand on a fence overlooking an arched entrance", + "pred": "people standing in front of a building" + }, + { + "label": "two kids in pink and purple jackets standing by a fence", + "pred": "people standing in front of a building" + }, + { + "label": "children look over the wrought iron fence into the brick archways", + "pred": "people standing in front of a building" + }, + { + "label": "buildings with clock tower and trees in night sky", + "pred": "a large building with a clock tower on top of it" + }, + { + "label": "this seems to be several glasses on an object", + "pred": "a cake shaped like a train on top of a table" + }, + { + "label": "a buffet of casserole dishes on a kitchen counter", + "pred": "a kitchen filled with lots of kitchen supplies" + }, + { + "label": "a kitchen area with a table full of various foods", + "pred": "a kitchen filled with lots of kitchen supplies" + }, + { + "label": "a batter and catcher talking to the umpire at home plate", + "pred": "baseball players standing on top of a field" + }, + { + "label": "kid poses for a picture in a baseball uniform holding a bat", + "pred": "a young boy holding a baseball bat on top of a field" + }, + { + "label": "a keyboard and a computer mouse on a surface", + "pred": "a computer mouse sitting on top of a wooden table" + }, + { + "label": "a pair of children stand on a fence together", + "pred": "people standing in front of a building" + }, + { + "label": "a church steeple is lit above houses lining a shore", + "pred": "a large building with a clock tower on top of it" + }, + { + "label": "a man uses a laptop in an otherwise dark room", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "people sitting on benches in the park, and traffic in the street", + "pred": "a woman sitting on a bench in the middle of a park" + }, + { + "label": "lavender flowers are in flower pot on a windowsill", + "pred": "a vase filled with pink flowers sitting on a window sill" + }, + { + "label": "three baseball players stand communicating on a field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "the tennis player is walking on the court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "different platters of food are set in the kitchen", + "pred": "a kitchen filled with lots of kitchen supplies" + }, + { + "label": "three men standing around a baseball field", + "pred": "baseball players standing on top of a field" + }, + { + "label": "an umpire is talking with two players on different teams", + "pred": "baseball players standing on top of a field" + }, + { + "label": "a tennis player holding a racket during a tennis match", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a row of attached buildings situated by a river", + "pred": "a large building with a clock tower on top of it" + }, + { + "label": "containers of food are covered up on the table", + "pred": "a kitchen filled with lots of kitchen supplies" + }, + { + "label": "a man working on his laptop in the dark", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "covered food is sitting on a kitchen counter", + "pred": "a kitchen filled with lots of kitchen supplies" + }, + { + "label": "a laptop that is sitting on a bed", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a computer laptop is placed on a bed", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a laptop computer is sitting open on a bed", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a young boy poses in his babseball uniform holding his bat on a field", + "pred": "a young boy holding a baseball bat on top of a field" + }, + { + "label": "a watering can for a vase of purple flowers", + "pred": "a vase filled with pink flowers sitting on a window sill" + }, + { + "label": "a man is sitting on a park bench using a computer", + "pred": "a woman sitting on a bench in the middle of a park" + }, + { + "label": "a young boy in a baseball uniform holding a bat over his shoulder", + "pred": "a young boy holding a baseball bat on top of a field" + }, + { + "label": "man looking at laptop playing video game in the dark", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "a laptop computer with power cube sitting on a twin sized bed", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "two men look into an enormous roaster at a pig inside", + "pred": "two people are cooking in the back of a truck" + }, + { + "label": "a male in a brown shirt sitting on a bench with a laptop", + "pred": "a woman sitting on a bench in the middle of a park" + }, + { + "label": "a woman holding a hello kitty phone on her hands", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a boy with a baseball bat in the ground", + "pred": "a young boy holding a baseball bat on top of a field" + }, + { + "label": "a person sitting next to a laptop in a dark room", + "pred": "a man sitting in front of a laptop computer" + }, + { + "label": "lilacs in a blue watering can vase sitting outdoors on a ledge", + "pred": "a vase filled with pink flowers sitting on a window sill" + }, + { + "label": "a kid with a baseball bat on a field", + "pred": "a young boy holding a baseball bat on top of a field" + }, + { + "label": "a man in a suit standing next to a control board and computer", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "a person on a bench with a laptop in a park", + "pred": "a woman sitting on a bench in the middle of a park" + }, + { + "label": "a decorative gold and grey clock", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a man in black shirt and white shorts on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "people sitting on a park bench watching cars go by", + "pred": "a woman sitting on a bench in the middle of a park" + }, + { + "label": "a woman holds up her phone in front of her face", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a woman in white shirt holding up a cellphone", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "male tennis player on the middle of the court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a smart phone, digital camera and mobile phone on display", + "pred": "two cell phones sitting next to each other on a wall" + }, + { + "label": "a man standing near a table with video equipment", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "a woman checking her cell phone with a hello kitty case", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a table with three different electronic devices", + "pred": "two cell phones sitting next to each other on a wall" + }, + { + "label": "a made bed with a laptop computer on it", + "pred": "a laptop computer sitting on top of a bed" + }, + { + "label": "a pocket pc, digital camera, and old cell phone", + "pred": "two cell phones sitting next to each other on a wall" + }, + { + "label": "buildings with a clock and a crane over head are in this picture", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "two women sitting on ledge looking at a cellphone", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "a bridge over water near several tall buildings", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a young guy using his computer and talking on his phone", + "pred": "a man sitting on a couch with a laptop" + }, + { + "label": "man in tshirt and tie with cellphone in bathroom taking picture", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a young man taking a selfie with an iphone wearing a tie", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "three different kinds of electronic devices all in a row", + "pred": "two cell phones sitting next to each other on a wall" + }, + { + "label": "a cellphone device with various buttons", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "a man in brown shirt on black sofa with phone", + "pred": "a man sitting on a couch with a laptop" + }, + { + "label": "a large brick building has a clock tower on it", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a boy on his phone outside near a red chair", + "pred": "a man sitting at a table in front of a laptop" + }, + { + "label": "a woman and two kids walking with their tennis rackets", + "pred": "a boy and a girl standing next to each other holding tennis rackets" + }, + { + "label": "man in suit smiling next to electronics and monitors", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "two brown teddy bears sitting side by side", + "pred": "two teddy bears sitting next to each other" + }, + { + "label": "a man stands poised with a baseball bat", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a pda, digital camera and a music player", + "pred": "two cell phones sitting next to each other on a wall" + }, + { + "label": "a large building with a clock tower near a river", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a man wearing glasses and a neck tie is holding a cell phone", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a baseball player holding a bat", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "an adult walking with two children holding tennis rackets", + "pred": "a boy and a girl standing next to each other holding tennis rackets" + }, + { + "label": "a close up photo of a smart phone lit up", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "a living room with the tv on and a wheel on the wall", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a bridge over water with buildings and clock tower", + "pred": "a tall building with a clock on top of it" + }, + { + "label": "a clock mounted to the side of a building", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a living room with furniture and a television", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a mother with her two children holding tennis rackets", + "pred": "a boy and a girl standing next to each other holding tennis rackets" + }, + { + "label": "a man by desk with mixing equipment, a keyboard and a computer monitor", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "two men are looking inside of a giant barbecue", + "pred": "two people are cooking in the back of a truck" + }, + { + "label": "a close-up image of a multi media device", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "a man sitting in a chair is on the phone", + "pred": "a man sitting at a table in front of a laptop" + }, + { + "label": "people standing in a yard", + "pred": "two people are cooking in the back of a truck" + }, + { + "label": "a woman, little girl and boy, walking with tennis rackets", + "pred": "a boy and a girl standing next to each other holding tennis rackets" + }, + { + "label": "two women sitting on a ledge deep in thought", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "a decorative clock has roman numerals on its face", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a desk with various items that include cellphone, mouse and pocket change", + "pred": "a table topped with electronics and a laptop" + }, + { + "label": "control buttons on an orange and silver electronic device", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "a man brushing oil onto a pig in an outdoor oven", + "pred": "two people are cooking in the back of a truck" + }, + { + "label": "a vintage black and white portrait of a baseball player", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a woman walks with 2 kids holding tennis rackets", + "pred": "a boy and a girl standing next to each other holding tennis rackets" + }, + { + "label": "a man holding up an apple phone while taking a selfie", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a hunk of something being brushed with a broom", + "pred": "two people are cooking in the back of a truck" + }, + { + "label": "a man in grey shirt sitting in chair on cellphone", + "pred": "a man sitting at a table in front of a laptop" + }, + { + "label": "a man takes a pictures of himself in a mirror", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a living room with comfortable furniture and large tv", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a man holding a baseball bat over home plate", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a man in a suit stands near a table with computer equipment on it", + "pred": "a man standing in front of a laptop computer" + }, + { + "label": "two teddy bears sitting next to each other on a couch", + "pred": "two teddy bears sitting next to each other" + }, + { + "label": "a person on a cell phone on a chair", + "pred": "a man sitting at a table in front of a laptop" + }, + { + "label": "a man playing tennis is getting ready to swing at the ball", + "pred": "a person standing on a tennis court holding a racquet" + }, + { + "label": "two stuffed brown teddy bears sitting next to a wall", + "pred": "two teddy bears sitting next to each other" + }, + { + "label": "the asian girl is holding her miss kitty phone", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "two women that are sitting down looking at a phone", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "two large identical teddy bears are piled against the wall", + "pred": "two teddy bears sitting next to each other" + }, + { + "label": "a small cell phone on a dark surface", + "pred": "a cell phone sitting on top of a table" + }, + { + "label": "an large ornate wooden clock with golden accents", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a man holding a tennis racquet on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a person standing on a court with a tennis racket", + "pred": "a person standing on a tennis court holding a racquet" + }, + { + "label": "strike a pose, you hunky young tennis player", + "pred": "a person standing on a tennis court holding a racquet" + }, + { + "label": "a laptop and computer mouse on a table", + "pred": "a table topped with electronics and a laptop" + }, + { + "label": "two ladies sitting down looking at a cell phone", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "men in front of a television with a remote", + "pred": "a woman standing in front of a television holding a nintendo wii controller" + }, + { + "label": "an oven with a stove, pots and utensils, and a refrigerator next to it", + "pred": "a stove top oven sitting inside of a kitchen" + }, + { + "label": "a laptop sitting on a desk next to a chair and another computer", + "pred": "a desk with a computer and a laptop on it" + }, + { + "label": "two women sitting next to each other using a cell phone", + "pred": "a woman sitting next to a man on a bench" + }, + { + "label": "three women sitting on a train seat on cellphones", + "pred": "women sitting on top of a bus" + }, + { + "label": "two men playing a video game in the house", + "pred": "a woman standing in front of a television holding a nintendo wii controller" + }, + { + "label": "a baseball player, taken by walzl's imperial portrait studios", + "pred": "a man holding a baseball bat on top of a field" + }, + { + "label": "a man is talking on the phone while working on the computer", + "pred": "a man sitting on a couch with a laptop" + }, + { + "label": "a church steeple that has a clock on it", + "pred": "a clock tower on top of a brick building" + }, + { + "label": "venus williams is swinging at the tennis ball at the game", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "two men using nintendo wii remotes to play a game", + "pred": "a woman standing in front of a television holding a nintendo wii controller" + }, + { + "label": "a man on his phone is on a red bench", + "pred": "a man sitting at a table in front of a laptop" + }, + { + "label": "women playing a game of soccer on field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a person is playing tennis on a dark grass court", + "pred": "a person standing on a tennis court holding a racquet" + }, + { + "label": "a very big country style living room with a wagon wheel", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a large glass vase with some flowers near a big window", + "pred": "a vase filled with flowers sitting on top of a window sill" + }, + { + "label": "two stuffed teddy bears resting next to each other", + "pred": "two teddy bears sitting next to each other" + }, + { + "label": "two men playing with a video game system", + "pred": "a woman standing in front of a television holding a nintendo wii controller" + }, + { + "label": "two barefoot women holding game controllers in each hand", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a large ornate clock with gold colored trim", + "pred": "a clock that is on the side of a building" + }, + { + "label": "the man is swinging the tennis racket in the air", + "pred": "a person standing on a tennis court holding a racquet" + }, + { + "label": "the spaceous living room has a large television and a fireplace", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "i am unable to see an image above", + "pred": "a man sitting on a couch with a laptop" + }, + { + "label": "tennis player preparing to hit ball on standard court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a black woman wearing white attire and shoes running on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "the kitchen is clean and organized ready for us to use", + "pred": "a stove top oven sitting inside of a kitchen" + }, + { + "label": "the laptop was left open on the desk", + "pred": "a desk with a computer and a laptop on it" + }, + { + "label": "young females playing soccer on a green soccer field", + "pred": "young men playing a game of soccer" + }, + { + "label": "a woman who is running and swinging a tennis racket", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a laptop, phone, keys and other accessories sitting on a table", + "pred": "a table topped with electronics and a laptop" + }, + { + "label": "a man sits on the couch and is on laptop and phone", + "pred": "a man sitting on a couch with a laptop" + }, + { + "label": "a tower clock that is in the middle of the city", + "pred": "a clock tower on top of a brick building" + }, + { + "label": "a man throws a tennis ball and poses his racquet", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "women that are talking on the cell phone", + "pred": "women sitting on top of a bus" + }, + { + "label": "women holding video game console controllers", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "female tennis player in full run on a blue court to complete a backhand return", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "two men standing in room playing a game with nintendo wii controllers", + "pred": "a woman standing in front of a television holding a nintendo wii controller" + }, + { + "label": "white teddy bears on a white table", + "pred": "a stuffed teddy bear sitting on top of a table" + }, + { + "label": "a glass vase full of feathers on a table in front of a window", + "pred": "a vase filled with flowers sitting on top of a window sill" + }, + { + "label": "a silver oven sits next to other appliances", + "pred": "a stove top oven sitting inside of a kitchen" + }, + { + "label": "a desk with a computer sitting on top of it", + "pred": "a desk with a computer and a laptop on it" + }, + { + "label": "a laptop, cellphone, mp3 player, and a book are on a table", + "pred": "a table topped with electronics and a laptop" + }, + { + "label": "two women playing the wii game together", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a female tennis player swinging her racket and running", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "clock tower on top of a building outside on a sunny day", + "pred": "a clock tower on top of a brick building" + }, + { + "label": "a building that is heavily lit up and in front of a river", + "pred": "a large clock tower towering over a city at night" + }, + { + "label": "a man who is about to hit tennis ball with a racket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a vase on a table with flowers inside", + "pred": "a vase filled with flowers sitting on top of a window sill" + }, + { + "label": "a tennis player is serving the ball to his opponent", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "looking up at a clock tower with a weather vane", + "pred": "a clock tower on top of a brick building" + }, + { + "label": "commuters using their cell phones during a train ride", + "pred": "women sitting on top of a bus" + }, + { + "label": "the view of a clock tower near a body of water at night", + "pred": "a large clock tower towering over a city at night" + }, + { + "label": "women running after a soccer ball", + "pred": "young men playing a game of soccer" + }, + { + "label": "a downtown city view from a high vantage point at night", + "pred": "a large clock tower towering over a city at night" + }, + { + "label": "a microwave oven with a tray on the bottom", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "a red laptop with earbuds sitting on a table", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a vase filled with peacock feathers sits in front of the window", + "pred": "a vase filled with flowers sitting on top of a window sill" + }, + { + "label": "a glass vase filled with feathers on a table", + "pred": "a vase filled with flowers sitting on top of a window sill" + }, + { + "label": "large white buildings are lit up in the night", + "pred": "a large clock tower towering over a city at night" + }, + { + "label": "electronics, cords, and wires are arranged on the desk", + "pred": "a table topped with electronics and a laptop" + }, + { + "label": "a building with two clock towers next to water at night", + "pred": "a large clock tower towering over a city at night" + }, + { + "label": "three females impatiently waiting. two of them are on their cell phones", + "pred": "women sitting on top of a bus" + }, + { + "label": "a clock that is hanging underneath a glass arch", + "pred": "a clock that is in the middle of a building" + }, + { + "label": "glass tunnel walkway with a large clock at one end", + "pred": "a clock that is in the middle of a building" + }, + { + "label": "a cup holding scissors and other pens and pencils", + "pred": "a pair of scissors sitting on top of a counter" + }, + { + "label": "a microwave oven sitting on a granite countertop", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "two woman wearing no shoes playing video games", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a stainless steel stove and oven with a shelf beside it", + "pred": "a stove top oven sitting inside of a kitchen" + }, + { + "label": "a glass desk and chair with a laptop and keyboard", + "pred": "a desk with a computer and a laptop on it" + }, + { + "label": "scissors with orange handles are in a container with pens", + "pred": "a pair of scissors sitting on top of a counter" + }, + { + "label": "the orange handles of scissors are sticking out of a holder", + "pred": "a pair of scissors sitting on top of a counter" + }, + { + "label": "an indoor archway with a clock on the end of it", + "pred": "a clock that is in the middle of a building" + }, + { + "label": "a silver oven that is next to some silver shelves", + "pred": "a stove top oven sitting inside of a kitchen" + }, + { + "label": "a desk that has a laptop computer on it", + "pred": "a desk with a computer and a laptop on it" + }, + { + "label": "a station hallway has a glass ceiling and clock", + "pred": "a clock that is in the middle of a building" + }, + { + "label": "office supplies that have been grouped together", + "pred": "a pair of scissors sitting on top of a counter" + }, + { + "label": "a girl being photographed holding a baseball bat", + "pred": "a man holding a bat in front of a group of people" + }, + { + "label": "a woman holding up a phone to take a picture of herself in a mirror", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a bowl of uncooked rice and a jar of oil", + "pred": "a variety of foods on a counter top" + }, + { + "label": "two arms typing on a laptop and one hand on a mouse", + "pred": "a person sitting at a desk using a laptop computer" + }, + { + "label": "woman in red shirt holding up a tennis racket on a court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a structure with colorful kites flying from it's side", + "pred": "a variety of colorful kites hanging from the ceiling of a building" + }, + { + "label": "people on a sidewalk next to building with clock", + "pred": "people standing in front of a building with a clock on it" + }, + { + "label": "multicolored wind socks hanging from a patio roof", + "pred": "a variety of colorful kites hanging from the ceiling of a building" + }, + { + "label": "a table with a blender, oil and several seasonings", + "pred": "a variety of foods on a counter top" + }, + { + "label": "a person standing in a room looking at the t.v. screen", + "pred": "a woman standing in front of a projector playing a video game" + }, + { + "label": "a woman that she took of herself", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a strong woman is playing tennis on a court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a baby girl is holding a pink brush as she scratches her head", + "pred": "a little girl holding a pink hairbrush in her hand" + }, + { + "label": "a person holding a bat in the dark", + "pred": "a man holding a bat in front of a group of people" + }, + { + "label": "the young girl is brushing her hair", + "pred": "a little girl holding a pink hairbrush in her hand" + }, + { + "label": "woman in red shirt getting ready to hit tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a woman is playing video games on a screen", + "pred": "a woman standing in front of a projector playing a video game" + }, + { + "label": "a woman is walking towards a screen that is playing a movie", + "pred": "a woman standing in front of a projector playing a video game" + }, + { + "label": "two pink flowers in oddly shaped wood vase", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a wooden vase with flowers on a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a woman being photographed holding a baseball bat", + "pred": "a man holding a bat in front of a group of people" + }, + { + "label": "a woman holding a baseball bat having her photo taken", + "pred": "a man holding a bat in front of a group of people" + }, + { + "label": "two large, purple flowers are in a large vase", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a young girl combing her hair with a pink comb", + "pred": "a little girl holding a pink hairbrush in her hand" + }, + { + "label": "a market area with many kites hanging from roof", + "pred": "a variety of colorful kites hanging from the ceiling of a building" + }, + { + "label": "purple flowers in a wooden vase", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a women who is about to swing at the ball while playing tennis", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a little girl is holding on to a hair brush", + "pred": "a little girl holding a pink hairbrush in her hand" + }, + { + "label": "an asymmetrical vase with a handle holds a couple purple flowers", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a girl grabs her hair and holds onto her hairbrush", + "pred": "a little girl holding a pink hairbrush in her hand" + }, + { + "label": "a woman holding a tennis racquet on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a clock tower on top of a store building in a busy city", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a white samsung microwave oven installed into a natural wood kitchen cabinet", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "a white microwave hangs above the oven under cabinets", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "a clock on a white building in a city", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "white building with clocks located to be viewed from 4 angles", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a grey and white clock tower next to street full of cars", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a dog is sitting on the couch in a living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a dog sitting on a couch and a cat on the floor of a living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a cute black dog sitting on the couch", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a microwave sits built in some cupboards", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "a dog sitting on a big couch looking at the camera man", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a dog on a couch in a living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a microwave attached to a wall", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "the boy is trying to hit the baseball during the game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man in a gray shirt holds his phone as he sits by a man in a white t-shirt", + "pred": "two men sitting at a table with a cell phone" + }, + { + "label": "white microwave oven installed beneath cabinets in kitchens", + "pred": "a microwave oven sitting on top of a kitchen counter" + }, + { + "label": "a laptop on a table with some chairs", + "pred": "a wooden bench sitting in the middle of a garden" + }, + { + "label": "adult males sitting at table during meal in restaurant", + "pred": "two men sitting at a table with a cell phone" + }, + { + "label": "a little boy in a black baseball helmet and a red and white uniform with a blue baseball bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "guys that were eating and are now on their cell phones", + "pred": "two men sitting at a table with a cell phone" + }, + { + "label": "a pair of men sitting at a table in a diner", + "pred": "two men sitting at a table with a cell phone" + }, + { + "label": "green chairs a laptop on a table some plants and trees", + "pred": "a wooden bench sitting in the middle of a garden" + }, + { + "label": "a boy swings his bat at a baseball game as people watch on the bleachers behind him", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "chairs and a table with a laptop on it sitting outside", + "pred": "a wooden bench sitting in the middle of a garden" + }, + { + "label": "baseball team holding batting practice on the field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a building in the city with a clock on the building", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "two males at a table with food and one has a cellphone", + "pred": "two men sitting at a table with a cell phone" + }, + { + "label": "a number of baseball players with bats", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people sitting around two couches", + "pred": "a man sitting on a couch next to a woman in a living room" + }, + { + "label": "a desk area with a computer monitor, keyboard and mouse", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a black refrigerator freezer inside of a kitchen", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a seating area in the middle of a grassy area", + "pred": "a wooden bench sitting in the middle of a garden" + }, + { + "label": "a computer monitor with a keyboard and a mouse", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a very tall clock tower sitting next to a tall glass building", + "pred": "a tall building with a clock on the top of it" + }, + { + "label": "a historical clock tower next to a modern glass window skyscraper", + "pred": "a tall building with a clock on the top of it" + }, + { + "label": "a person holding a broken up cell phone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a man is swinging at a ball during a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman standing next to a man kneeling down on the ground", + "pred": "a woman is holding a kite in a parking lot" + }, + { + "label": "a man standing in front of a tv holding a wii game controller", + "pred": "a woman standing in front of a tv playing a video game" + }, + { + "label": "a laptop computer sitting on top of a white desk", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a woman and a boy untangling a kite on a street", + "pred": "a woman is holding a kite in a parking lot" + }, + { + "label": "a young boy holding a bat at a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "chairs around a table and laptop in a garden", + "pred": "a wooden bench sitting in the middle of a garden" + }, + { + "label": "a large brown sectional sofa has people on it", + "pred": "a man sitting on a couch next to a woman in a living room" + }, + { + "label": "teen baseball player ready to bat while other teammates take practice swings", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a building with a clock that is in front of a building", + "pred": "a tall building with a clock on the top of it" + }, + { + "label": "a large black refrigerator with various bits of paper stuck to it with magnets", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a woman and man hold parts of a kite together", + "pred": "a woman is holding a kite in a parking lot" + }, + { + "label": "a black laptop at a desk with a printer", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "people all sitting on the couch and doing things", + "pred": "a man sitting on a couch next to a woman in a living room" + }, + { + "label": "living room with white chairs and couches, fireplace and books on bookshelves", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a person holding a broken cell phone while looking at the screen", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a person is playing a wii golf game in a living room", + "pred": "a woman standing in front of a tv playing a video game" + }, + { + "label": "a black refridgerator has several things hanging on it", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a pink clock tower rises above a tree line", + "pred": "a clock tower in front of a palm tree" + }, + { + "label": "gauges attached to pipes displayed in dimly lit area", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "a laptop computer is displaying a screen with words", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a clock tower stands in front of a large mirrored sky scraper", + "pred": "a tall building with a clock on the top of it" + }, + { + "label": "a small electronic device sits in the palm of someone's hand", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "palm trees are in the foreground of a picture with a clock tower standing above them", + "pred": "a clock tower in front of a palm tree" + }, + { + "label": "three baseball players holding up bats on a baseball diamond", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a desk top with a monitor and keyboard on it", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a small wood table with a small computer on it", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a blurry image of a gauge on a pipe", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "a black fridge that is reflecting the room", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "people hanging around in a living room with a big couch", + "pred": "a man sitting on a couch next to a woman in a living room" + }, + { + "label": "a room with furniture and a fire place", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "people are sitting on a long coach together", + "pred": "a man sitting on a couch next to a woman in a living room" + }, + { + "label": "an apple computer monitor, keyboard and mouse sits on top of a clean wooden desk", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a large tall building with a clock on the top", + "pred": "a clock tower in front of a palm tree" + }, + { + "label": "a tall tower with a clock stands in front of a skyscraper", + "pred": "a tall building with a clock on the top of it" + }, + { + "label": "a man and a lady on the street with an umbrella", + "pred": "a woman is holding a kite in a parking lot" + }, + { + "label": "two people on a blue and green tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman and a man are putting together a kite", + "pred": "a woman is holding a kite in a parking lot" + }, + { + "label": "a living room has a couch, a chair, and a fireplace", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a woman is playing video games on a small television", + "pred": "a woman standing in front of a tv playing a video game" + }, + { + "label": "round gauges in a very dark place", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "stuffed bears that are sitting on fake grass", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a kitchen area with a chair, tiled floor and a refrigerator", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a laptop seems to have the infamous \"blue screen of death\" on the desk", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a nice setup of stuffed bears having a picnic", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a shot of the blue water with people flying a kite", + "pred": "a person flying a kite over a body of water" + }, + { + "label": "a tall clock tower with bushes and trees", + "pred": "a clock tower in front of a palm tree" + }, + { + "label": "people stand with bats on a field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a living room with a fire place a chair and lamps", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a woman with large black tear drop earrings and a black dress looks at her cell phone", + "pred": "a woman holding a pair of scissors in her right hand" + }, + { + "label": "a red clock tower towering over a lush green park", + "pred": "a clock tower in front of a palm tree" + }, + { + "label": "a kite flying in a beach setting, with people underneath it", + "pred": "a person flying a kite over a body of water" + }, + { + "label": "a close shot of some type of machine, maybe in a factory", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "man in yellow top getting ready to play tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a computer sits on a desk by a printer", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "someone in green is playing a golf game for the wii", + "pred": "a woman standing in front of a tv playing a video game" + }, + { + "label": "stuffed bears are arranged in a display", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a person with a remote in a room", + "pred": "a woman standing in front of a tv playing a video game" + }, + { + "label": "a living room is shown with a seating and lamps", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a clock is shown on the side of a sign", + "pred": "a clock on the side of a building" + }, + { + "label": "elephants on a grass surface", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "two red pressure type valves with pipes nearby", + "pred": "a clock mounted to the side of a wall" + }, + { + "label": "teddy bears dressed and posed for a picnic", + "pred": "a teddy bear sitting next to a bunch of stuffed animals" + }, + { + "label": "a plate with a peanut butter sandwich, ham, and tomatoes", + "pred": "a white plate topped with different types of food" + }, + { + "label": "green and white store front clock in front of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "the plate has bread, meat, eggs and tomatoes", + "pred": "a white plate topped with different types of food" + }, + { + "label": "the young girl using her cell phone is wearing a glowing belt", + "pred": "a woman holding a pair of scissors in her right hand" + }, + { + "label": "a blender is sitting next to a printer", + "pred": "a blender sitting on top of a counter" + }, + { + "label": "a young man in a yellow shirt preparing to serve in an tennis match", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a woman standing while looking at her cell phone", + "pred": "a woman holding a pair of scissors in her right hand" + }, + { + "label": "people on a field playing baseball", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "an old blender and printer sitting on a table", + "pred": "a blender sitting on top of a counter" + }, + { + "label": "a woman looks down at her phone in her hands", + "pred": "a woman holding a pair of scissors in her right hand" + }, + { + "label": "a tennis player grabs an extra ball from his pocket", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "an old blender is sitting next to a printer", + "pred": "a blender sitting on top of a counter" + }, + { + "label": "ham, bread, eggs and tomatoes on a plate", + "pred": "a white plate topped with different types of food" + }, + { + "label": "a large clock on a pole near a building", + "pred": "a clock on the side of a building" + }, + { + "label": "people fly kites in the air", + "pred": "a person flying a kite over a body of water" + }, + { + "label": "a plate of canadian bacon and eggs and pancakes on the table", + "pred": "a white plate topped with different types of food" + }, + { + "label": "a blender laying on a table in a room", + "pred": "a blender sitting on top of a counter" + }, + { + "label": "a young woman looking at her cell phone", + "pred": "a woman holding a pair of scissors in her right hand" + }, + { + "label": "a plate of food on a tray in a room", + "pred": "a white plate topped with different types of food" + }, + { + "label": "a player running the bases of a base ball game while an opposing player goes for the ball", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "people flying a kite on the water", + "pred": "a person flying a kite over a body of water" + }, + { + "label": "people are flying kites and one male has a red tie on", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "a kite is flying over the water of a bay", + "pred": "a person flying a kite over a body of water" + }, + { + "label": "two tennis players on the court and waiting to play", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two stuffed animals on a wooden bench", + "pred": "a brown teddy bear sitting on a wooden bench" + }, + { + "label": "people on a gold course enjoy a few games", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a teddy bear sitting with a finding nemo stuffed animal on a bench", + "pred": "a brown teddy bear sitting on a wooden bench" + }, + { + "label": "a pair of people flying a kite on a unique trail in a park", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a baseball player holding a bat and getting ready for the pitch", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a woman taking pictures on a busy street", + "pred": "a woman talking on a cell phone while standing in front of a building" + }, + { + "label": "a broken piece of equipment is sitting in the persons hand", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a person is holding a small electronic device", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a woman taking a picture on a sunny day", + "pred": "a woman talking on a cell phone while standing in front of a building" + }, + { + "label": "a baseball player is waiting for the pitch while standing in the batters box", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "male baseball players playing a game while fans watch", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "three decorated, carved jack-o-lanterns, one with pink flowers and a vase inside it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a batter getting ready to bat with the catcher and umpire behind him", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "professional baseball players watch the batter, catcher and umpire", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a green table with a old rusty blender and a printer", + "pred": "a blender sitting on top of a counter" + }, + { + "label": "a person sitting down with a cell phone", + "pred": "a man sitting on a couch in a room" + }, + { + "label": "a male and a female holding up their cellphones", + "pred": "a woman talking on a cell phone while standing in front of a building" + }, + { + "label": "people with kites on a city street", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "athletes during game on ball field on cloudy day", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a man sitting on top of a couch holding a smart phone", + "pred": "a man sitting on a couch in a room" + }, + { + "label": "group of teenagers playing with kits in the center of a group of buildings", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "people flying homemade kites in the center of some buildings", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "a jewelry store sign that looks like a clock", + "pred": "a clock on the side of a building" + }, + { + "label": "a man sitting on a black leather couch messing with a phone", + "pred": "a man sitting on a couch in a room" + }, + { + "label": "a man catching a ball in the outfield during a baseball game", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a stuffed teddy bear and memo sitting on a bunch", + "pred": "a brown teddy bear sitting on a wooden bench" + }, + { + "label": "people walking around a park and flying kites", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a teddy bear is next to a goldfish toy", + "pred": "a brown teddy bear sitting on a wooden bench" + }, + { + "label": "people are flying a kite on a windy manicured hill", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a man sitting on a couch with a cell phone", + "pred": "a man sitting on a couch in a room" + }, + { + "label": "a woman taking a picture up at the sky with her phone", + "pred": "a woman talking on a cell phone while standing in front of a building" + }, + { + "label": "a young woman sitting cross legged on an apartment sofa", + "pred": "a woman sitting on a couch in front of a laptop computer" + }, + { + "label": "a woman holding a camera is taking a picture", + "pred": "a woman talking on a cell phone while standing in front of a building" + }, + { + "label": "three jack-o-laturns of various shapes, one of which has flowers in it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man diving for a baseball as another runs towards home plate", + "pred": "baseball players are playing baseball on a field" + }, + { + "label": "a living room filled with furniture and decor", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a den with a couch, table, book shelf and a television", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "halloween jack o' lantern sitting on a floor with flowers and paper cut outs", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a glass table that is next to a window", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a woman sitting cross legged in a living room area", + "pred": "a woman sitting on a couch in front of a laptop computer" + }, + { + "label": "this living room has all white couches and a flat screen tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man who is looking at a baseball bat", + "pred": "a man in a military uniform and a woman in a military uniform" + }, + { + "label": "a woman sitting on a cushion in front of a white table", + "pred": "a woman sitting on a couch in front of a laptop computer" + }, + { + "label": "pumpkins are made with different faces and one has flowers", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man standing with a baseball bat in a room", + "pred": "a man in a military uniform and a woman in a military uniform" + }, + { + "label": "a basic living with a tv, couch, and rack", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a man is holding a baseball bat next to a military dressed man", + "pred": "a man in a military uniform and a woman in a military uniform" + }, + { + "label": "the umpire, catcher, and batter as soon as the batter had swung", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people at a table in a kitchen", + "pred": "a man and woman sitting at a table in a kitchen" + }, + { + "label": "a man and woman are in a kitchen", + "pred": "a man and woman sitting at a table in a kitchen" + }, + { + "label": "woman sitting on top of a couch in front of two laptops", + "pred": "a woman sitting on a couch in front of a laptop computer" + }, + { + "label": "a male and female a cake and a candle", + "pred": "a man and woman sitting at a table in a kitchen" + }, + { + "label": "a close of up a clock that makes the moon look small next to it", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a woman sitting on a couch playing a video game", + "pred": "a woman sitting on a couch holding a nintendo wii game controller" + }, + { + "label": "windows a fireplace books tables and a couch", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a guy showing another guy a base ball bat", + "pred": "a man in a military uniform and a woman in a military uniform" + }, + { + "label": "a major league baseball player is swinging the bat to hit the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "baseball game with batter swinging and large crowd in field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a stove that has a light above it", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a room filled with furniture and very large rugs", + "pred": "a living room filled with lots of furniture" + }, + { + "label": "a man swinging a baseball bat as another looks on", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a clock tower at night time lit up near a view of the moon", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a young woman is playing a video game on a couch", + "pred": "a woman sitting on a couch holding a nintendo wii game controller" + }, + { + "label": "a living room has white furniture and fire place", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a room with a couch, television, and a fireplace", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a hand is holding a cd by a laptop computer", + "pred": "a person holding a lap top computer" + }, + { + "label": "a night sky with a view of the moon and a large roman numeral clock", + "pred": "a clock that is on the side of a building" + }, + { + "label": "the night sky with the moon and a clock face", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a couple in the kitchen with a birthday cake", + "pred": "a man and woman sitting at a table in a kitchen" + }, + { + "label": "a person with a disk in their hand in front of a laptop", + "pred": "a person holding a lap top computer" + }, + { + "label": "a grey and white living room view from above", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a kitchen that has a double oven in the cabinets and a slay electric stove top in the counter", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a living room with large windows", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a kitchen counter, cooktop and double range", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "a couple celebrating a birthday in a kitchen", + "pred": "a man and woman sitting at a table in a kitchen" + }, + { + "label": "a computer tech is getting ready to insert a dvd into his laptop", + "pred": "a person holding a lap top computer" + }, + { + "label": "a room with a couch and a tv in it", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a lady on her phone sitting on a curb", + "pred": "a woman sitting on a sidewalk next to a fire hydrant" + }, + { + "label": "a stove top and an oven in a kitchen with wooden cabinets", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "newly constructed kitchen missing a sink and refrigerator", + "pred": "a kitchen with stainless steel appliances and wood cabinets" + }, + { + "label": "antique living room furniture on display, behind red velvet ropes", + "pred": "a living room filled with lots of furniture" + }, + { + "label": "an elegant room with burgundy and floral furniture", + "pred": "a living room filled with lots of furniture" + }, + { + "label": "a child holding a pink toy cell phone with \"princess aurora\" inside it", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a woman playing a video game while sitting on a couch", + "pred": "a woman sitting on a couch holding a nintendo wii game controller" + }, + { + "label": "a adult that is holding a pink princess phone", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a tour group is guided through a museum", + "pred": "a living room filled with lots of furniture" + }, + { + "label": "a living room with a sloped ceiling over the windows", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a living room with couches a tv and fireplace", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a women sitting down on a couch playing the wii", + "pred": "a woman sitting on a couch holding a nintendo wii game controller" + }, + { + "label": "a sitting room with old furniture roped off to the public", + "pred": "a living room filled with lots of furniture" + }, + { + "label": "an overhead view of a living room that is decorated in white and gray", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "different computers are placed on the desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a large clock face at night with the moon", + "pred": "a clock that is on the side of a building" + }, + { + "label": "someone is holding a pick cellular flip phone", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a man with a racket hits a tennis ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a person holding up a toy cell phone", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "someone holding a fake pink cell phone", + "pred": "a person holding a nintendo wii game controller" + }, + { + "label": "a person sitting on a side walk talking on a cell phone", + "pred": "a woman sitting on a sidewalk next to a fire hydrant" + }, + { + "label": "computers that are sitting on a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "people that are standing in the sand with a kite", + "pred": "a man and woman standing on a beach flying a kite" + }, + { + "label": "a desk with a laptop and holding a disc", + "pred": "a person holding a lap top computer" + }, + { + "label": "a male tennis player jumping in the air while swinging his tennis racket, on a hard surface court, with a scoreboard behind him", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a woman that is sitting on a couch holding a remote", + "pred": "a woman sitting on a couch holding a nintendo wii game controller" + }, + { + "label": "a stuffed teddy bear wearing a shirt that reads \"handle with care\" and a small stuffed sheep", + "pred": "a brown teddy bear sitting next to a white teddy bear" + }, + { + "label": "a man swinging a racket at a tennis ball on a tennis court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a woman sitting on the sidewalk talking on her cell phone", + "pred": "a woman sitting on a sidewalk next to a fire hydrant" + }, + { + "label": "a small office with a laptop, computer, and a printer", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "man walking down a beach with a multicolored kite", + "pred": "a man and woman standing on a beach flying a kite" + }, + { + "label": "a woman standing on a tennis court holding a racquet", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a large computer set up with a desktop computer, laptop, and printer", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a tennis player jumps up to hit a ball on a tennis court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a female tennis player is posed and ready for the ball to come", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man and woman walk down a beach holding a kite", + "pred": "a man and woman standing on a beach flying a kite" + }, + { + "label": "a woman sits on the curb talking on her phone", + "pred": "a woman sitting on a sidewalk next to a fire hydrant" + }, + { + "label": "a man looks at the kite he's holding while another man and woman look off camera in the same direction", + "pred": "a man and woman standing on a beach flying a kite" + }, + { + "label": "little boys playing on a baseball field in baseball uniforms", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a computer sitting on top of a white table with another computer", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a man jumping up on a blue tennis court with a black tennis racket in his hand", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "an umpire officiates a game of little league baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a living room featuring a comfortable seating arrangement of chairs and tables", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a boy playing tennis on a blue and green tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a living with a rug and an end table", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a boy playing baseball at the base ball field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman that is holdng a tennis racket", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a baseball player holding a bat next to home plate", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a young boy playing tennis on a court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a cream colored couch behind the oval coffee table", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a very cozy looking living room with an oval table", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a man sitting on a train next to a woman", + "pred": "a man and a woman sitting at a table with food" + }, + { + "label": "a young boy swings a bat during a children's baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a young woman playing tennis on a grass tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "two stuffed animals posed together in black and white", + "pred": "a brown teddy bear sitting next to a white teddy bear" + }, + { + "label": "two stuffed animals in a black and white picture", + "pred": "a brown teddy bear sitting next to a white teddy bear" + }, + { + "label": "a teddy bear sits by a keyboards and microphone", + "pred": "a teddy bear sitting on top of a computer keyboard" + }, + { + "label": "stuffed bear wearing glasses with electronic audio equipment", + "pred": "a teddy bear sitting on top of a computer keyboard" + }, + { + "label": "a den with couches, a chair, tables and lamps", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a very cute teddy bear with glasses and some items", + "pred": "a teddy bear sitting on top of a computer keyboard" + }, + { + "label": "two stuffed animals of which one appears to be a lamb and the other a bear", + "pred": "a brown teddy bear sitting next to a white teddy bear" + }, + { + "label": "a young man playing tennis as seen from above", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "the kid is playing a game of tennis on the court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a teddy bear that is dress in glasses and is listening to an ipod", + "pred": "a teddy bear sitting on top of a computer keyboard" + }, + { + "label": "a man and women eating a plate of food with chop sticks", + "pred": "a man and a woman sitting at a table with food" + }, + { + "label": "a lady bending down to put her head on a baseball bat", + "pred": "a woman standing on top of a wooden bench" + }, + { + "label": "a man pitching a baseball from a mound on a field", + "pred": "a baseball game in progress with the batter up to bat" + }, + { + "label": "a person bent over sleeping in a chair next to others", + "pred": "a woman sitting on a couch next to a man" + }, + { + "label": "a person that has fallen asleep with a book bag on their lap", + "pred": "a woman sitting on a couch next to a man" + }, + { + "label": "a number of baseball players on a field", + "pred": "a baseball game in progress with the batter up to bat" + }, + { + "label": "guys playing on the nintendo wii at a gathering", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a person leaning with her head on a bat", + "pred": "a woman standing on top of a wooden bench" + }, + { + "label": "a professional baseball game seen from the stands", + "pred": "a baseball game in progress with the batter up to bat" + }, + { + "label": "baseball players are playing baseball on a field", + "pred": "a baseball game in progress with the batter up to bat" + }, + { + "label": "two people on a train with trays of food", + "pred": "a man and a woman sitting at a table with food" + }, + { + "label": "a man and woman are sitting together while the man eats with chopsticks", + "pred": "a man and a woman sitting at a table with food" + }, + { + "label": "guys are playing a game with the controllers", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a woman is standing outside with her head on a bat", + "pred": "a woman standing on top of a wooden bench" + }, + { + "label": "various different pictures of food in a bowl", + "pred": "a table topped with plates of food" + }, + { + "label": "a woman resting her head on top of a baseball bat", + "pred": "a woman standing on top of a wooden bench" + }, + { + "label": "two men are standing while playing a video game", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "two men playing an interactive video game in a room with friends", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a woman falling asleep next to a man, who are both sitting down", + "pred": "a woman sitting on a couch next to a man" + }, + { + "label": "a young lady is playing a baseball bat game", + "pred": "a woman standing on top of a wooden bench" + }, + { + "label": "people sitting on top of a couch near a window", + "pred": "a woman sitting on a couch next to a man" + }, + { + "label": "the four images show the preparation of different stews", + "pred": "a table topped with plates of food" + }, + { + "label": "a woman holding a racquet on top of a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a woman that has fallen asleep next to a man wearing a headset", + "pred": "a woman sitting on a couch next to a man" + }, + { + "label": "a man lies on the beach while someone else holds a kite", + "pred": "a woman sitting on the beach with a kite" + }, + { + "label": "a man standing on top of a sandy beach near a colorful kite", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a microwave sitting on top of a wooden shelf", + "pred": "a microwave sitting on top of a wooden table" + }, + { + "label": "a wooden desk with shelves that have action figures above it", + "pred": "a desk with a computer and a clock on it" + }, + { + "label": "a large living room with a wall painted green", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man lying on a beach by a person with a kite", + "pred": "a woman sitting on the beach with a kite" + }, + { + "label": "two people on a beach flying akite", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a desk with monitors, a keyboard, mouse and toy action figures", + "pred": "a desk with a computer and a clock on it" + }, + { + "label": "a person with their legs in the sand near a kite", + "pred": "a woman sitting on the beach with a kite" + }, + { + "label": "a large building with a clock on the front of it", + "pred": "a clock on the side of a building" + }, + { + "label": "a den with a large coffee table, couch and a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "three stages of cooking a meal are shown, with the end result featured prominently", + "pred": "a table topped with plates of food" + }, + { + "label": "pizza on the plate on the table", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a man laying on top of a sandy beach", + "pred": "a woman sitting on the beach with a kite" + }, + { + "label": "a tall clock tower with a large clock on it's face", + "pred": "a clock on the side of a building" + }, + { + "label": "diffrent trophies on display on the wall", + "pred": "a desk with a computer and a clock on it" + }, + { + "label": "a clock that is on display in the city", + "pred": "a large clock on the side of a building" + }, + { + "label": "a living room with a window view", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a woman tennis player serving a tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "the painting is of a vase of flowers on a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man on a surf board in the ocean", + "pred": "a man standing on top of a surfboard in the ocean" + }, + { + "label": "a man in shorts is laying on the beach", + "pred": "a woman sitting on the beach with a kite" + }, + { + "label": "teddy bears dressed up in clothing sitting on a loveseat together", + "pred": "a brown teddy bear sitting on top of a couch" + }, + { + "label": "a black microwave that is on top of a wooden table", + "pred": "a microwave sitting on top of a wooden table" + }, + { + "label": "a clock is next to palm trees and a high rise", + "pred": "a large clock on the side of a building" + }, + { + "label": "two people standing on the sand of a beach in front of a large colorful kite", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a painting of flowers in vase setting on a table with two chairs", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "very cute stuffed animals on a couch", + "pred": "a brown teddy bear sitting on top of a couch" + }, + { + "label": "para-gliders can be seen in the blue sky", + "pred": "a man standing on top of a surfboard in the ocean" + }, + { + "label": "a tennis match with one of the players serving the ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "people walking past a tall clock", + "pred": "a clock that is on the side of a street" + }, + { + "label": "a very nice looking room with some nice windows", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "the green room has large windows over looking the city", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a slice of food with two doll figurines standing next to it", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "the clock behind glass has roman numeral for numbers", + "pred": "a large clock on the side of a building" + }, + { + "label": "a woman playing tennis throwing the ball in the air ready to serve it", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a microwave that is on the desk top", + "pred": "a microwave sitting on top of a wooden table" + }, + { + "label": "a clock on a building with sky background", + "pred": "a clock on the side of a building" + }, + { + "label": "two people on the sand of a beach area with a man holding the strings to a large parachute that is partially on the sand", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "a microwave on a small table with a device on top of it", + "pred": "a microwave sitting on top of a wooden table" + }, + { + "label": "a collage of photos of plates and pans of food", + "pred": "a table topped with plates of food" + }, + { + "label": "a man out in the water next to his surfboard watching some kites", + "pred": "a man standing on top of a surfboard in the ocean" + }, + { + "label": "a kitchen counter with a microwave and a toaster oven on a shelf", + "pred": "a microwave sitting on top of a wooden table" + }, + { + "label": "women playing video games together", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a man para glides in the water while others do so nearby", + "pred": "a man standing on top of a surfboard in the ocean" + }, + { + "label": "two mini figurines sitting beside a plate with food", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a clock on a building", + "pred": "a clock on the side of a building" + }, + { + "label": "a boy and girl teddy bear are posed next to each other on a couch", + "pred": "a brown teddy bear sitting on top of a couch" + }, + { + "label": "a teddy bear couple sit on a couch together", + "pred": "a brown teddy bear sitting on top of a couch" + }, + { + "label": "a man holds strings connected to a large parachute or kite on the beach", + "pred": "a man is flying a kite on the beach" + }, + { + "label": "two people using an interactive gaming system while a person observes them from a couch", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a large clock in the foreground and a large building", + "pred": "a large clock on the side of a building" + }, + { + "label": "a windsurfer watches people kite surfing at the beach", + "pred": "a man standing on top of a surfboard in the ocean" + }, + { + "label": "a clock that is on the top of a pole", + "pred": "a large clock on the side of a building" + }, + { + "label": "a box full of stuffed animals and other children items", + "pred": "a teddy bear is sitting in a basket" + }, + { + "label": "a woman with a tennis racquet that is on a tennis court", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a living room that has a bunch of different couches", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a stuffed teddy bear sitting in a cardboard box", + "pred": "a teddy bear is sitting in a basket" + }, + { + "label": "a painting that shows a vase with flowers and a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "an clock is encased in the wall of an older building", + "pred": "a clock on the side of a building" + }, + { + "label": "two halloween characters next to a pizza on a table", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a slice of pizza covered in chocolate next to two dolls", + "pred": "a slice of pizza on a plate on a table" + }, + { + "label": "a stuffed animal lays inside of a trash can", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "kites being used by people on a beach", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a young boy taking a swing at a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a living room filled with furniture next to a window", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a card board box with a brown teddy bear and items in it outside on a curb", + "pred": "a teddy bear is sitting in a basket" + }, + { + "label": "a painting of a vase with a sunflower on a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "three good friends are having a good time playing a game", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a desk with a computer and collectible figurines above", + "pred": "a desk with a computer and a clock on it" + }, + { + "label": "a wooden desk topped with a laptop and monitor", + "pred": "a desk with a computer and a clock on it" + }, + { + "label": "a painting of some colorful flowers on a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a kite that someone is flying over a beach", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a teddy bear with a heart is in a green bin", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a boy hitting a tennis all with a racquet", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a large teddy bear with a heart is in the garbage", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a man swinging a tennis racket at a tennis ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two stuffed teddy bears are placed on a couch together", + "pred": "a brown teddy bear sitting on top of a couch" + }, + { + "label": "people are standing around while a kite is being flown", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a kite flies over flags posted on a windy beach", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a player winds up to serve a tennis ball to his opponent", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "two players compete in a video game as another person watches", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a little boy with a red baseball cap playing tennis", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a cardboard box with a teddy bear in the street", + "pred": "a teddy bear is sitting in a basket" + }, + { + "label": "a white refrigerator freezer sitting inside of a kitchen", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a man holding a stick standing next to a green hillside", + "pred": "a man standing on top of a stone wall next to a river" + }, + { + "label": "a woman watching two people play a wii game with wii motes", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a teddy bear inside a basket full of stuff", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "people flying kites on top of a sandy beach", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a teddy bear with a giant heart sits inside a green bin", + "pred": "a teddy bear sitting on top of a trash can" + }, + { + "label": "a boy is hitting a tennis ball on a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man hitting a tennis ball with a tennis racquet", + "pred": "a woman hitting a tennis ball with a tennis racquet" + }, + { + "label": "a boy playing baseball about to hit a ball", + "pred": "a little boy that is standing in the grass with a bat" + }, + { + "label": "a living room with white walls, rectangular windows, and grey and red furniture", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a corner of a kitchen with a big fridge", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a young girl watches a laptop on a bed", + "pred": "a little girl sitting on a bed using a laptop" + }, + { + "label": "a tennis player swinging at the tennis ball", + "pred": "a woman hitting a tennis ball with a tennis racquet" + }, + { + "label": "a very small cute boy playing with a bat", + "pred": "a little boy that is standing in the grass with a bat" + }, + { + "label": "people milling about inside a large space in the winter", + "pred": "a crowd of people standing in front of a large building" + }, + { + "label": "a teddy bear and nooks in a box on a door step", + "pred": "a teddy bear is sitting in a basket" + }, + { + "label": "a room with a couch, chairs, television and a table", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a toddler hitting the ball with a baseball bat in his backyard", + "pred": "a little boy that is standing in the grass with a bat" + }, + { + "label": "two men with back packs and walking sticks", + "pred": "a man standing on top of a stone wall next to a river" + }, + { + "label": "a male tennis player is getting ready to hit the ball", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man looking in the refrigerator with a cat also looking inside", + "pred": "a cat standing on top of a refrigerator door" + }, + { + "label": "old refrigerator in dark, messy store room with tiled floor", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "girls face to a soccer ball during a game", + "pred": "young men playing a game of soccer" + }, + { + "label": "four small teddy bears with tiaras and bows", + "pred": "a stuffed teddy bear sitting on top of a table" + }, + { + "label": "a soccer game where a girl in white is dribbling ahead of the girl in blue", + "pred": "young men playing a game of soccer" + }, + { + "label": "the microwave is closed the clock on it is at 10:14", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "the scissors sit in a containers with pens and markers", + "pred": "a pair of scissors sitting on top of a counter" + }, + { + "label": "kids standing up playing wii with each other", + "pred": "young children standing in a room" + }, + { + "label": "a clock in a large lobby area of a station", + "pred": "a clock that is in the middle of a building" + }, + { + "label": "the red laptop is sitting on the table with headphones", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a microwave oven sits on top of a granite counter", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "teddy bears with princess crowns on", + "pred": "a stuffed teddy bear sitting on top of a table" + }, + { + "label": "two women are playing a wii game at a banquet hall", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a macbook laptop next to a phone, backpack, and various books", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a stuffed bear with others wearing crowns", + "pred": "a stuffed teddy bear sitting on top of a table" + }, + { + "label": "the man is flying his kite in the sky", + "pred": "a man flying a kite in a grassy field" + }, + { + "label": "chrome colored toaster oven with time on 10.14", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "group of women sitting down on a public train together", + "pred": "women sitting on top of a bus" + }, + { + "label": "the laptop has an mp3 player next to it", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a woman sitting on the couch with her laptop in the house", + "pred": "a woman sitting on a couch with a laptop" + }, + { + "label": "children who are playing video games together", + "pred": "young children standing in a room" + }, + { + "label": "red laptop on a table showing you can learn anywhere", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a laptop computer sits on a black surface next to a wireless mouse", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "four stuffed bears have crowns on their heads", + "pred": "a stuffed teddy bear sitting on top of a table" + }, + { + "label": "people playing the wii together in a room", + "pred": "young children standing in a room" + }, + { + "label": "a small laptop with a mouse next to it", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a full view of a beautiful store in a town", + "pred": "a store front with a display case filled with donuts" + }, + { + "label": "a building top with a clock on it", + "pred": "a clock tower on top of a brick building" + }, + { + "label": "a man standing near home plate swinging a bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "donald duck talking to minney mouse at disney world at christmas", + "pred": "stuffed animals sitting on top of a christmas tree" + }, + { + "label": "young children playing with an interactive video game system", + "pred": "young children standing in a room" + }, + { + "label": "a store that sells teddy bears. there is a huge display in the window", + "pred": "a store front with a display case filled with donuts" + }, + { + "label": "a woman walking past a store front on the sidewalk", + "pred": "a store front with a display case filled with donuts" + }, + { + "label": "young children standing in a room next to each other", + "pred": "young children standing in a room" + }, + { + "label": "a man standing on a lush green field under a kite", + "pred": "a man flying a kite in a grassy field" + }, + { + "label": "a woman in glasses holding a laptop on a courch", + "pred": "a woman sitting on a couch with a laptop" + }, + { + "label": "a an flying a kite in a field away from parked cars and other flying kites", + "pred": "a man flying a kite in a grassy field" + }, + { + "label": "man flying kite in open field near rv park", + "pred": "a man flying a kite in a grassy field" + }, + { + "label": "an entrance to a galeria of some kind", + "pred": "a store front with a display case filled with donuts" + }, + { + "label": "a store with a lot of teddy bears on display", + "pred": "a store front with a display case filled with donuts" + }, + { + "label": "no image here to provide a caption for", + "pred": "a woman sitting on a couch with a laptop" + }, + { + "label": "a man is bluing a kite in an open area", + "pred": "a man flying a kite in a grassy field" + }, + { + "label": "woman showing off very large home made pizza", + "pred": "a woman sitting in front of a large pizza" + }, + { + "label": "boy swinging a bat and about to hit a pitched ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "cole ballew at the bat for his baseball team", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a smiling lady holding up a very big pizza", + "pred": "a woman sitting in front of a large pizza" + }, + { + "label": "a boy swinging a baseball bat at a ball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a mascot is posing next to christmas decorations at the amusement park", + "pred": "stuffed animals sitting on top of a christmas tree" + }, + { + "label": "a woman is showing off a large pizza pie", + "pred": "a woman sitting in front of a large pizza" + }, + { + "label": "a woman standing in front of a camera in a room filled with a group of people", + "pred": "a man on a cell phone in front of a group of people" + }, + { + "label": "a little boy holding a baseball bat by a fence", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a woman holding a large pepperoni pizza at a table", + "pred": "a woman sitting in front of a large pizza" + }, + { + "label": "a woman getting ready to eat a pizza on the table", + "pred": "a woman sitting in front of a large pizza" + }, + { + "label": "people in a room having a meeting while someone is recording it", + "pred": "a man on a cell phone in front of a group of people" + }, + { + "label": "a tennis ball and a woman with a racket on a tennis court", + "pred": "a woman hitting a tennis ball with a racquet" + }, + { + "label": "a girl is sitting on a couch holding a laptop computer", + "pred": "a woman sitting on a couch with a laptop" + }, + { + "label": "an open laptop compute with a computer mouse", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "the white laptop is turned off but left open", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "the computer mouse is in front of the laptop", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a woman in a very short skirt swinging a tennis racquet at a ball", + "pred": "a woman hitting a tennis ball with a racquet" + }, + { + "label": "a girl wearing a hat sits with her laptop", + "pred": "a woman sitting on a couch with a laptop" + }, + { + "label": "a teddy bear laying on top of a bed next to a table with beers", + "pred": "a teddy bear sitting on top of a chair in a field" + }, + { + "label": "a person who is in a duck costume", + "pred": "stuffed animals sitting on top of a christmas tree" + }, + { + "label": "woman tennis player returning a tennis ball", + "pred": "a woman hitting a tennis ball with a racquet" + }, + { + "label": "daisy ducks stands at a christmas decorated disney world", + "pred": "stuffed animals sitting on top of a christmas tree" + }, + { + "label": "a mouse is next to a keyboard on a desk", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a lady operating a video camera in a computer class", + "pred": "a man on a cell phone in front of a group of people" + }, + { + "label": "a giant donald duck standing in front of a christmas tree with lots of toys around it", + "pred": "stuffed animals sitting on top of a christmas tree" + }, + { + "label": "a woman in white mans the camera that is recording the meeting", + "pred": "a man on a cell phone in front of a group of people" + }, + { + "label": "woman in white outfit swinging up to hit tennis ball", + "pred": "a woman hitting a tennis ball with a racquet" + }, + { + "label": "a black mouse with blue light-up parts is next to a gray keyboard", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "an office desk with a computer keyboard and mouse", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a woman standing behind a camera near a laptop computer", + "pred": "a man on a cell phone in front of a group of people" + }, + { + "label": "a chair with a lot of stuffed animals on it sitting beside a small table", + "pred": "a teddy bear sitting on top of a chair in a field" + }, + { + "label": "a red couch next to a brown chair in a living room", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a tall clock sitting next to a fence and a forest", + "pred": "a clock on a pole in front of a tree" + }, + { + "label": "living room with modern furniture and decor", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "the end of a computer keyboard and a blue-illuminated black wireless mouse sit on a table", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "a woman reaching up while jumping to hit a tennis ball", + "pred": "a woman hitting a tennis ball with a racquet" + }, + { + "label": "a girl with a kite running in the grass", + "pred": "a little girl that is standing in the grass with a kite" + }, + { + "label": "a mouse and a keyboard that is sitting on a table", + "pred": "a computer keyboard sitting on top of a desk" + }, + { + "label": "apple desktop computer with white keyboard, mouse and monitor on a desk", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a living room with art on the walls and a couch", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a living room with green couches and paintings", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a little girl is running with her kite in a open field", + "pred": "a little girl that is standing in the grass with a kite" + }, + { + "label": "large stuffed animal posed outdoors as if sitting in a chair with beverages on a table", + "pred": "a teddy bear sitting on top of a chair in a field" + }, + { + "label": "couches in a living room", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "a grey couch and a glass table a very nice house", + "pred": "a living room with a couch and a coffee table" + }, + { + "label": "people playing with interactive gaming units", + "pred": "a crowd of people standing in front of a tv" + }, + { + "label": "people shopping for interactive video games at best buy", + "pred": "a crowd of people standing in front of a tv" + }, + { + "label": "a living room has a fireplace and a piano", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a little girl is running on the grass with a kite", + "pred": "a little girl that is standing in the grass with a kite" + }, + { + "label": "a young girl running with a kite in a field", + "pred": "a little girl that is standing in the grass with a kite" + }, + { + "label": "a tall lamp post clock rises above a wooden fence of a property for sale", + "pred": "a clock on a pole in front of a tree" + }, + { + "label": "the clock is at the top of the pole on the fence", + "pred": "a clock on a pole in front of a tree" + }, + { + "label": "the woman in the dress is holding her drink", + "pred": "a woman standing in front of a refrigerator in a kitchen" + }, + { + "label": "a living room filled with furniture and decor", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a fireplace sitting below a picture mounted to a wall", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a boy holding two remotes in a room", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a monitor screen, mouse, cell phone and a keyboard on the table", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a young boy holding a nintendo wii game controller next to a lego controller", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a vase filled with yellow flowers next to a window", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a living room with a red sofa and a chair", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a white computer monitor sitting above a keyboard", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "two teddy ears are hanging in a window", + "pred": "a teddy bear sitting in the window of a car" + }, + { + "label": "a woman is standing and smiling as she holds a wine glass in front of a refrigerator", + "pred": "a woman standing in front of a refrigerator in a kitchen" + }, + { + "label": "vase sitting next to the window with droopy flowers in it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "stuffed animals hang from a car mirror", + "pred": "a teddy bear sitting in the window of a car" + }, + { + "label": "a glass vase with some flower coming out of it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "people playing games while holding remotes", + "pred": "a crowd of people standing in front of a tv" + }, + { + "label": "two teddy bears hang from the inside of a car", + "pred": "a teddy bear sitting in the window of a car" + }, + { + "label": "a little girl laughs and runs with a kite in a grassy park", + "pred": "a little girl that is standing in the grass with a kite" + }, + { + "label": "the flowers inside of the case are wilting", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "two teddy bears hanging from two strings on a hook", + "pred": "a teddy bear sitting in the window of a car" + }, + { + "label": "two stuffed teddy bears hanging from a rear view mirror", + "pred": "a teddy bear sitting in the window of a car" + }, + { + "label": "people cutting a ribbon on a street", + "pred": "a man standing next to a group of people" + }, + { + "label": "group of people play video games at bestbuy", + "pred": "a crowd of people standing in front of a tv" + }, + { + "label": "people are looking at different television sets", + "pred": "a crowd of people standing in front of a tv" + }, + { + "label": "very tall clock behind wooden fence in residential area", + "pred": "a clock on a pole in front of a tree" + }, + { + "label": "a living room with fireplace, table, and piano", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a room with a chair, couch, mirror and lamp", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a man with a tennis racket gets ready to swing his racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "the old stuff animal is on an old couch next to bottles", + "pred": "a teddy bear sitting on top of a chair in a field" + }, + { + "label": "a boy holding a video game remote next to a remote he made with legos", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a person on a court with a tennis racket", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a big apple monitor that is on a desk", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a monitor sits on a desk in front of a keyboard", + "pred": "a computer monitor sitting on top of a desk" + }, + { + "label": "a boy holds up a homemade game controller", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a boy holding a lego wii mote to a real wii mote", + "pred": "a young boy holding a nintendo wii game controller" + }, + { + "label": "a large metal clock on a pole outside", + "pred": "a clock on a pole in front of a tree" + }, + { + "label": "a living area congaing a couch, table, piano and fireplace", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a man holding a tennis racquet on a court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "an upscale living area containing white and glass furniture with brown accents", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a chair with some kind of stuffed animal on it", + "pred": "a teddy bear sitting on top of a chair in a field" + }, + { + "label": "a well decorated room", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a woman in a short black dress is holding a champagne flute and standing in front of a refrigerator", + "pred": "a woman standing in front of a refrigerator in a kitchen" + }, + { + "label": "a man who is playing tennis on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a glass vase with some flowers coming out of it", + "pred": "a vase sitting on top of a wooden table" + }, + { + "label": "people walk on a side walk next to a clock", + "pred": "a clock that is on the side of a street" + }, + { + "label": "a clock that is at the top of a pole", + "pred": "a clock that is on the side of a street" + }, + { + "label": "a little girl sitting in front of a laptop computer", + "pred": "a little girl sitting on a bed using a laptop" + }, + { + "label": "a man standing in a living room holding a nintendo wii game controller", + "pred": "two men are playing a video game together" + }, + { + "label": "blurred images of people walk past a huge clock on a street", + "pred": "a clock that is on the side of a street" + }, + { + "label": "a man uses a pair of big scissors to cut a pink ribbon", + "pred": "a man standing next to a group of people" + }, + { + "label": "a fireplace a table couch piano lights and a picture", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a glass vase with dying flowers in it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a women holding a drink in front of the refrigerator", + "pred": "a woman standing in front of a refrigerator in a kitchen" + }, + { + "label": "a woman standing in front of a refrigerator freezer in a black dress", + "pred": "a woman standing in front of a refrigerator in a kitchen" + }, + { + "label": "people walking by a clock on the street", + "pred": "a clock that is on the side of a street" + }, + { + "label": "a man swinging a tennis racquet on top of a tennis court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a room with a full wall of windows with multiple sofas and chairs", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a male tennis player in a white shirt", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a glass table sitting next to a couch and chair", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a room witb a statue, bookshelves, books and a vase with flowers in it", + "pred": "a vase sitting on top of a wooden table" + }, + { + "label": "a young kid hitting a baseball with a bat close to some chairs", + "pred": "a little boy that is standing in the grass with a bat" + }, + { + "label": "a person standing on top of a beach flying a kite", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a woman with a badly bruised face holding a stuffed animal", + "pred": "a woman holding a teddy bear in front of her face" + }, + { + "label": "a man standing on a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a metallic refrigerator freezer sitting in a kitchen", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "people walking across an airport", + "pred": "a crowd of people standing in front of a large building" + }, + { + "label": "a little child sitting in front of a laptop watching whats is on the screen", + "pred": "a little girl sitting on a bed using a laptop" + }, + { + "label": "a young man hitting a ball with a racquet", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a desk with a vase containing flowers, a sculpture of a man's head and shelves behind it", + "pred": "a vase sitting on top of a wooden table" + }, + { + "label": "a man cutting a ribbon at a ceremony", + "pred": "a man standing next to a group of people" + }, + { + "label": "a tennis player hitting a ball on the court", + "pred": "a woman hitting a tennis ball with a tennis racquet" + }, + { + "label": "a statue next to a vase of flowers on a shelf", + "pred": "a vase sitting on top of a wooden table" + }, + { + "label": "a kitchen has a plain white fridge in the corner", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a refrigerator in the corner of a kitchen just off the dining room", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "people on the sidewalk watching two young children", + "pred": "a man standing next to a group of people" + }, + { + "label": "people holding a large pair of scissors to a ribbon", + "pred": "a man standing next to a group of people" + }, + { + "label": "a man walking across a dirt field next to a street with traffic", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "three people with cups on the couch and one with remote standing", + "pred": "two men are playing a video game together" + }, + { + "label": "a little girl sitting on a bed looking at a laptop", + "pred": "a little girl sitting on a bed using a laptop" + }, + { + "label": "people at a convention inside of a large building", + "pred": "a crowd of people standing in front of a large building" + }, + { + "label": "a white room with a large window and a glass dining table and white chairs", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a white decorated living room with a set dining room table", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a room showing a very big fridge and a dining table", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a man holding a motion controlled video game controller", + "pred": "two men are playing a video game together" + }, + { + "label": "the bust of a man's head is next to a vase of flowers", + "pred": "a vase sitting on top of a wooden table" + }, + { + "label": "a room with a couch, chairs, lamps, a table and curtains", + "pred": "a living room filled with furniture and a table" + }, + { + "label": "a small copper vase with some flowers in it", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a single vase with white and purple lilacs", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "man with video game controller in living room with onlooker seated nearby", + "pred": "two men are playing a video game together" + }, + { + "label": "people walking and loitering around a train station clock and ticket machines", + "pred": "a crowd of people standing in front of a large building" + }, + { + "label": "a crowd of people standing around each other", + "pred": "a crowd of people standing around each other" + }, + { + "label": "a large crowd of people walking through town near a large clock display with a christmas tree", + "pred": "a crowd of people standing in front of a large building" + }, + { + "label": "a batter ready to swing at home plate with an umpire and catcher behind him", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people looking at some kind of show or exhibit", + "pred": "a woman holding a cell phone while standing in front of a crowd of people" + }, + { + "label": "a man playing a video game while two men sit on a couch", + "pred": "two men are playing a video game together" + }, + { + "label": "a stainless steel refrigerator is next to the kitchen cabinets", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a laptop on the table and a baby looking at it", + "pred": "a little girl sitting on a bed using a laptop" + }, + { + "label": "a male tennis player swinging at a tennis ball", + "pred": "a woman hitting a tennis ball with a tennis racquet" + }, + { + "label": "a stainless steel refrigerator in a kitchen", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "person running along the beach flying a kite", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a stainless steel style refrigerator in a kitchen", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "someone is holding a large teddy bear in the crowd", + "pred": "a crowd of people standing around each other" + }, + { + "label": "men and women gathered together outside", + "pred": "a crowd of people standing around each other" + }, + { + "label": "a white male taking pictures with his cellphone", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a woman dressed up in a costume talking on a cell phone", + "pred": "a woman in a hat talking on a cell phone" + }, + { + "label": "a baseball player holding a bat during a game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people dressed as zombies walking down the street", + "pred": "a large group of people walking down a street" + }, + { + "label": "an injured woman holding a teddy bear close to her chest", + "pred": "a woman holding a teddy bear in front of her face" + }, + { + "label": "people are standing around holding video game controllers", + "pred": "a woman holding a cell phone while standing in front of a crowd of people" + }, + { + "label": "three students check their cell phones in a classroom", + "pred": "a man and a woman looking at a cell phone" + }, + { + "label": "a man takes a black and white selfie with a phone", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a three door fridge is in a cluttered kitchen", + "pred": "a stainless steel refrigerator in a kitchen" + }, + { + "label": "a little room and dining room area with furniture", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a tennis player hits the ball up from the racket", + "pred": "a woman hitting a tennis ball with a tennis racquet" + }, + { + "label": "a crowd of people standing around looking at the tv", + "pred": "a woman holding a cell phone while standing in front of a crowd of people" + }, + { + "label": "a man holding a stick while looking up", + "pred": "a man standing on top of a stone wall next to a river" + }, + { + "label": "a man is flying a kite along the shore", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a man playing tennis on a court in a neighborhood", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a woman in a costume speaks on a cellphone", + "pred": "a woman in a hat talking on a cell phone" + }, + { + "label": "a beat up girl holding a teddy bear", + "pred": "a woman holding a teddy bear in front of her face" + }, + { + "label": "a male baseball player wearing red and white is up to bat", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "young and older people standing around", + "pred": "a woman holding a cell phone while standing in front of a crowd of people" + }, + { + "label": "three people search their cell phones while sitting at a table", + "pred": "a man and a woman looking at a cell phone" + }, + { + "label": "a woman is hugging a stuffed mouse close to herself", + "pred": "a woman holding a teddy bear in front of her face" + }, + { + "label": "a baseball player with a bat on the field", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the man is taking a photo of him self with his cellphone", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a guy is running at the ocean and is pulling on string to keep his kite flying", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a baseball player in a red shirt is ready to hit the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a young woman with bruised face and bloody now holding a stuffed animal mouse in her arms", + "pred": "a woman holding a teddy bear in front of her face" + }, + { + "label": "a living room with a big table next to a book shelf", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a man is taking a selfie using a mirror", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a living room decorated with a modern theme", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a living room with wooden floors and furniture", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "guy sitting down and using his cell during the party", + "pred": "a young man is talking on a cell phone" + }, + { + "label": "a man in an arabic type outfit on a cell phone", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "a large crowd of people walking around while one owns a teddy bear", + "pred": "a crowd of people standing around each other" + }, + { + "label": "a child playing with a plastic bat and ball in a yard next to a garage", + "pred": "a little boy that is standing in the grass with a bat" + }, + { + "label": "a man who is taking a picture with his cell phone", + "pred": "a man taking a picture of himself in the mirror" + }, + { + "label": "a women in costume who is talking on a cell phone", + "pred": "a woman in a hat talking on a cell phone" + }, + { + "label": "a woman on a cell phone with a group of people", + "pred": "a woman in a hat talking on a cell phone" + }, + { + "label": "a number of people in a room with a person playing nintendo wii", + "pred": "a woman holding a cell phone while standing in front of a crowd of people" + }, + { + "label": "two men camping in the woods near rocks", + "pred": "a man standing on top of a stone wall next to a river" + }, + { + "label": "a young guy on a cell phone by a crowd of people", + "pred": "a young man is talking on a cell phone" + }, + { + "label": "a man at a party talking on a cell phone", + "pred": "a young man is talking on a cell phone" + }, + { + "label": "a person with a backpack and a walking stick", + "pred": "a man standing on top of a stone wall next to a river" + }, + { + "label": "a person is sitting at the table reading", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "people walking on a city street dressed up like zombies", + "pred": "a large group of people walking down a street" + }, + { + "label": "a large group of people on a city street", + "pred": "a crowd of people standing around each other" + }, + { + "label": "a person on a cell phone sitting at a table", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "a person on a court near a fence", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "five young people are seen wearing zombie costumes", + "pred": "a large group of people walking down a street" + }, + { + "label": "three people at a desk are looking at their phones", + "pred": "a man and a woman looking at a cell phone" + }, + { + "label": "a man in white is sitting at a table", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "people walk down the street dressed as zombies", + "pred": "a large group of people walking down a street" + }, + { + "label": "the woman wearing a costume among others is using a cell phone", + "pred": "a woman in a hat talking on a cell phone" + }, + { + "label": "the large room has a wooden table with chairs and a couch", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a big man running to hit a tennis ball", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a cat laying on top of a chair in the living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a plate filled with food sitting on a table next to a drink", + "pred": "a pizza sitting on top of a white plate on a table" + }, + { + "label": "the tennis player is running to catch a ball", + "pred": "a man standing on a tennis court holding a racquet" + }, + { + "label": "a man talking a phone up to his face near a crows of people", + "pred": "a young man is talking on a cell phone" + }, + { + "label": "a person on a cell phone in a group of people", + "pred": "a young man is talking on a cell phone" + }, + { + "label": "a living room with a couch and large television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a zombie apocalypse is happening on the street", + "pred": "a large group of people walking down a street" + }, + { + "label": "a man is flying a kite at the beach", + "pred": "a man flying a kite on top of a sandy beach" + }, + { + "label": "a large group of people in a field with kites", + "pred": "a large group of people flying kites in the sky" + }, + { + "label": "a vase full of purple and white flowers", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a plate with pizza, lettuce and ham sit on a plate white we see hands holding silverware and a bottle of wine with glasses", + "pred": "a pizza sitting on top of a white plate on a table" + }, + { + "label": "colorful kites in the sky by several persons in the ground", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a person on a field with a baseball bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a vase with flowers sitting beside a window", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a pizza with lots of greens and meat is sitting on the table", + "pred": "a pizza sitting on top of a white plate on a table" + }, + { + "label": "a white plate of food on a table", + "pred": "a pizza sitting on top of a white plate on a table" + }, + { + "label": "a man in glasses with a gown seated on a table", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "a laptop and a computer mouse on a desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "kites flying over a busy beach area on clear day", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "three people sitting at a table with their cellphones", + "pred": "a man and a woman looking at a cell phone" + }, + { + "label": "a glass vase with three pink flowers and a drink", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "people standing on top of a sandy beach", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a large gathering of people flying their kites", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "a laptop computer sitting on top of a wooden desk", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a wall mounted with a list and other papers", + "pred": "a refrigerator with a lot of magnets on it" + }, + { + "label": "people sitting at a table while using smart phones", + "pred": "a man and a woman looking at a cell phone" + }, + { + "label": "a vase filled with pink flowers on top of a table", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "four people play a game of mixed doubles tennis while another man looks on", + "pred": "people playing tennis on a tennis court" + }, + { + "label": "large crowd gathered to watch decorative a fleet of decorative kites", + "pred": "a large group of people flying kites in the sky" + }, + { + "label": "flowers in a vase sitting on a window seal", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a room with a couch, chair, table and television in it", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a baseball player on a base ball field holding a bat", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a desk with a laptop a mouse and a bottle of water", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a laptop on a desk with an extra keyboard", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a living room with a chair, couch, and a tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a table with a plate that has a pizza on it along with fresh vegetable and meat toppings", + "pred": "a pizza sitting on top of a white plate on a table" + }, + { + "label": "cat sitting on recliner back in room facing the television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "computer desk with laptop open on it with pictures on wall", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a doubles tennis match on a blue court", + "pred": "people playing tennis on a tennis court" + }, + { + "label": "a drink in a mason jar sitting beside a vase of pink flowers", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "people playing doubles tennis on a bright sunny day", + "pred": "people playing tennis on a tennis court" + }, + { + "label": "the small vase on the table is holding three flowers", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "a table with office materials and a laptop on it", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a very dimly lit room with a laptop open", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a vase with a flower and a jar full of juice", + "pred": "a vase filled with pink flowers sitting on a table" + }, + { + "label": "adult players during match play on blue court", + "pred": "people playing tennis on a tennis court" + }, + { + "label": "a lap top that is sitting on a table", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "the refrigerator door is covered with many papers", + "pred": "a refrigerator with a lot of magnets on it" + }, + { + "label": "children are seated in a row and holding electronic keyboards", + "pred": "young men sitting in front of laptops" + }, + { + "label": "a baseball player is getting ready for a pitch", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "boston red sox roster hanging on fridge in middle of other papers", + "pred": "a refrigerator with a lot of magnets on it" + }, + { + "label": "a building with a very pointy roof and a clock", + "pred": "a clock that is on top of a building" + }, + { + "label": "an open refrigerator filled with lots of food", + "pred": "a refrigerator with a lot of food inside of it" + }, + { + "label": "people are flying kites on a crowded field", + "pred": "a large group of people flying kites in the sky" + }, + { + "label": "a microwave oven sitting next to a device near a fence", + "pred": "a microwave sitting on the side of a road" + }, + { + "label": "gold trimmed clock on top of roof of building", + "pred": "a clock that is on top of a building" + }, + { + "label": "the people are flying the kites in the sky", + "pred": "a large group of people flying kites in the sky" + }, + { + "label": "a laptop computer sitting on top of a wooden table", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a laptop computer is turned on at a table", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a laptop computer with a keyboard set upon it", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a living room with a couch and piano", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a kitchen with a clear counter top and wooden cabinets, along with a white dish washer under the counter", + "pred": "a man standing in a kitchen next to a sink" + }, + { + "label": "people on a beach beneath many colorful kites", + "pred": "a crowd of people flying kites on a beach" + }, + { + "label": "people playing tennis on a sunny day", + "pred": "people playing tennis on a tennis court" + }, + { + "label": "an older person standing inside of a kitchen", + "pred": "a man standing in a kitchen next to a sink" + }, + { + "label": "children sit together while playing with plastic laptop computers", + "pred": "young men sitting in front of laptops" + }, + { + "label": "a crowd of people standing on a field flying kites", + "pred": "a large group of people flying kites in the sky" + }, + { + "label": "a woman standing in an un-lived in kitchen", + "pred": "a man standing in a kitchen next to a sink" + }, + { + "label": "a kitchen counter and cabinetry with a large window", + "pred": "a man standing in a kitchen next to a sink" + }, + { + "label": "a man is holding some stuff standing by the curb", + "pred": "a person standing on a sidewalk next to a fire hydrant" + }, + { + "label": "the clock is built near the roof of a building", + "pred": "a clock that is on top of a building" + }, + { + "label": "two college age boys playing wii while others look on", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a man standing next to the street", + "pred": "a person standing on a sidewalk next to a fire hydrant" + }, + { + "label": "a dell inspiron laptop is sitting on a desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a laptop computer with a laptop keyboard on top of it", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "baseballs players watching a batter at home plate", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a small silver laptop on a wooden table", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a little teddy bear dressed in some bdsm gear and chains", + "pred": "a brown and white teddy bear sitting on a blanket" + }, + { + "label": "a clock on a building with a sky background", + "pred": "a clock that is on top of a building" + }, + { + "label": "a list on a wall near other pieces of paper", + "pred": "a refrigerator with a lot of magnets on it" + }, + { + "label": "minority school children gaze down at computers in a row", + "pred": "young men sitting in front of laptops" + }, + { + "label": "an inspirion laptop sitting on the top of a table which is wood", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "the batting line up is pinned on the fridge so everyone can see it", + "pred": "a refrigerator with a lot of magnets on it" + }, + { + "label": "a person is holding up an old cellphone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "kids holding computers on their laps", + "pred": "young men sitting in front of laptops" + }, + { + "label": "we are looking up at a clock in the peak of a roof", + "pred": "a clock that is on top of a building" + }, + { + "label": "a man holding a baseball bat in his hands", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the microwave is out on the side of the street", + "pred": "a microwave sitting on the side of a road" + }, + { + "label": "a teddy bear dressed up in bondage gear", + "pred": "a brown and white teddy bear sitting on a blanket" + }, + { + "label": "a microwave that is sitting outside in the street", + "pred": "a microwave sitting on the side of a road" + }, + { + "label": "a man is holding a baseball bat at a game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a baby grand piano sits in the corner of the living room", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "the old woman is in the kitchen ready to make food", + "pred": "a man standing in a kitchen next to a sink" + }, + { + "label": "a microwave on the floor that is on display", + "pred": "a microwave sitting on the side of a road" + }, + { + "label": "a large piano in a home living room", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a split photo of a person standing on a street corner", + "pred": "a person standing on a sidewalk next to a fire hydrant" + }, + { + "label": "children work on green and white laptop computers", + "pred": "young men sitting in front of laptops" + }, + { + "label": "the two men are playing video games while others watch", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "people standing in a room with some remotes", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "the refrigerator and the inside door are full of food", + "pred": "a refrigerator with a lot of food inside of it" + }, + { + "label": "batter taking swing at ball at home plate during sanctioned game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a white stuffed bear is dressed up in some gear", + "pred": "a brown and white teddy bear sitting on a blanket" + }, + { + "label": "microwave and other appliance sitting outdoors on pavement against a fence", + "pred": "a microwave sitting on the side of a road" + }, + { + "label": "a pair of chairs on a curb, and a man carrying a chair on the sidewalk", + "pred": "a person standing on a sidewalk next to a fire hydrant" + }, + { + "label": "the teddy bear is all chained up on the bed", + "pred": "a brown and white teddy bear sitting on a blanket" + }, + { + "label": "men on a field playing baseball", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a grand piano in a formal residential living room", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a stuffed bear that is wearing a mask", + "pred": "a brown and white teddy bear sitting on a blanket" + }, + { + "label": "a refrigerator that is filled with food", + "pred": "a refrigerator with a lot of food inside of it" + }, + { + "label": "a large round piece of bread on a metal pan", + "pred": "a loaf of bread sitting on top of a stove top oven" + }, + { + "label": "a person holding a walkie talkie in their left hand", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a smart phone at different angles with windows", + "pred": "two cell phones sitting next to each other on a table" + }, + { + "label": "piano in living room area of residential home", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "an athlete is performing on a sports field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "open fridge door displaying a wide selection of food inside", + "pred": "a refrigerator with a lot of food inside of it" + }, + { + "label": "n open refrigerator door exposing all the food inside", + "pred": "a refrigerator with a lot of food inside of it" + }, + { + "label": "a loaf of bread is sitting on top of a oven", + "pred": "a loaf of bread sitting on top of a stove top oven" + }, + { + "label": "women playing a game of tennis on a tennis court", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "women standing on a tennis court around a man", + "pred": "people standing on a tennis court holding racquets" + }, + { + "label": "two women play tennis on a blue court", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "two friends are playing each other on the wii", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a hand is holding a gray cellphone and some wires", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a loaf of bread hits on top of an oven", + "pred": "a loaf of bread sitting on top of a stove top oven" + }, + { + "label": "two tennis players standing near the net talking to a woman", + "pred": "people standing on a tennis court holding racquets" + }, + { + "label": "a pink smartphone with windows 8 on the screen", + "pred": "two cell phones sitting next to each other on a table" + }, + { + "label": "a clock is situated atop a colorful tower", + "pred": "a clock tower on the side of a building" + }, + { + "label": "various angle shots of the nokia windows cell phone", + "pred": "two cell phones sitting next to each other on a table" + }, + { + "label": "two men play the nintendo wii console while others watch", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "tennis players on a tennis court", + "pred": "people standing on a tennis court holding racquets" + }, + { + "label": "two women playing in a professional tennis match", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "baseball players a batter catcher and an umpire", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "the front of a house next to an image of a woman holding a small table", + "pred": "a person standing on a sidewalk next to a fire hydrant" + }, + { + "label": "a loaf of freshly baked artisan bread", + "pred": "a loaf of bread sitting on top of a stove top oven" + }, + { + "label": "a living room with hard wood flooring and black furniture", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a yellow not book sitting on top of a desk next to a laptop", + "pred": "a notebook on a table next to a mouse" + }, + { + "label": "a baseball player holding a bat next to home plate", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a laptop computer sitting on a truck table", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a tall green clock tower sitting in the middle of a sidewalk", + "pred": "a clock tower on the side of a building" + }, + { + "label": "a colourful building has a clock at the top", + "pred": "a clock tower on the side of a building" + }, + { + "label": "a tall green and yellow building with a clock at the top", + "pred": "a clock tower on the side of a building" + }, + { + "label": "a white refrigerator freezer covered in magnets and pictures", + "pred": "a refrigerator with many magnets and pictures on it" + }, + { + "label": "a large green building with a clock at the top of it", + "pred": "a clock tower on the side of a building" + }, + { + "label": "kind of bread that is on a pan", + "pred": "a loaf of bread sitting on top of a stove top oven" + }, + { + "label": "a yellow book with a black pen on it", + "pred": "a notebook on a table next to a mouse" + }, + { + "label": "people that are playing in a field", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man that is holding some kind of radio", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "an old refrigerator stands against a wood-panelled wall", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "people that are on a tennis court", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "adults enjoying game of badminton on grassy field", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man and a cat looking inside a fridge", + "pred": "a cat standing on top of a refrigerator door" + }, + { + "label": "an old refrigerator sitting in a room", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "a very tall church with a clock below a tower", + "pred": "a clock tower on top of a building" + }, + { + "label": "stuffed animals sitting on top of a wall", + "pred": "a brown teddy bear sitting on top of a rock" + }, + { + "label": "a building that has a large clock on it", + "pred": "a clock tower on top of a building" + }, + { + "label": "a laptop on a table that looks like a tank", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a park bench that has a teddy bear on it", + "pred": "a brown teddy bear sitting on top of a wooden bench" + }, + { + "label": "a batter, catcher and umpire in a baseball game with man recording", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the person is looking in the refrigerator while the cat looks on", + "pred": "a cat standing on top of a refrigerator door" + }, + { + "label": "the people are standing and talking on the tennis court", + "pred": "people standing on a tennis court holding racquets" + }, + { + "label": "a yellow notebook on a black desk", + "pred": "a notebook on a table next to a mouse" + }, + { + "label": "a new nokia phone has the features to muti-task", + "pred": "two cell phones sitting next to each other on a table" + }, + { + "label": "a man is seen holding a very old cellphone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "people sitting together eating pizza", + "pred": "people sitting around a table eating pizza" + }, + { + "label": "a kitchen with a refrigerator near a pair of shoes", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "the notebook and pen is laying next to the laptop", + "pred": "a notebook on a table next to a mouse" + }, + { + "label": "a large group of people are eating pizza in an office", + "pred": "people sitting around a table eating pizza" + }, + { + "label": "a rock like table with a notebook and pen on it", + "pred": "a notebook on a table next to a mouse" + }, + { + "label": "a woman sitting on a laptop computer next to a cat", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "people playing a weird game of tennis frisbee", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "we are looking at multiple views of a windows phone", + "pred": "two cell phones sitting next to each other on a table" + }, + { + "label": "two women playing tennis at a professional court", + "pred": "a woman standing on top of a tennis court holding a racquet" + }, + { + "label": "an ornate clock and watchtower on top of a building", + "pred": "a clock tower on top of a building" + }, + { + "label": "a home bar with different drink ingredients under a large decorative sign saying, \"pub\"", + "pred": "a kitchen area with a sink, counter, and utensils" + }, + { + "label": "a man standing next to another man wearing headphones", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a black and white teddy bear sitting on a park bench", + "pred": "a brown teddy bear sitting on top of a wooden bench" + }, + { + "label": "a fridge stands in the corner of a room", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "a messy living room with various items and some celebratory balloons", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "people sitting around eating pizza together", + "pred": "people sitting around a table eating pizza" + }, + { + "label": "a laptop computer sitting on top of a homemade machine with wheels", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "four stuffed animals", + "pred": "a brown teddy bear sitting on top of a rock" + }, + { + "label": "two people in shorts are playing with tennis rackets on a grassy field", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a sign with the word pub sits on a wall and underneath it on a table is a blender and three bottles of variety of alcohol and some flavoring", + "pred": "a kitchen area with a sink, counter, and utensils" + }, + { + "label": "the action in an organized youth baseball game", + "pred": "a young boy swinging a baseball bat during a baseball game" + }, + { + "label": "a cat looking in a refrigerator with it's human", + "pred": "a cat standing on top of a refrigerator door" + }, + { + "label": "a large building can be seen in the background with a clock on it's face", + "pred": "a clock tower on top of a building" + }, + { + "label": "a large refrigerator covered in magnets, photos and postcards", + "pred": "a refrigerator with many magnets and pictures on it" + }, + { + "label": "people talking to a referee on a tennis court", + "pred": "people standing on a tennis court holding racquets" + }, + { + "label": "fourteen college guys, and one woman, all eating pizza together", + "pred": "people sitting around a table eating pizza" + }, + { + "label": "a cat stands on top of a blue electric device", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "a young kid with a baseball bat gets ready for the pitch", + "pred": "a young boy swinging a baseball bat during a baseball game" + }, + { + "label": "an all terrain robot with a laptop sitting on it in a lab", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a man standing in front of a clock", + "pred": "a man standing next to a clock on a table" + }, + { + "label": "three teddy bears and a stuffed cat on a stone wall", + "pred": "a brown teddy bear sitting on top of a rock" + }, + { + "label": "a man is standing with his hands on a table", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a refrigerator with a variety of magnets and pictures on it", + "pred": "a refrigerator with many magnets and pictures on it" + }, + { + "label": "baseball players are playing baseball on a field", + "pred": "a young boy swinging a baseball bat during a baseball game" + }, + { + "label": "a teddy bear sitting on a bench in the middle of the park", + "pred": "a brown teddy bear sitting on top of a wooden bench" + }, + { + "label": "a refrigerator that is covered in magnets from top to bottom", + "pred": "a refrigerator with many magnets and pictures on it" + }, + { + "label": "a woman and man playing tennis on a field", + "pred": "a woman holding a tennis racquet on top of a tennis court" + }, + { + "label": "a spire over a beautiful brick building behind red tiled roofs", + "pred": "a clock tower on top of a building" + }, + { + "label": "a bouquet of mylar balloons in a living room", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a small tank like vehicle with wheels and a camera attached to the top, along with a laptop computer resting on top of it", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "baseball players are playing baseball and a camera man", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "four stuffed animals, a leopard and three teddy bears, in a row sitting on a stone ledge with grass and trees behind", + "pred": "a brown teddy bear sitting on top of a rock" + }, + { + "label": "a teddy bear sitting on top of a wooden bench", + "pred": "a brown teddy bear sitting on top of a wooden bench" + }, + { + "label": "a blender sitting next to bottles of booze under a sign that reads pub", + "pred": "a kitchen area with a sink, counter, and utensils" + }, + { + "label": "a young man holding a bat on top of a baseball field", + "pred": "a young boy swinging a baseball bat during a baseball game" + }, + { + "label": "people are sitting together eating pizza and talking", + "pred": "people sitting around a table eating pizza" + }, + { + "label": "a cat sitting on top of a blue refrigerator", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "a vendor has lots of different vases for sale", + "pred": "a number of pots and pans on display in a room" + }, + { + "label": "pottery at a very old store", + "pred": "a number of pots and pans on display in a room" + }, + { + "label": "teddy bears sitting on a stone wall", + "pred": "a brown teddy bear sitting on top of a rock" + }, + { + "label": "images form a picture of a computer monitor on a desk", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "a black and white teddy bear sitting on a bench", + "pred": "a brown teddy bear sitting on top of a wooden bench" + }, + { + "label": "players at a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the tray on the bed has a pastry and two mugs on it", + "pred": "a tray of food on a bed next to a cup of coffee" + }, + { + "label": "a kid is swinging a baseball bat at a game", + "pred": "a young boy swinging a baseball bat during a baseball game" + }, + { + "label": "potted plants sitting on a glass table", + "pred": "a table topped with a vase filled with flowers" + }, + { + "label": "a workspace inside an office with snowy trees outside the window", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a woman holding a phone in one hand up to her ear", + "pred": "a woman holding a cell phone to her ear" + }, + { + "label": "a big clock on a blue pole in a small downtown town", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a man wearing an orange shirt holding up a tiny kite", + "pred": "a man holding up a colorful kite in a kitchen" + }, + { + "label": "a woman talking on a phone sitting next to glasses", + "pred": "a woman holding a cell phone to her ear" + }, + { + "label": "a glass top table with flowers and paper cards", + "pred": "a table topped with a vase filled with flowers" + }, + { + "label": "a computer monitor sitting on top of a desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a beautiful view of a glass full of items", + "pred": "a table topped with a vase filled with flowers" + }, + { + "label": "people are enjoying themselves playing game", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a screen in the living room", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "an old person is holding a tennis racket", + "pred": "a woman holding a tennis racquet on top of a lush green field" + }, + { + "label": "a young girl sits in front of a computer holding a phone", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "round glass table full of potted plants and description cards", + "pred": "a table topped with a vase filled with flowers" + }, + { + "label": "a woman talking on the phone looks in the distance", + "pred": "a woman holding a cell phone to her ear" + }, + { + "label": "this man is showing off the kite he made for his wife", + "pred": "a man holding up a colorful kite in a kitchen" + }, + { + "label": "a shop with a bunch of signs sitting out front", + "pred": "a store window with a stuffed animal on it" + }, + { + "label": "a large glass table topped with different types of plants", + "pred": "a table topped with a vase filled with flowers" + }, + { + "label": "a man is standing in his kitchen holding a yellow kite", + "pred": "a man holding up a colorful kite in a kitchen" + }, + { + "label": "a man holding a tennis racquet in the yard", + "pred": "a woman holding a tennis racquet on top of a lush green field" + }, + { + "label": "a computer is lit up on the checkout counter", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a living room filled with furniture and a book shelf filled with books", + "pred": "a person laying on a couch in a living room" + }, + { + "label": "a man holding a yellow kite while standing in a room", + "pred": "a man holding up a colorful kite in a kitchen" + }, + { + "label": "a woman sitting in front of several glasses, talking on her phone", + "pred": "a woman holding a cell phone to her ear" + }, + { + "label": "young boys standing around a boy with a baseball bat", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a man standing in the grass holding a tennis rackett", + "pred": "a woman holding a tennis racquet on top of a lush green field" + }, + { + "label": "computer monitors sitting on top of a wooden desk", + "pred": "a desk with two computer monitors and a keyboard" + }, + { + "label": "an enormous black teddy bear in front of a teddy bear shop", + "pred": "a store window with a stuffed animal on it" + }, + { + "label": "an office work station with two computer monitors, and laptop", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a lap top computer on the desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "the store front of a teddy bear shop", + "pred": "a store window with a stuffed animal on it" + }, + { + "label": "the man is holding an object in his hand", + "pred": "a man holding up a colorful kite in a kitchen" + }, + { + "label": "the tower of the building has a clock displayed on it", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "a little boy with a baseball bat in hand", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "computer monitors sitting on top of a desk", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a clock tower overlooking two shorter brick buildings", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "a living room has an over stacked bookcase", + "pred": "a person laying on a couch in a living room" + }, + { + "label": "a large brick tower on a tall building", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "a teddy bear store is decorated with signs and bears", + "pred": "a store window with a stuffed animal on it" + }, + { + "label": "a baseball player holding a bat while standing on a field", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man in a defensive stance holding a racquet", + "pred": "a woman holding a tennis racquet on top of a lush green field" + }, + { + "label": "a very tall brick clock tower with a clock on it's side", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "a boy swinging a baseball bat on a field near others", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a computer desk has two monitors and other equipment on it", + "pred": "a desk with two computer monitors and a keyboard" + }, + { + "label": "the desk has two monitors and one laptop on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a long-haired man standing outside holding a racquet with both hands", + "pred": "a woman holding a tennis racquet on top of a lush green field" + }, + { + "label": "a woman with dark hair with a phone to her ear", + "pred": "a woman holding a cell phone to her ear" + }, + { + "label": "a blue clock sitting on the side of a road", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a large teddy bear sits in front of the store", + "pred": "a store window with a stuffed animal on it" + }, + { + "label": "video games are fun for people of all ages", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "a cellphone on a cellphone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "two computer screens that are sitting on a desk", + "pred": "a desk with two computer monitors and a keyboard" + }, + { + "label": "a person sitting at a desk with a monitor and keyboard", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "a man playing wii on a large flat screen tv", + "pred": "a man standing in front of a tv playing a video game" + }, + { + "label": "a desk with two computer monitors, two mice, a cup and a keyboard on it", + "pred": "a desk with two computer monitors and a keyboard" + }, + { + "label": "a desk with a monitor and a keyboard", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "a laptop with mouse set up on a desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a living room with a sofa, a bookcase, and a laptop charging", + "pred": "a person laying on a couch in a living room" + }, + { + "label": "a kid hold a stick in his hands in the air", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a person in the picture by itself", + "pred": "a person cutting a piece of paper on top of a tile floor" + }, + { + "label": "a girl talks on her cell phone next to a computer and a microwave", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "a desk with a monitor and a person holding a laptop", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "an open air zone that looks incredible", + "pred": "a tall brick building with a clock on it's side" + }, + { + "label": "two young boys in a black and white picture are playing baseball", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "two old people in motion while playing a wii", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a young man standing in front of a flat screen tv", + "pred": "a man standing in front of a tv playing a video game" + }, + { + "label": "this computer set up has two monitors and an ergonomic keyboard", + "pred": "a desk with two computer monitors and a keyboard" + }, + { + "label": "the man is standing in front of a television playing a game", + "pred": "a man standing in front of a tv playing a video game" + }, + { + "label": "an elderly man and woman playing on a nintendo wii", + "pred": "a man and a woman playing a video game" + }, + { + "label": "someone's living room contains a bookshelf with lots of books", + "pred": "a person laying on a couch in a living room" + }, + { + "label": "no image to describe for this question", + "pred": "people are flying kites on the beach" + }, + { + "label": "a young boy swinging a baseball bat towards a ball", + "pred": "a young boy hitting a ball with a bat" + }, + { + "label": "a man holding a phone that has a picture on it of a man holding a phone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a pole that has a clock on the top of it", + "pred": "a clock that is on the side of a building" + }, + { + "label": "individual is doing something at the moment that is intriguing", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "a large kite flying high in the sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "the cell phone is gold and hooked up to a wall", + "pred": "a broken cell phone hanging from a wall" + }, + { + "label": "part of a computer screen in front of a laptop", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a giant smart phone attached to a bunch of wires", + "pred": "a broken cell phone hanging from a wall" + }, + { + "label": "a baseball game with a batter ready to swing", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a person sitting on the floor constructing a white kite", + "pred": "a person cutting a piece of paper on top of a tile floor" + }, + { + "label": "a peson talks on a phone while playing on a computer", + "pred": "a woman sitting at a table with a laptop" + }, + { + "label": "an old model phone hanging on the wall", + "pred": "a broken cell phone hanging from a wall" + }, + { + "label": "an old cell phone mounted on a wall above an awning", + "pred": "a broken cell phone hanging from a wall" + }, + { + "label": "a person holding a phone displaying a picture of a person holding a phone twice", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "people are sitting in the stands watching a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a person making a handmade kite", + "pred": "a person cutting a piece of paper on top of a tile floor" + }, + { + "label": "a man holding a tv remote and wii controller", + "pred": "a man standing in a living room holding a wii remote" + }, + { + "label": "a batter, catcher and umpire in a baseball game", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a man holding a silver flip phone open in front of his face", + "pred": "a woman taking a picture of herself with her cell phone" + }, + { + "label": "a little boy is hitting a ball with a bat", + "pred": "a young boy hitting a ball with a bat" + }, + { + "label": "a being is doing something as of right now that is splendid", + "pred": "people are flying kites on the beach" + }, + { + "label": "a large orange and white kite flying in a blue sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "people on a beach fly a kite near the water", + "pred": "people are flying kites on the beach" + }, + { + "label": "a guy in a green shirt holding his cell phone to take a picture", + "pred": "a woman taking a picture of herself with her cell phone" + }, + { + "label": "a child is sitting on the floor and making a kite", + "pred": "a person cutting a piece of paper on top of a tile floor" + }, + { + "label": "a person holding a cell phone with multiple images of their hand holding the phone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a couple is on the beach on the waters edge flying a kite", + "pred": "people are flying kites on the beach" + }, + { + "label": "a colorful parachute in the sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "an ornate clock on the sidewalk", + "pred": "a clock that is on the side of a building" + }, + { + "label": "person taking a photo of a black cellphone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a person crafting a kite around two sticks", + "pred": "a person cutting a piece of paper on top of a tile floor" + }, + { + "label": "a man holding a wii game controller while standing in a living room", + "pred": "a man standing in a living room holding a wii remote" + }, + { + "label": "a castle and the big ben clocktower next to a river", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a guy in a green shirt casually plays the nintendo wii", + "pred": "a man standing in a living room holding a wii remote" + }, + { + "label": "two elderly people are playing an interactive video game", + "pred": "a man and a woman playing a video game" + }, + { + "label": "individual having an astounding time and getting a charge out of some life", + "pred": "a man standing in front of a tv playing a video game" + }, + { + "label": "a decorative street clock on a sidewalk", + "pred": "a clock that is on the side of a building" + }, + { + "label": "somebody left a lap top plugged into the wall on a bench", + "pred": "a person laying on a couch in a living room" + }, + { + "label": "a large gold cellphone is on a wall", + "pred": "a broken cell phone hanging from a wall" + }, + { + "label": "a man is playing nintendo wii in a living room", + "pred": "a man standing in a living room holding a wii remote" + }, + { + "label": "a laptop on the top of a wood desk with a bookcase", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "the enveloping of an outside town in the picture", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a laptop is sitting on a computer desk", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "people standing on a beach flying a kite", + "pred": "people are flying kites on the beach" + }, + { + "label": "a little boy gets ready to hit the ball with his bat", + "pred": "a young boy hitting a ball with a bat" + }, + { + "label": "a man in a green shirt is taking a picture with his cell phone", + "pred": "a woman taking a picture of herself with her cell phone" + }, + { + "label": "man in a park taking a picture with his phone", + "pred": "a woman taking a picture of herself with her cell phone" + }, + { + "label": "a person being taken in this picture", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "men standing around a sidewalk together", + "pred": "a man holding a cell phone while standing next to a group of people" + }, + { + "label": "a baseball game is in action as a batter swings", + "pred": "a baseball player swinging a bat at a ball" + }, + { + "label": "a young boy swings at a ball with a bat", + "pred": "a young boy hitting a ball with a bat" + }, + { + "label": "a dell laptop on a desk is surrounded by cords, books, and papers", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "a man playing wii in a dirty room", + "pred": "a man standing in a living room holding a nintendo wii game controller" + }, + { + "label": "a living room with hard wood floors and a book shelf", + "pred": "a living room filled with furniture and a book shelf" + }, + { + "label": "a large white and red parasail in the blue sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "a baseball player at bat during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a barge floating down a river with the skyline", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a baseball game in progress with the batter up to plate", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "individual is doing something at the moment that is intriguing", + "pred": "a woman taking a picture of herself with her cell phone" + }, + { + "label": "a red and white parachute is in the sky", + "pred": "a kite that is flying in the air" + }, + { + "label": "a small boy with a bat and ball on some grass", + "pred": "a young boy hitting a ball with a bat" + }, + { + "label": "a reading room,in the corner of which paint board with a painting is kept", + "pred": "a living room filled with furniture and a book shelf" + }, + { + "label": "the portable device is displaying a very important message", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a large painting and book shelf in a living room with wood floor", + "pred": "a living room filled with furniture and a book shelf" + }, + { + "label": "people are seated around a dining table", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a living room has guitars, shelves, and a painting", + "pred": "a living room filled with furniture and a book shelf" + }, + { + "label": "a person holding an older model of a smart phone", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a woman riding a bike in the street and a building with a clock", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "men staning in the street and holding cell phones", + "pred": "a man holding a cell phone while standing next to a group of people" + }, + { + "label": "a large group of people flying kites beside a body of water", + "pred": "a large group of people flying kites in a field" + }, + { + "label": "the first base coach watches as one of his players is up at bat", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "tall building sitting on the rivers edge and a barge", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a baseball player is about to make a pitch", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "people at a table eating a meal", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a dog lays in a room with a desk and shelves of files and books", + "pred": "a dog sitting on top of a wooden table next to a book shelf" + }, + { + "label": "group of men and women sitting at a table eating and talking", + "pred": "a large group of people sitting at a table" + }, + { + "label": "all of these men are using their cell phones", + "pred": "a man holding a cell phone while standing next to a group of people" + }, + { + "label": "a computer desk with electronics on it and other desk accessories", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "people on a sidewalk with their mobile phones", + "pred": "a man holding a cell phone while standing next to a group of people" + }, + { + "label": "a room with a painting, books, and guitars", + "pred": "a living room filled with furniture and a book shelf" + }, + { + "label": "a park with kites flying in the bright blue sky", + "pred": "a large group of people flying kites in a field" + }, + { + "label": "people enjoying a meat at a restaurant", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a man playing a game with a remote controller", + "pred": "a man standing in front of a tv playing a video game" + }, + { + "label": "a person holding a smart device in their left hand", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a woman holding a tennis racquet while wearing glasses", + "pred": "a woman holding a tennis racquet in her right hand" + }, + { + "label": "people sitting around a table have a meal and a drink", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a young child and cat in a living room", + "pred": "a dog sitting on a couch in front of a tv" + }, + { + "label": "people in a park flying kites", + "pred": "a large group of people flying kites in a field" + }, + { + "label": "a person holding a cell phone showing a text", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a woman holding a tennis racket in her hand", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a person holding a blackberry cell phone in their hand", + "pred": "a person holding a cell phone in their hand" + }, + { + "label": "a woman prepares to swing her tennis racket", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "girl on bicycle on road in front of large building", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "people moving around on the streets surrounding an old castle", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a tennis player prepares to serve the ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "men are standing on the street behind a barrier, using their cell phones", + "pred": "a man holding a cell phone while standing next to a group of people" + }, + { + "label": "a living room with a mat on a floor and a book shelf filled with books", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a workstation desk filled with computers, a printer, and other electronics", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "the big ben clock tower towering over the city of london", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a lady is riding her bike and approaching the huge castle like building", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "people flying kites on a sandy beach while a bucket sits in the sand", + "pred": "a person flying a kite on a beach" + }, + { + "label": "this computer desk has several laptops and a printer sitting on it", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a kitchen with a refrigerator, stove and oven with cabinets", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a toddler and cat are in a living room with open curtains", + "pred": "a dog sitting on a couch in front of a tv" + }, + { + "label": "a room with pillows, sheets, bookshelves, and hanging lights", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "large open floor space with makeshift bed and shelving with books", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "people outside along with many balloons next to the water", + "pred": "a large group of people flying kites in a field" + }, + { + "label": "a white oven and a white refrigerator are in the kitchen", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "the refrigerator is brand new and was delivered today", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a cat laying on top of a striped chair", + "pred": "a dog sitting on a couch in front of a tv" + }, + { + "label": "a bed set up on the wooden floor of a large wooden house", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a victorian house looked very much like this model one does", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a large room with wooden floors and a bookshelf", + "pred": "a living room filled with furniture and a large window" + }, + { + "label": "a crowd of people standing on top of a field flying colorful kites", + "pred": "a large group of people flying kites in a field" + }, + { + "label": "water traffic along the thames by big ben", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "an old style bedroom with a bed in the middle of it", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "woman talking on cell phone on sidewalk with pedestrians nearby", + "pred": "a woman holding a cell phone in front of a group of people" + }, + { + "label": "a tennis player is swinging at a tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a woman that is sitting down holding a racquet", + "pred": "a woman holding a tennis racquet in her right hand" + }, + { + "label": "a woman with a hand bag on a cell phone next to another woman", + "pred": "a woman holding a cell phone in front of a group of people" + }, + { + "label": "the blonde woman in the red checked shirt is learning to use wii fit", + "pred": "a woman standing next to a man holding a nintendo wii game controller" + }, + { + "label": "people holding wii tennis motes as they look at a screen", + "pred": "a crowd of people standing next to each other" + }, + { + "label": "a couch sitting in a living room in front of a fire place", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a woman wearing glasses holding a tennis racket", + "pred": "a woman holding a tennis racquet in her right hand" + }, + { + "label": "two young people standing in a living room holding game controllers", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a large clock is on the wall where the paint is peeling", + "pred": "a clock that is on the side of a wall" + }, + { + "label": "two people standing on a beach flying a kite", + "pred": "a person flying a kite on a beach" + }, + { + "label": "a young boy walking through a living room towards a cat", + "pred": "a dog sitting on a couch in front of a tv" + }, + { + "label": "a woman attending an exposition about the future", + "pred": "a woman standing next to a man holding a nintendo wii game controller" + }, + { + "label": "a collection of computers and a printer sit on an office desk", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a classroom has letters on the wall and a dog on the floor", + "pred": "a dog sitting on top of a wooden table next to a book shelf" + }, + { + "label": "a person using a photo filter holding a samsung cell phone", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "a boy and a girl play on the wii gaming system", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a person posing with there cell phone with thumbs up", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "a young boy playing in a living room with a large window", + "pred": "a dog sitting on a couch in front of a tv" + }, + { + "label": "a woman raising her arms up so she can serve a tennis ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "the ferris wheel is located in the middle of the water", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "people walk on a beach", + "pred": "a person flying a kite on a beach" + }, + { + "label": "a girl with a tattoo smiles while holding a racket", + "pred": "a woman holding a tennis racquet in her right hand" + }, + { + "label": "a lady talks on a cell phone as people walk by", + "pred": "a woman holding a cell phone in front of a group of people" + }, + { + "label": "a woman is sitting holding a bug swatter shaped like a tennis racket", + "pred": "a woman holding a tennis racquet in her right hand" + }, + { + "label": "two girls are playing video games in a living room", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a man and a woman are holding video game controllers", + "pred": "a man and a woman playing a video game" + }, + { + "label": "the clock is on display on the side of the building outside", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a black and white clock is hanging up outside", + "pred": "a clock that is on the side of a building" + }, + { + "label": "the london eye stands overlooking the thames river, various buildings, and big ben", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "the man and woman are playing a video game", + "pred": "a man and a woman playing a video game" + }, + { + "label": "women are talking on their cellphones", + "pred": "a woman holding a cell phone in front of a group of people" + }, + { + "label": "a pair of smiling young people play a wii game", + "pred": "a man and a woman playing a video game" + }, + { + "label": "the woman uses her cell phone near many others standing on the sidewalk", + "pred": "a woman holding a cell phone in front of a group of people" + }, + { + "label": "a black clock with the word kerttui showing 12:44", + "pred": "a clock that is on the side of a building" + }, + { + "label": "two young people playing a game on a video game console", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a black table and stools sitting next to two windows with shutters", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a man and woman walking the beach with a kite", + "pred": "a person flying a kite on a beach" + }, + { + "label": "a large clock hangs from a building and reads 12:43", + "pred": "a clock that is on the side of a building" + }, + { + "label": "a white desk a keyboard two laptops and a printer", + "pred": "a desk with a computer monitor, keyboard and mouse" + }, + { + "label": "a small pepperoni pizza next to a fork", + "pred": "a pepperoni pizza sitting on top of a white plate" + }, + { + "label": "a ferris wheel water buildings boats and lights", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "people sitting around a table in front of computers", + "pred": "people sitting at tables in a room" + }, + { + "label": "a baseball player swinging and missing the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man in a black shirt and a woman in a white shirt playing a videogame", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a television and some books in a room", + "pred": "a tv sitting on top of a stand in a living room" + }, + { + "label": "a woman holding a cell phone and giving a thumbs up sign", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "a small living room with furniture and two windows", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "small group using laptops and headphones in a classroom", + "pred": "people sitting at tables in a room" + }, + { + "label": "man and women gather around to play a video game", + "pred": "a crowd of people standing next to each other" + }, + { + "label": "a thermometer near a tiled wall beneath trees", + "pred": "a clock that is on the side of a wall" + }, + { + "label": "a beach area that has people on the sand and one person flying a kite overhead", + "pred": "a person flying a kite on a beach" + }, + { + "label": "stark white appliances stand out against brown wooden cabinets", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a spirited game of baseball takes place behind a chain link fence", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a big clock on a pole saying it is 12:43", + "pred": "a clock that is on the side of a building" + }, + { + "label": "the people are playing tennis inside together at the event", + "pred": "a crowd of people standing next to each other" + }, + { + "label": "the pizza is cheesey wiith peporoni for the topping", + "pred": "a pepperoni pizza sitting on top of a white plate" + }, + { + "label": "a woman with a weird looking face holding onto a cell phone", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "kitchen appliances and cabinets as seen through opening", + "pred": "a white refrigerator freezer sitting in a kitchen" + }, + { + "label": "a measuring instrument hanging on the wall of a building who's paint is chipping", + "pred": "a clock that is on the side of a wall" + }, + { + "label": "a daybed in a sitting rooms with a fireplace", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a young lad swings his wilson tennis racquet", + "pred": "a young boy hitting a tennis ball with a tennis racquet" + }, + { + "label": "a small living room with seating and a television", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "the group is working together each with a laptop", + "pred": "people sitting at tables in a room" + }, + { + "label": "stuffed bears are on a bed", + "pred": "stuffed animals sitting on top of a chair" + }, + { + "label": "a man giving a thumps up with a cell phone in hand", + "pred": "a woman holding a cell phone up to her face" + }, + { + "label": "students sit at a conference table with their laptops", + "pred": "people sitting at tables in a room" + }, + { + "label": "a number of people around a large table working on laptop computers", + "pred": "people sitting at tables in a room" + }, + { + "label": "ornate victorian style furnishings and decor in a bedroom", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a woman standing next to another woman in a building", + "pred": "a woman standing next to a man holding a nintendo wii game controller" + }, + { + "label": "a man and woman playing games on the nintendo wii", + "pred": "a man and a woman playing a video game" + }, + { + "label": "a room with woman at a desk next to a brown dog laying on the floor", + "pred": "a dog sitting on top of a wooden table next to a book shelf" + }, + { + "label": "stuffed toy bear with rubber green turtle displayed next to chair", + "pred": "stuffed animals sitting on top of a chair" + }, + { + "label": "young people standing next to each other", + "pred": "a crowd of people standing next to each other" + }, + { + "label": "a room full of shelving and many supplies", + "pred": "a dog sitting on top of a wooden table next to a book shelf" + }, + { + "label": "a dog lies near the table next to bookshelves", + "pred": "a dog sitting on top of a wooden table next to a book shelf" + }, + { + "label": "the small room has a couch, a television, and a table with two stools", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a small bar table and stools set up in the corner of a living room by windows", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a pepperoni pizza sitting on top of a white plate", + "pred": "a pepperoni pizza sitting on top of a white plate" + }, + { + "label": "baseball players in the middle of a game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "baseball batter swinging at a pitch and the catcher trying to catch the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the river has many buildings surrounding it", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "the pizza is on a plate with a fork next to it", + "pred": "a pepperoni pizza sitting on top of a white plate" + }, + { + "label": "a kitchen is shown in midst of repairs", + "pred": "a kitchen with stainless steel appliances and a microwave" + }, + { + "label": "a cloth bag is on the keyboard of a laptop", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a small fully cooked pizza resting on plate next to a fork", + "pred": "a pepperoni pizza sitting on top of a white plate" + }, + { + "label": "a young man standing on a tennis court holding a racquet", + "pred": "a young boy hitting a tennis ball with a tennis racquet" + }, + { + "label": "a ferris wheel that is next to a body of water", + "pred": "a large body of water with a bridge over it" + }, + { + "label": "three teddy bears that are sitting next to each other", + "pred": "stuffed animals sitting on top of a chair" + }, + { + "label": "awake cat near ceiling on a closed refrigerator", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "the people was looking at the balls and chair", + "pred": "a crowd of people standing next to each other" + }, + { + "label": "an unfinished back splash in the kitchen with a microwave and other small kitchen appliances", + "pred": "a kitchen with stainless steel appliances and a microwave" + }, + { + "label": "a kite sitting in the middle of a large body of water", + "pred": "a kite that is floating in the water" + }, + { + "label": "a room that has a small television next to a red chair", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a metallic microwave oven sitting on top of a counter", + "pred": "a kitchen with stainless steel appliances and a microwave" + }, + { + "label": "a silver tv sitting on top of a tv stand", + "pred": "a tv sitting on top of a stand in a living room" + }, + { + "label": "a woman hitting a tennis ball with a racquet", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a temperature gauge that is hanging outdoors", + "pred": "a clock that is on the side of a wall" + }, + { + "label": "a laptop computer sitting on top of a desk", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "an orange room with a bookcase, chairs, and a tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a living room with orange colored walls, and a purple chair", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a cat sitting on top of a metallic refrigerator freezer", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "woman with checkered shirt trying wii fit at expo", + "pred": "a woman standing next to a man holding a nintendo wii game controller" + }, + { + "label": "a clock hangs on a wall of a neglected building", + "pred": "a clock that is on the side of a wall" + }, + { + "label": "a cat sits on top of a fridge in a kitchen", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "a young boy in a red shirt playing tennis", + "pred": "a young boy hitting a tennis ball with a tennis racquet" + }, + { + "label": "a cat stands on top of a refrigerator looking down", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "a boy swinging a tennis racket at a ball on a court", + "pred": "a young boy hitting a tennis ball with a tennis racquet" + }, + { + "label": "women stand in a video game booth", + "pred": "a woman standing next to a man holding a nintendo wii game controller" + }, + { + "label": "a female tennis player jumping to hit a ball", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a silver pan topped with pepperoni pizza on a table", + "pred": "a table topped with plates of pizza on top of a table" + }, + { + "label": "a baseball player is swinging a bat at a ball while the catcher tries to catch it", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "this small room is packed with personal memorabilia", + "pred": "a tv sitting on top of a stand in a living room" + }, + { + "label": "living area with chairs and bookshelves with orange walls", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "two people are playing on a wii in a house", + "pred": "a man and a woman playing a video game" + }, + { + "label": "room in residence with art work and electronic equipment", + "pred": "a tv sitting on top of a stand in a living room" + }, + { + "label": "a person watering plants with a computer", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a long haired cat sitting on a refrigerator", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "a woman jumping with a tennis racket in her hand", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a knit item sitting on a laptop on a desk", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a microwave mounted into a wall next to unfinished cabinets without doors", + "pred": "a kitchen with stainless steel appliances and a microwave" + }, + { + "label": "a little boy playing a game of tennis", + "pred": "a young boy hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man with glasses on playing wii with a wii remote in his hand", + "pred": "a man and a woman sitting on a couch playing nintendo wii" + }, + { + "label": "a woman tries to hit a tennis ball in the air", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "something knitted is lying on top of a laptop", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a chair and a television in a room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "the kite has sank halfway down into the water", + "pred": "a kite that is floating in the water" + }, + { + "label": "a man and woman are playing a video game", + "pred": "a man and a woman sitting on a couch playing nintendo wii" + }, + { + "label": "a person jumping in the air with a tennis racket in their hand", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "these stuffed animals are decor on a bed", + "pred": "stuffed animals sitting on top of a chair" + }, + { + "label": "the three teddy bears sit with their arms around each other", + "pred": "stuffed animals sitting on top of a chair" + }, + { + "label": "a television is sitting in a cluttered room", + "pred": "a tv sitting on top of a stand in a living room" + }, + { + "label": "a teddy bear under some furniture that appears to be turned on it's side", + "pred": "a brown teddy bear sitting in a wooden box" + }, + { + "label": "people in a room with a remote", + "pred": "a man and a woman sitting on a couch playing nintendo wii" + }, + { + "label": "four vases with purple flower in it. there are two different shapes and sizes", + "pred": "three white vases sitting on a counter top" + }, + { + "label": "a man and girl playing with an interactive video game system", + "pred": "a man and a woman sitting on a couch playing nintendo wii" + }, + { + "label": "a microwave that is inside of the wall in a home", + "pred": "a kitchen with stainless steel appliances and a microwave" + }, + { + "label": "people enjoying the nintendo wii", + "pred": "a man and a woman sitting on a couch playing nintendo wii" + }, + { + "label": "a teddy bear from the back on the floor lying on its side, under a table on side, by a brick wall", + "pred": "a brown teddy bear sitting in a wooden box" + }, + { + "label": "something sticking out of the body of water", + "pred": "a kite that is floating in the water" + }, + { + "label": "kite with a person's face designed on it is floating in the water", + "pred": "a kite that is floating in the water" + }, + { + "label": "a brown stuffed animal laying on a piece of wood furniture", + "pred": "a brown teddy bear sitting in a wooden box" + }, + { + "label": "pizzas are sitting on trays on a table", + "pred": "a table topped with plates of pizza on top of a table" + }, + { + "label": "two different shaped white vases on a rack", + "pred": "three white vases sitting on a counter top" + }, + { + "label": "four vases that have butterfly sculptures on them", + "pred": "three white vases sitting on a counter top" + }, + { + "label": "a man is flying a kite at on the shore at the beach", + "pred": "a person flying a kite on a beach" + }, + { + "label": "a person flying a kite on the beach", + "pred": "a person flying a kite on a beach" + }, + { + "label": "square pizzas are sitting on round plates", + "pred": "a table topped with plates of pizza on top of a table" + }, + { + "label": "people hold flying kites in the air by the water", + "pred": "kites flying in the air over a lush green field" + }, + { + "label": "four matching vases are adorned with glass butterflies", + "pred": "three white vases sitting on a counter top" + }, + { + "label": "a kite has fallen from the air in to the water", + "pred": "a kite that is floating in the water" + }, + { + "label": "a teddy bear inside of a wooden frame", + "pred": "a brown teddy bear sitting in a wooden box" + }, + { + "label": "a camera sits on a tripod connected to a laptop", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a camera with a computer is set up on a tripod", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a man flying a colorful kite over a sandy beach", + "pred": "a person flying a kite on a beach" + }, + { + "label": "people on the beach watching the parasailing in the water", + "pred": "a person flying a kite on a beach" + }, + { + "label": "a beach with a woman sitting in the sand guiding a kite", + "pred": "a person flying a kite on a beach" + }, + { + "label": "a camera and tripod is shown with a laptop", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "four metal plates each holding a pizza on a table", + "pred": "a table topped with plates of pizza on top of a table" + }, + { + "label": "four pans of pizza set on a long table", + "pred": "a table topped with plates of pizza on top of a table" + }, + { + "label": "teddy bear on the floor in an up ended table", + "pred": "a brown teddy bear sitting in a wooden box" + }, + { + "label": "a clock is shown with gold detailing around it", + "pred": "a clock on the side of a building" + }, + { + "label": "four different sized vases decorated with various sized butterflys", + "pred": "three white vases sitting on a counter top" + }, + { + "label": "a tripod sitting next to a laptop", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "large ornamental gold and blue clock on the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "kits are tied to a wood fence in this fake picture", + "pred": "kites flying in the air over a lush green field" + }, + { + "label": "kites tied to a fence flying on a windy day", + "pred": "kites flying in the air over a lush green field" + }, + { + "label": "the teddy bear is holding a hockey stick", + "pred": "a teddy bear that is sitting in the snow" + }, + { + "label": "people flying kites of a lush green field", + "pred": "kites flying in the air over a lush green field" + }, + { + "label": "teddy bears do want to be ice hockey players", + "pred": "a teddy bear that is sitting in the snow" + }, + { + "label": "a stuffed animal holding a hockey stick", + "pred": "a teddy bear that is sitting in the snow" + }, + { + "label": "a stuffed animal with a hockey stick", + "pred": "a teddy bear that is sitting in the snow" + }, + { + "label": "camera equipment is set up in a room with vending machines", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a scene with a teddy bear playing hockey", + "pred": "a teddy bear that is sitting in the snow" + }, + { + "label": "young man flying a kite over a grassy area by water", + "pred": "a woman flying a kite on a sunny day" + }, + { + "label": "a filtered image of a microwave available to use in a store", + "pred": "a stove top oven with some food inside of it" + }, + { + "label": "a boy making a face while running to get his kite in the air", + "pred": "a young boy is flying a kite in a field" + }, + { + "label": "an beautifully designed clock tower with gold and blue", + "pred": "a clock on the side of a building" + }, + { + "label": "a woman and small child are trying to fly a kite", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "an ornate clock on the side of a building next to a tree", + "pred": "a clock on the side of a building" + }, + { + "label": "a man holds a bat while a woman watches", + "pred": "a man holding a baseball bat on top of a green field" + }, + { + "label": "a fence with a bunch of kites attached to it", + "pred": "kites flying in the air over a lush green field" + }, + { + "label": "an oven with food cooking on top", + "pred": "a stove top oven with some food inside of it" + }, + { + "label": "a man is at bat ready is playing baseball while a woman watches", + "pred": "a man holding a baseball bat on top of a green field" + }, + { + "label": "the stuffed bear is holding a hockey stick and \"playing\" hockey with them \"watching.\"", + "pred": "a teddy bear that is sitting in the snow" + }, + { + "label": "a young girl flies a kite in the grass by the water", + "pred": "a woman flying a kite on a sunny day" + }, + { + "label": "a man is flying a kite in the middle of a field next to the ocean", + "pred": "a woman flying a kite on a sunny day" + }, + { + "label": "just a little help from mom will get his kite up in the air", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a white-clad tennis player hurls a ball upward to deliver a serve", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a clock tower with a statue on top of it", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a person playing with a kite near the beach", + "pred": "a woman flying a kite on a sunny day" + }, + { + "label": "a microwave oven with some food inside of it", + "pred": "a stove top oven with some food inside of it" + }, + { + "label": "a woman and child play with a kite in a park", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a vending machine for microwaved food with a microwave at the bottom", + "pred": "a stove top oven with some food inside of it" + }, + { + "label": "a statue holding a glass light stands atop an old clock", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a laptop next to two computers, keyboards and some mouses", + "pred": "a desk with two computers on it" + }, + { + "label": "a lady and her child outside playing with a kite", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a man holding a baseball bat at a home plate", + "pred": "a man holding a baseball bat on top of a green field" + }, + { + "label": "man and son standing on the beach side with a self assembled kite", + "pred": "a young boy holding a kite on a beach" + }, + { + "label": "an adult tries to help a child with her kite", + "pred": "a woman and a child flying a kite in a field" + }, + { + "label": "a young woman flies a kite near a body of water", + "pred": "a woman flying a kite on a sunny day" + }, + { + "label": "a boy and a man playing with kites on the beach", + "pred": "a young boy holding a kite on a beach" + }, + { + "label": "the young boy is flying his kite on the beach by the water", + "pred": "a young boy holding a kite on a beach" + }, + { + "label": "two desktop computer and one laptop on the desk", + "pred": "a desk with two computers on it" + }, + { + "label": "an ornate clock on a building with tree branches", + "pred": "a clock on the side of a building" + }, + { + "label": "a clock with a statue of a woman on top", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a man in a head band gets ready to swing a bat", + "pred": "a man holding a baseball bat on top of a green field" + }, + { + "label": "a person looking at their cell phone at another person taking a picture", + "pred": "a person taking a picture of themselves in a mirror" + }, + { + "label": "a street lined with cones with people up and down the sidewalk", + "pred": "a person riding a skateboard down a street" + }, + { + "label": "people are walking down the sidewalk in a city", + "pred": "a person riding a skateboard down a street" + }, + { + "label": "a young boy who is holding a kite in his hands", + "pred": "a young boy holding a kite on a beach" + }, + { + "label": "a person holds a smartphone taking a picture of a bottle and glasses on the table", + "pred": "a person taking a picture of themselves in a mirror" + }, + { + "label": "a man who is holding a baseball bat", + "pred": "a man holding a baseball bat on top of a green field" + }, + { + "label": "a kid is running while pulling a kite behind him", + "pred": "a young boy is flying a kite in a field" + }, + { + "label": "a male tennis player with a racket at the court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman sits on a bench as people walk down a sidewalk", + "pred": "a person riding a skateboard down a street" + }, + { + "label": "a statue is standing on top of a clock on a pole", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a statue holding a lamp on top of a clock", + "pred": "a statue of a man on top of a clock tower" + }, + { + "label": "a vending machine that has some food in it", + "pred": "a stove top oven with some food inside of it" + }, + { + "label": "a girl is playing with a video game controller", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a tennis player is attempting to hit the ball", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a guy in the middle of serving on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a boy is on the beach holding a toy", + "pred": "a young boy holding a kite on a beach" + }, + { + "label": "a young boy is flying a kite in a park", + "pred": "a young boy is flying a kite in a field" + }, + { + "label": "a cellphone sitting on a blue mesh blanket", + "pred": "a cell phone sitting on top of a bed" + }, + { + "label": "a laptop sits on a table next to desktop computers", + "pred": "a desk with two computers on it" + }, + { + "label": "kid is over joyed as he flies his multi colored kite", + "pred": "a young boy is flying a kite in a field" + }, + { + "label": "a boy running while holding onto a kite string", + "pred": "a young boy is flying a kite in a field" + }, + { + "label": "a person holding up a cell phone by a lit candle", + "pred": "a person taking a picture of themselves in a mirror" + }, + { + "label": "a woman takes a picture of the beer on the table", + "pred": "a person taking a picture of themselves in a mirror" + }, + { + "label": "people walking down the street that is crowd", + "pred": "a person riding a skateboard down a street" + }, + { + "label": "a long disk with several laptops and pc computers", + "pred": "a desk with two computers on it" + }, + { + "label": "a young person is playing with a video game controller", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a person showing a picture on their cellular phone", + "pred": "a person taking a picture of themselves in a mirror" + }, + { + "label": "a small cell phone on a blue surface", + "pred": "a cell phone sitting on top of a bed" + }, + { + "label": "a man playing tennis throws the ball in the air", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a woman holding a nintendo wii game controller in her hand", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a girl playing wii holding two remotes", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a woman waiting on a bench on the sidewalk as people go by", + "pred": "a person riding a skateboard down a street" + }, + { + "label": "a smart device sitting on top of a blue blanket", + "pred": "a cell phone sitting on top of a bed" + }, + { + "label": "a girl playing a video game with several other people nearby", + "pred": "a woman holding a nintendo wii game controller" + }, + { + "label": "a phone that is sitting on a blue blanket", + "pred": "a cell phone sitting on top of a bed" + }, + { + "label": "a man holding an oven door open while he looks in it", + "pred": "a man is putting something in an oven" + }, + { + "label": "a kite being flown in the middle of a beach", + "pred": "a person on a beach flying a kite" + }, + { + "label": "one is flying a kite high on the beach", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a baseball player holding a bat next to a dugout", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a man holds down an oven door as he looks into the oven", + "pred": "a man is putting something in an oven" + }, + { + "label": "a batter holding the bat up to hit the ball", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a person that is flying a kite in the sky", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a handicapped man in a wheelchair is being helped to hold the bat by another man on a tee ball", + "pred": "a man holding a baseball bat on top of a baseball field" + }, + { + "label": "a man is bent over opening an oven", + "pred": "a man is putting something in an oven" + }, + { + "label": "a man opening the oven door", + "pred": "a man is putting something in an oven" + }, + { + "label": "a cell phone on a blue item with tiny holes", + "pred": "a cell phone sitting on top of a bed" + }, + { + "label": "a computer keyboard sitting next to a mouse", + "pred": "a computer keyboard and mouse on a desk" + }, + { + "label": "a desk with several monitors under it and two computers and a laptop on top of the desk", + "pred": "a desk with two computers on it" + }, + { + "label": "the kite surfer is standing below the flying kite on a beach", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a major league baseball player gets ready to hit a ball", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "batter warming up near dug out during major game", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a man standing next to another person in a wheel chair", + "pred": "a man holding a baseball bat on top of a baseball field" + }, + { + "label": "batter preparing to swing at pitch during major game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man holding open an oven door in a kitchen", + "pred": "a man is putting something in an oven" + }, + { + "label": "a baseball player swinging a bat over home plate", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a baseball player practicing his swing at a game", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a person flies a parasol while standing in the water by a beach", + "pred": "a person on a beach flying a kite" + }, + { + "label": "the woman is using a laptop that sits on a stack of other laptops", + "pred": "a woman sitting in front of a laptop computer" + }, + { + "label": "a baseball player with a bat in his hand as the pitcher gets ready to throw the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a man helps a disabled baseball player on the mound", + "pred": "a man holding a baseball bat on top of a baseball field" + }, + { + "label": "a man and a child flying a kite", + "pred": "a man and a child flying a kite in a field" + }, + { + "label": "a very busy woman working on her computer", + "pred": "a woman sitting in front of a laptop computer" + }, + { + "label": "an adult and a child in a green field flying a kite", + "pred": "a man and a child flying a kite in a field" + }, + { + "label": "a man is helping an athlete on a sport field", + "pred": "a man holding a baseball bat on top of a baseball field" + }, + { + "label": "a woman props her laptop computer up on other green laptop computers", + "pred": "a woman sitting in front of a laptop computer" + }, + { + "label": "this woman is at a desk using a computer", + "pred": "a woman sitting in front of a laptop computer" + }, + { + "label": "a man and achild are standing in a field", + "pred": "a man and a child flying a kite in a field" + }, + { + "label": "adult showing little kid how to fly the kite", + "pred": "a man and a child flying a kite in a field" + }, + { + "label": "a man and child standing on top of a lush green field", + "pred": "a man and a child flying a kite in a field" + }, + { + "label": "people in a rural area overlooking a mountainous region", + "pred": "a man flying a kite on top of a lush green hillside" + }, + { + "label": "a man in a wheel chair who is holding a baseball bat", + "pred": "a man holding a baseball bat on top of a baseball field" + }, + { + "label": "a restaurant with flowers on the bar", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a vase with flowers next to a mirror", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a wireless keyboard and mouse are sitting next to a laptop", + "pred": "a computer keyboard and mouse on a desk" + }, + { + "label": "people that are sitting on top of a hill", + "pred": "a man flying a kite on top of a lush green hillside" + }, + { + "label": "a baseball game where the batter is waiting for the pitch", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a clear glass vase holding flowers in front of a mirror", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a tall church tower with a clock at the top", + "pred": "a tall brick tower with a clock on it's side" + }, + { + "label": "a thin keyboard and mouse sitting in front of a laptop", + "pred": "a computer keyboard and mouse on a desk" + }, + { + "label": "a keyboard and a mouse sit in front of a laptop", + "pred": "a computer keyboard and mouse on a desk" + }, + { + "label": "a big brick building with a clock at the top", + "pred": "a tall brick tower with a clock on it's side" + }, + { + "label": "a glass vase with some flowers inside of it", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a male tennis player that is at base", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a young boy holding a nintendo wii game controller", + "pred": "a person standing in front of a tv playing a video game" + }, + { + "label": "a desk top with a bunch of electronics on it", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "lap tops on top of a small table", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a young girl putting food in to a oven", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "the adjacent farm land hills attest to the height of the soaring kite", + "pred": "a man flying a kite on top of a lush green hillside" + }, + { + "label": "flowers that are in a vase on a table", + "pred": "a vase filled with flowers next to a window" + }, + { + "label": "a man swinging a tennis racquet at a ball on a court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "people on a hill flying a kite", + "pred": "a man flying a kite on top of a lush green hillside" + }, + { + "label": "assortment of laptop computers displayed on table with backpacks full of electronic cords", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a hilly grassy area filled with people sitting down and taking pictures", + "pred": "a man flying a kite on top of a lush green hillside" + }, + { + "label": "men standing next to each other", + "pred": "a boy is looking at his cell phone while another boy looks at his cell phone" + }, + { + "label": "a tennis player is playing tennis while a crowd watches", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "laptop computer with wireless keyboard and mouse on table", + "pred": "a computer keyboard and mouse on a desk" + }, + { + "label": "a baseball player grabbing a bat, in a game", + "pred": "a boy is looking at his cell phone while another boy looks at his cell phone" + }, + { + "label": "a young woman standing in the kitchen pours from a large measuring cup", + "pred": "a woman is preparing food in a kitchen" + }, + { + "label": "three vases made of clay on a table", + "pred": "a cup of tea and a cup of coffee on a table" + }, + { + "label": "a boy reaching for a baseball bat in a dugout", + "pred": "a boy is looking at his cell phone while another boy looks at his cell phone" + }, + { + "label": "a woman standing at a kitchen counter pouring something from a measuring cup", + "pred": "a woman is preparing food in a kitchen" + }, + { + "label": "a girl holding a tray of food by an oven ready to put it in", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a woman who is cooking in the kitchen", + "pred": "a woman is preparing food in a kitchen" + }, + { + "label": "a clock tower made of brick with vines growing up one side", + "pred": "a tall brick tower with a clock on it's side" + }, + { + "label": "baseball players taking baseball bats from a wall", + "pred": "a boy is looking at his cell phone while another boy looks at his cell phone" + }, + { + "label": "a clock is at the top of a tall brick building", + "pred": "a tall brick tower with a clock on it's side" + }, + { + "label": "a little girl smiling as she is about to put something in the oven", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a boy with catchers gear on looking at some baseball bats", + "pred": "a boy is looking at his cell phone while another boy looks at his cell phone" + }, + { + "label": "a woman works at a computer workstation in an office", + "pred": "a woman sitting in front of a laptop computer" + }, + { + "label": "a senior tennis player prepares to backhand the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a woman standing in a kitchen preparing food", + "pred": "a woman is preparing food in a kitchen" + }, + { + "label": "three different pots sit near one another on a table", + "pred": "a cup of tea and a cup of coffee on a table" + }, + { + "label": "little girl holding up a sheet of uncooked rolls by oven", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a tennis player playing tennis on the court", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a clock town sits in the middle of a city", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "man with a tennis racket waits for the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a very tall clock tower sitting next to other tall buildings", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a clock is seen at the top of a very tall building", + "pred": "a tall brick tower with a clock on it's side" + }, + { + "label": "little girl laughing and holding a pan of food", + "pred": "a woman standing in a kitchen preparing food" + }, + { + "label": "a man swinging a tennis racquet at a tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man playing a tennis game", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a man and woman standing side by side in a kitchen next to a window", + "pred": "a man and woman standing next to each other in a kitchen" + }, + { + "label": "a large old building with a two clocks at the top", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a tennis player eyes the ball and prepares to hit it", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a woman standing in a kitchen making food", + "pred": "a woman is preparing food in a kitchen" + }, + { + "label": "laptops and their assorted wires atop a wooden bench", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a little kid playing a game with the wii driving remote", + "pred": "a person standing in front of a tv playing a video game" + }, + { + "label": "a teddy bear sitting in front of a pile of boxes", + "pred": "a white teddy bear sitting on top of a box" + }, + { + "label": "laptops on a wooden table on being in use", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a kid with a remote playing video game", + "pred": "a person standing in front of a tv playing a video game" + }, + { + "label": "three hand formed clay pots with dripping paint", + "pred": "a cup of tea and a cup of coffee on a table" + }, + { + "label": "two big stuffed bears sitting behind a chained fenced", + "pred": "a display of teddy bears in front of a christmas tree" + }, + { + "label": "a purple mug is next to a bowl", + "pred": "a cup of tea and a cup of coffee on a table" + }, + { + "label": "a kid eating a cake on table looking around", + "pred": "a young boy sitting at a table with a plate of food" + }, + { + "label": "a large building that has a clock tower", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a room that has some furniture and a table in it", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a big teddy bear sitting next to some boxes", + "pred": "a white teddy bear sitting on top of a box" + }, + { + "label": "a brightly decorated living room with a stylish feel", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a living room with a couch and chair", + "pred": "a living room filled with furniture and a television" + }, + { + "label": "red chairs are sitting around a small table", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man and a woman are posing for a picture in a kitchen", + "pred": "a man and woman standing next to each other in a kitchen" + }, + { + "label": "a television, couch and chair in the corner of a room", + "pred": "a living room filled with furniture and a television" + }, + { + "label": "a very large pizza covered in cheese and toppings", + "pred": "a pizza sitting on top of a table next to a bottle of wine" + }, + { + "label": "pieces of pottery in the process of being painted", + "pred": "a cup of tea and a cup of coffee on a table" + }, + { + "label": "a clock tower with multiple columns in a city", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "the tennis player's feet leave the ground as he hits the ball", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a tennis player is jumping in the air at a tennis match", + "pred": "a man swinging a tennis racquet on a tennis court" + }, + { + "label": "a pizza with burned edges is sitting on the table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a teddy bear next to four boxes on the floor", + "pred": "a white teddy bear sitting on top of a box" + }, + { + "label": "a man, his arm across the woman next to him, stands in a blandly colored kitchen area, in front of a black-rimmed window, next", + "pred": "a man and woman standing next to each other in a kitchen" + }, + { + "label": "a batter at a game playing in a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a very simple living area with a chair, sofa and tv", + "pred": "a living room filled with furniture and a television" + }, + { + "label": "a pizza pie sitting on a table", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a woman sitting at a table with two pizzas", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a baseball player hitting a baseball into the air", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a batter swings at a pitch during a baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "pizza missing one slice on wooden serving tray", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a room full of colorful furniture and a tv", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a baseball player that has just hit the ball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "pizza on a serving tray with empty plates next to it", + "pred": "a pizza sitting on top of a table next to a bottle of wine" + }, + { + "label": "a young boy sits at a table with his head in his hand", + "pred": "a young boy sitting at a table with a plate of food" + }, + { + "label": "two teddy bears that are large sitting in a small garden", + "pred": "a display of teddy bears in front of a christmas tree" + }, + { + "label": "a teddy bear is sitting in front a group of boxes", + "pred": "a white teddy bear sitting on top of a box" + }, + { + "label": "a man that is sitting at a table with lots of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a man sitting in a chair across from a table topped with food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a man sitting by a table with food in bowls and pans", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a small child stands in front of a television playing a video game", + "pred": "a person standing in front of a tv playing a video game" + }, + { + "label": "people standing in a green field together while flying kites", + "pred": "people are flying kites in a field" + }, + { + "label": "an open refrigerator door on a kitchen floor", + "pred": "a white refrigerator freezer sitting inside of a kitchen" + }, + { + "label": "a large pizza pie on a white plate", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a teddy bear sitting on the ground in front of many boxes", + "pred": "a white teddy bear sitting on top of a box" + }, + { + "label": "a pizza on a plate on a table with wine", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a man sitting near a table with a bunch of food on it", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "people are flying kites in an open field of grass", + "pred": "people are flying kites in a field" + }, + { + "label": "a living room and kitchen areas features red, white, and wooden furniture", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a corner of a living room with a tv in it", + "pred": "a living room filled with furniture and a television" + }, + { + "label": "a boy stands in front of a tv in a living room", + "pred": "a person standing in front of a tv playing a video game" + }, + { + "label": "a man sitting in a room with a food on a table", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a large pizza is shown on a table, with bottles and glasses of wine", + "pred": "a pizza sitting on top of a table next to a bottle of wine" + }, + { + "label": "someone flying a kite right above the trees", + "pred": "a bird flying over a body of water" + }, + { + "label": "people are flying kites in a field", + "pred": "people are flying kites in a field" + }, + { + "label": "adults playing in living room using remote controllers", + "pred": "two men playing a video game in a living room" + }, + { + "label": "people who are flying kites in a field", + "pred": "people are flying kites in a field" + }, + { + "label": "a very nice looking deck area with a small table and a laptop", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a man and a woman posing in a kitchen", + "pred": "a man and woman standing next to each other in a kitchen" + }, + { + "label": "a baby laying on a floor next to a purple cell phone", + "pred": "a baby sitting on the floor next to a remote control" + }, + { + "label": "a man and a woman stand next to each other in a kitchen", + "pred": "a man and woman standing next to each other in a kitchen" + }, + { + "label": "player hits ball during major league game at stadium", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "the child poses with a fork on his dessert plate", + "pred": "a young boy sitting at a table with a plate of food" + }, + { + "label": "pizzas are on a table", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "a man holding a baby while standing in front of a mirror", + "pred": "a woman holding a baby next to a man holding a cup" + }, + { + "label": "a painting of a person standing in the park while a kite flies above them", + "pred": "a bird flying over a body of water" + }, + { + "label": "a stove back splash with a granite design", + "pred": "a stove top oven sitting on top of a counter" + }, + { + "label": "a pizza sitting on a plate next to a little jar on a table", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a pizza is topped with fine cheese and backed in a oven", + "pred": "a pizza sitting on top of a white plate" + }, + { + "label": "a living room with some empty couches in it", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a kid leaning on a table next to a plate with some food on it", + "pred": "a young boy sitting at a table with a plate of food" + }, + { + "label": "a stove that has a spice rack next to it", + "pred": "a stove top oven sitting on top of a counter" + }, + { + "label": "a laptop on a table outside a balcony overlooking the ocean", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "the room has two couches next to a dark coffee table", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a young boy wearing a striped shirt eating some food", + "pred": "a young boy sitting at a table with a plate of food" + }, + { + "label": "kites with different shapes all laying on the ground", + "pred": "kites are being flown in a field" + }, + { + "label": "a pizza that is sitting on a platter", + "pred": "a pizza sitting on top of a table next to a bottle of wine" + }, + { + "label": "the living room actually features several different colors", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "two people carrying a kite to be flown later", + "pred": "a woman standing on top of a sandy beach holding a kite" + }, + { + "label": "large assortment of kites on large field at outdoor event", + "pred": "kites are being flown in a field" + }, + { + "label": "various kites near the ground in a field", + "pred": "kites are being flown in a field" + }, + { + "label": "men standing in a living room holding wii game controllers", + "pred": "two men playing a video game in a living room" + }, + { + "label": "large baked pizza served on stand at table with beverages", + "pred": "a pizza sitting on top of a table next to a bottle of wine" + }, + { + "label": "a fridge has some eggs and a bottle in it", + "pred": "a white refrigerator freezer sitting inside of a kitchen" + }, + { + "label": "a man standing next to a body of water while flying a kite", + "pred": "a bird flying over a body of water" + }, + { + "label": "people are holding kites and the wind is blowing them on a grassy field", + "pred": "people are flying kites in a field" + }, + { + "label": "decorated kites, including batman, are scattered around", + "pred": "kites are being flown in a field" + }, + { + "label": "the refrigerator has a drink and a carton of eggs in it", + "pred": "a white refrigerator freezer sitting inside of a kitchen" + }, + { + "label": "objects are sitting in an empty appliance", + "pred": "a white refrigerator freezer sitting inside of a kitchen" + }, + { + "label": "big statues of two beers dressed in clothes, outside", + "pred": "a display of teddy bears in front of a christmas tree" + }, + { + "label": "a pizza that is sitting on a wooden platter", + "pred": "a woman sitting at a table with a pizza" + }, + { + "label": "balcony overlooking beautiful site next to a tropical beach", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a baby on the floor near a cell phone", + "pred": "a baby sitting on the floor next to a remote control" + }, + { + "label": "a breathtaking photo of someone flying a kite", + "pred": "a bird flying over a body of water" + }, + { + "label": "a laptop computer is on a glass table on a balcony", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a living room with sofas, tables, a lamp and windows", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "kites sit on the ground, with a few people", + "pred": "kites are being flown in a field" + }, + { + "label": "two men use all of their hands to play a video game", + "pred": "two men playing a video game in a living room" + }, + { + "label": "two people playing a video game in a living room", + "pred": "two men playing a video game in a living room" + }, + { + "label": "a laptop on a table on balcony, blue sky", + "pred": "a laptop computer sitting on top of a wooden table" + }, + { + "label": "a blue office chair sitting next to a wooden desk", + "pred": "a cluttered office desk with a computer on it" + }, + { + "label": "a woman swinging a tennis racquet on a tennis court", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a little baby is laying on the floor next to a cell phone", + "pred": "a baby sitting on the floor next to a remote control" + }, + { + "label": "two men are carrying a kite through a parking lot", + "pred": "a woman standing on top of a sandy beach holding a kite" + }, + { + "label": "a room with a tv and some different types of couches", + "pred": "a living room filled with furniture and a television" + }, + { + "label": "a boy is playing with a kite in a wet land", + "pred": "a bird flying over a body of water" + }, + { + "label": "a father and child taking a selfie of themselves", + "pred": "a woman holding a baby next to a man holding a cup" + }, + { + "label": "a living room with some tables and couches", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "two people that are carrying a clear box kite", + "pred": "a woman standing on top of a sandy beach holding a kite" + }, + { + "label": "a spice rack next to an oven that is next to oven mittens hanging", + "pred": "a stove top oven sitting on top of a counter" + }, + { + "label": "a black stove top built in to a kitchen counter", + "pred": "a stove top oven sitting on top of a counter" + }, + { + "label": "two men standing in the living room and playing a video game with wii motes", + "pred": "two men playing a video game in a living room" + }, + { + "label": "two teddy bear on the arden with some decorations", + "pred": "a display of teddy bears in front of a christmas tree" + }, + { + "label": "a computer desk topped with two monitors and a laptop", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a boy prepares to swing a baseball bat", + "pred": "a young man holding a baseball bat on top of a field" + }, + { + "label": "a baby laying on a floor near a cell phone", + "pred": "a baby sitting on the floor next to a remote control" + }, + { + "label": "a baby crawls on the floor beside a blue cell phone", + "pred": "a baby sitting on the floor next to a remote control" + }, + { + "label": "two people play video games while sitting on a couch", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a stone backsplash covers the wall behind a cooktop stove", + "pred": "a stove top oven sitting on top of a counter" + }, + { + "label": "a woman jumping in the air on the tennis court", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a kid with helmet holding a bat playing baseball", + "pred": "a young man holding a baseball bat on top of a field" + }, + { + "label": "a young boy wearing his baseball uniform with his bat in his hands", + "pred": "a young man holding a baseball bat on top of a field" + }, + { + "label": "a very big fridge with nothing inside it", + "pred": "a white refrigerator freezer sitting inside of a kitchen" + }, + { + "label": "the big ben clock tower towering over the city of london", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a living room with dark colored furniture and a fire place", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a man swinging a tennis racquet towards a tennis ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a living room with a fire place and furniture", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "two boys caring a big kite type of thing", + "pred": "a woman standing on top of a sandy beach holding a kite" + }, + { + "label": "two men carrying plastic containers walking barefoot in the sand", + "pred": "a woman standing on top of a sandy beach holding a kite" + }, + { + "label": "a field full of people flying kites in a cloudy blue sky", + "pred": "kites flying in the sky over a park" + }, + { + "label": "a boy in the middle of swinging a base ball bat", + "pred": "a young man holding a baseball bat on top of a field" + }, + { + "label": "a table with so many screen and a keyboard", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a man with a bald head wearing a pair of glases", + "pred": "a man holding a cell phone in his hand" + }, + { + "label": "a room with some office products in it", + "pred": "a cluttered office desk with a computer on it" + }, + { + "label": "a man holding a cell phone that is powered on", + "pred": "a man holding a cell phone in his hand" + }, + { + "label": "a giant bear and mouse on display at the mall", + "pred": "a display of teddy bears in front of a christmas tree" + }, + { + "label": "a man in glasses is holding up a cellphone", + "pred": "a man holding a cell phone in his hand" + }, + { + "label": "a young boy holding a baseball bat near a batting cage", + "pred": "a young man holding a baseball bat on top of a field" + }, + { + "label": "a man with glasses is holding up an iphone", + "pred": "a man holding a cell phone in his hand" + }, + { + "label": "a large, cluttered office desk area", + "pred": "a cluttered office desk with a computer on it" + }, + { + "label": "people standing on top of a tennis court", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a room with brown sofa and chair, tables, a fireplace, and white windows", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a clock tower with a large steeple with overcast", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a table that has some computers on it", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a desk has two computer monitors, a keyboard, and a laptop that is all connected", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a blender where someone is making a mixed drink", + "pred": "a blender sitting on top of a counter next to a toothbrush" + }, + { + "label": "an unattended office containing several computers and a chair", + "pred": "a cluttered office desk with a computer on it" + }, + { + "label": "a computer desk with two monitors and a laptop", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "a women that is playing tennis on a court", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a desk in a room next to a couple of windows", + "pred": "a cluttered office desk with a computer on it" + }, + { + "label": "a man holding a tennis racquet hits the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "looking down at a beach area and boardwalk that has a circular walkway and clock tower", + "pred": "a large building with a large clock on top of it" + }, + { + "label": "a man and woman playing a wii game", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "two computers are sitting on a wood desk", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a fire burning in the fireplace in a sitting room", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a large yellow kite is flying over a park in the daytime", + "pred": "kites flying in the sky over a park" + }, + { + "label": "a man and woman sitting on a sofa watching tv", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a large tall tower with a clock on top", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a man running to hit a tennis ball with his racquet", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a large well decorated living room", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "people on a tennis court", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "plaza with tower near beach on sunny day", + "pred": "a large building with a large clock on top of it" + }, + { + "label": "computer equipment displayed on desk in open room", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a computer station on a desk with a computer, laptop and boxes", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a man running towards a ball with a tennis racket in his hand", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "people in a green field flying kites", + "pred": "kites flying in the sky over a park" + }, + { + "label": "a desk with a laptop, two monitors, two speakers, a keyboard, a mouse and a cell phone on it", + "pred": "a desktop computer sitting on top of a wooden desk" + }, + { + "label": "people are talking on a tennis court while standing at the net", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a man that is holding a small baby", + "pred": "a woman holding a baby next to a man holding a cup" + }, + { + "label": "men talk on a tennis court", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a man and woman sitting on a couch playing a video game", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a park with several vehicles parked on the grass", + "pred": "kites flying in the sky over a park" + }, + { + "label": "a home office with two computers and a picture", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "people standing on a court with a racket", + "pred": "two men standing on a tennis court holding tennis racquets" + }, + { + "label": "a high view of a park where several people are flying kites", + "pred": "kites flying in the sky over a park" + }, + { + "label": "a man holding a baby taking a picture", + "pred": "a woman holding a baby next to a man holding a cup" + }, + { + "label": "a couple sits on a couch while playing wii", + "pred": "a man and a woman sitting on a couch playing a video game" + }, + { + "label": "a blender, bottle, glass and cutting board with knife on a counter", + "pred": "a blender sitting on top of a counter next to a toothbrush" + }, + { + "label": "a living room with a white carpet and black furniture", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a woman peaking around a pile of old refrigerators", + "pred": "a woman standing in a kitchen next to a refrigerator" + }, + { + "label": "a person standing next to some old junk appliances", + "pred": "a woman standing in a kitchen next to a refrigerator" + }, + { + "label": "a man reaching up with his tennis racket to hit the ball", + "pred": "a man hitting a tennis ball with a tennis racquet" + }, + { + "label": "a person setting in a chair in a living room with a fireplace and windows", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a man with a bald head and glasses is sitting while holding up a cell phone", + "pred": "a man holding a cell phone in his hand" + }, + { + "label": "a blender, lime, salt, and tequila on a counter", + "pred": "a blender sitting on top of a counter next to a toothbrush" + }, + { + "label": "a woman peering around stacks of old mini-fridges", + "pred": "a woman standing in a kitchen next to a refrigerator" + }, + { + "label": "a couch in a living room with walls lined with a bookcase and pictures", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "a living room with a girl sitting in a chair", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a computer mouse is beside a notebook computer", + "pred": "a computer mouse sitting on top of a desk" + }, + { + "label": "a room with two sofas and a fireplace", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a man and his baby girl taking a selfie", + "pred": "a woman holding a baby next to a man holding a cup" + }, + { + "label": "a clock is at the bottom of a very tall building", + "pred": "a tall building with a clock on the side of it" + }, + { + "label": "a woman jumping in the area during a tennis game", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a laptop with a mouse and a keyboard connected", + "pred": "a computer mouse sitting on top of a desk" + }, + { + "label": "big ben set against a grey cloudy sky", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a living room that appears to be very elegant", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a woman sits in one of the easy chairs in the big living room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a living room filled with furniture and a table", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a fire place with a light on it", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a living room with a couch and a chair", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a room with a reclined sofa, desk, and wall decorations", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "the room has many posters and pictures on the wall", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "two cell phones near one another", + "pred": "two cell phones sitting side by side on a wooden table" + }, + { + "label": "a living room with with a couch and a table", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "a comfortable living room with brown leather couches and a fireplace", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a large clock tower sitting in the middle of a paved walkway", + "pred": "a large building with a large clock on top of it" + }, + { + "label": "two mobile devices are lying on a table", + "pred": "two cell phones sitting side by side on a wooden table" + }, + { + "label": "a plaza with a clock tower near the beach", + "pred": "a large building with a large clock on top of it" + }, + { + "label": "a notebook computer is set on a table", + "pred": "a computer mouse sitting on top of a desk" + }, + { + "label": "a room with a day bed is very cluttered and dusty", + "pred": "a living room filled with furniture next to a window" + }, + { + "label": "the clock tower is on the first floor of the tall building", + "pred": "a tall building with a clock on the side of it" + }, + { + "label": "black and white, looking up the side of a building, with a clock and with rows of windows", + "pred": "a tall building with a clock on the side of it" + }, + { + "label": "a very tall building with lots of windows and a clock mounted to it's side", + "pred": "a tall building with a clock on the side of it" + }, + { + "label": "old appliances in trash head with woman in center", + "pred": "a woman standing in a kitchen next to a refrigerator" + }, + { + "label": "the top half of a clock tower against a cloudy sky", + "pred": "a tall clock tower with a clock on each of it's sides" + }, + { + "label": "a computer mouse sitting on top of a computer desk", + "pred": "a computer mouse sitting on top of a desk" + }, + { + "label": "a clock on a small tower near a building", + "pred": "a large building with a large clock on top of it" + }, + { + "label": "a very tall clock tower towering over a city at night", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "a very tall brick clock tower with a clock on each of it's sides", + "pred": "a tall brick building with a clock tower" + }, + { + "label": "her long legs propel her high enough to hit the tennis ball", + "pred": "a woman swinging a tennis racquet on a tennis court" + }, + { + "label": "a laptop with a mouse connected to it", + "pred": "a computer mouse sitting on top of a desk" + }, + { + "label": "a large building that has a clock on it", + "pred": "a tall building with a clock on the side of it" + }, + { + "label": "a long distance shot of a clock tower that is all lit up", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "a woman is standing in a room filled with used appliances", + "pred": "a woman standing in a kitchen next to a refrigerator" + }, + { + "label": "two cell phones of differing quality are set side by side on a table", + "pred": "two cell phones sitting side by side on a wooden table" + }, + { + "label": "blender on a counter with alcohol and a lime", + "pred": "a blender sitting on top of a counter next to a toothbrush" + }, + { + "label": "the clock tower features a very unusual walkway", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "two cellphones are sitting side by side on the table", + "pred": "two cell phones sitting side by side on a wooden table" + }, + { + "label": "a blender next to some tequila, a lime and a mixed drink", + "pred": "a blender sitting on top of a counter next to a toothbrush" + }, + { + "label": "people are in the water with kites flying over them", + "pred": "kites being flown over a body of water" + }, + { + "label": "a cat standing next to an open refrigerator door", + "pred": "a cat standing on top of a refrigerator door" + }, + { + "label": "a woman is striking a ball with a racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a woman is standing on a tennis court with a racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "two cell phones are sitting next to each other on a table", + "pred": "two cell phones sitting side by side on a wooden table" + }, + { + "label": "a building has a tower with a clock on it", + "pred": "a tall brick building with a clock tower" + }, + { + "label": "a young lady swinging a tennis racquet on top of a tennis court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "a tv sitting in a living room on top of a tv stand", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man holding onto a little blond girl", + "pred": "a little boy sitting at a table with a man" + }, + { + "label": "the photo shows the many ways to enjoy the beach - kite flying, bathing, lying in the sun, walking along the sand", + "pred": "kites being flown over a body of water" + }, + { + "label": "a baby looking over a fathers shoulder watching other people eat", + "pred": "a little boy sitting at a table with a man" + }, + { + "label": "para sailors on choppy water under a cloudy sky", + "pred": "kites being flown over a body of water" + }, + { + "label": "a tall clock tower at the end of a palm tree lined pool", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "para-surfers on the water near a beach", + "pred": "kites being flown over a body of water" + }, + { + "label": "a tv is on in this unique and eclectic living room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a large clock tower sits in front of a body of water", + "pred": "a clock tower towering over a city at night" + }, + { + "label": "a man with glasses holds a small child at a restaurant", + "pred": "a little boy sitting at a table with a man" + }, + { + "label": "view from below of a clock tower in a building", + "pred": "a tall brick building with a clock tower" + }, + { + "label": "a pub sign for a small home bar has a crooked letter", + "pred": "a kitchen area with a sink, counter, and utensils" + }, + { + "label": "a powered on computer on a desk made of unique materials", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "a tray with coffee and a pastry on it", + "pred": "a tray of food on a bed next to a cup of coffee" + }, + { + "label": "batter taking swing at ball during televised baseball game", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a refrigerator in the kitchen is covered with a multitude of magnets and pictures", + "pred": "a refrigerator with many magnets and pictures on it" + }, + { + "label": "people in a shop looking at a wide variety of pottery", + "pred": "a number of pots and pans on display in a room" + }, + { + "label": "a cat watches as its owner uses the laptop", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "two young males playing a video game together in front of a tv", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a cat is sitting on the bed near a person using a laptop", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a tray is full of breakfast foods and drinks on a bed", + "pred": "a tray of food on a bed next to a cup of coffee" + }, + { + "label": "a dark colored cat that has a collar on it, sitting o the top of a blue refrigerator", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "a brown colored cat is on top of a tall gray cabinet", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "coffee cream and a croissant on a tray", + "pred": "a tray of food on a bed next to a cup of coffee" + }, + { + "label": "living room with a black couch, coffee table and bookcase visible", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a man stands with his arms crossed as he looks at a clock", + "pred": "a man standing next to a clock on a table" + }, + { + "label": "a person sitting on bed behind an open laptop computer and a cat sitting beside and looking at the laptop screen area", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "cat staring at laptop screen as owner is online", + "pred": "a cat laying on top of a bed next to a laptop" + }, + { + "label": "a living room with a black couch, wood floor and bookcase", + "pred": "a living room filled with furniture and a couch" + }, + { + "label": "a family looking at vases and plates in a store", + "pred": "a number of pots and pans on display in a room" + }, + { + "label": "a pc on a makeshift computer table", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "a sign with the word \"pub\" hangs above several liquor bottles", + "pred": "a kitchen area with a sink, counter, and utensils" + }, + { + "label": "a man gazes at an intricately designed clock with roman numerals", + "pred": "a man standing next to a clock on a table" + }, + { + "label": "a tray on a bed with food and drink", + "pred": "a tray of food on a bed next to a cup of coffee" + }, + { + "label": "a person in a dry area with a sail high in the sky", + "pred": "a person on a beach flying a kite" + }, + { + "label": "two people playing with an interactive gaming unit", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a laptop and a desktop computer sitting on a table", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a stuffed bear head and paw on a laptop computer", + "pred": "a teddy bear sitting on top of a laptop computer" + }, + { + "label": "a man looking over an open mechanical clock", + "pred": "a man standing next to a clock on a table" + }, + { + "label": "various pots and plates displayed next to a woman", + "pred": "a number of pots and pans on display in a room" + }, + { + "label": "ivy is growing up the walls of a building", + "pred": "a brick building with a clock on the side of it" + }, + { + "label": "laptop computer sitting at a disc with various fuzzy objects", + "pred": "a teddy bear sitting on top of a laptop computer" + }, + { + "label": "large flat building with a clock and garage", + "pred": "a brick building with a clock on the side of it" + }, + { + "label": "a man and a woman on a sandy beach", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a laptop and computer monitor with the same screen", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a clock that is standing on a table", + "pred": "a man standing next to a clock on a table" + }, + { + "label": "a gray cat standing on the top of a refrigerator", + "pred": "a cat sitting on top of a refrigerator" + }, + { + "label": "a laptop that is sitting near a mouse", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a man that is holding a kite standing in the sand", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a man who is holding up a parachute", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a little boy is swinging a baseball bat at a ball", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "the large brick building covered in vines has a clock on it", + "pred": "a brick building with a clock on the side of it" + }, + { + "label": "man standing beneath large sail on beach with man controlling from distance", + "pred": "a person on a beach flying a kite" + }, + { + "label": "a clock that is on the side of a building", + "pred": "a brick building with a clock on the side of it" + }, + { + "label": "a man that is standing in the dirt with a bat", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "the laptop keyboard has two small furry objects on it", + "pred": "a teddy bear sitting on top of a laptop computer" + }, + { + "label": "a laptop screen displays an image of bright green leaves", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a european city in nice a sunny bright day", + "pred": "a tall building with a clock on it's side" + }, + { + "label": "a large, old brick building with a clock tower at one corner", + "pred": "a tall building with a clock on it's side" + }, + { + "label": "a man that is sitting in front of a laptop", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "a small tablet computer next to a larger monitor and keyboard", + "pred": "a laptop computer sitting on top of a desk" + }, + { + "label": "a little boy swinging a bat", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a desk sitting on saw horses with a monitor, keyboard and mouse", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "it is important to wear a hard helmet to protect young players", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "the workers are working at their computers at their desks", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "a pair of hairy objects sitting on a laptop next to a mouse", + "pred": "a teddy bear sitting on top of a laptop computer" + }, + { + "label": "towers on top of a building", + "pred": "a tall building with a clock on it's side" + }, + { + "label": "moss has grown all over the building with the clock tower", + "pred": "a brick building with a clock on the side of it" + }, + { + "label": "green spires on towers are part of the architecture", + "pred": "a tall building with a clock on it's side" + }, + { + "label": "a boy is swinging a baseball bat at a game", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a baseball player is holding a bat on a field", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a computer monitor and keyboard on a desk", + "pred": "a computer monitor sitting on top of a wooden desk" + }, + { + "label": "two men are sitting near a table, one playing with a video game", + "pred": "a man and a woman playing a game on the nintendo wii" + }, + { + "label": "a boy swinging a baseball bat at a ball", + "pred": "a young boy swinging a baseball bat at a ball" + }, + { + "label": "a open laptop with a mouse beside it", + "pred": "a teddy bear sitting on top of a laptop computer" + }, + { + "label": "gothic styled buildings with copper tops on the building spires", + "pred": "a tall building with a clock on it's side" + }, + { + "label": "a baseball players is ealking toward the opposing team", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a man sitting at a desk in an office", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "teddy bears appear to have a picnic on the grass", + "pred": "three teddy bears sitting next to each other on a picnic table" + }, + { + "label": "a large living room is seen in this image", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a clock tower is part of an old building", + "pred": "a church steeple with a clock on it" + }, + { + "label": "a man sitting in a chair in front of a computer", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "a large living room with a black sectional and a recliner", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "large brick building with towers and clocks in daytime", + "pred": "a very tall clock tower with a clock on each of it's sides" + }, + { + "label": "adults working in open office setting at desks", + "pred": "a woman sitting at a desk in front of a laptop computer" + }, + { + "label": "one person standing and another bending over", + "pred": "a man holding an umbrella over his head" + }, + { + "label": "a living room with a big black couch in the middle of it", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a desk filled with some paperwork, a laptop and a computer with two monitors", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "we are looking up at an old clock tower", + "pred": "a church steeple with a clock on it" + }, + { + "label": "a man talking on his cell phone with his other hand in his ear", + "pred": "a man on a cell phone talking on a cell phone" + }, + { + "label": "the cathedral has two clocks on each of it's walls", + "pred": "a very tall clock tower with a clock on each of it's sides" + }, + { + "label": "two people with wii remote controllers near a sofa", + "pred": "a man holding an umbrella over his head" + }, + { + "label": "clocks may be seen on all sides of the tower", + "pred": "a very tall clock tower with a clock on each of it's sides" + }, + { + "label": "drinks in a fridge", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "the player approaches home plate to take his turn at bat", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "the computer desk has two monitors and two keyboards near a laptop", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "two small clocks sit behind a glass window", + "pred": "a clock sitting on a wall next to a window" + }, + { + "label": "group of people sending around photography equipment and a living room", + "pred": "a man holding an umbrella over his head" + }, + { + "label": "a man laughs while looking towards the floor", + "pred": "a man holding an umbrella over his head" + }, + { + "label": "a very large and old clock tower on a church", + "pred": "a very tall clock tower with a clock on each of it's sides" + }, + { + "label": "a large building is shown with clocks on the side", + "pred": "a very tall clock tower with a clock on each of it's sides" + }, + { + "label": "furniture is arranged around a house's living room", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a man talking on a cell phone outside of a fast food place", + "pred": "a man on a cell phone talking on a cell phone" + }, + { + "label": "the man is listening on his cell phone", + "pred": "a man on a cell phone talking on a cell phone" + }, + { + "label": "a church tower with a clock in the centre and arched windows", + "pred": "a church steeple with a clock on it" + }, + { + "label": "a man on a cellphone sticking his finger in his ear", + "pred": "a man on a cell phone talking on a cell phone" + }, + { + "label": "two clocks behind glass reflecting grass and shrubs", + "pred": "a clock sitting on a wall next to a window" + }, + { + "label": "looking through a window at a small clock and a large one", + "pred": "a clock sitting on a wall next to a window" + }, + { + "label": "young kids are sitting together", + "pred": "two young boys are posing for a picture with a teddy bear" + }, + { + "label": "a large ornate metal clock rests beside a miniature clock, also, featuring great detail, both of which stand behind a pane of glass that also shows the view", + "pred": "a clock sitting on a wall next to a window" + }, + { + "label": "people are standing around in a room", + "pred": "a man holding an umbrella over his head" + }, + { + "label": "a clock in a metal frame mounted on a wall", + "pred": "a clock sitting on a wall next to a window" + }, + { + "label": "baseball players standing next to each other on top of a field", + "pred": "a baseball player holding a bat on a field" + }, + { + "label": "a desk with keyboards and a laptop and a pair of monitors", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "the room is situated on the dark side of the house", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "the man in a red hat is listening on his cell phone", + "pred": "a man on a cell phone talking on a cell phone" + }, + { + "label": "the room has a flight of steps near the couch and television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "three stuffed teddy bears are set on a toy picnic scene", + "pred": "three teddy bears sitting next to each other on a picnic table" + }, + { + "label": "a black leather sofa in a large living room", + "pred": "a living room filled with furniture and a fire place" + }, + { + "label": "a very tall pink and white clock tower", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a clown talking on a phone next to a building", + "pred": "a man in a hat is on a train talking on a cell phone" + }, + { + "label": "a clock on a bell tower of an old church", + "pred": "a church steeple with a clock on it" + }, + { + "label": "dimly lit part of a house with light entering window", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "small teddy bears clothing on blankets with small bowls", + "pred": "three teddy bears sitting next to each other on a picnic table" + }, + { + "label": "two refrigerators in this dirty, rundown kitchen", + "pred": "a white refrigerator sitting in a kitchen next to a window" + }, + { + "label": "salmon-colored clock tower with florida architectural features including a window's walk", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a vintage closeup shows a chair with a toddler with a big smile and a big toy bear seated right next to a second toddler with a semi-smile", + "pred": "two young boys are posing for a picture with a teddy bear" + }, + { + "label": "three teddy bears sitting on a picnic blankets", + "pred": "three teddy bears sitting next to each other on a picnic table" + }, + { + "label": "two refrigerators standing side by side in a room", + "pred": "a white refrigerator sitting in a kitchen next to a window" + }, + { + "label": "an olive green refrigerator next to a white refrigerator in an old kitchen", + "pred": "a white refrigerator sitting in a kitchen next to a window" + }, + { + "label": "a man dressed up as a clown is holding a cellphone to his ear", + "pred": "a man in a hat is on a train talking on a cell phone" + }, + { + "label": "mandor stuff is a clown holding his cell phone up to his face", + "pred": "a man in a hat is on a train talking on a cell phone" + }, + { + "label": "a brick clock tower ascending towards the heavens", + "pred": "a church steeple with a clock on it" + }, + { + "label": "a desk with two computer monitor and a keyboard sitting on it", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "two young kids posing or a picture", + "pred": "two young boys are posing for a picture with a teddy bear" + }, + { + "label": "a small refrigerator in a small kitchen with a window", + "pred": "a white refrigerator sitting in a kitchen next to a window" + }, + { + "label": "a kitcken that has two different refigeratator in it", + "pred": "a white refrigerator sitting in a kitchen next to a window" + }, + { + "label": "a red and white brick building with a clock tower", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a bowl that has some kind of a batter in it near a mixer", + "pred": "a pan filled with food on top of a stove top" + }, + { + "label": "children sitting in front of a blanket", + "pred": "two young boys are posing for a picture with a teddy bear" + }, + { + "label": "a display in a store filled with lots of bottles of soda", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a bowl full of batter below a blender", + "pred": "a pan filled with food on top of a stove top" + }, + { + "label": "a man who fell asleep with phone on face", + "pred": "a person laying on a bed with a cell phone" + }, + { + "label": "a man sleeping with a phone on his cheek", + "pred": "a person laying on a bed with a cell phone" + }, + { + "label": "a little girl playing with an interactive gaming unit", + "pred": "a little girl holding a nintendo wii game controller" + }, + { + "label": "a tall building with several windows and two clocks on it", + "pred": "a building with a clock on the front of it" + }, + { + "label": "two children one holding a bear and one holding a cell phone", + "pred": "two young boys are posing for a picture with a teddy bear" + }, + { + "label": "a couple standing together holding wii controllers next to a building", + "pred": "a man and a woman standing in front of a table holding a hot dog" + }, + { + "label": "a clown is standing in a cable car and talking on a cell phone", + "pred": "a man in a hat is on a train talking on a cell phone" + }, + { + "label": "three stuffed animals are dressed and sitting on a blanket in front of empty plates", + "pred": "three teddy bears sitting next to each other on a picnic table" + }, + { + "label": "a bowl of mash potatoes with a mixer in it", + "pred": "a pan filled with food on top of a stove top" + }, + { + "label": "two young boys sitting on a bench texting on their cell phones", + "pred": "two boys sitting next to each other on a bench" + }, + { + "label": "rows of crush soda in bottles in a refrigerator", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a man laying on top of a pillow with a phone on top of his head", + "pred": "a person laying on a bed with a cell phone" + }, + { + "label": "a man holding a bat on top of a field under a light", + "pred": "a baseball player holding a bat on a baseball field" + }, + { + "label": "a cooler with many different kinds of beverages in it", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a man dressed as a clown talking on his phone", + "pred": "a man in a hat is on a train talking on a cell phone" + }, + { + "label": "the little girl is intently playing the video game", + "pred": "a little girl holding a nintendo wii game controller" + }, + { + "label": "a man in a baseball uniform holding a bat", + "pred": "a baseball player holding a bat on a baseball field" + }, + { + "label": "a kite flying over a city park on a windy day", + "pred": "a kite that is flying in the sky" + }, + { + "label": "two people playing with an interactive gaming unit", + "pred": "a man and a woman standing in front of a table holding a hot dog" + }, + { + "label": "a couch and a television are in a room", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man holding a kite on a beach during the day", + "pred": "a man standing on top of a sandy beach next to the ocean" + }, + { + "label": "an unusually shaped kite and a very colorful one", + "pred": "a kite that is flying in the sky" + }, + { + "label": "stairs a couch a table and a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a computer desk with two monitors and a laptop", + "pred": "a computer desk with two monitors and a keyboard" + }, + { + "label": "bottles are displayed in a commercial refrigerator", + "pred": "a refrigerator filled with lots of different types of drinks" + }, + { + "label": "a baseball player holding a bat over their shoulder", + "pred": "a baseball player holding a bat on a baseball field" + }, + { + "label": "a man on a beach trying to launch a kite", + "pred": "a man standing on top of a sandy beach next to the ocean" + }, + { + "label": "a man stands on a beach next to some water", + "pred": "a man standing on top of a sandy beach next to the ocean" + }, + { + "label": "a big bowl with some mix inside of it", + "pred": "a pan filled with food on top of a stove top" + }, + { + "label": "two little boys holding cell phones in their hands", + "pred": "two boys sitting next to each other on a bench" + }, + { + "label": "a big building with a clock at the top of it", + "pred": "a building with a clock on the front of it" + }, + { + "label": "a small girl plays a game of wii", + "pred": "a little girl holding a nintendo wii game controller" + }, + { + "label": "kids in yellow shirts are sitting together", + "pred": "two boys sitting next to each other on a bench" + }, + { + "label": "two people in a living room playing with a wii", + "pred": "a man and a woman standing in front of a table holding a hot dog" + }, + { + "label": "a baseball player", + "pred": "a baseball player holding a bat on a baseball field" + }, + { + "label": "a little girl standing in front of a couch holding a remote", + "pred": "a little girl holding a nintendo wii game controller" + }, + { + "label": "a boy asleep with a cell phone on his face", + "pred": "a person laying on a bed with a cell phone" + }, + { + "label": "a little, young girl playing the wii in the living room", + "pred": "a little girl holding a nintendo wii game controller" + }, + { + "label": "a colorful object is flying through the blue sky", + "pred": "a kite that is flying in the sky" + }, + { + "label": "two girls holding game controllers playing a video game", + "pred": "a man and a woman standing in front of a table holding a hot dog" + }, + { + "label": "the batter is ready to hit the ball", + "pred": "a baseball player holding a bat on a baseball field" + }, + { + "label": "a guy is sleeping with his phone attached to his ear", + "pred": "a person laying on a bed with a cell phone" + }, + { + "label": "two boys in yellow shirts looking at cell phones", + "pred": "two boys sitting next to each other on a bench" + }, + { + "label": "a man on a cell phone in a public area holding his thumb up", + "pred": "a man taking a picture of himself in front of a group of people" + }, + { + "label": "two people holding wii remotes and nun-chucks in an indoor area", + "pred": "a man and a woman standing in front of a table holding a hot dog" + }, + { + "label": "a mixing bowl and beaters with batter on them", + "pred": "a pan filled with food on top of a stove top" + }, + { + "label": "a man standing at the edge of a beach holding up his hand", + "pred": "a man standing on top of a sandy beach next to the ocean" + }, + { + "label": "a man that is standing in the sand", + "pred": "a man standing on top of a sandy beach next to the ocean" + }, + { + "label": "a colorful kite flying through a cloudy blue sky", + "pred": "a kite that is flying in the sky" + }, + { + "label": "a tennis player with a racket on a court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "an older person sitting in a living room chair near a walker", + "pred": "a living room filled with furniture and people" + }, + { + "label": "boys read comic books together outside", + "pred": "two boys sitting next to each other on a bench" + }, + { + "label": "a large kite that is being flown in the sky", + "pred": "a kite that is flying in the sky" + }, + { + "label": "living room arrangement with lights and windows and chairs", + "pred": "a living room filled with furniture and people" + }, + { + "label": "a building that has a small clock at top", + "pred": "a clock tower on top of a building" + }, + { + "label": "a baseball player holding a baseball bat is getting filmed by a camera man", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "indoor tennis match, with a full crowd of spectators", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "people gathered inside of a room", + "pred": "a man taking a picture of himself in front of a group of people" + }, + { + "label": "a person sits in a chair in a living room next to some windows", + "pred": "a living room filled with furniture and people" + }, + { + "label": "a female statue in a sea of green grass next to plant", + "pred": "a statue of a man sitting on top of a flower pot" + }, + { + "label": "a statue of a lady carrying a water pitcher", + "pred": "a statue of a man sitting on top of a flower pot" + }, + { + "label": "a man that is standing up to swing a bat", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a man standing on a tennis court holding a racquet", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "at the seawall, the gentlemen are holding up the kite", + "pred": "a man standing next to a man flying a kite" + }, + { + "label": "a profession baseball player holding a bat", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a tennis player in a crowded arena waits for the next volley", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a satute in a field of grass near a plant", + "pred": "a statue of a man sitting on top of a flower pot" + }, + { + "label": "a large tower that has a big clock at top", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a blending mixer sitting on a kitchen counter", + "pred": "a blender filled with food on top of a counter" + }, + { + "label": "a living room that has some couches and tables in it", + "pred": "a living room filled with furniture and decor" + }, + { + "label": "a man makes a face while holding a video game controller", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a blinder that has some vegetables in it", + "pred": "a blender filled with food on top of a counter" + }, + { + "label": "a statue us standing in some green grass", + "pred": "a statue of a man sitting on top of a flower pot" + }, + { + "label": "a man on his cellphone posing for a picture", + "pred": "a man taking a picture of himself in front of a group of people" + }, + { + "label": "the big ben clock tower towering over the city of london", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a living room with windows, chairs, table, lamps, and a person sitting in a chair with a walker beside it", + "pred": "a living room filled with furniture and people" + }, + { + "label": "a man swings a glider across a big buidings roof", + "pred": "a man standing next to a man flying a kite" + }, + { + "label": "men attempt to fly a kite on a beach", + "pred": "a man standing next to a man flying a kite" + }, + { + "label": "a man holds pizza crust in his mouth", + "pred": "a man eating a slice of pizza" + }, + { + "label": "a living room with the walls painted orange-red color", + "pred": "a living room filled with furniture and decor" + }, + { + "label": "a man playing tennis hits a ball across the court", + "pred": "a man holding a tennis racquet on top of a tennis court" + }, + { + "label": "a man holding a baseball bat in ready position", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "a man as he holds a piece of bread in his mouth", + "pred": "a man eating a slice of pizza" + }, + { + "label": "a man holding a wii controller and pursing his lips", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a building is shown against the blue sky", + "pred": "a clock tower on top of a building" + }, + { + "label": "blender mixing food together on kitchen counter of tile", + "pred": "a blender filled with food on top of a counter" + }, + { + "label": "baseball pitcher in the middle feel about to practice", + "pred": "a baseball player standing on top of a field" + }, + { + "label": "men reaching up towards a blue kite", + "pred": "a man standing next to a man flying a kite" + }, + { + "label": "food on a train with a pie and some vegetable", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "an old brick church rising sending into the sky", + "pred": "a clock tower on top of a building" + }, + { + "label": "a living room that has a couple of chairs in it", + "pred": "a living room filled with furniture and people" + }, + { + "label": "the blender is being used to liquify vegetables for sauces during dinner preparation", + "pred": "a blender filled with food on top of a counter" + }, + { + "label": "a man giving a thumbs up while on a cell phone", + "pred": "a man taking a picture of himself in front of a group of people" + }, + { + "label": "the boy is playing a video game and making a funny face", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "the room has red walls with a blue chair", + "pred": "a living room filled with furniture and decor" + }, + { + "label": "a church clock tower view during the day", + "pred": "a clock tower on top of a building" + }, + { + "label": "a man with a silly look playing a game with remote controllers", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "a woman statue holding a pitcher and basket in a garden", + "pred": "a statue of a man sitting on top of a flower pot" + }, + { + "label": "the men are trying to fly their kite by the water", + "pred": "a man standing next to a man flying a kite" + }, + { + "label": "a man holding a wii controller making a very funny face", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "the man is giving a thumbs up while on his phone", + "pred": "a man taking a picture of himself in front of a group of people" + }, + { + "label": "the room has red wall, white carpet and matching furniture", + "pred": "a living room filled with furniture and decor" + }, + { + "label": "a banana frittata next to a plate of decoratively cut fruit and a cup of coffee", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "a lit up clock is on a tall tower", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a clock tower on top of a tall historic building", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a man with a piece of food in his mouth", + "pred": "a man eating a slice of pizza" + }, + { + "label": "a plate of fruit sitting next to another plate of food on a table", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "the blender is full all the way to the top", + "pred": "a blender filled with food on top of a counter" + }, + { + "label": "the clock on the tower is sort of small", + "pred": "a clock tower on top of a building" + }, + { + "label": "clock tower next to a large building in a city", + "pred": "a large clock tower towering over the city of london" + }, + { + "label": "a man with a piece of flat bread sticking out of his mouth", + "pred": "a man eating a slice of pizza" + }, + { + "label": "a man with a pizza hanging out of his mouth", + "pred": "a man eating a slice of pizza" + }, + { + "label": "breakfast on a tray consisting of coffee, crepe, and artistically sliced fruit", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "a table that has plates of food, cups, and silver ware on it", + "pred": "a white plate topped with a sandwich and a cup of coffee" + }, + { + "label": "a long stone wall at a church with a cemetary", + "pred": "a church with a clock on the side of it" + }, + { + "label": "a stove that has some food on it", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a oven with the food flipped over in it", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "open oven door with metal pie plate of spilled food", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a mess has been made in a stove because the pie fell", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "the dessert has spilled out of the pan onto the stove door and the floor", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "room with wood floors and a stone fire place", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a well-lit and well-decorated living room shows a glimpse of a glass front door through the corridor", + "pred": "a living room filled with furniture and decor" + }, + { + "label": "a church near a cemetary", + "pred": "a church with a clock on the side of it" + }, + { + "label": "a wall is surrounding a graveyard at a cemetery", + "pred": "a church with a clock on the side of it" + }, + { + "label": "living room area of home with wood flooring and fireplace", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a old looking tower that has a clock on it", + "pred": "a church with a clock on the side of it" + }, + { + "label": "an old gothic church next to a cemetery with a rock fence in front", + "pred": "a church with a clock on the side of it" + }, + { + "label": "a business window with an \"atm inside\" sign, reflecting a clock tower", + "pred": "a clock on the side of a building" + }, + { + "label": "a living room with a fireplace and glass slider doors", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "the clock shown above has someone's name on it", + "pred": "a clock on the side of a building" + }, + { + "label": "purple and blue building which has an atm inside", + "pred": "a clock on the side of a building" + }, + { + "label": "a window with an atm inside sign", + "pred": "a clock on the side of a building" + }, + { + "label": "a woman is taking notes in front of her laptop", + "pred": "a person sitting on a bed using a laptop computer" + }, + { + "label": "the reflection of a clock and traffic is seen through a window with an \"atm inside\" sticker", + "pred": "a clock on the side of a building" + }, + { + "label": "a small boy trying to fly a small kite", + "pred": "a young boy holding a kite in a park" + }, + { + "label": "a man looking at camera preparing food in kitchen", + "pred": "a man pouring wine into a wine glass" + }, + { + "label": "a pizza being made within the oven", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a large window with a sign that reads atm inside", + "pred": "a clock on the side of a building" + }, + { + "label": "a young boy flying a colorful kite on top of a sidewalk", + "pred": "a young boy holding a kite in a park" + }, + { + "label": "a man is stirring something in a small bowl", + "pred": "a man pouring wine into a wine glass" + }, + { + "label": "a clock protruding from the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "a woman writing something down on paper while the laptop sits on the table", + "pred": "a person sitting on a bed using a laptop computer" + }, + { + "label": "a woman writes in her notebook at her desk", + "pred": "a person sitting on a bed using a laptop computer" + }, + { + "label": "the man is holding a bowl over dough on the kitchen counter", + "pred": "a man pouring wine into a wine glass" + }, + { + "label": "a young boy gets ready to fly a kite", + "pred": "a young boy holding a kite in a park" + }, + { + "label": "a student works on an academic paper at her desk, computer screen glowing", + "pred": "a person sitting on a bed using a laptop computer" + }, + { + "label": "two naked babies on training toilets in a bathroom", + "pred": "two little girls sitting on a toilet in a bathroom" + }, + { + "label": "a clock tower by street next to cars at night", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a pizza displayed in an oven with the door open", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a small roomw ith a televisiona nd some furniture in it", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a young woman writes in a notebook beside an open notebook computer", + "pred": "a person sitting on a bed using a laptop computer" + }, + { + "label": "a clock tower that is sitting in the middle of the street", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a tv and a statue laying on the ground, next to a window", + "pred": "a flat screen tv sitting on top of a wooden stand in front of a window" + }, + { + "label": "a statue of a bodt stting on a cart with wheels", + "pred": "a flat screen tv sitting on top of a wooden stand in front of a window" + }, + { + "label": "little girls sitting next to each other in a bathroom", + "pred": "two little girls sitting on a toilet in a bathroom" + }, + { + "label": "the woman is playing tennis while a crowd watches", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "the chair and couch are in the room with the fireplace", + "pred": "a living room filled with furniture and a fireplace" + }, + { + "label": "a statue of a body in the room", + "pred": "a flat screen tv sitting on top of a wooden stand in front of a window" + }, + { + "label": "a woman waiting for a serve while playing tennis", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a boy with a kite is standing on a sidewalk", + "pred": "a young boy holding a kite in a park" + }, + { + "label": "a boy holding a kite while standing on a sidewalk", + "pred": "a young boy holding a kite in a park" + }, + { + "label": "a plate of food being heated in a microwave", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "a man standing in a kitchen cooking food", + "pred": "a man pouring wine into a wine glass" + }, + { + "label": "a pan that is sitting inside of a oven", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a clock that is sitting on the side of a tower", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a clock tower, in the middle of the night", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a young woman playing tennis in a tournament", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a pair of men fly a kite in a grassy field", + "pred": "people standing on top of a lush green field" + }, + { + "label": "a female tennis player stand on a tennis court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a black sculpture of a torso is on the floor next to a tv", + "pred": "a flat screen tv sitting on top of a wooden stand in front of a window" + }, + { + "label": "a large colgate clock is by the water", + "pred": "a large clock on the side of a large body of water" + }, + { + "label": "a man swings at a tennis ball on a tennis court", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a bell tower with a clock built inside of it", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a man standing in a kitchen preparing a meal", + "pred": "a man pouring wine into a wine glass" + }, + { + "label": "a woman leaning over a bit near the end of a court", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a white clock is on top of a tower", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a large tower with a clock on it sitting near a road", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a cheesy dish sits in an oven and cooks", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a large clock sits on the bank of a body of water", + "pred": "a large clock on the side of a large body of water" + }, + { + "label": "a microwave oven with some food inside of it", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "a colorful square shaped pizza in an oven", + "pred": "a pizza sitting on top of a stove top oven" + }, + { + "label": "a building with a clock coming out of it", + "pred": "a clock on the side of a building" + }, + { + "label": "a large clock hanging off the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "two children are practicing using the potty next to each other", + "pred": "two little girls sitting on a toilet in a bathroom" + }, + { + "label": "a huge clock on a shoreline by several large buildings", + "pred": "a large clock on the side of a large body of water" + }, + { + "label": "a slow motion view of a person swinging a tennis racket", + "pred": "young men playing a game of frisbee" + }, + { + "label": "three images show the man swinging a racket at the tennis ball", + "pred": "young men playing a game of frisbee" + }, + { + "label": "two people standing in a field flying a kite", + "pred": "people standing on top of a lush green field" + }, + { + "label": "two babies sitting on their potties in the bathroom", + "pred": "two little girls sitting on a toilet in a bathroom" + }, + { + "label": "a set of twins who are taking a bath", + "pred": "two little girls sitting on a toilet in a bathroom" + }, + { + "label": "three images of the same man hitting a tennis ball", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a microwave that has some food in it", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "a big building with a clock on the top and one in the middle", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a large clock and sign amongst a city skyline waterfront", + "pred": "a large clock on the side of a large body of water" + }, + { + "label": "adult males in large grassy field with large kite", + "pred": "people standing on top of a lush green field" + }, + { + "label": "three pictures of a man hitting a tennis ball", + "pred": "young men playing a game of frisbee" + }, + { + "label": "a refrigerator in a room next to a wall", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "the shades are partly drawn on this black and white motif room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a clock hanging from a store with letters instead of numbers on it", + "pred": "a clock on the side of a building" + }, + { + "label": "a living room with couches and chairs", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a black and white living room with modern furniture", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "food is cooking in a stainless steal microwave", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "a clock is mounted to the side of a tower", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "a giant colgate clock sitting on the side of a river", + "pred": "a large clock on the side of a large body of water" + }, + { + "label": "a living room with tv and entertainment center beside a sculpture of a torso", + "pred": "a flat screen tv sitting on top of a wooden stand in front of a window" + }, + { + "label": "a black refrigerator in a newly decorated house", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "a living room with a checkered floor and other black and white decorative items", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a clock tower with a compass sitting on top of it", + "pred": "a clock tower with a clock on each of it's sides" + }, + { + "label": "food is cooking inside of a microwave oven", + "pred": "a microwave oven sitting on top of a counter" + }, + { + "label": "two people standing on a field with a kite flying above", + "pred": "people standing on top of a lush green field" + }, + { + "label": "a lounge chair and a black couch in this room", + "pred": "a living room filled with furniture and a window" + }, + { + "label": "a double door refrigerator is standing in a room", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "a kite flying around a park with two men near it", + "pred": "people standing on top of a lush green field" + }, + { + "label": "large black two door refrigerator in an apartment under renovation", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "a large red fridge is sitting on the red carpet", + "pred": "a white refrigerator sitting inside of a room" + }, + { + "label": "a clock outside a building says the time is 4:30", + "pred": "a clock on the side of a building" + }, + { + "label": "four pictures showing the way a stew being cooked looks at various stages", + "pred": "a table topped with plates of food" + }, + { + "label": "a chair next to a table that has electronic items on it", + "pred": "a laptop computer sitting on top of a wooden desk" + }, + { + "label": "male professional baseball players playing a baseball game", + "pred": "a baseball game in progress with the batter up to bat" + }, + { + "label": "a woman sitting in a room near some computers", + "pred": "a woman sitting on a couch in front of a laptop computer" + }, + { + "label": "people are flying a kite on mounds of grass", + "pred": "a man flying a kite on top of a lush green field" + }, + { + "label": "a baseball player swings his bat while the umpire and referee wait behind him", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "a laptop computer is sitting on a desk", + "pred": "a laptop computer sitting on top of a table" + }, + { + "label": "a stuffed bear, a keyboard, an ipod and microphone", + "pred": "a teddy bear sitting on top of a computer keyboard" + }, + { + "label": "two girls play wii in a room with ourange rugs and white sofas", + "pred": "a woman standing next to a man on a couch" + }, + { + "label": "a man kneels on the beach preparing a kite", + "pred": "a man laying on the beach with a kite" + }, + { + "label": "a person is holding an hp cd above a laptop computer", + "pred": "a person holding a lap top computer" + }, + { + "label": "a den with a couch, ottoman, television and windows", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "young people are flying a kite in the air", + "pred": "a man holding a kite in front of a group of people" + }, + { + "label": "a professional baseball player takes a swing in front of fans in a crowded stadium", + "pred": "a baseball player holding a bat on top of a field" + }, + { + "label": "playing wii with the nunchuk never looked so good", + "pred": "a man and a woman playing a game with nintendo wii controllers" + }, + { + "label": "two stuffed animals posed together in black and white", + "pred": "a brown teddy bear sitting next to a white teddy bear" + }, + { + "label": "a man sits on a couch holding his phone", + "pred": "a man sitting on a couch in a room" + }, + { + "label": "a woman tennis player getting ready to be served the ball", + "pred": "a woman holding a tennis racquet on a tennis court" + }, + { + "label": "a man is staring at something in his hand", + "pred": "a man holding a nintendo wii game controller" + }, + { + "label": "people are windsurfing near a beach on a cloudy day", + "pred": "kites being flown over a body of water" + }, + { + "label": "a teddy bear and a stuffed fish set next to each other", + "pred": "a brown teddy bear sitting on a wooden bench" + }, + { + "label": "the woman is getting ready to serve in the tennis game", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a man looking down at a baseball bat that he is holding in his hands", + "pred": "a man in a military uniform and a woman in a military uniform" + }, + { + "label": "a man fixing his kite with a woman on his left and a man to his back right", + "pred": "a man and woman standing on a beach flying a kite" + }, + { + "label": "pumpkins that have been carved with different faces in them", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "people flying kites in a park on a windy day", + "pred": "a crowd of people flying kites in a park" + }, + { + "label": "people flying kites in a park on a windy day", + "pred": "a crowd of people flying kites in a park" + }, + { + "label": "a woman talking on her cell phone while sitting on the curb", + "pred": "a woman sitting on a sidewalk next to a fire hydrant" + }, + { + "label": "a pile of discarded household appliances and furniture sit on a street corner", + "pred": "a pile of trash sitting on the side of a road" + }, + { + "label": "tall stone tower building and beautiful blue sky", + "pred": "a tall brick building with a clock tower" + }, + { + "label": "a young boy on a tennis court prepares to hit a tennis ball with his racquet", + "pred": "a man holding a tennis racquet on a tennis court" + }, + { + "label": "a nice living room set up with two couches and a television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a living room with a chair, couch, coffee table and television", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "clouds soar above a tall building on a sunny day", + "pred": "a tall brick building with a clock tower" + }, + { + "label": "empty room with the lights on and tv on", + "pred": "a living room filled with furniture and a tv" + }, + { + "label": "a man holding a baby girl while seated in a cafe", + "pred": "a little boy sitting at a table with a man" + }, + { + "label": "woman playing in a tennis match in a tennis court", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "the man is using chopsticks to eat his meal", + "pred": "a man and a woman sitting at a table with food" + }, + { + "label": "a woman leans forward while swinging a tennis racket", + "pred": "a woman standing on a tennis court holding a racquet" + }, + { + "label": "the cell phone is broken at the feet of someone in flip flops", + "pred": "a person sitting on a wooden floor with a cell phone" + }, + { + "label": "he was holding the baby in his chair at the dining table", + "pred": "a little boy sitting at a table with a man" + }, + { + "label": "men on a field playing baseball", + "pred": "a batter, catcher and umpire during a baseball game" + }, + { + "label": "plate of food with meats, potatoes, eggs, and fruit", + "pred": "a plate of food on a table" + }, + { + "label": "a plate filled with strange exotic fruits and eggs", + "pred": "a plate of food on a table" + }, + { + "label": "multiple plates of different types of food on a table", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a plate filled with several types of decadent foods", + "pred": "a plate of food on a table" + }, + { + "label": "dinner plate with potatoes, meat, an egg, and a chocolate-dipped strawberry", + "pred": "a plate of food on a table" + }, + { + "label": "a dried black flower in a long, tall black & white vase", + "pred": "a vase with a flower in it sitting on a table" + }, + { + "label": "a thin wine bottle sits on a table against a wall", + "pred": "a vase with a flower in it sitting on a table" + }, + { + "label": "plates of shrimp, vegetables, and noodles served with tea", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a display of fine food and spices on a wooden table", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a meal laid out on a brown table from above", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a brown and white vase with foliage on a small table", + "pred": "a vase with a flower in it sitting on a table" + }, + { + "label": "a black and whit vase sitting on a small table", + "pred": "a vase with a flower in it sitting on a table" + }, + { + "label": "thin black and white vase with black flowers", + "pred": "a vase with a flower in it sitting on a table" + }, + { + "label": "three course dinner is served on a table", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a little baby is getting a haircut in a pink chair", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a baby sitting in a chair getting a haircut at a salon", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a barber shop with a young child getting a haircut", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a baby sitting in a chair getting a haircut", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "people sitting down to eat and having conversations", + "pred": "people sitting around a dining room table" + }, + { + "label": "a family sitting down at a table for a meal", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "people talking and sharing a meal in a restaurant", + "pred": "people sitting around a dining room table" + }, + { + "label": "people sitting in a restaurant booth eating food", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "a baby getting a hair cut in the salon sitting in the chair", + "pred": "a woman holding a cell phone in her hand" + }, + { + "label": "a family sitting at a large table in a restaurant", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "a family sits around a wooden table talking and eating in a restaurant", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "seven people having a light meal and discussion at a single large table", + "pred": "people sitting around a dining room table" + }, + { + "label": "people stare up at something out of the frame", + "pred": "a woman using a hair dryer to dry her hair" + }, + { + "label": "seven business people eating and talking around a dining table", + "pred": "people sitting around a dining room table" + }, + { + "label": "people sit at a table eating", + "pred": "people sitting around a dining room table" + }, + { + "label": "people sit in a restaurant together", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "a man is watching his daughter get her hair done", + "pred": "a woman using a hair dryer to dry her hair" + }, + { + "label": "a painting of a white vase holding yellow tulips", + "pred": "a flower in a vase on a table" + }, + { + "label": "two men next to each other holding wine glasses", + "pred": "a man and a woman holding wine glasses" + }, + { + "label": "a woman is air drying a young child's hair", + "pred": "a woman using a hair dryer to dry her hair" + }, + { + "label": "two men pose for the camera holding glasses of wine", + "pred": "a man and a woman holding wine glasses" + }, + { + "label": "a painting of wilting yellow flowers in a jug", + "pred": "a flower in a vase on a table" + }, + { + "label": "a white vase holds some pretty yellow tulips in this still life study", + "pred": "a flower in a vase on a table" + }, + { + "label": "a small child is getting their hair dried at the salon", + "pred": "a woman using a hair dryer to dry her hair" + }, + { + "label": "a pitcher filled with yellow tulips on a black and white background", + "pred": "a flower in a vase on a table" + }, + { + "label": "two men holding wine glasses posing for a photo", + "pred": "a man and a woman holding wine glasses" + }, + { + "label": "a white vase with yellow tulips against a grey background", + "pred": "a flower in a vase on a table" + }, + { + "label": "small child getting her hair dried with a man standing behind her", + "pred": "a woman using a hair dryer to dry her hair" + }, + { + "label": "a man cutting up his meal before consumption", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "two people are smiling holding empty wine glasses", + "pred": "a man and a woman sitting at a table with wine glasses" + }, + { + "label": "a man eats from a green dish while holding a handheld radio", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "a gentleman wearing a radio eating a plate of food", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "a man picking up soup in a bowl with two utensils", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "two men stand next to each other holding glasses", + "pred": "a man and a woman holding wine glasses" + }, + { + "label": "man sitting at a table holding eating utensils in his hands over his food", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "two friends sharing a drink at a party", + "pred": "a man and a woman holding wine glasses" + }, + { + "label": "man and woman doing a toast with a glass of wine", + "pred": "a man and a woman sitting at a table with wine glasses" + }, + { + "label": "a man and a woman toast their wine glasses", + "pred": "a man and a woman sitting at a table with wine glasses" + }, + { + "label": "friends pose for a picture while holding wine glasses", + "pred": "a man and a woman sitting at a table with wine glasses" + }, + { + "label": "two people, a man and a woman, are toasting with wine glasses", + "pred": "a man and a woman sitting at a table with wine glasses" + }, + { + "label": "the building has a light pole with for lights in front of it", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "the big ben clock tower in red and blue shade of color", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a large clock on top of a large building", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a blurred picture of a clock tower and a lamp post", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a plate holding seasoned meat, string beans and one fork", + "pred": "a plate of food on a table" + }, + { + "label": "a large clock standing among a building with a lamp in the from of the picture", + "pred": "a clock tower in the middle of a city" + }, + { + "label": "a plate with green beans and a protein and some polenta with cheese", + "pred": "a plate of food on a table" + }, + { + "label": "a steak dinner with a side of greenbeans and what looks to be an egg", + "pred": "a plate of food on a table" + }, + { + "label": "a guy holding a pair of metal scissors in front of his eye", + "pred": "a man wearing glasses holding a pair of scissors" + }, + { + "label": "a pork chop some green beans on a white plate and a fork", + "pred": "a plate of food on a table" + }, + { + "label": "a fork, a pork chop, green beans, an egg and parsley on a white plate", + "pred": "a plate of food on a table" + }, + { + "label": "a man is wearing surgical type scissors as bifocal glasses", + "pred": "a man wearing glasses holding a pair of scissors" + }, + { + "label": "a man peering through the handle of folding scissors, as if they were eyeglasses", + "pred": "a man wearing glasses holding a pair of scissors" + }, + { + "label": "a man is looking through the handle of some scissors", + "pred": "a man wearing glasses holding a pair of scissors" + }, + { + "label": "a man looking through a thumb hole on a scissors", + "pred": "a man wearing glasses holding a pair of scissors" + }, + { + "label": "people gathered around a table filled with food", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "a long tunnel with a long table with lots of seats and candles next to wine glasses", + "pred": "a room filled with tables and chairs filled with wine" + }, + { + "label": "gathering of people dishing out food set on a long table with checkered tablecloth", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "people are lined up along a long picnic table", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "tables next to each other in a row", + "pred": "a room filled with tables and chairs filled with wine" + }, + { + "label": "an old darkly lit tunnel with set tables", + "pred": "a room filled with tables and chairs filled with wine" + }, + { + "label": "a long table with many containers of food on it and many people around it", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "the table is very long and dimly lit", + "pred": "a room filled with tables and chairs filled with wine" + }, + { + "label": "people eating food at an outdoor picinic", + "pred": "a large group of people sitting at a table with food" + }, + { + "label": "the long table is set for a formal dinner with glassware for wine", + "pred": "a room filled with tables and chairs filled with wine" + }, + { + "label": "a young man pouring glasses of wine in a kitchen", + "pred": "a man standing next to a table holding a wine glass" + }, + { + "label": "a man standing in front of a wooden table covered in glasses of wine", + "pred": "a man standing next to a table holding a wine glass" + }, + { + "label": "a person pouring some wine standing by a friend", + "pred": "a man standing next to a table holding a wine glass" + }, + { + "label": "bartender opening a bottle of wine while patron waits patiently", + "pred": "a man holding a wine glass in front of a wooden table" + }, + { + "label": "the man is pouring a glass of wine, and there are several others on the table", + "pred": "a man standing next to a table holding a wine glass" + }, + { + "label": "dinner party guests enjoy a glass of fine wine", + "pred": "a man standing next to a table holding a wine glass" + }, + { + "label": "different colored teddy bears sitting on top of a blue table", + "pred": "stuffed animals sitting on top of a table" + }, + { + "label": "a man takes a picture of himself eating food", + "pred": "a man eating a slice of pizza in a garden" + }, + { + "label": "a man taking a selfie while eating pizza", + "pred": "a man eating a slice of pizza in a garden" + }, + { + "label": "a man taking a photo with his right hand and eating food with his left hand", + "pred": "a man eating a slice of pizza in a garden" + }, + { + "label": "man taking a photograph of himself eating a pizza slice", + "pred": "a man eating a slice of pizza in a garden" + }, + { + "label": "a person eating some food", + "pred": "a man eating a slice of pizza in a garden" + }, + { + "label": "a mother standing behind two baby boys sitting at a table", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "a barbed wire fence has a teddy bear in it", + "pred": "a man standing next to a pole next to a tree" + }, + { + "label": "a white plate topped with a fried egg next to a salad", + "pred": "a plate of food on a table" + }, + { + "label": "a bartender opening a bottle with a rag", + "pred": "a man holding a wine glass in front of a wooden table" + }, + { + "label": "teddy bears sitting at a small table in front of a christmas tree", + "pred": "a living room filled with stuffed animals and a christmas tree" + }, + { + "label": "the room is full of stuffed animals arranged in chairs", + "pred": "a living room filled with stuffed animals and a christmas tree" + }, + { + "label": "teddy bears sitting around a table and a christmas tree", + "pred": "a living room filled with stuffed animals and a christmas tree" + }, + { + "label": "a woman with two young children at a table", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "a chain link fence is overgrown with vines", + "pred": "a man standing next to a pole next to a tree" + }, + { + "label": "hey man that is opening up a bottle of wine", + "pred": "a man holding a wine glass in front of a wooden table" + }, + { + "label": "two people that are sitting on a table", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a table full of different teddy bears with place cards", + "pred": "stuffed animals sitting on top of a table" + }, + { + "label": "a plate with a green salad and an egg", + "pred": "a plate of food on a table" + }, + { + "label": "a young man serving wine at a bar", + "pred": "a man holding a wine glass in front of a wooden table" + }, + { + "label": "stuffed teddy bears sitting on chairs at a table", + "pred": "a living room filled with stuffed animals and a christmas tree" + }, + { + "label": "a stuffed animal sits atop a barbed wire fence", + "pred": "a man standing next to a pole next to a tree" + }, + { + "label": "a bartender opens a wine bottle with a towel", + "pred": "a man holding a wine glass in front of a wooden table" + }, + { + "label": "a man and a woman sitting at table", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a teddy bear is sitting on the rail of a wire fence", + "pred": "a man standing next to a pole next to a tree" + }, + { + "label": "a man and a woman eating salad near the kitchen", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a man and a woman sitting inside eating salad", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "two people sitting at a table with plates of food", + "pred": "a man and a woman sitting at a table with a laptop" + }, + { + "label": "a plate with an assortment of food including an egg and salad", + "pred": "a plate of food on a table" + }, + { + "label": "a teddy bear sitting in a very unusual spot high up", + "pred": "a man standing next to a pole next to a tree" + }, + { + "label": "a display of various types of collectibles", + "pred": "stuffed animals sitting on top of a table" + }, + { + "label": "a plate with a fried egg and a salad", + "pred": "a plate of food on a table" + }, + { + "label": "stuffed animals are displayed down a table with notecards", + "pred": "stuffed animals sitting on top of a table" + }, + { + "label": "green, yellow, and pink teddy bears sitting on top of a table on display", + "pred": "stuffed animals sitting on top of a table" + }, + { + "label": "woman watching four children play in a house", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "a pastry station, with an assortment of fillings and sauces", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a plate of food with a fried egg and colorful vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "a woman doing arts and crafts with kids", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "a table set with stuffed animals", + "pred": "a living room filled with stuffed animals and a christmas tree" + }, + { + "label": "a chef's display of ingredients and pastry creations", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "pastry items and toppings on display on a table", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a pastry chief waiting on customers in a restaurant", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "chef at counter with baked goods, baking pans and containers of toppings", + "pred": "a table topped with plates of food and drinks" + }, + { + "label": "a white plate topped with eggs and potatoes", + "pred": "a plate of food on a table" + }, + { + "label": "a white plate with breakfast foods on it", + "pred": "a plate of food on a table" + }, + { + "label": "a man pouring wine into two other mens wine glasses", + "pred": "a man and a woman holding wine glasses in their hands" + }, + { + "label": "the woman sits at the table with the two children doing crafts", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "two women and one man pose for a picture", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a girl holding a stuffed teddy bear that has large teeth to her face", + "pred": "a woman holding a stuffed animal next to a teddy bear" + }, + { + "label": "three people, one in a suit, are posing for the camera", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a young woman is hugging a weird teddy bear", + "pred": "a woman holding a stuffed animal next to a teddy bear" + }, + { + "label": "a young woman smiles with her stuffed teddy bear", + "pred": "a woman holding a stuffed animal next to a teddy bear" + }, + { + "label": "an old teddy bear is wearing vampire teeth being held by a temptress", + "pred": "a woman holding a stuffed animal next to a teddy bear" + }, + { + "label": "a woman holds a stuffed animal to her face", + "pred": "a woman holding a stuffed animal next to a teddy bear" + }, + { + "label": "a man with a nametag in a suit and tie and two women holding glasses on each side of him", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "three people standing next to each other in front of a doorway", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "three people at an event of some kind", + "pred": "a man and a woman posing for a picture" + }, + { + "label": "a plate of food containing meat and beans", + "pred": "a plate of food on a table" + }, + { + "label": "plate of food that includes chicken, beans and a pickle", + "pred": "a plate of food on a table" + }, + { + "label": "a man pouring wine into the glasses of others", + "pred": "a man and a woman holding wine glasses in their hands" + }, + { + "label": "a plate covered with eggs, meat, pototes and veggies", + "pred": "a plate of food on a table" + }, + { + "label": "fancy food on a plate on a wooden table", + "pred": "a plate of food on a table" + }, + { + "label": "a man pouring white wine into a couple of wine glasses", + "pred": "a man and a woman holding wine glasses in their hands" + }, + { + "label": "three over easy cooked eggs with fried potatoes", + "pred": "a plate of food on a table" + }, + { + "label": "a table setting with a breakfast platter on it", + "pred": "a plate of food on a table" + }, + { + "label": "a dinner plate with beans, bones, and veggies", + "pred": "a plate of food on a table" + }, + { + "label": "a clear, glass vase full of fresh cut tulips", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a plate on a wooden table topped with lots of food", + "pred": "a plate of food on a table" + }, + { + "label": "a boquet of flowers sits on a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man pours a drink of wine for two companions", + "pred": "a man and a woman holding wine glasses in their hands" + }, + { + "label": "a. clear vase containing bouquet of pink with white tipped tulips", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "vase full of tulips arranged on a table in someones kitchen", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "the dessert has been split into two halves on the plate", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a clear vase sits on a table and holds long stemmed tulips", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a desert split open showing a cake filling", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a plate of breakfast food sits on a table", + "pred": "a plate of food on a table" + }, + { + "label": "man in black blazer pouring wine in glasses", + "pred": "a man and a woman holding wine glasses in their hands" + }, + { + "label": "a pastry with sugar on the outside that is cut in half", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a piece of food sits on the plate on the table", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a table with many plates of food on top", + "pred": "a table topped with plates of food" + }, + { + "label": "three vases with flowers inside on a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a person sitting at a wooden table holding an electronic device", + "pred": "a person holding a pair of scissors next to a piece of bread" + }, + { + "label": "a woman holding a smart phone at a table", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "two people at a restaurant, one of whom is looking at a cellphone", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "a large glass vase with leaves painted on it's sides", + "pred": "a large vase sitting on top of a table" + }, + { + "label": "a table that has several plates of breakfast food on it", + "pred": "a table topped with plates of food" + }, + { + "label": "a classroom with kids and various men in suits", + "pred": "a small group of children sitting at a table in a classroom" + }, + { + "label": "a plate of food and a glass of orange juice", + "pred": "a plate of food on a table" + }, + { + "label": "two people sitting at a table with beverages on it and the woman holding her phone", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "a person is opening a plastic package with their hands", + "pred": "a person holding a pair of scissors next to a piece of bread" + }, + { + "label": "a man and woman at a table with several drinks", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "a table is covered in breakfast foods at a waffle house", + "pred": "a table topped with plates of food" + }, + { + "label": "a person is removing the packaging from a cordless soldering iron", + "pred": "a person holding a pair of scissors next to a piece of bread" + }, + { + "label": "someone is opening up a packaged product at a table", + "pred": "a person holding a pair of scissors next to a piece of bread" + }, + { + "label": "breakfast sits on the table, with eggs, hash brown and roll", + "pred": "a plate of food on a table" + }, + { + "label": "three different vases containing several red tulip blooms", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man and women sitting at a booth photographing tea", + "pred": "a man and woman sitting at a table with a plate of food" + }, + { + "label": "two plates of breakfast food and a glass of juice", + "pred": "a plate of food on a table" + }, + { + "label": "a person is removing an object from the plastic casing", + "pred": "a person holding a pair of scissors next to a piece of bread" + }, + { + "label": "breakfast items including juice are on the table", + "pred": "a plate of food on a table" + }, + { + "label": "a brown teddy bear sitting at a table with colored pegs", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "a table full of plates of breakfast food", + "pred": "a table topped with plates of food" + }, + { + "label": "various plates of food that include hashbrowns, waffles and grits", + "pred": "a table topped with plates of food" + }, + { + "label": "a vase with green leaves is sitting on display", + "pred": "a large vase sitting on top of a table" + }, + { + "label": "a pastry is torn in half on a plate", + "pred": "a piece of cake sitting on top of a white plate" + }, + { + "label": "a wooden table topped with plates filled with lots of food", + "pred": "a table topped with plates of food and vegetables" + }, + { + "label": "a beautiful picture of a table full of flower vases", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "people sitting down at a dining room table next to dishes", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a clock right outside of the tall building", + "pred": "a clock on the side of a building" + }, + { + "label": "a slender high rise building is fashioned behind a pole clock", + "pred": "a clock on the side of a building" + }, + { + "label": "a vase with various flowers in it sitting on a tiled counter", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a large painted glossy vase sits on a table in a store", + "pred": "a large vase sitting on top of a table" + }, + { + "label": "a group if children having a snack at their desks while a group of adults in suits visits them", + "pred": "a small group of children sitting at a table in a classroom" + }, + { + "label": "a teddy bear with a hammer next to a peg board toy", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "three vases with different designs holding red flowers", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "antique hand painted urn on display in store", + "pred": "a large vase sitting on top of a table" + }, + { + "label": "man having lunch with kids", + "pred": "a small group of children sitting at a table in a classroom" + }, + { + "label": "clock post outside of a tall brick apartment building", + "pred": "a clock on the side of a building" + }, + { + "label": "various pottery vases filled with fresh, red tulips", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a clock on top of a signpost stands in front of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "a table with plates of food that include corn and fruit", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a pole has a large clock on top next to a tall building with stairs that lead up to a doorway", + "pred": "a clock on the side of a building" + }, + { + "label": "a full view of a classroom with students and politicians", + "pred": "a small group of children sitting at a table in a classroom" + }, + { + "label": "a large glass jar sitting on a table", + "pred": "a large vase sitting on top of a table" + }, + { + "label": "a meal sits on a table that has been well decorated", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "a table has colorful flowers and food on it", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "people sitting around a long table talking to each other", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a vase with flowers inside and some strange growth at the base", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "flower are placed in a vase covered in shells", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a vase with red flowers in it on a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a teddy bear sitting in front of toy wooden shapes", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "people sitting at a dining table", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a brown teddy bear sits by a child's toy", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "a patio table with two dinner plates of food and two bowls of salad", + "pred": "a table topped with plates of food and vegetables" + }, + { + "label": "a food plate is shown with other dishes around it", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "food and flowers sits on a table", + "pred": "a table topped with lots of different types of food" + }, + { + "label": "long dining room table filled with people in dress clothing", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a teddy bear is sitting near to a toy with pegs", + "pred": "a teddy bear sitting on top of a wooden table" + }, + { + "label": "an outdoor table with several plates and bowls of food on it", + "pred": "a table topped with plates of food and vegetables" + }, + { + "label": "a dinner table with two plates and two bowls of food", + "pred": "a table topped with plates of food and vegetables" + }, + { + "label": "a long wooden restaurant table surrounded by people seated", + "pred": "a large group of people sitting at a table" + }, + { + "label": "a plate filled with food sitting next to three glasses", + "pred": "a table topped with plates of food and wine glasses" + }, + { + "label": "a plate of meats and cheese's next to three wine glasses", + "pred": "a table topped with plates of food and wine glasses" + }, + { + "label": "people at a dining table talking to each other", + "pred": "a large group of people sitting around a table" + }, + { + "label": "food set out on an outdoor picnic table", + "pred": "a table topped with plates of food and vegetables" + }, + { + "label": "in a classroom school lunch for the school boys", + "pred": "a small group of children sitting at a table in a classroom" + }, + { + "label": "a table displaying wine glasses and a platter of assorted meats and cheeses", + "pred": "a table topped with plates of food and wine glasses" + }, + { + "label": "a person holding a huge teddy bear while riding a bike in the street", + "pred": "a crowd of people riding bikes down a street" + }, + { + "label": "people sitting at a long table in a restaurant with many plates", + "pred": "a large group of people sitting around a table" + }, + { + "label": "a boy is riding a bike with a teddy bear as a person sitting is toasting a beer", + "pred": "a crowd of people riding bikes down a street" + }, + { + "label": "people riding bicycles with a teddy bear on a city street", + "pred": "a crowd of people riding bikes down a street" + }, + { + "label": "people gathered at a table in a restaurant", + "pred": "a large group of people sitting around a table" + }, + { + "label": "group of adults enjoying food and conversation together", + "pred": "a large group of people sitting around a table" + }, + { + "label": "a large group of people sitting at a table with plates of food", + "pred": "a large group of people sitting around a table" + }, + { + "label": "a white plate containing sliced ham and cheese sitting on a table next to wine glasses", + "pred": "a table topped with plates of food and wine glasses" + }, + { + "label": "the wine has been poured and ready to drink", + "pred": "a table topped with plates of food and wine glasses" + }, + { + "label": "a woman holding a teddy bear riding a bike with friends", + "pred": "a crowd of people riding bikes down a street" + }, + { + "label": "woman holding a teddy bear on the back of a bicycle", + "pred": "a crowd of people riding bikes down a street" + }, + { + "label": "bread and fruit are on a table with a knife and fork", + "pred": "a table topped with a plate of food and a knife" + }, + { + "label": "a person is eating at a table with plates, a fork, knife, spoon, cup, and cell phone on it", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "bread, ham, fruit, jam, and a glass of orange juice", + "pred": "a table topped with a plate of food and a knife" + }, + { + "label": "an assortment of meats and cheeses with bread", + "pred": "a table topped with a plate of food and a knife" + }, + { + "label": "a variety of different types of food on a table", + "pred": "a table topped with a plate of food and a knife" + }, + { + "label": "a selection of breads, meat, spreads, and cheeses", + "pred": "a table topped with a plate of food and a knife" + }, + { + "label": "overhead view of a table with a log and food on it", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "a vase filled with flowers next to a smaller vase filled with even more flowers", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "two vases filled with flowers on a table", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "people eating meal consisting of eggs, lettuce, tomatoes, nuts, and a leafy food wrapped in a tortilla", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "a woman taking a picture of a man eating", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "two vases of fresh flowers sit on top of the table", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "is a picture of a couple, a beany baby bear, and pot of grass on a mantle", + "pred": "a white teddy bear sitting on top of a wooden table" + }, + { + "label": "a beanie baby beside a vintage photo of a man and a woman", + "pred": "a white teddy bear sitting on top of a wooden table" + }, + { + "label": "a vase filled with red and orange flowers", + "pred": "a vase filled with flowers sitting on top of a stove" + }, + { + "label": "old fashioned black and white photo in gilded frame next to a teddy bear", + "pred": "a white teddy bear sitting on top of a wooden table" + }, + { + "label": "a teddy bear, a potted plant and a portrait", + "pred": "a white teddy bear sitting on top of a wooden table" + }, + { + "label": "a cute little teddy bear on a mantle near a vintage photo", + "pred": "a white teddy bear sitting on top of a wooden table" + }, + { + "label": "a clear vase holding drooping orange and red flowers", + "pred": "a vase filled with flowers sitting on top of a stove" + }, + { + "label": "picked peach flowers sit in a vase with water", + "pred": "a vase filled with flowers sitting on top of a stove" + }, + { + "label": "pretty flowers sitting on a hearth next to a fireplace", + "pred": "a vase filled with flowers sitting on top of a stove" + }, + { + "label": "the flowers in the clear glass vase are starting to wilt", + "pred": "a vase filled with flowers sitting on top of a stove" + }, + { + "label": "two children enjoy a meal at a restaurant", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "a bed filled with different types of stuffed animals", + "pred": "a stuffed teddy bear sitting on top of a bed next to another stuffed teddy bear" + }, + { + "label": "kids are sitting at a table with a plate, fork, spoon, and cups on it", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "a pair of scissors sitting on top of a wooden box", + "pred": "a pair of scissors sitting on top of a wooden box" + }, + { + "label": "two teddy bears and a stuffed snowman wearing hats", + "pred": "a stuffed teddy bear sitting on top of a bed next to another stuffed teddy bear" + }, + { + "label": "stuffed animals together on a bed", + "pred": "a stuffed teddy bear sitting on top of a bed next to another stuffed teddy bear" + }, + { + "label": "two children are sitting at a table with food and drinks", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "people eating a meal at a table", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "a young boy and young girl sitting at a table eating food", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "three stuffed animals sitting next to each other on a bed", + "pred": "a stuffed teddy bear sitting on top of a bed next to another stuffed teddy bear" + }, + { + "label": "an open pair of scissors sitting on a wooden box", + "pred": "a pair of scissors sitting on top of a wooden box" + }, + { + "label": "a man sitting in front of a plate of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "people sitting at a table enjoying food", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "a pair of teddy bears laying on a bed", + "pred": "a stuffed teddy bear sitting on top of a bed next to another stuffed teddy bear" + }, + { + "label": "a pair of scissors sitting on a wooden box on a table", + "pred": "a pair of scissors sitting on top of a wooden box" + }, + { + "label": "two small children sit and dine at a table, inside a restaurant", + "pred": "two children sitting at a table with plates of food" + }, + { + "label": "a man at a wooden table looking at a plate of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "group of people smiling and eating a meal at a long table with candles", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "men and women eating dinner at a table", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "a big pair of scissors is on a wooden box", + "pred": "a pair of scissors sitting on top of a wooden box" + }, + { + "label": "a pair of large sheers on top of a box", + "pred": "a pair of scissors sitting on top of a wooden box" + }, + { + "label": "a man smiling while looking at his plate of food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "people sitting around a table with food and drink", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "a man sitting at a table with a plate filled with food", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a man looking happily at some dish in front of him", + "pred": "a man sitting at a table with a plate of food" + }, + { + "label": "a large flower in a vase is sitting on some wood", + "pred": "a vase filled with pink flowers sitting on a wooden table" + }, + { + "label": "a single white rose in a glass vase", + "pred": "a vase filled with pink flowers sitting on a wooden table" + }, + { + "label": "men standing around a table of food in wooden room", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "a vase with a flower in it on a wooden rail", + "pred": "a vase filled with pink flowers sitting on a wooden table" + }, + { + "label": "a glass vase on a bench has a rose in it", + "pred": "a vase filled with pink flowers sitting on a wooden table" + }, + { + "label": "a vase containing water as well as a flower in it", + "pred": "a vase filled with pink flowers sitting on a wooden table" + }, + { + "label": "a hand holding a pair of giant scissors above boxes", + "pred": "a person holding a pair of scissors next to a book" + }, + { + "label": "in a large wooden room people stand around black covered tables", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "people that are eating some food", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "people at a gathering where there is food present", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "people dressed in business casual clothing stand around a table of hors d'oeurves", + "pred": "a man standing in front of a table filled with food" + }, + { + "label": "a giant pair of scissors sitting on top of camera boxes", + "pred": "a person holding a pair of scissors next to a book" + }, + { + "label": "a pair of scissors near a camera and some other devices", + "pred": "a person holding a pair of scissors next to a book" + }, + { + "label": "an oversized pair of scissors are held by a hand", + "pred": "a person holding a pair of scissors next to a book" + }, + { + "label": "a plate on a wooden table full of bread", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "men sit around a table sharing a meal", + "pred": "a large group of people sitting around a table eating food" + }, + { + "label": "a person holding large wooden scissors", + "pred": "a person holding a pair of scissors next to a book" + }, + { + "label": "people that are sitting at a table talking", + "pred": "a large group of people sitting around a table eating food" + }, + { + "label": "people sitting down in the restaurant eating meals", + "pred": "a large group of people sitting around a table eating food" + }, + { + "label": "the large crowd has gathered and is eating", + "pred": "a large group of people sitting around a table eating food" + }, + { + "label": "a table with a plate, wine-filled glass, and bread, among other items", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "an asian family getting together for an enjoyable chinese dinner", + "pred": "a large group of people sitting around a table eating food" + }, + { + "label": "a tray of food on a wooden table", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a meal of burnt toast slices with condiments on the side", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a tray of food on the top of a table", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a young woman licks her lips while eating breakfast", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "the man's hand is bigger then the scissors he is holding", + "pred": "a person holding a pair of scissors in their hand" + }, + { + "label": "a white teddy bear laying on top of a blue rug", + "pred": "a person laying on the floor next to a teddy bear" + }, + { + "label": "woman caught off guard while eating food from her plate", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "hand holding a small pair of scissors with a green handle", + "pred": "a person holding a pair of scissors in their hand" + }, + { + "label": "a hand holding a child's pair of scissors", + "pred": "a person holding a pair of scissors in their hand" + }, + { + "label": "a persons legs sitting on the ground", + "pred": "a person laying on the floor next to a teddy bear" + }, + { + "label": "a woman in white sweater eating food from plate", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a teddy bear and sandals lie strewn at someone's feet", + "pred": "a person laying on the floor next to a teddy bear" + }, + { + "label": "a person sits on the floor beside flip flops and a teddy bear", + "pred": "a person laying on the floor next to a teddy bear" + }, + { + "label": "a woman sits eating food at a table", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "the student is trying to relax on the floor", + "pred": "a person laying on the floor next to a teddy bear" + }, + { + "label": "little girl holding up a big stuffed animal with other children", + "pred": "a little girl holding a stuffed bear next to a crowd of people" + }, + { + "label": "a woman in a bathrobe is eating a meal", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a persons hand with a pair of scissors", + "pred": "a person holding a pair of scissors in their hand" + }, + { + "label": "a girl in plain dress standing next to a white teddy bear", + "pred": "a little girl holding a stuffed bear next to a crowd of people" + }, + { + "label": "someone holding out their hand with a pair of scissors on it", + "pred": "a person holding a pair of scissors in their hand" + }, + { + "label": "two girls are holding a huge stuffed bear near a crowd of kids", + "pred": "a little girl holding a stuffed bear next to a crowd of people" + }, + { + "label": "two girls with a large white teddy bear", + "pred": "a little girl holding a stuffed bear next to a crowd of people" + }, + { + "label": "two young children holding a large teddy bear", + "pred": "a little girl holding a stuffed bear next to a crowd of people" + }, + { + "label": "a white pitcher holding flowers in a window sill", + "pred": "a vase filled with flowers on top of a window sill" + }, + { + "label": "flowers are sitting in the white vase in front of the window", + "pred": "a vase filled with flowers on top of a window sill" + }, + { + "label": "a vase with a handle has wild flowers in it", + "pred": "a vase filled with flowers on top of a window sill" + }, + { + "label": "two teddy bears with one wearing a lrge pink shirt", + "pred": "a brown teddy bear sitting next to a pink teddy bear" + }, + { + "label": "two teddy bears a pink one, and a tan one. the tan bear is wearing a pink shirt that says the harvey girls", + "pred": "a brown teddy bear sitting next to a pink teddy bear" + }, + { + "label": "two stuffed bears and one of them is wearing a shirt", + "pred": "a brown teddy bear sitting next to a pink teddy bear" + }, + { + "label": "a vase with a variety of flowers sitting in the window", + "pred": "a vase filled with flowers on top of a window sill" + }, + { + "label": "a pair of girls are cooking in one pan together", + "pred": "two young girls preparing food in a kitchen" + }, + { + "label": "teddy bear dressed in pink with red ribbon around neck", + "pred": "a brown teddy bear sitting next to a pink teddy bear" + }, + { + "label": "two young girls cooking some fresh asparagus on a stove", + "pred": "two young girls preparing food in a kitchen" + }, + { + "label": "two young girls are cooking green beans on the stove", + "pred": "two young girls preparing food in a kitchen" + }, + { + "label": "two teddy bears are laying side by side on a quilt", + "pred": "a brown teddy bear sitting next to a pink teddy bear" + }, + { + "label": "two girls at stove cooking food in a skillet", + "pred": "two young girls preparing food in a kitchen" + }, + { + "label": "a vase of flowers are sitting in a sunny window", + "pred": "a vase filled with flowers on top of a window sill" + }, + { + "label": "two preteens standing at the stove cooking green beans", + "pred": "two young girls preparing food in a kitchen" + }, + { + "label": "a green plant with hanging branches on a wall", + "pred": "a vase filled with yellow flowers on top of a wall" + }, + { + "label": "a plant hanging from a rack on a white wall", + "pred": "a vase filled with yellow flowers on top of a wall" + }, + { + "label": "a green leafy type plant is located on a wall", + "pred": "a vase filled with yellow flowers on top of a wall" + }, + { + "label": "the large glass plant vase is installed into the wall", + "pred": "a vase filled with yellow flowers on top of a wall" + }, + { + "label": "two people at a bar holding drinks", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "a plant is in a vase of water mounted to the wall", + "pred": "a vase filled with yellow flowers on top of a wall" + }, + { + "label": "a large group is sitting together and eating at a restaurant", + "pred": "a large group of people sitting around a table" + }, + { + "label": "the people are gathered at the table for dinner", + "pred": "a large group of people sitting around a table" + }, + { + "label": "two men standing near a bar drinking together", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "a large group of people pose for a photo at dinner", + "pred": "a large group of people sitting around a table" + }, + { + "label": "the diners are enjoying their various beverages with their meals", + "pred": "a large group of people sitting around a table" + }, + { + "label": "a small vase and a large vase of flowers on a table", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "a blue plate with some shrimp a fork knife and other items of food", + "pred": "a plate of food on a table" + }, + { + "label": "a blue plate holding food that includes shrimp, fries and greens", + "pred": "a plate of food on a table" + }, + { + "label": "downward angled picture of meal for two on a white table", + "pred": "a person sitting at a table with a plate of food" + }, + { + "label": "delicious looking plateful of fried seafood and greens", + "pred": "a plate of food on a table" + }, + { + "label": "the blue plate is full of fried sea food", + "pred": "a plate of food on a table" + }, + { + "label": "a wooden table holding two vases of flowers", + "pred": "a vase filled with flowers sitting on a table" + }, + { + "label": "a blue plate filled with a large serving of foood", + "pred": "a plate of food on a table" + }, + { + "label": "a white plate topped with meat veggies and rice with sauce", + "pred": "a plate of food on a table" + }, + { + "label": "this plate consists of rice with sauce and peas and meat patties on the side", + "pred": "a plate of food on a table" + }, + { + "label": "meat and baked beans are on a plate. there's also a side of vegetables", + "pred": "a plate of food on a table" + }, + { + "label": "a meal of meat and corn and veggies on a white plate", + "pred": "a plate of food on a table" + }, + { + "label": "a meal of fried food, beans, rice, cream and fruit", + "pred": "a plate of food on a table" + }, + { + "label": "pictures of asian style dishes and in the middle a person is eating", + "pred": "a collage of photos of different types of food" + }, + { + "label": "a fruit smoothie is on display on a plate with two strawberries for garnish", + "pred": "a glass of milk sitting on top of a white plate" + }, + { + "label": "a foam box of food", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "pictures of food on a table at a restaurant", + "pred": "a collage of photos of different types of food" + }, + { + "label": "an open white styrofoam flip top container of food", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a multitude of pictures of asian cuisine", + "pred": "a collage of photos of different types of food" + }, + { + "label": "a clear vase that has some flowers in it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a vase with some water and dead flowers in it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "two strawberries sit on a plate next to a milkshake", + "pred": "a glass of milk sitting on top of a white plate" + }, + { + "label": "a collage of photos with many plates of food", + "pred": "a collage of photos of different types of food" + }, + { + "label": "strawberries placed next to the strawberry beverage", + "pred": "a glass of milk sitting on top of a white plate" + }, + { + "label": "a styrofoam container holding rice and other food", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "assortment of finished meals displayed on a table", + "pred": "a collage of photos of different types of food" + }, + { + "label": "a to go box filled with rice, onions, and spinach", + "pred": "a white plate topped with meat and vegetables" + }, + { + "label": "a strawberry milk shake and two strawberries on a plate", + "pred": "a glass of milk sitting on top of a white plate" + }, + { + "label": "flowers in a clear vase filled with water", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a flower and vase that are in the water", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a glass vase of many flowers with water inside", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a young child standing in front of a table with plates of food", + "pred": "a little boy sitting at a table with a plate of food" + }, + { + "label": "a young girl holding up her food bowl", + "pred": "a little boy sitting at a table with a plate of food" + }, + { + "label": "a young girl sitting at a table eating", + "pred": "a little boy sitting at a table with a plate of food" + }, + { + "label": "a young child holds up her bowl with a spoon in it", + "pred": "a little boy sitting at a table with a plate of food" + }, + { + "label": "a little girl holding a cup with food in dishes in front of her", + "pred": "a little boy sitting at a table with a plate of food" + }, + { + "label": "a pink and green marker, next to another object", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a pair of red scissors on top of a desk", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a close up image of the finger holes on a pair of scissors and sharpie markers", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "a red pair of scissors and a green sharpie marker", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "people sitting at a table", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "a very close up view of some scissors and markers", + "pred": "a pair of scissors sitting on top of a table" + }, + { + "label": "people sitting at a long dining table in a restaurant", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "people sitting at a table having a discussion", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "a large group of people at a table", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "people sitting around a table having a meal", + "pred": "a large group of people sitting around a dinner table" + }, + { + "label": "a table topped with a plate of food next to eating utensils", + "pred": "a man and woman sitting at a table with plates of food" + }, + { + "label": "a table with three plates with food and a man and a woman both holding utensil near plates", + "pred": "a man and woman sitting at a table with plates of food" + }, + { + "label": "a woman siting at a restaurant table with a plate of mexican food on it", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a woman in a red shirt sitting at a table", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a woman with the meal on a green plate", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "two people seated at a dining table with a plate of food before them", + "pred": "a man and woman sitting at a table with plates of food" + }, + { + "label": "two people sitting at a table eating", + "pred": "a man and woman sitting at a table with plates of food" + }, + { + "label": "two people sitting at a table eating", + "pred": "a man and woman sitting at a table with plates of food" + }, + { + "label": "a woman is sitting at thte table eating food", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "a woman sitting in a restaurant with mexican food on her plate", + "pred": "a woman sitting at a table with a plate of food" + }, + { + "label": "people sitting at a table with food", + "pred": "a man and a woman sitting at a table" + }, + { + "label": "a man, woman, and boy are sitting at a table", + "pred": "a man and a woman sitting at a table" + }, + { + "label": "a man, woman and child eating together at a restaurant", + "pred": "a man and a woman sitting at a table" + }, + { + "label": "a boy sitting between a man and a woman", + "pred": "a man and a woman sitting at a table" + }, + { + "label": "a woman making cigars in a factory with a pink towel on her head", + "pred": "a woman working on a sewing machine in a factory" + }, + { + "label": "a young child, lady, and man sitting in a booth at a table", + "pred": "a man and a woman sitting at a table" + }, + { + "label": "women sitting next to each other", + "pred": "a woman and a man are looking at a cell phone" + }, + { + "label": "a woman wearing a pink hair towel working in a factory", + "pred": "a woman working on a sewing machine in a factory" + }, + { + "label": "a large amount of people sitting at a table with food", + "pred": "a large group of people sitting around a table" + }, + { + "label": "a plate of food with meat, eggs and potatoes", + "pred": "a plate of food on a table" + }, + { + "label": "two men that are standing together holding glasses", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "the breakfast plate has fried eggs and hash browns", + "pred": "a plate of food on a table" + }, + { + "label": "two guys are smiling while enjoying a beer", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "glasses of wine, salad and french bread on a wooden table", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "two men, one holding a baby, enjoy some wine at a wine bar", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "a table with dishes, wine glasses, and a wine bottle", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "well cooked food in a big bowl on a table", + "pred": "a bowl of pasta and vegetables on a table" + }, + { + "label": "whine and bread on this table", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "a bowl sitting on a plate with cucmbers, lettuce and meat in it", + "pred": "a bowl of pasta and vegetables on a table" + }, + { + "label": "a white plate topped with three different types of foods", + "pred": "a plate of food on a table" + }, + { + "label": "two bowls of food with vegetables on top", + "pred": "a bowl of pasta and vegetables on a table" + }, + { + "label": "a lunch bowl with bread, sausage, tomato, and egg", + "pred": "a plate of food on a table" + }, + { + "label": "a container with a sausage, egg, and tomato slices and another container with bread", + "pred": "a plate of food on a table" + }, + { + "label": "a table at a nice restaurant with glasses of wine", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "a table with breadsticks and three parcially filled glasses of wine and a wine bottle", + "pred": "a table topped with plates of food and glasses of wine" + }, + { + "label": "bowls with some food in it and a fork", + "pred": "a plate of food on a table" + }, + { + "label": "a plate of food on that is sitting on a table", + "pred": "a plate of food on a table" + }, + { + "label": "a brown bear sitting on top of a persons back", + "pred": "a person holding a teddy bear in their hand" + }, + { + "label": "a stuffed animal with a smaller one on its back", + "pred": "a person holding a teddy bear in their hand" + }, + { + "label": "a child with a very cute teddy bear on its back", + "pred": "a person holding a teddy bear in their hand" + }, + { + "label": "a small child that is walking and wearing a small teddy bear backpack", + "pred": "a person holding a teddy bear in their hand" + }, + { + "label": "a bowl filled will all kinds of healthy goodies", + "pred": "a bowl of pasta and vegetables on a table" + }, + { + "label": "a stuffed bear is on someone's red jacket", + "pred": "a person holding a teddy bear in their hand" + }, + { + "label": "a table filled with dishes of very tasty looking food", + "pred": "a bowl of pasta and vegetables on a table" + }, + { + "label": "a large white plate of food on a table", + "pred": "a plate of food on a table" + }, + { + "label": "slices of tomatoes on top of an omelet with a sausage", + "pred": "a plate of food on a table" + }, + { + "label": "a pregnant with writing on her stomach while holding a brown teddy bear", + "pred": "a woman holding a teddy bear next to a stuffed animal" + }, + { + "label": "a white bowl filled with meat, vegetables and broth", + "pred": "a white bowl filled with soup and vegetables" + }, + { + "label": "a box contains a breakfast with an omelet, tomato slices, a sausage, and some toast", + "pred": "a plate of food on a table" + }, + { + "label": "a person holding a plate with food", + "pred": "a white bowl filled with soup and vegetables" + }, + { + "label": "a bowl of stew in a white bowl, being held by a person", + "pred": "a white bowl filled with soup and vegetables" + }, + { + "label": "a very pregnant woman holing a teddy bear by her belly as writes on her stomach", + "pred": "a woman holding a teddy bear next to a stuffed animal" + }, + { + "label": "a hand that is holding a stuffed animal and a pencil", + "pred": "a woman holding a teddy bear next to a stuffed animal" + }, + { + "label": "a bowl of a kind of vegetable stew on a table", + "pred": "a white bowl filled with soup and vegetables" + }, + { + "label": "a bowl has a soup with potatoes and vegetables", + "pred": "a white bowl filled with soup and vegetables" + }, + { + "label": "pregnant woman writing on her stomach holding a yellow teddy bear", + "pred": "a woman holding a teddy bear next to a stuffed animal" + }, + { + "label": "a person holding a teddy bear as she writes on her belly", + "pred": "a woman holding a teddy bear next to a stuffed animal" + }, + { + "label": "a man sitting at a desk cutting up a cigar", + "pred": "a woman working on a sewing machine in a factory" + }, + { + "label": "people sitting around a table next to each other", + "pred": "a large group of people sitting on a bench" + }, + { + "label": "a woman sitting with a washcloth on her head and scissors in her hands", + "pred": "a woman working on a sewing machine in a factory" + }, + { + "label": "a woman working with a pair of scissors as she makes cigars", + "pred": "a woman working on a sewing machine in a factory" + }, + { + "label": "two women are having a glass of wine together", + "pred": "a woman and a man are looking at a cell phone" + }, + { + "label": "people sit outside with wine glasses in hand", + "pred": "a large group of people sitting on a bench" + }, + { + "label": "people gathered around a table outdoors having a meeting", + "pred": "a large group of people sitting on a bench" + }, + { + "label": "two women sitting at a table with wine glasses in their hands", + "pred": "a woman and a man are looking at a cell phone" + }, + { + "label": "people gather around a glass drinking wine", + "pred": "a large group of people sitting on a bench" + }, + { + "label": "women smile as they hold wine glasses", + "pred": "a woman and a man are looking at a cell phone" + }, + { + "label": "people sitting around a long table", + "pred": "a large group of people sitting on a bench" + }, + { + "label": "two women who are holding wine glasses", + "pred": "a woman and a man are looking at a cell phone" + }, + { + "label": "various dishes of food sit in bowls on a table", + "pred": "a series of photos showing different types of food" + }, + { + "label": "plates of food on a table", + "pred": "a series of photos showing different types of food" + }, + { + "label": "a vase filled with red and white flowers on top of a table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "four different pictures of a variety of foods", + "pred": "a series of photos showing different types of food" + }, + { + "label": "different pictures of various types of food", + "pred": "a series of photos showing different types of food" + }, + { + "label": "people standing around each other", + "pred": "a man standing next to a woman in a kitchen" + }, + { + "label": "images of some tasty looking food", + "pred": "a series of photos showing different types of food" + }, + { + "label": "items that are on a counter", + "pred": "plates of food on a counter top" + }, + { + "label": "a crowd of people stand near a man behind a bar with wine bottles on it", + "pred": "a man standing next to a woman in a kitchen" + }, + { + "label": "a table with a bunch of plates of food on it", + "pred": "plates of food on a counter top" + }, + { + "label": "a bowl filled with salad and plates of food", + "pred": "plates of food on a counter top" + }, + { + "label": "a tall vase with red and white tulips in water", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "people line up to taste some wine", + "pred": "a man standing next to a woman in a kitchen" + }, + { + "label": "bunch of flowers sitting in vase filled with water and rocks on bottom", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "salad, rolls and entrees are served on a stainless steel cafeteria counter", + "pred": "plates of food on a counter top" + }, + { + "label": "food is on the counter including a glass of water, rice, vegetables, and more", + "pred": "plates of food on a counter top" + }, + { + "label": "a vase is filled with a bouquet of tulips", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "people are standing in front of some wine bottles", + "pred": "a man standing next to a woman in a kitchen" + }, + { + "label": "a vase of flowers on a dining table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "the small stuffed bear is propped into the car dashboard", + "pred": "a teddy bear sitting in the driver's seat of a car" + }, + { + "label": "a burger and some fries on a tray", + "pred": "a sandwich and french fries on a tray" + }, + { + "label": "large assortment of small and large vases displayed outdoors", + "pred": "a number of vases sitting on top of a building" + }, + { + "label": "the group of people is standing at a wine bar", + "pred": "a man standing next to a woman in a kitchen" + }, + { + "label": "an order of food sits on a table", + "pred": "a sandwich and french fries on a tray" + }, + { + "label": "a plate topped with banana slice covered pan cakes", + "pred": "a table topped with plates of food and cups of coffee" + }, + { + "label": "a scrapbook lays open next to food and a drink", + "pred": "a table topped with plates of food and cups of coffee" + }, + { + "label": "a small teddy bear is wedged into an opening ina car dashboard", + "pred": "a teddy bear sitting in the driver's seat of a car" + }, + { + "label": "a cappuccino with a plate of banana slices on bread", + "pred": "a table topped with plates of food and cups of coffee" + }, + { + "label": "a pile of clay and gold vases sitting in a yard", + "pred": "a number of vases sitting on top of a building" + }, + { + "label": "little tedy bear attached to the dashboard of the car", + "pred": "a teddy bear sitting in the driver's seat of a car" + }, + { + "label": "a table that has a plate of food on it", + "pred": "a table topped with plates of food and cups of coffee" + }, + { + "label": "stuffed toy bear sitting on dashboard of motor vehicle", + "pred": "a teddy bear sitting in the driver's seat of a car" + }, + { + "label": "a tray topped with a chicken sandwich next to a cup of fries", + "pred": "a sandwich and french fries on a tray" + }, + { + "label": "vases on the ground in the street", + "pred": "a number of vases sitting on top of a building" + }, + { + "label": "a small tan teddy bear is wedged into a spot on the dashboard of this car", + "pred": "a teddy bear sitting in the driver's seat of a car" + }, + { + "label": "a meal, coffee, pictures and a notebook on a table", + "pred": "a table topped with plates of food and cups of coffee" + }, + { + "label": "vases on display outside the building", + "pred": "a number of vases sitting on top of a building" + }, + { + "label": "a hamburger and fries that are on a tray", + "pred": "a sandwich and french fries on a tray" + }, + { + "label": "a large clock mounted to the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "a huge clock on the side of a building", + "pred": "a clock on the side of a building" + }, + { + "label": "the clock is located on the side of the building", + "pred": "a clock on the side of a building" + }, + { + "label": "a cell phone screwdriver a pair of scissors and a black thing on a desk", + "pred": "a cup of coffee next to a pair of scissors" + }, + { + "label": "the pizza has small plates with various foods around it", + "pred": "a table topped with plates of food on top of a wooden table" + }, + { + "label": "a cell phone, scissors and a cup", + "pred": "a cup of coffee next to a pair of scissors" + }, + { + "label": "people sitting around a table", + "pred": "people sitting around a table" + }, + { + "label": "people gathered around the table", + "pred": "people sitting around a table" + }, + { + "label": "people sitting around a table filled with food", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "a pan filled with onions sitting next to a pan of stew", + "pred": "a bowl of food sitting on top of a table" + }, + { + "label": "people sitting around a table several pans of food", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "a number of people sitting at a table with lots of food", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "people sit at a table laden with food", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "people sitting at a table with many small sip cups", + "pred": "people sitting around a table" + }, + { + "label": "five people sitting together at a table with dixie cups", + "pred": "people sitting around a table" + }, + { + "label": "friends sitting around a wooden table together", + "pred": "people sitting around a table" + }, + { + "label": "the people are at the dining table with a lot of food around them", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "two bowls of food on a table", + "pred": "a bowl of food sitting on top of a table" + }, + { + "label": "a plate has two bowls on it with two different types of food, one looks like pickled onions and the other looks like cooked meat", + "pred": "a bowl of food sitting on top of a table" + }, + { + "label": "appealing support ready to expend", + "pred": "a bowl of food sitting on top of a table" + }, + { + "label": "scissors are resting on a roll of clear tape", + "pred": "a pair of scissors sitting on top of a measuring cup" + }, + { + "label": "a decorative flower vase with lavender in it", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "flowers that are sitting in a vase", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "people sitting at a table eating food", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "a pair of black scissors sitting on a role of tape", + "pred": "a pair of scissors sitting on top of a measuring cup" + }, + { + "label": "leaves and purple flowers come out of a brown vase on a desk", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a vase with beautiful purple flowers decorated in it", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a pair of black handled scissors rest on a roll of clear packing tape", + "pred": "a pair of scissors sitting on top of a measuring cup" + }, + { + "label": "flowers are arranged in a vase sitting on a table", + "pred": "a vase filled with flowers sitting on top of a table" + }, + { + "label": "a pair of black scissors and a roll of tape", + "pred": "a pair of scissors sitting on top of a measuring cup" + }, + { + "label": "onions in a silver bowl and some meat in another and a spoon", + "pred": "a bowl of food sitting on top of a table" + }, + { + "label": "a pair of black handled scissors lying on a roll of tape", + "pred": "a pair of scissors sitting on top of a measuring cup" + }, + { + "label": "a man making a flower display in a vase on a wall", + "pred": "a man holding a vase of flowers in front of a window" + }, + { + "label": "a dirty table has incense burners on it", + "pred": "a wooden table topped with bottles and a vase on top of it" + }, + { + "label": "a man placing some flowers inside a vase", + "pred": "a man holding a vase of flowers in front of a window" + }, + { + "label": "people sitting around a table eating food outside", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "a green vase with some flowers and greenery", + "pred": "a vase filled with pink flowers on top of a table" + }, + { + "label": "a person placing flowers in a white vase attached to a wall", + "pred": "a man holding a vase of flowers in front of a window" + }, + { + "label": "a vase sitting next to a mirror filled with flowers", + "pred": "a vase filled with pink flowers on top of a table" + }, + { + "label": "a still life, slightly blurry, with a tea kettle and a floral arrangement", + "pred": "a vase filled with pink flowers on top of a table" + }, + { + "label": "people are eating at a table", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "people eating a meal at a long table covered with umbrellas outside a restaurant", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "people sitting around a long table while eating from plates of food", + "pred": "a large group of people sitting at a table with plates of food" + }, + { + "label": "a man putting flowers into a white vase on a grave", + "pred": "a man holding a vase of flowers in front of a window" + }, + { + "label": "a man refreshing fake flowers in vases on a crypt wall", + "pred": "a man holding a vase of flowers in front of a window" + }, + { + "label": "a vase with roses and carnations in it by a mirror", + "pred": "a vase filled with pink flowers on top of a table" + }, + { + "label": "flowers sit in a vase beside a tea pot", + "pred": "a vase filled with pink flowers on top of a table" + }, + { + "label": "various items on shelves tagged for sale", + "pred": "a wooden table topped with bottles and a vase on top of it" + }, + { + "label": "a white and black plate topped with food next to a cup of coffee", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a cabinet with some paint on top of it", + "pred": "a wooden table topped with bottles and a vase on top of it" + }, + { + "label": "a blue shelf holds different sized silver vases", + "pred": "a wooden table topped with bottles and a vase on top of it" + }, + { + "label": "a blue shelving unit has a vase and metal cups on it", + "pred": "a wooden table topped with bottles and a vase on top of it" + }, + { + "label": "a simple lunch includes a coffee drink, fruit and a sandwich wrap", + "pred": "a plastic container filled with a variety of foods" + }, + { + "label": "a plate with food on it, a fork and some kind of drink", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a sandwich, a piece if fruit and a starbucks drink sits on the counter", + "pred": "a plastic container filled with a variety of foods" + }, + { + "label": "a cup of coffee and a piece of toast with eggs and brokerly on it", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a sandwich, donut and drink on a table", + "pred": "a plastic container filled with a variety of foods" + }, + { + "label": "a carryout lunch including sandwich, fruit, and frappucino", + "pred": "a plastic container filled with a variety of foods" + }, + { + "label": "the sandwich in the container is next to a glass of coffee", + "pred": "a plastic container filled with a variety of foods" + }, + { + "label": "a slice of toast sits on the table with a cup of coffee", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "a plate with food on it, a mug, and a fork", + "pred": "a plate of food sitting on top of a table" + }, + { + "label": "multiple pairs of scissors attached by a beaded metal string", + "pred": "a row of pink umbrellas sitting next to each other" + }, + { + "label": "large pink circles with beads going through them", + "pred": "a row of pink umbrellas sitting next to each other" + }, + { + "label": "a silver ball chain is looped through pink rings", + "pred": "a row of pink umbrellas sitting next to each other" + }, + { + "label": "a pile of pink pairs of scissors with a chain around it", + "pred": "a row of pink umbrellas sitting next to each other" + }, + { + "label": "pink thing with holes and bead chains", + "pred": "a row of pink umbrellas sitting next to each other" + }, + { + "label": "a large group of people are gathered around the table", + "pred": "a large group of people sitting at a table with wine glasses" + }, + { + "label": "a party that is full of wine tasters seems pumping", + "pred": "a large group of people sitting at a table with wine glasses" + }, + { + "label": "people having some wine and talking", + "pred": "a large group of people sitting at a table with wine glasses" + }, + { + "label": "people sit around a table that is covered in liquor bottles", + "pred": "a large group of people sitting at a table with wine glasses" + }, + { + "label": "a ground of people sitting around a table holding wine glasses in their hands", + "pred": "a large group of people sitting at a table with wine glasses" + }, + { + "label": "people sitting around a table", + "pred": "two men sitting at a table with plates of food" + }, + { + "label": "three men sitting at a table eating breakfast", + "pred": "two men sitting at a table with plates of food" + }, + { + "label": "men eating an assortment of foods at a table", + "pred": "two men sitting at a table with plates of food" + }, + { + "label": "young men having a meal at a table", + "pred": "two men sitting at a table with plates of food" + }, + { + "label": "an orange bowl filled with lots of noodles and beef", + "pred": "a bowl of soup with a spoon in it" + }, + { + "label": "the asian dish is filled with several different ingredients", + "pred": "a bowl of soup with a spoon in it" + }, + { + "label": "a bowl of food with mushrooms in it", + "pred": "a bowl of soup with a spoon in it" + }, + { + "label": "a spoon sits in a bowl of soup", + "pred": "a bowl of soup with a spoon in it" + }, + { + "label": "a christmas tree with lights and teddy bear", + "pred": "a teddy bear sitting on top of a christmas tree" + }, + { + "label": "a teddy bear wearing a red bow that is sitting on a christmas tree", + "pred": "a teddy bear sitting on top of a christmas tree" + }, + { + "label": "a bowl full of noodles, meat and veggies", + "pred": "a bowl of soup with a spoon in it" + }, + { + "label": "a teddy bear handing on a lit christmas tree", + "pred": "a teddy bear sitting on top of a christmas tree" + }, + { + "label": "older people around a long restaurant table", + "pred": "a large group of people sitting around a wooden table" + }, + { + "label": "three young men at a table eating breakfast at a restaurant", + "pred": "two men sitting at a table with plates of food" + }, + { + "label": "people pose for a picture at the table", + "pred": "a large group of people sitting around a wooden table" + }, + { + "label": "teddy bear with a red bow hanging on a christmas tree", + "pred": "a teddy bear sitting on top of a christmas tree" + }, + { + "label": "stuffed teddy bear placed in a lighted christmas tree", + "pred": "a teddy bear sitting on top of a christmas tree" + }, + { + "label": "a large group of people are sharing a meal at a restaurant", + "pred": "a large group of people sitting around a wooden table" + }, + { + "label": "people, some in leftover us army clothing, sit at tables in a large dining room", + "pred": "a large group of people sitting around a wooden table" + }, + { + "label": "three people pose for a picture while drinking wine", + "pred": "a man and a woman standing next to each other holding wine glasses" + }, + { + "label": "three individuals are at a restaurant and drinking wine", + "pred": "a man and a woman standing next to each other holding wine glasses" + }, + { + "label": "diners in a restaurant sit at a long table", + "pred": "a large group of people sitting around a wooden table" + }, + { + "label": "three people standing around drinking wine together", + "pred": "a man and a woman standing next to each other holding wine glasses" + }, + { + "label": "three people pose with wineglasses held up to their faces", + "pred": "a man and a woman standing next to each other holding wine glasses" + }, + { + "label": "people tasting wine at a bar", + "pred": "a man and a woman standing next to each other holding wine glasses" + }, + { + "label": "a small glass vase that has purple flowers in it", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a vase with purple iris's sitting next to a ceramic pitcher", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a vase filled with purple flowers on to of a wooden table", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "a man pouring a drink into a wine glass", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "a man pouring a glass of wine on top of a wooden table", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "a man in an orange shirt pouring a glass of wine at a wine bar", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "a brown teddy bear and some wooden block toys", + "pred": "a toy teddy bear sitting on top of a wooden table" + }, + { + "label": "flowers sit in a vase, on a table, beside a watering container", + "pred": "a vase filled with flowers on top of a table" + }, + { + "label": "man pouring different types of win into drinking glasses", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "a male bartender that is pouring a glass of whine", + "pred": "a man holding a glass of wine in front of a bar" + }, + { + "label": "teddy bear holding a hammer in front of block set", + "pred": "a toy teddy bear sitting on top of a wooden table" + }, + { + "label": "a vase filled with yellow and white flowers", + "pred": "a vase filled with yellow flowers on top of a table" + }, + { + "label": "a stuffed bear is sitting with a toy", + "pred": "a toy teddy bear sitting on top of a wooden table" + } +] \ No newline at end of file diff --git a/merges.txt b/merges.txt new file mode 100644 index 0000000..6636bda --- /dev/null +++ b/merges.txt @@ -0,0 +1,50001 @@ +#version: 0.2 - Trained by `huggingface/tokenizers` +Ġ t +Ġ a +h e +i n +r e +o n +Ġt he +e r +Ġ s +a t +Ġ w +Ġ o +e n +Ġ c +i t +i s +a n +o r +e s +Ġ b +e d +Ġ f +in g +Ġ p +o u +Ġa n +a l +a r +Ġt o +Ġ m +Ġo f +Ġ in +Ġ d +Ġ h +Ġan d +i c +a s +l e +Ġt h +i on +o m +l l +en t +Ġ n +Ġ l +s t +Ġ re +v e +Ġ e +r o +l y +Ġb e +Ġ g +Ġ T +c t +Ġ S +i d +o t +Ġ I +u t +e t +Ġ A +Ġ is +Ġ on +i m +a m +o w +a y +a d +s e +Ġth at +Ġ C +i g +Ġf or +a c +Ġ y +v er +u r +Ġ u +l d +Ġs t +Ġ M +' s +Ġ he +Ġ it +at ion +it h +i r +c e +Ġy ou +i l +Ġ B +Ġw h +o l +Ġ P +Ġw ith +Ġ 1 +t er +c h +Ġa s +Ġw e +Ġ ( +n d +i ll +Ġ D +i f +Ġ 2 +a g +er s +k e +Ġ " +Ġ H +e m +Ġc on +Ġ W +Ġ R +he r +Ġw as +Ġ r +o d +Ġ F +u l +at e +Ġa t +r i +p p +o re +ĠT he +Ġs e +u s +Ġp ro +Ġh a +u m +Ġa re +Ġd e +a in +an d +Ġo r +ig h +es t +is t +a b +r om +Ġ N +t h +Ġc om +Ġ G +u n +o p +0 0 +Ġ L +Ġn ot +es s +Ġe x +Ġ v +re s +Ġ E +e w +it y +an t +Ġb y +e l +o s +or t +o c +q u +Ġf rom +Ġha ve +Ġs u +i ve +ou ld +Ġs h +Ġth is +n t +r a +p e +igh t +ar t +m ent +Ġa l +u st +en d +- - +al l +Ġ O +ac k +Ġc h +Ġ le +i es +re d +ar d +â Ģ +ou t +Ġ J +Ġa b +e ar +i v +al ly +ou r +o st +g h +p t +Ġp l +as t +Ġc an +a k +om e +u d +T he +Ġh is +Ġd o +Ġg o +Ġh as +g e +' t +Ġ U +r ou +Ġs a +Ġ j +Ġb ut +Ġw or +Ġa ll +e ct +Ġ k +am e +Ġw ill +o k +Ġw he +Ġthe y +id e +0 1 +f f +ic h +p l +t her +Ġt r +. . +Ġin t +i e +u re +ag e +Ġn e +i al +a p +in e +ic e +Ġm e +Ġo ut +an s +on e +on g +ion s +Ġwh o +Ġ K +Ġu p +Ġthe ir +Ġa d +Ġ 3 +Ġu s +at ed +ou s +Ġm ore +u e +o g +ĠS t +in d +i ke +Ġs o +im e +p er +. " +b er +i z +a ct +Ġon e +Ġsa id +Ġ - +a re +Ġyou r +c c +ĠT h +Ġc l +e p +a ke +ab le +i p +Ġcon t +Ġwh ich +i a +Ġ im +Ġab out +Ġwe re +ver y +u b +Ġh ad +Ġ en +Ġcom p +, " +ĠI n +Ġu n +Ġa g +i re +ac e +a u +ar y +Ġw ould +as s +r y +Ġ âĢ +c l +o ok +e re +s o +Ġ V +ig n +i b +Ġof f +Ġt e +v en +Ġ Y +i le +o se +it e +or m +Ġ2 01 +Ġre s +Ġm an +Ġp er +Ġo ther +or d +ul t +Ġbe en +Ġl ike +as e +an ce +k s +ay s +ow n +en ce +Ġd is +ct ion +Ġan y +Ġa pp +Ġs p +in t +res s +ation s +a il +Ġ 4 +ic al +Ġthe m +Ġhe r +ou nt +ĠC h +Ġa r +Ġ if +Ġthe re +Ġp e +Ġy ear +a v +Ġm y +Ġs ome +Ġwhe n +ou gh +ac h +Ġth an +r u +on d +ic k +Ġo ver +ve l +Ġ qu +Ċ Ċ +Ġs c +re at +re e +ĠI t +ou nd +p ort +Ġal so +Ġp art +f ter +Ġk n +Ġbe c +Ġt ime +en s +Ġ 5 +op le +Ġwh at +Ġn o +d u +m er +an g +Ġn ew +-- -- +Ġg et +or y +it ion +ing s +Ġj ust +Ġint o +Ġ 0 +ent s +o ve +t e +Ġpe ople +Ġp re +Ġit s +Ġre c +Ġt w +i an +ir st +ar k +or s +Ġwor k +ad e +o b +Ġs he +Ġo ur +w n +in k +l ic +Ġ1 9 +ĠH e +is h +nd er +au se +Ġh im +on s +Ġ [ +Ġ ro +f orm +i ld +at es +ver s +Ġon ly +o ll +Ġs pe +c k +e ll +am p +Ġa cc +Ġb l +i ous +ur n +f t +o od +Ġh ow +he d +Ġ ' +Ġa fter +a w +Ġat t +o v +n e +Ġpl ay +er v +ic t +Ġc ould +it t +Ġa m +Ġf irst +Ġ 6 +Ġa ct +Ġ $ +e c +h ing +u al +u ll +Ġcom m +o y +o ld +c es +at er +Ġf e +Ġbe t +w e +if f +Ġtw o +oc k +Ġb ack +) . +id ent +Ġu nder +rou gh +se l +x t +Ġm ay +rou nd +Ġp o +p h +is s +Ġd es +Ġm ost +Ġd id +Ġad d +j ect +Ġin c +f ore +Ġp ol +on t +Ġag ain +cl ud +ter n +Ġkn ow +Ġne ed +Ġcon s +Ġc o +Ġ . +Ġw ant +Ġse e +Ġ 7 +n ing +i ew +ĠTh is +c ed +Ġe ven +Ġin d +t y +ĠW e +at h +Ġthe se +Ġp r +Ġu se +Ġbec ause +Ġf l +n g +Ġn ow +ĠâĢ ĵ +c om +is e +Ġm ake +Ġthe n +ow er +Ġe very +ĠU n +Ġse c +os s +u ch +Ġe m +Ġ = +ĠR e +i ed +r it +Ġin v +le ct +Ġsu pp +at ing +Ġl ook +m an +pe ct +Ġ 8 +ro w +Ġb u +Ġwhe re +if ic +Ġyear s +i ly +Ġd iff +Ġsh ould +Ġre m +T h +I n +Ġe v +d ay +' re +ri b +Ġre l +s s +Ġde f +Ġr ight +Ġs y +) , +l es +00 0 +he n +Ġth rough +ĠT r +_ _ +Ġw ay +Ġd on +Ġ , +Ġ1 0 +as ed +Ġas s +ub lic +Ġre g +ĠA nd +i x +Ġ very +Ġin clud +ot her +Ġim p +ot h +Ġsu b +ĠâĢ Ķ +Ġbe ing +ar g +ĠW h += = +ib le +Ġdo es +an ge +r am +Ġ 9 +er t +p s +it ed +ation al +Ġb r +Ġd own +Ġman y +ak ing +Ġc all +ur ing +it ies +Ġp h +ic s +al s +Ġde c +at ive +en er +Ġbe fore +il ity +Ġwe ll +Ġm uch +ers on +Ġth ose +Ġsu ch +Ġ ke +Ġ end +ĠB ut +as on +t ing +Ġl ong +e f +Ġth ink +y s +Ġbe l +Ġs m +it s +a x +Ġo wn +Ġpro v +Ġs et +if e +ment s +b le +w ard +Ġsh ow +Ġp res +m s +om et +Ġo b +Ġs ay +ĠS h +t s +f ul +Ġe ff +Ġg u +Ġin st +u nd +re n +c ess +Ġ ent +ĠY ou +Ġgo od +Ġst art +in ce +Ġm ade +t t +st em +ol og +u p +Ġ | +um p +Ġhe l +ver n +ul ar +u ally +Ġa c +Ġm on +Ġl ast +Ġ2 00 +1 0 +Ġst ud +u res +ĠA r +sel f +ar s +mer ic +u es +c y +Ġm in +oll ow +Ġc ol +i o +Ġm od +Ġc ount +ĠC om +he s +Ġf in +a ir +i er +âĢ Ķ +re ad +an k +at ch +e ver +Ġst r +Ġpo int +or k +ĠN ew +Ġs ur +o ol +al k +em ent +Ġus ed +ra ct +we en +Ġs ame +ou n +ĠA l +c i +Ġdiff ere +Ġwh ile +---- ---- +Ġg ame +ce pt +Ġs im +.. . +Ġin ter +e k +Ġre port +Ġpro du +Ġst ill +l ed +a h +Ġhe re +Ġwor ld +Ġth ough +Ġn um +ar ch +im es +al e +ĠS e +ĠI f +/ / +ĠL e +Ġre t +Ġre f +Ġtr ans +n er +ut ion +ter s +Ġt ake +ĠC l +Ġcon f +w ay +a ve +Ġgo ing +Ġs l +u g +ĠA meric +Ġspe c +Ġh and +Ġbet ween +ist s +ĠD e +o ot +I t +Ġe ar +Ġagain st +Ġh igh +g an +a z +at her +Ġex p +Ġo p +Ġin s +Ġg r +Ġhel p +Ġre qu +et s +in s +ĠP ro +is m +Ġf ound +l and +at a +us s +am es +Ġp erson +Ġg reat +p r +Ġs ign +ĠA n +' ve +Ġs omet +Ġs er +h ip +Ġr un +Ġ : +Ġt er +ire ct +Ġf ollow +Ġd et +ic es +Ġf ind +1 2 +Ġm em +Ġc r +e red +e x +Ġex t +ut h +en se +c o +Ġte am +v ing +ou se +as h +at t +v ed +Ġsy stem +ĠA s +d er +iv es +m in +Ġle ad +ĠB l +c ent +Ġa round +Ġgo vern +Ġc ur +vel op +an y +Ġc our +al th +ag es +iz e +Ġc ar +od e +Ġl aw +Ġre ad +' m +c on +Ġre al +Ġsupp ort +Ġ1 2 +.. .. +Ġre ally +n ess +Ġf act +Ġd ay +Ġb oth +y ing +Ġs erv +ĠF or +Ġth ree +Ġw om +Ġm ed +od y +ĠThe y +5 0 +Ġex per +t on +Ġe ach +ak es +Ġc he +Ġc re +in es +Ġre p +1 9 +g g +ill ion +Ġg rou +ut e +i k +W e +g et +E R +Ġm et +Ġs ays +o x +Ġd uring +er n +iz ed +a red +Ġf am +ic ally +Ġha pp +ĠI s +Ġch ar +m ed +v ent +Ġg ener +i ent +p le +i et +re nt +1 1 +v es +pt ion +Ġ2 0 +form ation +Ġc or +Ġoff ic +ie ld +Ġto o +is ion +Ġin f +Ġ Z +t he +o ad +Ġp ublic +Ġpro g +r ic +* * +Ġw ar +Ġp ower +v iew +Ġf ew +Ġl oc +Ġdiffere nt +Ġst ate +Ġhe ad +' ll +Ġp oss +Ġst at +re t +ant s +Ġv al +Ġis s +Ġc le +i vers +an c +Ġex pl +Ġan other +Ġ Q +Ġa v +th ing +n ce +W h +Ġch ild +Ġs ince +i red +l ess +Ġl ife +Ġde velop +itt le +Ġde p +Ġp ass +ã ĥ +Ġt urn +or n +Th is +b ers +ro ss +ĠA d +Ġf r +Ġres p +Ġsec ond +o h +Ġ / +Ġdis c +Ġ & +Ġsomet hing +Ġcomp le +Ġ ed +Ġf il +Ġmon th +a j +u c +Ġgovern ment +Ġwith out +Ġle g +Ġd ist +Ġp ut +Ġqu est +an n +Ġpro t +2 0 +Ġne ver +i ence +Ġle vel +Ġar t +Ġth ings +Ġm ight +Ġeff ect +Ġcont ro +Ġc ent +Ġ1 8 +Ġall ow +Ġbel ie +ch ool +ot t +Ġinc re +Ġfe el +Ġres ult +Ġl ot +Ġf un +ot e +Ġt y +ere st +Ġcont in +Ġus ing +Ġb ig +2 01 +Ġas k +Ġb est +Ġ ) +I N +Ġo pp +3 0 +Ġnum ber +in ess +S t +le ase +Ġc a +Ġm ust +Ġd irect +Ġg l +Ġ < +Ġop en +Ġp ost +Ġcom e +Ġse em +ord ing +Ġwe ek +ate ly +it al +Ġe l +ri end +Ġf ar +Ġt ra +in al +Ġp ri +ĠU S +Ġpl ace +Ġfor m +Ġto ld +" : +ain s +at ure +ĠTr ump +Ġst and +Ġ # +id er +ĠF r +Ġne xt +Ġs oc +Ġp ur +Ġle t +Ġl ittle +Ġh um +Ġ i +r on +1 5 +Ġ1 5 +Ġcomm un +Ġm ark +ĠThe re +Ġw r +ĠTh at +Ġin formation +w ays +Ġb us +a pp +Ġinv est +m e +Ġh ard +ain ed +e ad +Ġim port +Ġapp ro +Ġt est +Ġt ri +Ġre st +os ed +Ġf ull +Ġc are +ĠS p +Ġc ase +O N +Ġs k +Ġl ess +Ġ + +Ġpart ic +ĠP l +ab ly +u ck +is hed +ch n +b e +Ġl ist +at or +Ġto p +Ġad v +ĠB e +ru ct +Ġd em +r ation +l ing +g y +re en +g er +Ġh ome +Ġle ft +Ġbet ter +Ġd ata +Ġ1 1 +Ġatt ack +Ġpro ble +l ine +ard s +Ġbe h +r al +ĠH ow +ĠS he +ar ge +Ġ -- +: // +Ġb ro +ĠP h +at s +Ġbu ild +w w +id ed +a im +as es +en cy +Ġm ain +in ed +Ġinclud ing +Ġ { +Ġg ot +Ġint erest +Ġke ep +Ġ X +Ġe as +ain ing +Ġcl ass +âĢ ¦ +ĠN o +Ġv ar +Ġsm all +amp le +A T +Ġ ide +ĠS o +Ġre ce +Ġpol it +Ġm ov +Ġpl an +Ġper cent +iv ing +Ġc amp +Ġp ay +1 4 +s c +is ed +Ġu nt +one y +pl oy +== == +Ġdid n +ĠI nd +el s +ert ain +Ġp os +__ __ +i ver +Ġpro cess +Ġprog ram +if ied +ĠR ep +1 6 +u ro +olog y +at ter +in a +Ġn ame +ĠA ll +Ġf our +Ġret urn +v ious +b s +Ġcall ed +Ġm ove +ĠS c +ir d +Ġgrou p +Ġb re +Ġm en +Ġc ap +t en +e e +Ġd ri +le g +he re +uth or +Ġp at +Ġcur rent +id es +Ġp op +t o +ent ion +Ġal ways +Ġm il +Ġwom en +Ġ1 6 +Ġo ld +iv en +ra ph +ĠO r +r or +ent ly +Ġn ear +ĠE x +re am +s h +Ġ1 4 +Ġf ree +iss ion +st and +ĠC on +al ity +us ed +1 3 +Ġdes ign +Ġch ange +Ġch ang +Ġb o +Ġv is +em ber +Ġb ook +read y +Ġk ill +2 5 +pp ed +Ġa way +Ġab le +Ġcount ry +Ġcon st +ar n +Ġor der +A R +i or +i um +or th +1 8 +ail able +Ġs w +Ġm illion +Ġ1 3 +at ic +t ed +ĠG o +Ġo per +en g +Ġth ing +aj or +con om +ĠCom m +Ġwh y +u red +ur al +Ġs chool +b y +ĠM ar +Ġa ff +Ġd ays +Ġan n +us h +an e +I f +e g +Ġpro f +Ġhe alth +ou th +B ut +ion al +. , +Ġs ol +Ġal ready +Ġ3 0 +Ġchar act +H e +Ġf riend +E S +i ans +ic le +' d +ĠO n +Ġle ast +Ġp rom +Ġd r +Ġh ist +it her +Ġ est +i qu +1 7 +s on +Ġte ll +Ġt alk +oh n +o int +le ction +A N +Ġunt il +au gh +Ġl ater +Ġ ve +Ġv iew +end ing +iv ed +Ġwor d +w are +Ġc ost +Ġen ough +Ġg ive +ĠUn ited +Ġte chn +are nt +O R +Ġp ar +ĠD r +Ġ201 6 +r ist +er ing +Ġ  +Ġl arge +s ide +ac y +cc ess +Ġw in +Ġimport ant +Ġ19 9 +Ġdoes n +Ġ1 7 +Ġbus iness +Ġcle ar +Ġre se +" , +ur y +Ġe qu +as ter +al f +ĠAmeric an +n ect +Ġex pect +ivers ity +Ġo cc +ĠF l +Ġk ind +Ġme an +Ġp ast +Ġde v +Ġb as +le t +ra ft +Ġor gan +Ġde l +Ġper form +Ġst ory +Ġse ason +ĠC ol +Ġcl aim +Ġc ame +Ġwith in +Ġl ine +Ġpro ject +ĠA t +Ġcontro l +end ed +ĠS y +Ġa ir +iz ation +Ġ * +le y +Ġm oney +id d +Y ou +f or +Ġfam ily +Ġm aking +Ġb it +Ġpol ice +Ġhapp en +Ġ vers +on y +u ff +ĠW hen +Ġs it +ide o +l f +is on +Ġsu re +g in +Ġapp ear +Ġl ight +Ġ es +o f +Ġw ater +Ġt imes +n ot +Ġg row +Ġcomp any +ĠT e +ow s +Ġm ar +our ce +i ol +ar m +b r +Ġex ample +Ġcon c +Ġf ore +ĠT o +p ro +E N +ri es +Ġ2 5 +ĠC an +ne y +Ġact ually +Ġe ver +ur ity +ak en +ap s +Ġt ax +Ġm ajor +am a +Ġof ten +er al +Ġhum an +Ġj ob +is ter +Ġav ailable +oc r +en n +a id +iv id +Ġrec ord +? " +Ġs ing +ĠA m +id ence +Ġnew s +st er +Ġe conom +Ġfollow ing +ĠB r +is ing +Ġh our +m ost +um ent +Ġse x +Ġdes c +Ġbec ome +ĠE d +Ġto ok +Ġha ving +Ġprodu ct +a ult +A s +ar ing +Ġme ans +Ġh op +un e +Ġch o +Ġc ertain +Ġn on +Ġde al +2 4 +le ment +oc i +en e +Ġs ide +ĠP r +ĠM ay +Ġre ason +u ed +c hed +ul ation +Ġe lect +Ġoffic ial +Ġposs ible +Ġh old +and s +ot s +Ġc ity +or ies +Ġse ver +Ġchild ren +Ġon ce +Ġact iv +l er +Ġn ight +it ions +ĠJ ohn +a pe +pl ay +Ġd one +Ġl im +Ġwork ing +ĠP res +or ld +e b +ĠC o +Ġb ody +ail s +ut es +ĠM r +Ġwhe ther +Ġa uthor +ro p +Ġpro per +Ġse en +) ; +Ġf ac +ĠS u +Ġcon d +it ing +Ġcour se +Ġ } +-------- -------- +a ign +Ġev ent +Ġen g +Ġp ot +Ġin tern +i am +Ġsh ort +em pt +ã Ĥ +ĠG od +il ar +8 0 +Ġor ig +I S +our n +ab ility +it ive +Ġd am +Ġ1 00 +Ġp ress +Ġdo ing +Ġprot ect +r ing +Ġthough t +Ġquest ion +re w +ĠW ar +Ġsever al +ĠSt ate +Ġg iven +Ġf und +ĠT w +Ġw ent +an ces +w ork +p or +m y +4 0 +Ġar g +art ment +ust om +Ġpol ic +Ġme et +Ġc reat +2 2 +ĠSt ates +Ġg ames +ra w +ut ure +Ġunder stand +ur s +ĠO b +l ish +s y +Ġm akes +Ġw on +ag on +Ġh tt +Ġl ove +ent ial +Ġcomple te +p ar +ĠI m +A L +Ġacc ount + ł +ore d +ver t +Ġ ident +Ġ201 5 +Ġother s +ĠM in +i ber +ver age +The re +ition al +d d +Ġpro b +Ġyou ng +Ġal ong +Ġacc ording +Ġy et +Ġmem bers +ĠWh at +o id +ĠM an +A nd +Ġam ong +a i +Ġem ploy +ĠR es +Ġ > +Ġinv ol +Ġl ow +a f +ĠC ar +Ġh ig +ĠO ne +ĠS ec +in ation +Ġlike ly +Ġan t +ag ed +ĠR uss +Ġb en +Ġre le +F or +b ack +ĠN ot +Ġpres ident +b all +Ġacc ess +ivid ual +ĠD em +ĠE uro +6 0 +Ġkn own +ir l +ĠG r +Ġear ly +u se +iet y +âĢ ĵ +Ġf ight +Ġs ent +Ġto day +Ġmark et +" . +Ġb ased +Ġstr ong +ur ther +Ġde b +m ber +Ġproble m +Ġde ath +Ġsoc ial +im ate +A S +ort un +Ġcamp aign +er y +C h +Ġe y +i ally +Ġm us +w h +p os +Ġ er +Ġsa f +Ġmonth s +ir on +Ġv iol +Ġf ive +Ġst re +Ġplay ers +in c +al d +y ear +a un +Ġsu ccess +Ġpres ent +ere nce +Ġ201 4 +Ġsu gg +Ġpartic ular +Ġtr y +Ġsugg est +ĠCh rist +on es +Ġpri v +2 3 +Ġc rit +Ġl and +Ġloc al +if y +2 9 +Ġa ut +E D +ĠG u +Ġm ult +Ġpolit ical +Ġask ed +Ġfor mer +it ter +ri pt +Ġcl ose +Ġp ract +ĠY ork +Ġget ting +Ġac ross +Ġcom b +Ġbelie ve +Ġ z +Ġto get +Ġtoget her +ĠC ent +ir c +Ġind ividual +ĠM c +2 7 +is k +ĠE ng +Ġf ace +Ġ2 4 +Ġval ue +Ġare a +e v +Ġw rit +ĠPres ident +Ġv ot +Ġke y +Ġm om +p ut +Ġany thing +Ġexper ience +att le +Ġm ind +a ff +om m +Ġf uture +g ed +Ġc ut +Ġto t +it ch +Ġv ideo +Ġinvest ig +Ġn et +ĠM y +r ict +i en +. ) +Ġimp ro +th ough +ward s +Ġcon nect +ĠM ed +sel ves +ens ive +m b +o ber +at ors +A n +Ġ5 0 +Ġre du +res ent +Ġab ove +Ġf re +ĠEuro pe +s w +Ġam ount +ĠA pp +Ġe ither +Ġmil it +Ġan al +Ġf ail +ĠE n +al es +Ġspec ial +Ġbl ack +I T +c her +Ġlook ing +Ġf ire +y n +Ġal most +o on +Ġstud y +Ġm iss +c hes +ro wn +Ġt re +Ġcommun ity +Ġmed ia +Ġf ood +Ġcom es +ĠUn iversity +Ġsing le +Wh at +u ly +Ġh alf +ag ue +h od +ĠRep ublic +Ġstart ed +Ġqu ick +ot o +b ook +Ġiss ue +it or +Ġel se +Ġcons ider +2 6 +ro du +Ġt aken +2 8 +9 9 +ĠW ith +Ġtr ue +Ġw a +Ġtr ad +Ġag o +Ġm ess +ie f +Ġadd ed +o ke +Ġb ad +Ġf av +3 3 +Ġsim ilar +as k +ĠD on +Ġcharact er +ort s +ĠH ouse +Ġreport ed +Ġty pe +v al +i od +ĠHow ever +Ġt arg +Ġent ire +pp ing +Ġhist ory +Ġl ive +ff ic +.... .... +ed eral +Ġtr ying +Ġdisc uss +ĠH ar +ac es +l ished +Ġse lf +os p +re st +Ġro om +el t +Ġf all +ol ution +Ġe t +Ġ x +Ġis n +Ġide a +b o +Ġs ound +ĠD ep +Ġsome one +ci ally +ull y +Ġf oc +Ġob ject +if t +ap er +Ġplay er +Ġr ather +Ġserv ice +as hing +ĠD o +ĠP art +ru g +m on +p ly +Ġm or +Ġnot hing +Ġprov ide +I C +un g +Ġpart y +Ġex ist +Ġm ag +7 0 +Ġr ul +Ġh ouse +Ġbeh ind +Ġhow ever +ĠW orld +Ġs um +Ġapp lic +Ġ ; +Ġfun ction +g r +ĠP ol +Ġfr ont +2 00 +Ġser ies +Ġt em +Ġty p +ill s +Ġo pt +Ġpoint s +Ġbel ow +itt ed +Ġspec ific +Ġ201 7 +um b +Ġr a +Ġpre vious +Ġpre t +re me +Ġc ustom +Ġcour t +ĠM e +Ġre pl +Ġwho le +g o +c er +Ġt reat +ĠA ct +Ġprob ably +Ġle arn +end er +ĠA ss +Ġvers ion +n ow +Ġche ck +ĠC al +R E +min ist +O n +our ces +Ġben ef +Ġd oc +Ġdet er +Ġen c +Ġsu per +Ġadd ress +Ġv ict +Ġ201 3 +Ġme as +t r +Ġf ield +W hen +Ġsign ific +u ge +Ġfe at +Ġcomm on +l oad +Ġbe gin +Ġbr ing +Ġa ction +er man +Ġdesc rib +Ġind ust +Ġwant ed +ri ed +m ing +Ġatt empt +4 5 +f er +Ġd ue +ress ion +# # +Ġsh all +Ġs ix +o o +Ġst ep +Ġp ub +Ġhim self +Ġ2 3 +Ġc op +Ġd est +Ġst op +A C +ib ility +Ġl ab +ic ult +Ġhour s +Ġcre ate +Ġf urther +ĠAmeric a +ĠC ity +Ġd ou +he ad +S T +ĠN orth +c ing +Ġn ational +u le +ĠIn st +Ġt aking +ĠQ u +ir t +Ġre d +Ġrese arch +v iron +ĠG e +Ġbre ak +an a +Ġsp ace +ater ial +Ġrec ent +ĠA b +Ġgener al +Ġh it +Ġper iod +Ġevery thing +ive ly +Ġph ys +Ġsay ing +an ks +Ġc ou +Ġc ult +ac ed +e al +u ation +Ġc oun +l u +Ġinclud e +Ġpos ition +ĠA fter +ĠCan ad +ĠE m +Ġim m +ĠR ed +Ġp ick +Ġcom pl +Ġm atter +re g +e xt +ang u +is c +o le +a ut +Ġcomp et +e ed +f ect +Ġ2 1 +ĠS en +ĠThe se +as ing +Ġcan not +Ġin it +Ġrel ations +ac hed +Ġb ar +Ġ4 0 +ĠT H +Ġ201 2 +Ġv ol +Ġg round +Ġsec urity +Ġup d +il t +3 5 +Ġconc ern +ĠJ ust +Ġwh ite +Ġseem s +ĠH er +pe cially +i ents +Ġann oun +Ġf ig +ight s +Ġst ri +l ike +id s +Ġs us +Ġw atch +Ġ â +Ġw ind +ĠC ont +Ġit self +Ġm ass +A l +y le +iqu e +ĠN ational +Ġab s +Ġp ack +Ġout side +Ġan im +Ġp ain +et er +Ġman ag +du ct +og n +Ġ ] +ĠSe pt +se c +o ff +ĠJ an +Ġf oot +ad es +Ġth ird +Ġm ot +Ġev idence +int on +Ġth reat +a pt +pl es +c le +Ġl o +Ġde cl +Ġit em +med i +Ġrep resent +om b +am er +Ġsignific ant +og raph +s u +Ġc al +i res +00 00 +I D +A M +Ġsim ply +Ġlong er +Ġf ile +O T +c he +S o +ate g +or g +ĠH is +Ġen er +Ġd om +Ġup on +il i +": " +Ġthem selves +Ġcom ing +Ġqu ite +Ġdiff icult +ĠB ar +il ities +re l +end s +c ial +6 4 +Ġwom an +ra p +y r +Ġne cess +ip s +Ġte xt +Ġrequ ire +Ġmilit ary +Ġre view +Ġresp ons +7 5 +Ġsub ject +Ġinst ead +Ġiss ues +Ġg en +" ," +Ġmin utes +Ġwe ap +r ay +am ed +t ime +b l +H ow +Ġc ode +ĠS m +Ġhig her +ĠSt e +r is +Ġp age +Ġstud ents +ĠIn tern +Ġmet hod +ĠA ug +ĠP er +ĠA g +Ġpolic y +ĠS w +Ġex ec +Ġac cept +um e +rib ut +Ġword s +Ġfin al +Ġchang es +ĠDem ocr +Ġfriend s +Ġres pect +Ġe p +Ġcomp an +iv il +Ġdam age +** ** +og le +viron ment +Ġne g +ent al +Ġa p +Ġtot al +iv al +! " +l im +Ġneed s +Ġag re +Ġdevelop ment +Ġa ge +ip le +2 1 +Ġresult s +ĠA f +S h +Ġg un +ĠOb ama +ro ll +Ġ @ +Ġright s +ĠB rit +Ġrun ning +Ġwas n +Ġp ort +Ġr ate +Ġpret ty +Ġtarg et +Ġsa w +Ġc irc +Ġwor ks +ic ro +al t +o ver +ww w +Th at +l ier +Ġevery one +ud e +Ġp ie +idd le +ra el +Ġr ad +Ġbl ock +Ġw alk +T o +ã ģ +n es +ĠA ust +a ul +ro te +ĠS outh +ess ion +op h +Ġshow s +Ġs ite +Ġj o +Ġr isk +cl us +l t +Ġin j +id ing +ĠS pe +Ġch all +ir m +Ġ2 2 +itt ing +st r +Ġh y +L E +ke y +Ġbe gan +at ur +ashing ton +l am +ĠD av +b it +Ġs ize +ĠP ar +3 8 +ourn al +f ace +Ġdec ision +Ġl arg +Ġj ud +re ct +Ġcontin ue +ĠO ct +ove red +ĠI nt +==== ==== +Ġp arent +ĠW ill +Ġeas y +Ġd rug +ang er +Ġs ense +Ġd i +id ay +Ġener gy +ist ic +Ġass oci +ar ter +ob al +e ks +ĠE l +ur ch +Ġg irl +o e +it le +Ġ2 8 +ĠC he +Ġrequ est +Ġso on +Ġh ost +k y +Ġst ates +om es +Ġm aterial +le x +Ġmom ent +Ġan sw +on se +Ġes pecially +Ġn orm +Ġserv ices +p ite +r an +Ġro le +4 4 +) : +Ġc red +C l +____ ____ +Ġm at +Ġl og +ĠCl inton +O U +Ġoff ice +Ġ2 6 +Ġch arg +Ġtr ack +m a +Ġhe art +Ġb all +Ġperson al +Ġbuild ing +n a +s et +b ody +ĠBl ack +Ġincre ase +itt en +Ġneed ed +3 6 +3 2 += " +Ġl ost +Ġbec ame +Ġgrou ps +ĠM us +Ġw rote +ĠP e +Ġpro p +j oy +à © +ĠWh ite +Ġde ad +. ' +Ġhtt p +Ġwe bs +O S +Ġins ide +Ġwr ong +Ġstat ement +Ġ ... +y l +Ġfil m +Ġmus ic +Ġsh are +ific ation +Ġre lease +Ġfor ward +Ġst ay +Ġcomp ut +it te +s er +Ġorig inal +Ġc ard +Ġc and +Ġd iv +at ural +Ġfav or +O M +Ġc ases +us es +Ġse ction +Ġle ave +g ing +ov ed +ĠW ashington +3 9 +ĠG l +Ġrequ ired +act ion +ap an +o or +it er +ĠK ing +Ġcount ries +ĠG erman +ll ing +Ġ2 7 +3 4 +Ġquest ions +Ġpr im +Ġc ell +Ġsh oot +Ġany one +ĠW est +Ġaff ect +ep end +Ġon line +ĠIs rael +ĠSept ember +Ġab ility +Ġcont ent +is es +Ġre ve +Ġl aun +Ġind ic +Ġfor ce +c ast +Ġso ld +av ing +f l +Ġso ft +Ġcompan ies +ce ed +Ġart icle +Ġa ud +Ġre v +Ġed uc +Ġplay ing +0 5 +Ġhe ld +ct or +Ġrele ased +Ġf ederal +3 7 +Ġad minist +Ġinter view +Ġinst all +Ġrece ived +Ġs ource +u k +P h +Ġser ious +Ġcre ated +Ġc ause +Ġim medi +Ġdef in +u el +ĠDep artment +ct ions +ĠC our +ĠN ow +z e +it es +it ution +Ġl ate +Ġspe ak +n ers +Ġleg al +ar i +ĠC or +Ġwe eks +Ġmod el +Ġp red +Ġex act +B C +ĠB y +IN G +os ing +Ġt akes +Ġreg ard +Ġopp ortun +Ġpr ice +Ġ19 8 +ĠA pr +f ully +Ġor d +Ġproble ms +ru ction +h am +ĠC ount +le ge +Ġlead ers +E T +le v +Ġde ep +olog ical +es e +h aps +ĠS ome +Ġp ers +Ġcont ract +Ġrelations hip +s p +ou d +Ġb ase +4 8 +m it +A d +anc ial +Ġcons um +Ġpot ential +Ġl angu +re m +et h +Ġrel ig +ress ed +6 6 +Ġl ink +Ġl ower +ay er +ĠJ une +Ġf em +un t +er c +ur d +Ġcont act +Ġ ill +Ġm other +Ġest ab +h tt +ĠM arch +ĠB ro +ĠCh ina +Ġ2 9 +Ġs qu +Ġprov ided +Ġa verage +as ons +Ġ201 1 +Ġex am +l in +5 5 +n ed +Ġper fect +Ġt ou +al se +u x +Ġbu y +Ġsh ot +Ġcol lect +Ġph ot +Ġplay ed +Ġsur pr +Ġofficial s +Ġsim ple +av y +Ġindust ry +Ġhand s +g round +Ġp ull +Ġr ound +Ġus er +Ġr ange +u ary +Ġpriv ate +op s +e es +Ġw ays +ĠM ich +Ġve h +Ġex cept +Ġter ms +im um +pp er +I ON +ore s +ĠDr agon +ou l +Ġd en +Ġperform ance +Ġb ill +c il +4 7 +Ġen vironment +Ġex c +ad d +Ġwor th +Ġp ict +Ġch ance +Ġ201 8 +b or +Ġspe ed +ict ion +Ġal leg +ĠJ apan +at ory +re et +Ġm atch +ĠI I +Ġst ru +ord er +Ġst e +Ġl iving +Ġst ruct +in o +Ġse par +her n +Ġresp onse +Ġen joy +Ġv ia +A D +um ents +ace book +Ġmem ber +ib r +iz ing +Ġto ol +ĠM on +ĠWh ile +h ood +ĠA ng +ĠD ef +Ġoff er +T r +a ur +Ġturn ed +ĠJ uly +d own +an ced +Ġrec ently +ĠE ar +Ġc e +ĠSt ar +ĠC ong +rough t +Ġbl ood +Ġhop e +Ġcom ment +ain t +Ġar ri +il es +Ġpartic ip +ough t +ri ption +0 8 +4 9 +Ġg ave +Ġse lect +Ġkill ed +sy ch +Ġgo es +i j +Ġc oll +Ġimp act +at ives +ĠS er +0 9 +ĠAug ust +Ġb oy +d e +ĠD es +Ġf elt +U S +Ġexpect ed +Ġim age +ĠM ark +cc ording +o ice +E C +ĠM ag +en ed +h old +ĠP ost +Ġpre vent +N o +Ġinvol ved +Ġey es +Ġquick ly +A t +un k +Ġbeh av +Ġ ur +Ġl ed +c ome +e y +Ġcand id +Ġear lier +Ġfoc us +et y +P ro +led ge +ix ed +ill ed +Ġpop ular +A P +Ġset t +l ight +Ġvar ious +in ks +Ġlevel s +Ġro ad +ell ig +ab les +he l +itte e +ĠG ener +y pe +Ġhe ard +ic les +Ġm is +Ġus ers +ĠS an +Ġimpro ve +Ġf ather +Ġse arch +The y +v il +Ġprof ess +Ġkn ew +Ġl oss +Ġev ents +6 5 +Ġb illion +0 7 +0 2 +ĠNew s +ĠA M +Ġco ver +w here +ens ion +Ġb ott +Ġare as +en ces +op e +ĠTw itter +a el +Ġget s +ĠGo ogle +Ġs n +i ant +Ġv ote +Ġnear ly +Ġinclud ed +Ġrec ogn +z z +m m +al ed +Ġhappen ed +0 4 +Ġh ot +Ġwho se +Ġc ivil +Ġsu ff +o es +it iz +ĠSy ri +Ġresp ond +Ġh on +Ġfeat ures +Ġeconom ic +ĠApr il +r im +Ġtechn ology +Ġo ption +ag ing +Ġpur ch +R e +Ġl at +ch ie +is l +Ġrec omm +u f +Ġtr aining +Ġeffect s +Ġf ast +Ġ201 0 +Ġocc ur +Ġwebs ite +Ġem ail +Ġs ens +e ch +Ġo il +Ġinf lu +Ġcurrent ly +ĠS ch +ĠAd d +Ġgo al +Ġsc ient +Ġcon v +1 00 +em y +Ġdec ided +Ġtra vel +Ġm ention +L L +0 3 +Ġe lection +Ġph one +Ġlook s +Ġsit uation +Ġc y +Ġh or +b ed +ĠCour t +a ily +av es +Ġqu ality +ĠCom p +w ise +Ġt able +Ġst aff +ĠW ind +et t +Ġtri ed +ide red +Ġadd ition +Ġb ox +Ġl ack +ar ily +Ġw ide +Ġm id +Ġbo ard +ys is +Ġant i +h a +Ġd ig +en ing +Ġd ro +C on +6 8 +Ġsl ow +b ased +se qu +Ġp ath +E x +ak er +Ġwork ed +Ġp en +Ġeng ine +Ġlook ed +ĠSu per +ĠS erv +Ġvict im +U n +Ġproper ty +Ġint rodu +Ġexec ut +ĠP M +L e +Ġcol or +ĠM ore +Ġ6 0 +Ġnet work +Ġd ate +c ul +id ge +Ġext ra +3 1 +Ġs le +6 7 +Ġw ond +Ġreport s +j ust +ĠAust ral +Ġcap ital +Ġen s +Ġcomm and +Ġallow ed +Ġpre p +Ġca pt +h ib +Ġnum bers +ch an +Ġf air +m p +om s +Ġre ach +W ith +t ain +Ġbro ad +Ġcou ple +ec ause +ly ing +ĠF eb +Ġsc reen +Ġl ives +Ġpri or +ĠCong ress +A r +Ġappro ach +Ġe mer +ar ies +ĠD is +s erv +ĠN e +Ġbu ilt +c ies +Ġre pe +Ġrul es +for ce +ĠP al +Ġfin ancial +Ġcons idered +ĠCh ar +n ces +ĠI S +Ġb rought +Ġb i +i ers +ĠS im +O P +Ġproduct s +Ġvis it +Ġdoc ument +Ġcon duct +Ġcomplete ly +in ing +ĠCal if +ib ly +Ġwr itten +ĠT V +em ents +Ġd raw +O ne +Ġpub lished +Ġsec ret +r ain +he t +ĠF acebook +ond ay +ĠU p +Ġsex ual +Ġth ous +ĠP at +Ġ ess +Ġstand ard +Ġar m +g es +ect ion +Ġf ell +Ġfore ign +an i +ĠFr iday +Ġreg ular +in ary +Ġincre ased +Ġus ually +Ġdem on +Ġd ark +Ġadd itional +ro l +ĠO f +Ġprodu ction +! ! +und red +Ġintern ational +id ents +ĠF ree +rou p +Ġr ace +Ġm ach +Ġh uge +A ll +le ar +ove mber +Ġto wn +Ġatt ention +ĠO ff +y ond +ĠThe n +f ield +Ġter ror +ra z +ĠB o +Ġmeet ing +ĠP ark +Ġar rest +Ġf ear +Ġa w +ĠV al +or ing +' , +Ġext reme +ar r +Ġwork ers +A fter +Ġ3 1 +n et +am ent +Ġdirect ly +Ġpop ulation +ub e +ĠOct ober +ĠI N +ĠJan uary +5 9 +ĠDav id +Ġc ross +ce mber +ĠF irst +Ġmess age +ir it +Ġn ation +Ġp oll +is ions +Ġansw er +n y +is ode +Ġcar ry +ĠRuss ia +Ġhe ar +eng th +ro y +Ġn atural +in ally +Ġdo g +m itted +Ġtr ade +Ġsub st +Ġmult iple +ĠAf ric +Ġf ans +Ġs ort +Ġgl obal +ic ation +ĠW ed +ar a +Ġa chie +Ġlangu age +ve y +Ġt al +Ġnecess ary +Ġdet ails +Ġs en +ĠS und +ĠRe g +ĠR ec +0 6 +Ġs il +ress ive +Ġmed ical +un ch +orn ia +Ġu nd +f ort +oc ks +ĠM onday +ues day +c raft +7 7 +ur t +Ġ ver +ĠH ill +Ġrece ive +Ġmor ning +es tern +Ġb ank +Ġs at +ir th +ĠH igh +Ġdev ice +ĠTH E +ĠCent er +Ġsaf e +Ġp le +ĠCanad a +Ġsystem s +Ġass ist +Ġsur v +Ġb attle +ĠS oc +vert is +S he +Ġp aper +Ġgrow th +Ġc ast +S c +Ġpl ans +ll ed +Ġpart s +Ġw all +Ġmove ment +Ġpract ice +im ately +Ġdis play +Ġsomet imes +om p +ĠP aul +ĠY es +k ing +5 8 +o ly +Ġs on +Ġav oid +ok es +ĠJ ew +Ġto wards +as c +Ġ // +ĠK ore +Ġtalk ing +Ġcor rect +Ġsp ent +ic ks +i able +e ared +Ġter m +Ġwant s +om ing +Ġ ut +Ġdou b +Ġfor ces +Ġp lease +6 9 +ĠN ovember +at form +ond on +Ġon es +Ġimmedi ately +ĠRuss ian +ĠM et +Ġde g +Ġparent s +C H +ĠAmeric ans +al y +ĠM od +Ġsh own +Ġcond itions +Ġst uff +Ġre b +ĠY our +Ġinclud es +n own +ĠS am +Ġexper ien +m ission +ĠE ven +augh t +Ġannoun ced +ĠRepublic an +Ġdeter min +Ġdescrib ed +ĠCount y +( ) +Ġdo or +Ġchang ed +Ġne igh +ĠH ere +Ġcle an +Ġp an +ĠDe cember +ĠEurope an +ir ing +ap ter +Ġcl ub +ĠT uesday +Ġp aid +ĠN et +Ġattack s +Ġcharact ers +Ġal one +Ġdirect or +d om +Ġ3 5 +Ġl oad +Ġr out +ĠCalif ornia +Ġfin ally +Ġr ac +Ġcont r +Ġexact ly +res h +p ri +ĠIs lam +Ġn ature +Ġcare er +Ġlat est +Ġcon vers +ĠS l +p ose +ci ent +ĠIn c +iv ity +8 8 +ĠA tt +ĠM or +nes day +Ġwe ight +k en +Ġnot e +Ġteam s +Ġ \ +air s +ĠG reen +Ġh undred +on ent +Ġstre ng +Ġcons ist +ic ated +Ġreg ul +Ġl ic +ast ic +Ġt en +urs day +ellig ence +ous ly +ĠU K +B I +Ġcost s +Ġind epend +ĠA P +Ġnorm al +Ġh om +Ġob vious +Ġs we +Ġst ar +Ġread y +ac her +Ġimp lement +g est +Ġs ong +ĠG et +ĠL ab +Ġinterest ing +us ing +Ġg iving +ĠSund ay +Ġet c +Ġm iddle +Ġrem ember +r ight +os ition +ut ions +Ġm ax +4 6 +Ġyour self +Ġdem and +Ġtreat ment +Ġd anger +ĠC ons +Ġgu y +ĠBrit ish +Ġphys ical +Ġrel ated +Ġrem ain +Ġcould n +Ġref er +Ġc itiz +b ox +EN T +bo ard +Ġin n +I G +er o +ĠSt reet +osp ital +ren ch +cher s +Ġst ra +O L +ag er +ĠA N +Ġeas ily +I A +en ge +in y +Ġcl os +ock ed +Ġus es +ĠC oun +I m +u ild +? ? +m ore +Ġan g +Ġwr ite +ol ute +5 7 +Ġlead er +Ġread ing +< / +Ġaut om +est s +4 3 +Ġleg isl +ĠG old +Ġdesign ed +ĠS T +ĠLe g +a res +Ġbe aut +ĠT ex +Ġappear s +Ġstru gg +ĠR om +Ġ 00 +Ġcho ice +Ġparticular ly +ĠF rom +op er +ĠL ondon +ann ed +Ġallow s +ob ile +Ġdiffere nce +âĢ ¢ +ĠV iew +ĠWed nesday +Ġal though +Ġrel ative +Ġapplic ation +ate ver +Ġare n +Ġmy self +Ġim ag +Ġdis e +Ġsoc iety +Ġfre qu +ĠEng lish +Ġpo or +ĠD ay +Ġwrit ing +Ġse ven +Ġstart ing +Ġb ud +Ġpr int +ĠTr ans +uf act +ĠSt ud +n ew +Ġcr im +Ġg ives +Ġco ol +a e +i ance +ĠGener al +Ġthink ing +Ġsa ve +Ġlim ited +ĠPart y +Ġmean ing +p en +ow ers +ĠJ ack +E M +Ġn ice +ru pt +Ġg as +Ġe ight +Ġfe et +Ġeff ort +Ġ ign +ic it +B l +co in +Ġop in +Ġbr ain +Wh ile +he st +ĠTh ursday +Ġwould n +augh ter +Ġtou ch +le ments +Ġstud ies +Ġcent er +c ont +or ge +Ġcomput er +Ġinvestig ation +P l +or ks +Ġ200 8 +Ġincre asing +Ġst ore +Ġcom ments +Ġb al +m en +Ġdo ll +Ġl iber +Ġw ife +Ġlaw s +atur day +it ness +Ġmod ern +ĠS k +Ġadminist ration +Ġopportun ity +Ġs al +Ġpower ful +M y +Ġclaim s +ĠEar th +ord s +Ġt itle +Ġes c +n ame +N ot +om en +Ġbe yond +Ġc amer +Ġse ll +it ute +ear ch +Ġapp l +im ent +4 2 +ĠAr t +Ġun f +Ġviol ence +ur g +ĠE ast +Ġcomp ared +Ġopt ions +Ġthrough out +Ġv s +ig r +. [ +ac hes +7 8 +Ġfil es +F L +E L +ar ian +ĠJ ames +ĠA ir +an ch +Ġdet ail +Ġpie ce +P S +Ġn amed +Ġeduc ation +Ġdri ve +Ġitem s +Ġstud ent +ic ed +: : +ic o +Ġth row +Ġsc ene +Ġcomple x +Ġ200 9 +Ġpre c +ĠB re +7 9 +Ġcon cept +Ġstat us +am ing +Ġd ied +Ġknow ledge +Ġbegin ning +O D +ru ary +Ġcertain ly +Ġgu ys +Ġsl ight +in n +ound s +Ġf ine +Ġf at +ic ations +Ġper haps +ĠA nt +Ġinc ome +Ġhtt ps +Ġmajor ity +port s +st on +Ġgreat er +Ġfe ed +ent ially +Ġsaf ety +Ġun ique +and om +Ġg one +Ġshow ed +Ġhist or +Ġcoun ter +i us +id a +Ġlead ing +i pe +Ġs end +ĠDon ald +er ve +Ġdef ense +ines e +Ġy es +ĠF ire +ĠMus lim +ra q +Ġcontin ued +os h +Ġprov ides +Ġpr ison +ĠP re +Ġhapp y +Ġeconom y +Ġtr ust +ag s +ĠG ame +Ġweap ons +um an +ĠC le +it ation +Ġanal ysis +ĠT imes +Ġsc ience +- > +Ġfig ure +Ġdis app +ent y +Ġsoft ware +Ġu lt +Ġoffic ers +N ew +I s +Ġrem ains +ĠInd ia +Ġp sych +ri ef +Ġc at +es c +Ġob serv +Ġst age +ĠD ark +Ġent er +ch ange +Ġpass ed +Ġdes pite +ĠO ut +Ġmov ie +r s +Ġv oice +m ine +ĠPl ay +Ġto ward +ĠT er +Ġreg ion +Ġval ues +or ters +Ġm ount +Ġoffic er +ĠO ther +b an +Ġh ous +w ood +ro om +I V +ĠS un +se e +ĠO ver +ro g +9 0 +Ġl ay +ĠT ur +a wn +Ġpress ure +ĠS ub +Ġbook s +ed om +ĠS and +A A +ag o +Ġre asons +f ord +Ġactiv ity +U T +N ow +ĠSen ate +ce ll +n ight +Ġcall s +in ter +Ġlet ter +ĠR ob +ĠJ e +Ġcho ose +ĠL aw +G et +B e +Ġro b +Ġtyp es +Ġpl atform +Ġqu arter +R A +ĠT ime +Ġmay be +ĠC r +9 5 +p re +Ġmov ing +Ġl if +Ġgo ld +Ġs om +Ġpat ients +Ġtr uth +ĠK e +ur ance +ant ly +m ar +Ġchar ge +ĠG reat +Ġce le +---------------- ---------------- +Ġro ck +ro id +an cy +Ġcred it +a ud +B y +ĠE very +Ġmov ed +ing er +rib ution +Ġn ames +Ġstra ight +ĠHe alth +ĠW ell +Ġfe ature +Ġr ule +Ġsc he +in ated +ĠMich ael +ber g +4 1 +il ed +b and +Ġcl ick +ĠAng el +on ents +Â Ń +ĠI raq +ĠS aturday +Ġa ware +p art +Ġpat tern +O W +ĠL et +Ġgr ad +ign ed +Ġassoci ated +Ġst yle +n o +i ation +a ith +il ies +Ġst ories +ur ation +Ġindividual s +ĠâĢ ¦ +m iss +ĠAss oci +ish ing +ab y +Ġsum mer +ĠB en +Ġ3 2 +Ġar ch +ut y +ĠTex as +h ol +Ġfull y +Ġm ill +Ġfollow ed +ĠB ill +ĠInd ian +ĠSec ret +ĠB el +ĠFeb ruary +Ġjob s +Ġseem ed +ĠGo vern +i pped +Ġreal ity +Ġl ines +Ġp ark +Ġmeas ure +ĠO ur +I M +Ġbro ther +Ġgrow ing +Ġb an +Ġest im +Ġc ry +ĠS chool +Ġme chan +ĠO F +ĠWind ows +Ġr ates +ĠO h +Ġpos itive +Ġcult ure +ist ics +ic a +Ġh ar +y a +ite ly +i pp +Ġm ap +en cies +ĠWill iam +I I +ak ers +5 6 +ĠM art +ĠR em +Ġal tern +it ude +Ġco ach +row d +D on +Ġk ids +Ġj ournal +Ġcor por +Ġf alse +Ġwe b +Ġsle ep +Ġcont ain +Ġst o +Ġb ed +iver se +ĠR ich +ĠCh inese +Ġp un +Ġme ant +k nown +Ġnot ice +Ġfavor ite +a ven +Ġcond ition +Ġpur pose +) ) +Ġorgan ization +Ġchall eng +Ġman ufact +Ġsus p +ĠA c +Ġcrit ic +un es +uc lear +Ġm er +vent ion +Ġ8 0 +Ġm ist +ĠU s +ĠT or +htt p +ol f +Ġlarg er +Ġadv ant +Ġrese ar +Ġact ions +m l +Ġke pt +Ġa im +, ' +c ol +Ġbenef its +if ying +Ġact ual +ĠIntern ational +Ġveh icle +Ġch ief +Ġeff orts +ĠLe ague +ĠM ost +Ġwa it +Ġad ult +Ġover all +Ġspe ech +Ġhigh ly +Ġfem ale +Ġer ror +Ġeffect ive +5 4 +Ġenc our +w ell +Ġfail ed +Ġcons erv +Ġprogram s +Ġt rou +Ġa head +5 00 +vertis ement +I P +ĠF ound +p ir +Ġ % +Ġcr ime +and er +Ġloc ation +ĠI ran +Ġbehav ior +az ing +Ġr are +Ġem b +Ġca used +Ġsh ip +Ġact ive +Ġcont ribut +Ġg reen +Ġac qu +Ġref lect +ven ue +Ġf irm +Ġb irth +] . +Ġclear ly +Ġem ot +Ġag ency +ri age +Ġmem ory +9 8 +S A +ĠSe e +ac ing +C C +Ġbig gest +Ġr ap +Ġbas ic +Ġb and +e at +Ġsus pect +ĠM ac +Ġ9 0 +m ark +ist an +Ġsp read +am s +k i +as y +ra v +ĠR ober +Ġdemon str +r ated +Ġabs olute +Ġpl aces +Ġim pl +ibr ary +Ġc ards +Ġdest roy +Ġv irt +ve re +Ġapp eared +y an +p oint +Ġbe g +Ġtem per +s pe +ant ed +ear s +ĠD irect +Ġl ength +Ġbl og +am b +Ġint eg +Ġres ources +ac c +if ul +Ġsp ot +Ġfor ced +Ġthous ands +ĠMin ister +Ġqu al +ĠF rench +at ically +Ġgener ally +Ġdr ink +Ġth us +I L +od es +Ġappro pri +ĠRe ad +Ġwh om +Ġey e +Ġcol lege +Ġ4 5 +ire ction +Ġens ure +Ġapp arent +id ers +Ġrelig ious +Ġmin or +ol ic +Ġt ro +ĠWh y +rib ute +m et +Ġprim ary +Ġdevelop ed +Ġpe ace +Ġsk in +st e +av a +Ġbl ue +Ġfam ilies +Ġ ir +Ġapp ly +Ġin form +ĠSm ith +C T +i i +Ġlim it +Ġres ist +........ ........ +um n +Ġconf lic +Ġtw e +ud d +ĠT om +Ġl iter +qu e +b on +Ġha ir +Ġevent ually +Ġp us +Ġhelp ed +Ġag g +or ney +ĠApp le +Ġf it +ĠS ur +Ġpre m +Ġs ales +Ġsecond s +Ġstreng th +Ġfeel ing +¿ ½ +Ġt our +Ġknow s +o om +Ġex erc +Ġsom ew +ï ¿½ +> > +Ġsp okes +Ġide as +Ġreg ist +so ft +ĠD el +ĠP C +Ġpro pos +Ġlaun ch +Ġbott om +T H +ĠP lease +v est +it z +ĠIn ter +Ġsc ript +Ġr at +ar ning +Ġ il +ĠJ er +ĠA re +Ġwh atever +ok en +ci ence +Ġmod e +Ġag ree +Ġs ources +Ġinit ial +Ġrest rict +Ġwond er +us ion +## ## +ĠS il +vil le +Ġb urn +t w +as ion +Ġ £ +Ġn or +u ing +Ġre ached +Ġs un +Ġc ateg +ig ration +Ġc ook +Ġprom ot +Ġm ale +Ġcl imate +Ġf ix +Ġalleg ed +U R +all ed +Ġim ages +C ont +ot a +Ġschool s +i os +Ġd rop +Ġst ream +ĠM o +Ġprevious ly +al ing +Ġp et +Ġdou ble +Ġ( @ +ann el +Ġdef ault +t ies +Ġr ank +ĠD ec +ĠCoun cil +Ġweap on +Ġst ock +Ġanal y +ĠSt r +Ġpict ure +ĠPol ice +f erence +Ġcent ury +Ġcitiz ens +Ġon to +Ġexp and +Ġhe ro +ĠS ol +Ġw ild +Ġupd ate +Ġcustom ers +r ont +d ef +Ġl ik +Ġcrim inal +ĠChrist ian +S P +7 6 +Ġle aving +Ġother wise +ĠD ist +Ġbas is +5 2 +5 3 +ic ip +ĠB er +Ġrecomm end +Ġfl oor +Ġc rowd +ol es +Ġ7 0 +Ġcent ral +ĠE v +Ġd ream +Ġdown load +Ġconf ir +ĠTh om +Ġwind ow +Ġhapp ens +Ġun it +Ġt end +Ġs pl +Ġbec omes +Ġfight ing +Ġpred ict +ĠP ress +ĠP ower +Ġhe avy +ak ed +Ġf an +or ter +ate gy +B A +iz es +Ġsp end +H ere +Ġ200 7 +Ġad op +ĠH am +Ġfoot ball +ĠP ort +od ay +5 1 +amp ions +Ġtrans fer +h t +Ġ3 8 +ter m +ac ity +Ġb ur +] , +tern al +r ig +b ut +Ġthere fore +ĠB ecause +res p +re y +Ġm ission +S ome +Ġnot ed +Ġass um +Ġdise ase +Ġed it +Ġprog ress +r d +ĠB rown +oc al +Ġadd ing +Ġra ised +ĠAn y +Ġt ick +Ġsee ing +ĠPe ople +Ġagre ement +Ġser ver +Ġw at +Ġdeb ate +Ġsupp osed +il ing +Ġlarg est +Ġsuccess ful +ĠP ri +ĠDemocr atic +Ġj ump +ĠSyri a +Ġown ers +Ġoff ers +Ġshoot ing +Ġeff ic +se y +Ġha ven +ver se +te red +ĠL ight +im al +ĠB ig +Ġdef end +Ġbe at +Ġrecord s +% ) +Ġsc en +Ġemploy ees +Ġdev ices +he m +Ġcom mer +ĠM ex +Ġbenef it +ĠPro f +Ġil leg +Ġsur face +ĠAl so +Ġh arm +ing ly +w ide +ĠA lex +Ġsh ut +ĠC ur +Ġl ose +p m +Ġchall enge +se mb +Ġst ation +Ġint elligence +Ġacc ur +ĠFl or +Ġrequ ires +ĠM al +b um +Ġh ospital +Ġsp irit +Ġoff ered +Ġprodu ce +ĠComm un +Ġcreat ing +Ġcr is +s pect +Ġend ed +Ġd aily +Ġvot ers +land s +i as +i h +on a +Ġsm art +ĠOff ice +ĠL ord +ri al +ĠIntern et +Ġcirc um +Ġextreme ly +' . +Ġopin ion +ĠM il +Ġg ain +B S +ĠF in +y p +Ġuse ful +Ġbud get +Ġcom fort +is f +Ġback ground +el ine +Ġep isode +Ġen emy +Ġtri al +Ġestab lish +d ate +ĠC ap +Ġcontin ues +Ġshow ing +ĠUn ion +w ith +Ġpost ed +ĠSy stem +Ġe at +ri an +Ġr ise +ĠGerman y +il s +Ġsign ed +Ġv ill +Ġgr and +m or +ĠEng land +Ġproject s +um ber +Ġconf erence +z a +Ġrespons ible +ĠAr ab +Ġlearn ed +âĢĶ âĢĶ +i pping +ĠGe orge +O C +Ġreturn ed +ĠAustral ia +Ġb rief +Q u +Ġbr and +ill ing +ab led +Ġhig hest +Ġtr ain +ĠComm ission +wh ile +Ġn om +cept ion +Ġm ut +ĠBl ue +Ġinc ident +v ant +8 6 +ĠI D +Ġn uclear +7 4 +ĠL ike +ĠR E +ĠM icro +l i +m ail +Ġcharg es +8 9 +Ġad just +ad o +Ġear th +N A +Ġpr ices +P A +Ġd raft +Ġrun s +Ġcandid ate +ens es +Ġmanag ement +ĠPh il +ĠM iss +Ġte ach +g ram +Ġunderstand ing +a it +ic ago +A dd +ĠE p +sec ut +Ġsepar ate +Ġinst ance +Ġe th +Ġun less +**** **** +ĠF ore +in ate +Ġoper ations +S p +Ġf aith +g ar +ĠCh urch +ron ic +Ġconf ig +os ure +Ġactiv ities +Ġtrad itional +Ġ3 6 +Ġd irection +Ġmach ine +Ġsur round +Ġp ush +un ction +ĠE U +Ġeas ier +Ġarg ument +G B +Ġm icro +Ġsp ending +iz ations +Ġthe ory +ad ow +Ġcall ing +ĠL ast +Ġd er +Ġinflu ence +Ġcomm it +Ġph oto +Ġun c +ist ry +g n +ast e +ack s +Ġdis p +ad y +d o +ĠG ood +Ġ ` +Ġw ish +Ġreve aled +Âł Âł +l ig +Ġen force +ĠComm ittee +Ġche m +Ġmil es +Ġinterest ed +Ġsol ution +ic y +in ct +Ġ- > +ĠD et +Ġrem oved +Ġcomp ar +e ah +Ġpl ant +ĠS ince +Ġachie ve +Ġadvant age +Ġslight ly +b ing +Ġpl aced +u nder +201 5 +ĠM ad +Ġt im +os es +Ġc ru +ĠR ock +Ġmost ly +Ġneg ative +Ġset ting +Ġprodu ced +Ġm ur +Ġconnect ion +ĠM er +Ġdri ver +Ġexecut ive +Ġass ault +Ġb orn +ĠV er +t ained +Ġstruct ure +Ġredu ce +Ġdec ades +Ġd ed +u ke +ĠM any +idd en +Ġle ague +S e +Ġjo in +Ġdis co +Ġd ie +c ks +act ions +Ġass ess +ag n +Ġgo als +our s +I R +Ġsen ior +ill er +m od +ip ment +oc ol +u y +ĠQ ue +Ġpart ies +ir gin +Ġle arning +it able +Ġstre et +Ġcamer a +A pp +Ġsk ills +b re +c ious +Ġcele br +ĠFr anc +Ġexist ing +Ġwill ing +l or +Ġ id +ĠSp ace +Ġcrit ical +ĠL a +ortun ately +Ġser ve +Ġc old +Ġspec ies +T S +Ġanim als +ĠB ay +Ġold er +ĠU nder +est ic +ĠT re +Ġte acher +Ġpre fer +v is +Ġth read +ĠM att +Ġmanag er +ãĥ » +Ġprofess ional +ĠV ol +Ġnot es +The se +ul a +Ġf resh +ent ed +u zz +ed y +clus ion +ĠR el +Ġdoub t +E O +Ġopen ed +ĠB it +Ad vertisement +Ġgu ess +ĠU N +Ġse qu +Ġexpl ain +ott en +Ġatt ract +ak s +Ġstr ing +Ġcont ext +oss ible +ĠRepublic ans +Ġsol id +Ġc ities +Ġask ing +Ġr andom +u ps +ur ies +ar ant +dd en +g l +ĠFlor ida +Ġdep end +ĠSc ott +Ġ3 3 +Ġi T +ic on +Ġmention ed +Ġ2 000 +Ġclaim ed +Ġdefin itely +ul f +Ġc ore +Ġopen ing +ĠCon st +wh ich +ĠT ra +A G +7 2 +Ġbelie ved +ad a +Ġ4 8 +ĠSec urity +yr ight +ĠP et +ĠL ou +Ġhold ing +======== ======== +Ġ ice +Ġb row +Ġauthor ities +h ost +w ord +Ġsc ore +ĠD iv +Ġcell s +Ġtrans l +Ġneigh bor +Ġrem ove +u ct +Ġdist rict +ĠA ccording +Ġwor se +Ġconcern s +Ġpresident ial +Ġpolic ies +ĠH all +7 3 +Ġh us +A Y +Ġ200 6 +ĠJ ud +Ġindepend ent +ĠJust ice +ili ar +pr int +igh ter +Ġprotect ion +z en +Ġsu dden +h ouse +ĠJ es +P R +ĠIn f +Ġb ul +Ġ _ +ĠServ ice +ĠP R +Ġstr ategy +ff ect +Ġgirl s +Ġmiss ing +oy al +ĠTe am +ul ated +Ġd at +Ġpolit ics +ab or +A ccording +Ġspe ll +Ġg raph +ort hern +T C +A b +Ġlab or +is her +Ġk ick +ĠiT unes +Ġstep s +pos es +Ġsmall er +E n +ber t +Ġro ll +Ġresear chers +Ġcl osed +Ġtrans port +Ġlaw y +________ ________ +ĠCh icago +Ġas pect +Ġn one +Ġmar riage +9 6 +Ġe lements +ĠF re +ĠS al +Ġd ram +F C +t op +e qu +Ġhe aring +Ġsupport ed +Ġtest ing +co hol +Ġmass ive +Ġst ick +Ġgu ard +is co +ph one +F rom +How ever +Ġb order +Ġcop y +ograph y +l ist +7 1 +Ġown er +cl ass +ru it +r ate +ĠO nce +Ġdig ital +Ġt ask +ER S +Ġinc red +t es ++ + +ĠFr ance +Ġb reat +ow l +Ġiss ued +ĠW estern +Ġdet ect +Ġpart ners +Ġsh ared +ĠC all +Ġcan cer +ac he +rib e +Ġexpl ained +Ġhe at +{ " +Ġinvest ment +ĠB ook +Ġw ood +Ġtool s +ĠAl though +Ġbelie f +Ġcris is +Ġg e +ĠM P +Ġoper ation +ty pe +~ ~ +g a +Ġcont ains +ant a +Ġexp ress +ĠG roup +ĠJ ournal +k a +Ġam b +ĠUS A +Ġfind ing +Ġfund ing +h ow +Ġestab lished +ide os +Ġdeg ree +Ġdanger ous +ang ing +Ġfre edom +pp ort +out hern +Ġch urch +Ġc atch +ĠTw o +Ġpres ence +ĠGu ard +U p +Ġauthor ity +ĠPro ject +Ġbut ton +Ġcon sequ +Ġval id +Ġwe ak +Ġstart s +Ġref erence +ĠM em +" ) +U N +or age +ĠO pen +Ġcol lection +y m +g ency +Ġbeaut iful +ro s +Ġtell s +Ġwa iting +n el +Ġprov iding +ĠDemocr ats +Ġd aughter +Ġm aster +Ġpur poses +ĠJapan ese +Ġequ al +Ġturn s +Ġdoc uments +Ġwatch ing +R es +Ġr an +201 4 +Ġre ject +ĠKore a +Ġvictim s +Le vel +ere nces +Ġw itness +Ġ3 4 +Ġre form +com ing +Ġocc up +Ġc aught +Ġtra ffic +ad ing +Ġmod els +ar io +Ġserv ed +Ġb atter +u ate +ĠSecret ary +Ġagre ed +Ġtr uly +yn am +ĠR et +Ġun its +ĠRes earch +h and +az ine +ĠM ike +Ġvar iety +ot al +Ġam azing +Ġconfir med +Ġentire ly +Ġpurch ase +Ġe lement +Ġc ash +Ġdeter mine +D e +Ġc ars +ĠW all +â ĸ +Ġview s +Ġdrug s +Ġdep artment +ĠSt ep +u it +Ġ3 9 +as ure +ĠCl ass +Ġc overed +ĠB ank +Ġme re +u ana +Ġmult i +Ġm ix +Ġun like +lev ision +Ġsto pped +Ġs em +ĠG al +ul es +Ġwe l +ĠJohn son +l a +Ġsk ill +Ġbec oming +ri e +Ġappropri ate +f e +ell ow +ĠPro t +ul ate +oc ation +Ġweek end +od ies +Ġsit es +Ġanim al +ĠT im +Ġsc ale +Ġcharg ed +Ġinst ruct +ill a +Ġmethod s +Ġc ert +Ġjud ge +ĠH el +Ġdoll ars +Ġstand ing +ĠS qu +Ġdeb t +l iam +Ġdri ving +ĠS um +ĠEd ition +Ġal bum +and on +I F +ĠU k +6 3 +ad er +Ġcommer cial +es h +ĠGovern ment +Ġdisc overed +Ġout put +ĠHill ary +ĠCar ol +Ġ200 5 +Ġab use +anc ing +Ġsw itch +Ġann ual +T w +Ġst ated +ag ement +in ner +Ġdem ocr +Ġres idents +Ġallow ing +Ġfact ors +od d +Ġf uck +em ies +Ġoccur red +ot i +Ġn orth +ĠP ublic +Ġinj ury +Ġins urance +C L +oll y +ã Ģ +Ġrepe ated +Ġar ms +ang ed +Ġconst ruction +Ġf le +P U +ic ians +Ġfor ms +ĠMc C +ant ic +Ġm ental +p ire +Ġequ ipment +Ġf ant +Ġdiscuss ion +Ġregard ing +k in +ar p +Ġch air +og ue +Ġpro ceed +ĠI d +O ur +Ġmur der +M an +Ġ4 9 +as p +Ġsupp ly +Ġin put +Ġwe alth +liam ent +Ġpro ced +or ial +ĠSt at +ĠN FL +hen s +ĠInst itute +Ġput ting +ourn ament +et ic +Ġloc ated +Ġk id +er ia +r un +Ġpr inc +Ġ ! +go ing +ĠB et +Ġcl ot +Ġtell ing +Ġprop osed +i ot +or ry +Ġfund s +g ment +ĠL ife +Ġb aby +ĠB ack +Ġsp oke +Im age +Ġear n +ĠA T +g u +Ġex change +ĠL in +ov ing +Ġp air +M ore +az on +Ġarrest ed +Ġkill ing +c an +ĠC ard +y d +Ġident ified +Ġm obile +Ġthan ks +ony m +ĠF orm +Ġhundred s +ĠCh ris +ĠC at +Ġtre nd +h at +ĠA v +om an +Ġelect ric +ĠW il +S E +O f +Ġrest aur +ot ed +Ġtr ig +Ġn ine +Ġb omb +Wh y + ¯ +Ġco verage +Ġapp eal +ĠRober t +ĠS up +Ġfin ished +Ġfl ow +Ġdel iver +Ġcal cul +Ġphot os +Ġph il +Ġpie ces +Ġapp re +k es +Ġr ough +D o +Ġpart ner +Ġconcern ed +Ġ3 7 +ĠG en +C ol +ct ors +Ġ= > +st ate +Ġsuggest ed +ĠFor ce +C E +Ġher self +ĠPl an +w orks +o oth +ren cy +Ġcor ner +Ġhus band +Ġintern et +ĠA ut +em s +os en +ĠAt l +g en +Ġbal ance +6 2 +Ġsound s +te xt +Ġar r +ov es +Ġmill ions +Ġrad io +Ġsat isf +ĠD am +M r +G o +S pe +Ġcomb at +r ant +ĠG ree +Ġf uel +Ġdist ance +Ġtest s +Ġdec re +ĠE r +Ġman aged +D S +Ġt it +Ġmeas ures +ĠL iber +Ġatt end +as hed +ĠJ ose +ĠN ight +d it +ĠN ov +ĠE nd +out s +Ġgener ation +Ġadv oc +y th +Ġconvers ation +ĠS ky +act ive +ce l +ri er +ĠFr ank +Ġg ender +Ġcon cent +Ġcar ried +and a +ĠV irgin +Ġarri ved +ic ide +ad ed +Ġfail ure +Ġmin imum +le ts +Ġwor st +Ġkeep ing +Ġint ended +Ġilleg al +Ġsub sc +Ġdetermin ed +Ġtri p +Y es +Ġra ise +Ġ ~ +Ġfeel s +Ġpack age +ĠJ o +h i +201 6 +re al +Ġf ra +Ġsy mb +M e +uck y +p ret +ĠK h +ĠEd it +ĠWe b +em ic +ĠCol or +Ġjust ice +I nt +Ġfar m +ck now +" > +el ess +Ġredu ced +Ġ5 00 +x x +ĠR ad +ĠW ood +Ġcl in +Ġhy p +il er +ur a +k ins +8 5 +6 1 +ĠThe ir +ĠM ary +Ġs an +Ġno vel +ĠWh o +Ġcap acity +Ġimp ossible +Ġpl ays +Ġmin ister +ij uana +ic ate +ĠS et +Ġf ram +Ġ ing +Ġcommun ities +ĠF BI +it a +Ġb on +Ġstr ateg +Ġinterest s +l ock +g ers +m as +ĠAN D +Ġconflic t +Ġrequire ments +Ġs ac +Ġoper ating +in i +rel ated +Ġcomm itted +Ġrelative ly +Ġs outh +¯ ¯ +Ġaff ord +Ġident ity +Ġdec isions +Ġacc used +pl ace +Ġvict ory +o ch +i at +N ame +C om +t ion +ed s +Ġsee k +Ġt ight +ĠIm ages +Ġinit i +Ġhum ans +Ġfam iliar +Ġaud ience +Ġintern al +vent ure +Ġs ides +ĠT O +Ġd im +Ġcon clud +Ġapp oint +Ġenforce ment +ĠJ im +ĠAssoci ation +Ġcircum st +ĠCanad ian +Ġjo ined +Ġdiffere nces +ĠL os +Ġprot est +Ġtw ice +w in +Ġgl ass +ars h +ĠAr my +Ġexp ression +Ġdec ide +Ġplan ning +an ia +Ġhand le +ĠMicro soft +ĠN or +Ġmax imum +ĠRe v +Ġse a +Ġev al +Ġhel ps +re f +Ġb ound +Ġm outh +Ġstand ards +Ġcl im +ĠC amp +ĠF ox +cl es +Ġar my +ĠTe chn +ack ing +x y +S S +Ġ4 2 +Ġbu g +ĠUk rain +ĠM ax +ĠJ ones +ĠSh ow +l o +Ġplan et +Ġ7 5 +Ġwin ning +Ġf aster +Ġspe ct +Ġbro ken +T R +Ġdef ined +Ġhealth y +Ġcompet ition +htt ps +ĠIs land +ĠF e +Ġannoun ce +ĠC up +ĠInst ead +Ġcl ient +Ġposs ibly +se ction +ock et +l ook +Ġfin ish +Ġcre w +Ġres erv +Ġed itor +Ġh ate +Ġs ale +Ġcontro vers +Ġp ages +w ing +Ġnum er +Ġopp osition +Ġ200 4 +Ġref uge +Ġfl ight +Ġap art +ĠL at +A meric +ĠAfric a +Ġapplic ations +ĠPal est +ĠB ur +Ġg ar +ĠSoc ial +Ġup gr +Ġsh ape +Ġspe aking +ans ion +a o +ĠS n +Ġwor ry +ĠBrit ain +P lease +rou d +Ġh un +Ġintrodu ced +Ġd iet +I nd +ĠSec ond +Ġfun ctions +ut s +ĠE ach +ĠJe ff +Ġst ress +Ġaccount s +Ġgu arant +ĠAn n +ed ia +Ġhon est +Ġt ree +ĠAfric an +ĠB ush +} , +Ġs ch +ĠOn ly +Ġf if +ig an +Ġexerc ise +ĠEx p +Ġscient ists +Ġlegisl ation +ĠW ork +ĠS pr +à Ĥ +ĠH uman +Ġ è +Ġsur vey +Ġr ich +ri p +Ġmain tain +Ġfl o +Ġleaders hip +st ream +ĠIslam ic +Ġ 01 +ĠCol lege +Ġmag ic +ĠPr ime +Ġfig ures +201 7 +ind er +x ual +ĠDe ad +Ġabsolute ly +Ġfour th +Ġpresent ed +resp ond +rib le +Ġal cohol +at o +ĠD E +por ary +Ġgr ab +Ġvar i +Ġqu ant +ĠPh oto +Ġpl us +r ick +ar ks +Ġaltern ative +Ġp il +Ġappro x +th at +Ġobject s +ĠR o +ĠAnd roid +Ġsignificant ly +ĠR oad +k ay +R ead +av or +Ġa cknow +ĠH D +ĠS ing +O r +ĠM ont +Ġun s +pro f +Ġneg oti +ĠAr ch +ik i +Ġte levision +ĠJew ish +Ġcomm ittee +Ġmot or +Ġappear ance +Ġs itting +Ġstri ke +ĠD own +com p +ĠH ist +Ġf old +ac ement +ĠLou is +Ġbel ong +ĠâĢ ¢ +Ġm ort +Ġprep ared +Ġ6 4 +ĠM aster +Ġind eed +ĠD en +Ġre nt +T A +our ney +ar c +S u +9 7 +Ġadv ice +Ġchang ing +Ġlist ed +Ġlaun ched +is ation +ĠP eter +is hes +Ġl ived +ĠM el +ĠSup reme +ĠF ederal +Ġ) ; +ruct ure +Ġset s +Ġphil os +u ous +Ġ ł +Ġappl ied +ĠN OT +Ġhous ing +ĠM ount +Ġo dd +Ġsu st +D A +ffic ient +Ġ ? +ol ved +Ġp owers +Ġth r +Ġrem aining +ĠW ater +L C +Ġca uses +ãģ ® +Ġman ner +ad s +Ġsuggest s +Ġend s +stand ing +f ig +ĠD un +id th +Ġg ay +Ġter min +ĠAngel es +M S +Ġscient ific +Ġco al +ap ers +b ar +ĠThom as +Ġsy m +ĠR un +th is +P C +igr ants +Ġmin ute +ĠDist rict +cell ent +Ġle aves +Ġcomple ted +am in +Ġfoc used +Ġmon itor +Ġveh icles +M A +ĠM ass +ĠGr and +Ġaffect ed +itution al +Ġconst ruct +Ġfollow s +Ġt on +re ens +Ġh omes +ĠE xt +ĠLe vel +r ast +ĠI r +Ġel im +Ġlarge ly +ĠJ oe +Ġvot es +all s +Ġbusiness es +ĠFound ation +ĠCent ral +Ġy ards +Ġmaterial s +ul ner +Ġgu ide +Ġclos er +um s +Ġsp orts +ed er +J ust +Ġtax es +8 4 +ĠO ld +Ġdec ade +ol a +Ġv ir +Ġdro pped +Ġdel ay +it ect +Ġsec ure +ste in +le vel +Ġtre ated +Ġfil ed +ain e +Ġv an +Ġm ir +Ġcol umn +ict ed +e per +Ġro t +Ġcons ult +Ġent ry +Ġmar ijuana +ĠD ou +Ġapparent ly +ok ing +clus ive +Ġincre ases +an o +Ġspecific ally +Ġte le +ens ions +Ġrelig ion +ab ilities +Ġfr ame +ĠN ote +ĠLe e +Ġhelp ing +Ġed ge +ost on +Ġorgan izations +à ĥ +ĠB oth +hip s +Ġbig ger +Ġbo ost +ĠSt and +Ġro w +ul s +ab ase +Ġr id +L et +are n +ra ve +Ġst ret +P D +Ġv ision +Ġwe aring +Ġappre ci +Ġa ward +ĠU se +Ġfact or +w ar +ul ations +) ( +Ġg od +Ġter rit +Ġpar am +ast s +8 7 +Ġen emies +ĠG ames +F F +Ġacc ident +W ell +ĠMart in +T ER +Ġat h +ĠHe ll +Ġfor g +Ġve ter +ĠMed ic +f ree +Ġst ars +Ġexp ensive +Ġac ad +ra wn +ĠW he +Ġl ock +Ġform at +Ġsold iers +s m +Ġag ent +Ġrespons ibility +or a +ĠS cience +Ġrap id +Ġt ough +ĠJes us +Ġbelie ves +M L +Ġwe ar +le te +Ãĥ ÃĤ +ĠD ri +Ġcomm ission +ĠB ob +O h +ap ed +Ġwar m +ÃĥÃĤ ÃĥÃĤ +Ġ200 3 +ort ion +Ġhas n +ust er +Ġun ivers +ĠI ll +Ġk ing +olog ies +9 4 +ĠT em +ĠM os +Ġpat ient +ĠMex ico +ce an +ĠDe ath +ĠSand ers +y ou +ĠC ast +ĠComp any +pt y +Ġhappen ing +F P +ĠB attle +Ġb ought +A m +M od +U s +ut ers +ĠC re +ĠTh ose +Ġ4 4 +is er +Ġs oul +ĠT op +ĠHar ry +ĠA w +Ġse at +ff ee +Ġrev olution +Ġ( " +ĠD uring +et te +Ġr ing +Ġoff ensive +Ġreturn s +Ġv ideos +Ġdis cl +Ġfam ous +en ced +ĠS ign +ĠR iver +Ġ3 00 +P M +ĠB us +ĠC H +Ġcandid ates +ard en +Ġpercent age +Ġvis ual +Ġthan k +Ġtrou ble +ner gy +Ġ200 1 +Ġpro ve +ash ion +Ġen h +ĠL ong +U M +Ġconnect ed +Ġposs ibility +O ver +Ġexper t +Ġl ibrary +art s +ĠDirect or +Ġfell ow +9 2 +ir ty +Ġd ry +Ġsign s +ĠL ove +Ġqu iet +f oot +Ġp ure +ĠH un +Ġf illed +ph as +ĠE lect +end ment +ĠEx pl +Ġun able +n s +m o +Ġv ast +ob e +Ġident ify +app ing +ĠCarol ina +g ress +Ġpro te +Ġf ish +Ġcircumst ances +raz y +ĠPh ot +Ġb odies +ĠM ur +Ġdevelop ing +ĠA R +Ġexperien ced +Ġsubst ant +ĠBo ard +es ome +Ġdom estic +Ġcomb ined +ĠP ut +Ġchem ical +ĠCh ild +Ġpo ol +ĠC y +Ġe gg +c ons +st ers +Ġh urt +Ġmark ets +Ġconserv ative +Ġsupp orters +Ġag encies +id el +O b +ur b +Ġ4 3 +ĠDef ense +y e +ĠA p +du le +Ġtemper ature +Ġconduct ed +ĠCh ief +Ġpull ed +Ġf ol +L ast +ont o +os is +V ER +D es +ĠP an +F irst +Ġadv ance +Ġlic ense +r ors +ĠJ on +Ġimag ine +Ġhe ll +Ġf ixed +Ġinc or +os ite +ĠL og +ick en +] : +Ġsurpr ise +h ab +Ġc raft +ol t +ĠJ ul +Ġd ial +Ġrele vant +Ġent ered +Ġlead s +ĠA D +ĠCle an +Ġpict ures +ess or +Ġal t +Ġpay ing +P er +ĠMark et +Ġupd ates +am ily +ĠT ype +ĠH ome +Ġ5 5 +semb ly +rom e +8 3 +Ġgreat est +Ġhe ight +Ġhe av +ain ts +Ġlist en +as er +ĠS H +Ġcap able +ac le +Ġpers pect +in ating +Ġoff ering +ry pt +ĠDe velop +ab in +r c +Ġbr ight +al ty +ar row +Ġsupp l +ind ing +ack ed +gy pt +ĠAn other +p g +ĠVirgin ia +ĠL u +Ġpl anned +Ġp it +Ġswe et +T ype +ĠD i +Ġtyp ically +ĠFranc isco +Ġpro spect +ĠD an +Ġte en +re es +Ġsc hed +Ġh ol +Ġsc r +Ġlot s +l ife +Ġnews p +Ġfor get +ĠN one +ĠM iddle +ĠR yan +ed d +Ġse vere +Ġsu it +ll er +9 3 +Ġcor respond +Ġexpl os +u ations +Ġfl ag +g ame +r id +Ġpr in +ĠD ata +Ġde ploy +ĠEn ter +su it +gh an +ĠM en +Ġthough ts +Ġmat ters +Ġad apt +ĠA ri +Ġf ill +Ġfor th +Ġs am +Ġ4 1 +Ġpay ment +ĠH or +Ġsp ring +du c +Ġl osing +Ġbring ing +F O +al a +Ġdist ribution +he red +b our +ĠIsrael i +om a +Ġcomb ination +Ġpl enty +V E +C an +ĠH aw +Ġper man +ĠSpe cial +Ġto w +Ġsee king +Ġexam ples +Ġclass es +c r +Ġbe er +Ġmov es +ĠI P +ĠK n +Ġpan el +E ven +Ġproper ly +Ġr is +Ġpl ug +Ġestim ated +E very +Ġdef ensive +ag raph +Ġpre gn +Ġinst it +ĠV ict +Ġvol ume +Ġpos itions +Ġl inks +ĠPro gram +ĠWe ek +ag ues +Ġtrans form +k er +ĠC EO +Ġc as +Ġopp onent +Ġtwe et +ĠC ode +Ġsh op +Ġf ly +Ġtal ks +Ġb ag +Ph one +Ġa id +Ġpl ants +Ġ6 5 +Ġatt orney +ar ters +qu est +ĠMag ic +Ġbeg ins +Ġmy ster +Ġenvironment al +Ġst orage +N N +Ġm arg +Ġs ke +Ġmet al +ell y +Ġord ered +Ġrem ained +Ġl oved +Ġprom pt +Ġupd ated +Ġexper ts +Ġwalk ing +Ġan cient +Ġperform ed +AT E +Ġne ither +i ency +Ġmanufact ure +ĠP ak +Ġselect ed +Ġm ine +Ġult imately +Ġexpl an +Ġlab el +ĠServ ices +ribut ed +Tr ump +Ġsy n +ĠU lt +S C +Ġme at +Ġg iant +ĠW ars +ĠO N +Ġad m +Ġinter pret +Ġeven ing +Ġev il +ĠB oston +ĠW ild +Ġ à +ĠBit coin +ĠAm azon +D r +ĠIn formation +Ġobvious ly +Ġadv anced +Ph oto +ol ar +Ġwe ather +Ġsymb ol +Ġso le +Ġpot entially +ost er +Ġorig inally +m un +3 00 +az e +ess ions +Ġde ck +Ġst ood +Ġyou th +ĠB ern +R ep +ĠT est +Ġbas ically +ot ic +Ġinvol ve +ol it +ly n +S ee +Ġair craft +Ġconf irm +E W +Ġmess ages +ĠRich ard +Ġk it +Ġpro hib +Ġv ulner +is ters +Ġexist ence +Ġturn ing +ĠS P +Ġdes ire +Ġfl at +Ġm ent +se ason +ang es +Ġneighbor hood +ĠL ake +AT ION +Ġpoint ed +b ur +Ġinn ov +uc ks +U L +Ġprofess or +Ġexp ressed +A B +ic ious +Ġ200 2 +ĠDe v +Ġs ession +Ġb are +s en +Ġdis s +ĠC ath +ĠP ass +ĠP oint +Ġdo ctor +or row +ail ed +ĠR ub +ĠD C +ĠChar l +p erson +Ġwrit er +igh ters +ure au +Ġob lig +Ġrecord ed +Ġbro ke +Ġord ers +il ty +Ġmot ion +in ity +l aw +ad ium +Ġimm igration +Ġcontr ast +Ġb att +Ġex cellent +Ġtechn ical +am i +Ġt un +Ġcl oud +ĠY ear +ge on +Ġcre ation +Ġstr ange +Ġa uth +Ġfor t +b orn +Ġext ent +ĠT oday +ĠCl ub +Ġr ain +Ġs ample +Ġaccept ed +Ġt act +Ġf ired +ĠS on +Ġstand s +Ġb oot +Ġ4 7 +Ġstat ements +Ġvers ions +Ġse lling +ound ed +Ġ199 0 +Ġwere n +ĠW atch +Ġexper iment +P ost +Ġret ail +ul ed +In st +un te +ãĥ ¼ +Ġdep art +Ġb ond +i very +om pl +Ġre action +ĠSyri an +ĠP ac +app ed +ani el +D P +Ġres olution +Ġre act +Ġappro ved +on om +m ond +ĠO ffic +-- - +Ġrepl ace +Ġt ack +Ġsp ort +Ġch ain +Ġemer gency +r ad +ĠPalest in +Ġ4 6 +Ġautom atically +Ġrout e +Ġp al +Ġb anks +ĠPar is +ĠMed ia +ro ad +ic ing +i xt +ist ed +Ġg rew +Ġco ord +ĠW here +om in +Ġsub s +� � +Ġ ± +Ġcorpor ate +Ġse lection +n oon +ĠRep ort +c s +clud ing +ord ers +anc he +ĠIt s +Ġslow ly +ĠE gypt +ĠA cc +Ġcol le +iqu es +E X +Ġattempt s +ur l +ĠC ross +Ġfind ings +ĠS C +ĠO R +Ġind ex +ens ity +ĠW ay +ĠL and +Ġsh ock +d is +Ġd ynam +Ġc art +m osp +S ince +i est +ĠB oy +Ġst orm +ĠCont in +201 3 +he w +il it +Ġess ential +iqu id +O ther +ive red +Ġreason able +A ct +Ġsub sequ +ĠP ack +ĠF ort +Ġconsider ing +Ġun iversity +l og +Ġmar ried +Ġill ust +ĠTr ue +£ ı +Ġnumer ous +rast ructure +Ġserious ly +Ġrefer red +u a +Ġconsist ent +on na +ĠRe al +ru ption +ci ples +Ġfact s +9 1 +ot es +er g +The n +Ġacc ompl +N ote +Ġre venue +Ġpass ing +Ġm al +e en +ĠY et +Ġg ather +ter day +ew ork +ĠA uthor +P e +Ġopt im +Ġr ub +Ġè £ı +Ġun known +st one +Ġun ion +ol ve +Ġopportun ities +Ġbrow ser +ĠW al +ĠC ost +Ġreport ing +st s +p et +Ġs and +Ġsudden ly +Ġsurpr ising +ĠV R +Ġsomew hat +ĠB as +ult ure +iz z +ĠC D +Ġchalleng es +Ġsett ings +Ġexperien ces +ĠF ull +Ġcan n +Ġrece iving +ES T +Ġj oint +Ġcult ural +Ġa st +8 2 +as tern +ce ived +ĠC ru +Ġb ull +p ired +am m +Ġfac ing +p ower +Ġb oss +ĠH ol +Ġinst r +Ġincreasing ly +Ġsh ift +Ġstre ets +ĠWilliam s +ab b +Ġl ie +Ġl augh +ĠC a +P L +Ġadult s +Ġcustom er +Ġob tained +Ġsupport ing +ht ml +f ire +Ġdetail ed +Ġpick ed +ĠR ight +ld er +E E +st ood +ĠK im +Ġw ire +Ġs ight +Ġdevelop ers +Ġpers ons +Ġs ad +Ġc up +Ġwar ning +Ġboy s +l ong +Ġb ird +f o +Ġw al +Ġobserv ed +Ġz one +iven ess +Ġch annel +c ript +Ġref used +ĠAg ain +Ġsu c +Ġspokes man +ĠRe f +r ite +ou ston +ãĥ ³ +ĠS her +Ġact s +ĠN ame +Ġstrugg le +ar ry +omet imes +Ġdisc rim +H T +Ġcateg ory +Ġreal ize +Ġemploy ee +ĠAf ghan +en ger +Ġgun s +ĠSte ve +ĠM ot +ĠO l +ok ed +Ġth ick +Ġfair ly +ill y +Ġsur ve +ĠM at +we ight +â Ķ +Ġtro ops +Ġag ents +Ġbatter y +Ġmot iv +à ¡ +S ec +d en +o very +L S +Ġfl u +Ġconf ident +ĠO per +Ġem pty +Ġp hen +Ġse ctor +Ġexc ited +Ġrem ote +ap h +o en +Ġdestroy ed +Ġmor al +ĠH P +ĠR on +Ġd ress +ĠB at +Ġl it +ĠM S +Ġa f +H L +r um +is ms +Ġshould n +Ġsym pt +ĠTor onto +het ic +Ġcar bon +Ġinstall ed +Ġviol ent +Ġsol ar +j a +Ġpract ices +Ġr ide +ĠP enn +Ġimpro ved +Ġaud io +Ġbehav i +ĠP S +Ġe ating +D ata +ĠRe view +p ass +cl aim +u ated +ang ers +c hen +Ġproper ties +Ġany where +An other +Ġbl ow +ĠJack son +Ġp roud +Ġplan e +l ines +Ġsqu are +Ġpro of +ans as +Ġtalk ed +m akers +Ġs ister +Ġhold s +Ġres ident +Ġ= = +Ġresist ance +Ġspl it +Ġpro secut +Ġconf idence +res ents +Ġcut s +Ġexcept ion +Ġz ero +Get ty +Ġcop yright +Ġtot ally +orm al +ific ations +ĠAustral ian +Ġs ick +Ġ1 50 +Ġhouse hold +Ġfe es +Ġdri vers +og en +ĠN Y +Ġnecess arily +Ġregul ations +ear ing +s l +Ġperspect ive +c are +ic ial +H is +Ġesc ape +Ġsurpr ised +ĠV an +ur rent +Ġv ac +8 1 +ĠTh us +Ġem phas +ĠCh ampions +ĠI ce +Ġn arr +Ġhead s +Ġca using +b el +f ortunately +ĠM a +Ġtarg ets +ci pl +Ġafter noon +Ġadd s +ĠMay be +ĠF our +ess ed +ple te +Ġus ual +ch o +ing u +Ġwith d +ĠE nergy +ĠE conom +O O +Ġart icles +Ġinj ured +Ġman age +Ġexpl ains +Ġdi agn +R ec +at ures +Ġlink ed +Ġdiscuss ed +Ġexpl o +Ġocc asion +ath an +Ġopp osite +Ġfac es +Ġden ied +ĠK night +Ġn ut +Ġapprox imately +Ġdisapp oint +onym ous +ĠB est +ĠL o +ĠH y +ĠA ff +Ġvot ing +an while +ĠII I +Ġinstit utions +ag ram +ĠD aily +Ġdr ag +Ġnear by +Ġgu ilty +Ġcon ver +P re +s hip +Ġre ward +Ġphilos oph +ĠS S +u gh +Ġapp s +f riend +Ġu pper +Ġad vert +Ġs now +Ġfr ust +Ġour selves +F r +ĠD ie +amp ion +Ġdis miss +Ġc ere +Ġsign al +f rom +Ġ ). +Ġ5 2 +Ġcr imes +it ors +est ival +use um +Ġcoun cil +ĠS aud +M ay +ĠG un +ic ian +et her +Ġsu fficient +ĠH en +so le +Ġhistor ical +ĠF ar +ĠT urn +Ġp in +Ġsuc ceed +m at +ly mp +Ġtrad ition +ĠO k +Ġc ro +Ġdesc ription +al le +Ġsk y +T e +Ġwide ly +Ġw ave +Ġdefin ition +ĠJew s +Ġcy cle +Ġref ere +Ġbr ings +us al +Ġal ive +Ġfrequ ently +Ġint ention +ĠCont rol +l v +y stem +Ġpriv acy +g ent +ren ce +ĠQu est +ĠChrist mas +Ġr ail +Ġco oper +Ġtest ed +ĠC apt +as ks +Ġcomfort able +Ġdel ivered +sc ape +Ġdep th +ĠG OP +Ġwrit es +Ġass ets +Ġsa v +im ents +Ġtrans ition +Ġart ist +ĠL ook +Ġl ob +Ġcomp onents +ar ity +Ġwalk ed +Ġro ot +Ġparticip ants +Ġnot iced +Ġres c +Ġn av +ĠAd minist +d a +ut ral +pl ate +Ġimport ance +Ġass ert +ious ly +c ription +Ġinj uries +ĠChe ck +Ġregist ered +Ġint ent +Ġmiss ed +ograph ic +Ġsent ence +oun ter +Ġassist ance +ev in +Ġdat abase +Ġbuild ings +Ġclass ic +Ġth inks +ĠOh io +P r +ug g +Ġfe e +p an +Ġeffect ively +Ġfac ility +Ġbe ar +Ġch apter +Ġdog s +ĠCol umb +Ġl atter +it ial +Ġad mitted +T V +ĠGe org +Ġpost s +\ \ +Ġlawy er +Ġequ ival +Ġm and +Ġcontro lled +ĠW alk +ĠAnd rew +Ġmen u +am ental +Ġprotect ed +v a +Ġadminist r +or al +Ġre in +ĠS ar +Ġamount s +Ġn ative +ĠM oon +Ġrep resents +Ġab andon +Ġcarry ing +Ġt ank +m ary +Ġdecl ared +T ube +Ġh at +Ġpun ish +el lect +m es +Ġun iverse +ĠR od +ph y +Ġinf rastructure +Ġ5 1 +Ġopp osed +ow nt +c a +ĠM ake +Ġhard ware +Ġco ffee +R el +b al +w orld +ĠS af +ĠSe a +in als +Ġown ed +Ġh all +ers ion +Ġdescrib e +ĠP ot +Ġport ion +Ġat mosp +Ġgovern ments +Ġdep ending +Ġoff ense +Ġtr ick +aw a +ĠL ine +ĠV is +ĠH ard +ĠOr ig +ĠCl ick +Ġdes k +ĠVal ley +ĠS ov +Ġmov ies +Ġrem ark +Ġm ail +Ġcons cious +Ġrul ing +ĠR ights +Ġmed ic +he nt +ĠW omen +> < +Ġrepl aced +ĠP rem +ĠTh anks +Ġre new +ĠB all +if orm +Ġsh ots +C omm +Ġar med +Ġconst ant +Ġt aste +Ġreal ized +Ġbu ff +Ġm o +Ġeffic ient +M ost +or ation +if ies +Ġcommun ication +Ġfl ood +Ġconsequ ences +Ġany way +ig g +ĠG M +ĠTh ank +Ġ iron +Ġev olution +ĠC op +tw itter +Ġ9 5 +Ġrelationship s +ad el +ĠYou ng +Ġpropos al +ay ers +uild ing +ĠH ot +OR E +c os +Ġcoll abor +P G +ax y +Ġknow ing +Ġsupport s +ow ed +Ġcontrol s +Ġmere ly +um er +Ġath let +Ġf ashion +p ath +Ġg ift +Ġer a +AN D +Ġkind s +ĠKore an +Ġleg it +ul ous +Ġess entially +Ġthe rap +n ic +Ġsuff ered +Ġh ur +Ġprom ise +Ġex cess +Ġover w +Ġpr ime +ĠH ouston +er ry +ĠM s +R S +201 2 +Ġst ores +ĠO lymp +Ġj ourney +Al though +S ub +ĠE duc +ĠCh apter +Ġrequest s +Ġconsum ers +Ġt iny +Ġis ol +ĠF air +b a +ĠY OU +Ġcr ash +ce ler +Ġemot ional +Ġgood s +Ġelect ed +Ġmod er +ĠLin ux +Ġbl ocks +Ġis land +ĠSoc iety +Ġelect ions +Ġbroad cast +Ġche ap +Ġn ations +Ġse asons +4 00 +Ġwas te +ĠS at +Ġfield s +em ploy +Ġprof ile +Ġauth ors +AL L +ĠG ra +w est +ĠT y +Ġdeath s +Ġv acc +Ġfor med +Ġd u +Ġon going +ĠMuslim s +el f +ig ure +Ġass ume +ĠUkrain e +w ater +Ġco ast +Ġvot ed +g or +ĠA S +ĠMich igan +az a +ĠAr m +i ro +Ġf lex +as ters +' ' +Ġwel come +ar l +Ġloc ations +ig ation +ĠF il +Ġbu ying +Ġarch itect +Ġhard er +ĠC ub +Ġinter face +Ġrestaur ant +Ġdisco ver +Ġex ceed +Ġfav our +ger y +Ġd uty +Ġp itch +ad or +ĠM ach +b oy +Ġrespond ed +Ġext ended +her s +M any +ra id +if er +ĠIn s +S er +Ġmed ium +s he +ĠS ports +Ġmag azine +ut ation +Ġlim its +ĠG all +Ġex ternal +raz il +Ġyoung er +t le +Ġrem ind +ĠC ON +Ġimmedi ate +Ġh idden +Ġvol unte +Ġsim pl +od cast +Ġph ase +d r +Ġpl ot +Ġexp osure +R I +og rap +v in +an ish +ĠAc ad +ĠEng ine +Ġexp ansion +ĠP ay +Y our +Ġpus hed +ĠE ll +ĠHe ad +Ġmarket ing +ĠA C +k et +Ġh its +Ġg ro +ĠA ge +ĠSc ot +] [ +Ġst im +Ġi Phone +Ī Ĵ +Ġn arrow +ĠGet ty +ĠTur key +Ġperfect ly +Ġen able +ut ch +Ġprec ise +Ġreg ime +Ġsh if +Ġcomp ens +g un +d iv +Ġch osen +ĠK en +An y +Ġtre es +Ġrecomm ended +ĠR en +u able +ĠH T +F ollow +E G +ĠH and +ĠK enn +Ġarg uments +Ġex ists +Ġb ike +ĠCons erv +Ġbre aking +ĠG ar +Ġc razy +Ġvirt ual +ay lor +ix el +Ġ19 80 +Ġper mission +ĠSer ies +Ġconsum er +Ġclose ly +c alled +Ġ5 4 +Ġhop es +Ġar ray +ĠW in +ĠLab our +Ġsp ons +ĠI re +Ġp ow +Ġread ers +Ġemploy ment +Ġcreat ure +Ġresult ing +Ġaccur ate +Ġmom ents +Ġarg ued +Ġp ed +D uring +Ġ5 3 +ĠT al +Ġs ought +Ġsuff ering +Ġ icon +le e +Ġ( $ +al ian + ° +Ġp ra +Ġbon us +( " +k o +Ġact ing +D E +f all +Ġcompar ison +Ġsm ooth +ĠN AS +u pp +ĠJose ph +ep ing +ĠT ake +ĠM id +Ġs ending +f ast +ĠF all +Ġdeal ing +us er +ĠOr gan +C o +Ġatt ached +Ġse es +% . +Ġtyp ical +AR T +Ġfind s +ĠAs ia +um in +ĠC ore +ĠE nt +in ent +u ce +ĠBl ood +ĠN ever +Ġem ails +Ġhigh light +Ġconf ront +at us +ut ed +Ġun us +Ġtop ic +ĠAd am +Ġb le +at i +Ġunder stood +S et +st ruct +T P +Ġm ob +a a +ĠSt art +pect ed +se ll +Ġded icated +ĠC A +u an +Ġsong s +esc ription +Ġte ch +Ġr ape +Ġas ide +Ġgr ant +Ġ5 6 +s ub +Ġarg ue +Ġcont aining +Ġsche dule +Ġliber al +Ġpublic ly +Ġheav ily +ĠU t +in er +ĠS ection +ĠC are +we et +l s +D is +âĶ Ģ +ĠF ollow +B ack +ĠI T +Ġb es +j i +ĠH it +est ed +Ġevery body +ĠSw ed +Ġfem in +Ġfac ilities +Ġcon ven +C omp +ĠO S +c ore +Ġan x +Ġdiv ision +ĠC am +ĠSt an +m ates +Ġexpl ore +pl om +Ġsh ares +pl oad +an es +Ġide al +et ers +ĠB ase +Ġpl astic +Ġdist inct +ĠNet work +ĠSe attle +Ġtrad ing +ens us +int end +Ġex hib +Ġinit ially +ĠF ood +Ġthous and +ĠBus iness +act er +Ġpar agraph +Ġrough ly +Ġw ww +Ġcreat ive +ĠCon f +Ġconsum ption +Ġfil ms +ag an +Ġob tain +Ġt all +Ġt or +Ġacknow led +Ġg rown +al o +K E +Ġ4 00 +end ers +t aining +U G +Ġsu icide +Ġwat ched +ĠL ist +al i +re hens +Ġsurround ing +Ġp ip +Ġf lying +ĠJ ava +ord an +Ġserv ing +in ations +p ost +Ġsh o +A v +Ġj ail +z y +Ġ199 9 +Ġ< / +Ġliter ally +ĠS ir +Ġexp osed +Ġl ies +st ar +Ġb at +Ġear ned +ĠD ig +Ġspec ified +ĠSe ason +Ġdeg rees +Don ald +Ġcent re +Ġsh aring +Ġwin ter +ĠC O +C he +Ġ Î +M P +Ġun w +Ġfew er +ĠM ir +Ġsomew here +ĠK ey +Ġattack ed +ĠK ir +Ġdom ain +Ġstrong er +Ġ9 9 +Ġpen alty +I d +Sc ript +Ġdecl ined +Ġne ck +Ġfra ud +Ġcur rency +Ġr ising +R C +â̦ â̦ +H z +Ġt ab +Ġtal ent +n am +ĠN BA +Ġvill age +Ġleg s +ĠN ext +E d +Ġac id +Ġhy d +8 00 +Ġinvol ving +ĠIm age +ĠBe fore +F l +Ġyes terday +S ource +Ġterror ist +Ġsu p +Ġsy nt +ĠSaud i +Ġw est +Ġr u +b urg +Ġvis ible +Ġstru ck +r ison +Ġaw esome +Ġd rawn +Ġansw ers +ĠG irl +ĠR am +Ġthreat s +Ġdef eat +os it +Ġv ent +atur ally +Americ an +end a +ĠH oly +Ġr um +% , +c ase +ĠHist ory +ĠYou Tube +Ġsit uations +ĠD NA +S te +Ġsa ved +It em +Ġrec ip +olog ist +Ġfac ed +Ġel ig +O nce +ĠL i +u h +Ġmist ake +ĠDiv ision +ĠB ell +Ġsympt oms + ® +Ġdom in +Ġfall ing +Ġend ing +as hes +Ġmat ches +ĠOn line +Ġexplan ation +D ef +red it +Ġany more +ĠT otal +ĠF OR +us hed +Ġlet ters +Ġris ks +ĠO K +Ġreported ly +: \ +Ġpl ate +Ġsubject s +Ġattempt ed +if ier +ian a +Ġunlike ly +ĠTh ough +um a +ĠIn vest +ĠPr in +ic an +ĠD ar +ĠColor ado +au g +Ġve get +a os +ri a +Ġshe l +Ġmark ed +Ġ( ) +Ġsp r +p o +ĠL ink +Ġdef e +ĠJ r +Ġthem e +Ġpass ion +ĠP en +Ġinf o +iz er +Ġsh it +ĠC ivil +ap se +c re +Ġpo ly +Ġcomp onent +ĠChar les +ĠIre land +ĠPro v +Ġdo ctors +Ġgr anted +Ġpain t +Ġhon or +Ġsm oke +Ġpay ments +Ġprim arily +ĠKing dom +r ich +ate ll +Ġde als +Ġsched uled +Ġfund amental +Ġprote in +Ġnewsp aper +Ġcl ients +yth on +ĠD ate +h us +Ġfeed back +Ġstret ch +Ġc ock +Ġhot el +ĠQue en +Ġsu gar +Ġj u +Ġmil k +Ġappro val +ĠL ive +Ġequival ent +ef ully +Ġins ert +z ona +Ġext ension +d ri +J ohn +Ġacc omp +S m +ĠF und +Ġconst antly +Ġ` ` +Ġgener ated +ĠA ction +ĠP sych +ĠT ri +Ġrecogn ize +Ġv ary +ph a +ĠR a +d f +et ch +ĠSov iet +Tw o +Ġpattern s +Ġprof ession +an ing +T ime +ĠL im +Ġcol ors +ĠA z +ĠT R +Ġinf ect +Ġphen omen +Ġshe ll +Al so +Ġput s +Ġdel ivery +Ġbro wn +Ġprocess ing +Ġlight s +ess age +ĠBro ok +ĠA ud +l ation +Ġindust rial +L ike +ĠB razil +rou s +ES S +ĠL uc +Ġsome how +Ġ8 5 +Ġpro port +Ġpolit icians +Ġindic ate +Ġh ole +Ġtechn iques +Ġcompet itive +Ġph r +Ġv o +ist ent +ĠD ream +Ġcamp us +Ġaspect s +Ġhelp ful +Ġsh ield +or se +Ġtrig ger +m al +Ġ5 8 +Ġt ort +Ġperson ally +Ġt ag +Ġkeep s +ĠV ideo +Ġben ch +Ġg ap +a ire +Ġe ast +Ġrec overy +per ial +Ġprof it +ĠM ic +Ġ5 7 +Ġcol on +Ġstrong ly +st yle +Ġalleg ations +h an +Ġrep orters +j o +r ine +arg et +and al +Ġ0 3 +Ġfl ash +tr ans +Ġstr ict +Ġpark ing +ĠPak istan +Ġl i +Ġwe ird +ĠE ric +Ġreg ions +ĠJ un +Ġint ellect +ĠW H +od ing +rib utes +up id +ĠT it +Ġf inger +or ia +Ġe lev +ĠF ield +Ġcon clusion +; ; +Ġfeel ings +Ġext ensive +Ġm ixed +Ġne uro +v y +Ġhar ass +ĠC irc +ou ch +Ġterrit ory +Ġsuccess fully +M ar +Ġing red +Ġoverw hel +Ġl ayer +V iew +Ġall ies +ill ance +ĠTh ree +Ġb unch +Ġnorm ally +Ġnet works +Ġsac r +ĠC IA +b les +Ġch ose +Ġopp onents +Ġregard less +Ġfr anch +Ġpre f +ĠP o +Ġbr idge +ann a +ĠSil ver +Ġw age +p age +ri or +Ġrad ical +ĠL ittle +Ġman ip +Ġsecret ary +Ġg ang +D R +F A +Ġdec ent +ĠSp irit +Ġun cle +ĠDevelop ment +Ġinvest ors +Ġwall s +Ġpub lish +Ġgener ate +iss ions +c ar +Ġprom ote +Ġcut ting +Ġche st +Ġdrink ing +Ġcollect ed +Ġ7 2 +Ġhop ing +Ġem br +gor ith +Ġwar ned +Ġinstruct ions +O G +ĠD id +ĠAg ency +Ġg ear +Ġcritic ism +ĠF urther +Ġut il +ann y +R ed +Ġcoun sel +ĠAs ian +Ġredu ction +p ool +Ġteach ing +Ġdeep ly +i y +Ġestim ates +Ġcho ices +Ġperman ent +in em +ke l +Ġf asc +p se +f ile +ĠL ow +ĠP erson +Ġt ournament +st al +Ġm el +U ST +ĠR ay +az i +V al +Ġcont ained +ĠH olly +Ġw ake +Ġreve al +Ġprocess es +ĠIS IS +Ġ0 9 +Ġbl ind +Ġste el +ĠB ad +Ġcare fully +app y +ro it +Ġg aming +Ġhous es +ĠC oll +Ġtr uck +er m +Ġsc ored +Ġocc as +ret urn +b ound +v ar +Ġsh arp +Ġaf raid +ĠE X +am ber +c ific +Ġsche me +N C +ĠPol it +Ġdecl ine +Ġ199 8 +Ġpus hing +Ġposs ession +Ġpriv ile +Ġteacher s +Ġy ield +H A +ĠDav is +it led +#### #### +Ġr ig +ĠD aniel +ac on +Ġh ide +ut en +Ġcolle agues +Ġprin ciples +Ġl oud +Ġs in +ĠDem on +Ġst one +Ġ0 2 +Ġt aught +Ġter rible +Ġst uck +ĠPol icy +te en +Ġimplement ation +ĠB BC +ĠAP I +Ġwhe el +all as +Ġch ampions +ol ars +play er +Ġrepeated ly +ĠSt ill +Ġlik es +ast y +es ter +ĠCath olic +R L +Ġb ath +Ġno ise +t itle +Ġn orthern +P art +Ġmag n +Ġf ab +ĠAs h +Ġdis pl +Ġtick et +Ġm urd +Ġalong side +ĠMus ic +Ġr iver +ĠSte el +ĠC L +ĠPl ayer +ĠM ult +ow ing +re p +s ize +Ġt ur +ĠGeorg ia +isc al +ra ction +Ġc able +Ġ5 9 +Ġw ins +Ġup coming +Ġsurv ive +Ġins pired +ĠEduc ation +Ġstat istics +ĠF oot +iam i +Ġy ellow +ĠP age +. - +ĠH as +Ġur ban +Ġa x +es sel +\ " +Ġquarter back +Ġreg ister +ĠLab or +Ġab ilities +ĠF amily +Ġvar iable +ĠPr ice +Ġcont em +Ġth in +ĠE qu +d ata +Ġg otten +Ġconst it +Ġas ks +Ġt ail +Ġexc iting +ĠE ffect +ĠSp anish +Ġencour age +ins on +ĠA h +Ġcommit ment +C S +Ġr ally +Ġ: : +Ġsubs id +Ġsp in +Ġcapt ured +201 8 +Ġinn oc +Ġalleged ly +ĠC ome +Ġart ists +ĠN umber +Ġelect ronic +Ġreg ional +ap es +Ġw ra +Ġmy th +pr ise +ĠM iller +ĠC reat +ĠEp isode +b ell +Ġdirect ed +Ġext ract +Ġs orry +Ġv ice +ag ger +ĠSu pport +Ġ6 6 +ĠI ron +Ġwonder ful +Ġg ra +N et +ion e +E ng +Ġsh ips +ik es +ĠK evin +it ar +Ġactiv ists +tr ue +ĠAri zona +ent h +ĠDes pite +ĠS E +Ġha bit +ern el +Ġin qu +Ġab ortion +Ġv oid +Ġexpl icit +Ġeng aged +Ġang ry +Ġr ating +Ġfr ag +b ro +ick ing +d ev +Ġwor ried +Ġob ser +Ġap artment +ĠG T +Ġest ate +ĠConst itution +em on +ĠS now +Ġcount y +Ġdis ag +ĠStep hen +Ġimm igrants +w ind +ĠN ations +Ġfol ks +O ut +Ġg all +Ġtarget ed +Ġst ead +ĠB on +ĠL ib +Ġinform ed +Ġ12 0 +ch ain +idel ines +or ough +Ġdri ven +Ġregular ly +Ġbas ket +Ġprinc iple +oc ument +Ġst un +ib ilities +ĠRom an +ĠAb out +Ġal ert +Ġdemocr acy +Ġrepresent ed +H S +c ers +p arent +Ar t +p ack +Ġdi plom +re ts +ĠN O +Ġcapt ure +ĠAd v +Ħ ¢ +Ġannounce ment +ĠL ear +Ġh ook +Ġpur s +ĠS uch +ĠC amer +Ġrefuge es +ĠV e +P ol +Ġrecogn ized +l ib +Ġhad n +A ss +Ġpil ot +us hing +Ġreturn ing +Ġtra il +ĠSt one +Ġrout ine +Ġcour ts +Ġdes per +Ġfriend ly +ĠIt aly +Ġpl ed +Ġbreat h +Ġstud io +N S +Ġimp ressive +ĠAfghan istan +Ġf ing +Ġd ownt +ink ing +ĠR og +i ary +col or +se x +ar on +Ġf ault +ĠN ick +D own +ĠR ose +ĠS outhern +X X +is odes +L ist +6 00 +Ġout come +er r +Ġelse where +Ġret ire +Ġp ounds +ĠGl obal +Pe ople +Ġcommun ications +Ġlo an +Ġrat io +ĠEm pire +Ġg onna +Ġinv ent +D F +Ġ19 70 +ĠComm on +p at +Ġprom ised +Ġd inner +ĠH om +Ġcreat es +Ġoper ate +ver ty +ĠJ ordan +et ime +Ġsust ain +R eg +Ġincred ible +im a +Ġwar rant +Ġm m +A tt +Ġlaw suit +Ġreview s +it ure +ĠS ource +l ights +ĠF ord +Ġ6 3 +g roup +st ore +Ġfeat ured +Ġfore ver +Ġpo verty +ĠP op +ĠC NN +az z +ab is +ach ing +Ġl aid +ĠSu pp +Ġfil ter +en a +ĠCommun ity +Ġcreat ures +u ction +ĠR oyal +Ġassoci ation +ĠCon nect +ĠBr ad +âĸ Ī +l ers +the re +ĠG i +Ġval uable +AC K +ĠT aylor +Ġl iquid +ĠAtt orney +ĠCar l +ĠF inal +ag a +ĠWil son +B ecause +ĠProf essor +ak a +Ġincred ibly +r ance +! ) +R ef +s k +Ġsol utions +Ġatmosp here +Ġbl ame +um es +ĠN ob +C A +um ps +r ical +ĠPut in +ĠD est +or ic +ĠP A +Ġrespect ively +w an +Ġfif th +â Ħ¢ +ĠC ry +Ġgovern or +res ident +Ġpurch ased +Ġh ack +Ġint ense +ob s +Ġorig in +Ġdef ine +Ġcare ful +** * +Ġshould er +Cl ick +Ġt ied +Ġdest ruction +ou red +Ġno body +Ġh o +ĠEx per +Ġt ip +" ; +Ġtechn ique +Ġj ur +ĠP ok +b ow +Ġleg end +Ġacc ord +Ġbus y +ĠInt el +Ġh ang +ak i +. ] +âĢĶâĢĶ âĢĶâĢĶ +Ġsur gery +Ġrep rodu +Ġun iform +Ġscen es +c ode +Ġ6 2 +l isher +ĠH ave +ph ia +Ġcry pt +Ġrec on +Ġsc ream +Ġadop ted +Ġsc ores +N e +ĠIt alian +in cluding +B O +Ġindic ated +Ġent ertain +G u +T ext +i el +Ġtw enty +Ġeng age +off s +ĠPac ific +Ġsm ile +Ġperson nel +Ġto ler +Ġdo ors +Ġt one +Ġmach ines +Ġent ering +ten ance +C O +ĠJer sey +Ġfore st +Ġhor se +Ġcompl aint +ĠSpr ing +y o +ĠPl us +ed ing +ĠRet urn +qu arters +ial s +c ow +Ġacad emic +Ġf ruit +Ġ199 6 +og ether +Ġw ine +Ġpur su +ĠSte ven +Ġlic ens +Wh o +Ġclot hes +re ction +Ġsqu ad +Ġst able +Ġr aw +z ens +St ar +ut ies +anc er +Ġke ys +ĠM u +Ġcompl icated +ig er +ĠTe xt +Ġabs or +Ġ6 8 +Ġfun ny +Ġrel ief +ĠL ew +ĠC ook +Ġch art +Ġdraw ing +G E +Ġmod ule +ĠB ull +I LL +Ġs alt +0000 0000 +il le +Ġres ource +aw ay +adel phia +ĠB ru +Ġ6 7 +Ġsome body +Ġparticip ate +Ġro se +we red +Ġmus cle +Ġcons ent +Ġcontin uing +ĠGuard ian +ĠOr der +reg on +Ġre ar +Ġprov ision +Ġlik ed +ri ent +Ġb ra +Tr ans +Ġmeet ings +Ġto x +Ġcon vent +Ġaut o +Ġrec ording +ĠSo ft +00 1 +ĠR oll +Ġprogram ming +Ġp ic +Ġprov ed +Ġst ab +ĠA st +Ġca ption +ul ating +ĠAtt ack +Ġnew ly +Ġ199 7 +f r +Ġdis cipl +ĠGree k +Ġed ition +ĠDo es +ĠB ox +if le +ack et +Ġpass es +Ġgu est +Ġac celer +it als +U D +Ġaut hent +ĠR est +ov al +t a +u ine +Ġarm or +ĠT own +Ġcomp at +Ġinc hes +Des pite +Ġass ign +he rent +Ġprep are +ĠM eg +oc key +Ġdep ends +Ġtrack s +w atch +Ġl ists +ĠN orthern +Ġal ter +re c +ĠE astern +Ġcond em +Ġevery where +? ' +Ġaff ili +Ġf ought +": {" +Ġm ac +it arian +Ġsc ope +ĠA L +aw s +ar ms +Ġqu e +Ġenjoy ed +nes ota +Ġagg ressive +ĠSt ory +ĠI V +Ġrec ipe +Ġrare ly +ĠMed ical +val ue +ang el +ay ing +omet hing +Ġsub section +Ġs outhern +Ġfrequ ency +re te +roll ed +ult s +ĠN ic +Ġbeh alf +Ġsequ ence +ab et +Ġcontrovers ial +Ġcomp rom +Ġwork er +Ġmain ly +Ġal gorith +ĠM ajor +or ce +g ender +Ġorgan ized +Ġf ake +Ġconclud ed +ĠE D +ĠEx ec +r age +Ġch ances +ber ry +ĠTr ad +Ġconfig uration +Ġwithd raw +Ġf ro +ud es +ĠBro ther +ĠB rian +Ġtri es +Ġsam ples +Ġb id +ĠGold en +Ġphot ograph +if est +ĠD O +ĠPar liament +******** ******** +R em +Ġcont est +Ġsign ing +p x +ĠZ eal +âĶĢ âĶĢ +E ar +Ġex it +Be fore +ĠCor por +n ull +mon th +Ġrac ial +ott ed +ĠV eg +ĠRe uters +Ġsw ord +ps on +ĠRom ney +a ed +Ġt rib +Ġin ner +Ġprot ocol +ĠB i +ĠM iami +ever al +p ress +Ġsh ipping +ĠAm endment +ĠHow ard +con nect +ĠD isc +ĠJ ac +iam ond +ĠThere fore +s es +ĠPrin cess +ĠUS B +ĠAn th +Ġsurve illance +Ġap olog +Ġ6 1 +ow a +Ġf ulf +j s +Ġl uck +ust ed +Ġ § +n i +Ġant icip +em an +Ġwin ner +Ġsil ver +ll a +ic ity +Ġunus ual +Ġcr ack +Ġt ies +e z +Ġpract ical +Ġprov ince +ĠPl ace +Ġprior ity +IC E +Ġdescrib es +Ġbr anch +F orm +ask a +miss ions +b i +Ġp orn +ĠTur k +Ġent hus +Ġf ighters +Ġ0 8 +ĠDet roit +Ġfound ation +av id +A re +Ġjud gment +cl ing +Ġsol ve +ĠDes ign +W here +hes is +ĠT ro +a fter +Ġne utral +ĠPalestin ian +ĠHolly wood +Ġadv is +ĠN on +y es +ol is +Ġrep utation +Ġsm ell +Ġb read +ĠB ul +ĠBe ach +Ġclaim ing +Ġgen etic +Ġtechn ologies +Ġupgr ade +row s +Ġdevelop er +ĠJ osh +ĠDis ney +erv ed +ip al +Ġun ex +Ġbare ly +t hen +ĠP ub +Ġill ness +et ary +ĠB al +Ġp atch +Ġbut t +Ġst upid +ĠD og +ĠD allas +f ront +ie ce +Ġprot ests +Ġch at +oen ix +Ġw ing +Ġpar liament +Ġ7 7 +ose xual +Ġre nder +pt ions +ĠCo ast +os a +ĠG reg +h op +ĠMan agement +Ġbit coin +Ġrec over +Ġincor por +or ne +ĠUs ing +Ġpre ced +Ġthreat ened +Ġspirit ual +ĠE vent +ĠF red +Ġadvert ising +Ġimprove ments +ĠC ustom +Ġer rors +Ġsens itive +ĠN avy +Ġcre am +L ook +Ġex clusive +Ġcomp rehens +Ġde leg +Ġcon ce +Ġrem em +Ġstruct ures +Ġst ored +N D +Ġ1 000 +U P +ĠB udd +A F +w oman +ĠAcad emy +ð Ł +se a +Ġtem porary +Ab out +es ters +Ġtick ets +Ġposs ess +in ch +o z +Ġl a +Ġcontract s +Ġun p +Ġc ig +ĠK at +ult ural +as m +Ġmount ain +ĠCapt ain +St ep +m aking +ĠSp ain +Ġequ ally +Ġl ands +at ers +Ġreject ed +er a +im m +ri x +C D +Ġtrans action +g ener +less ly +Ġ| | +Ġc os +ĠHen ry +Ġprov isions +Ġg ained +Ġdirect ory +Ġra ising +ĠS ep +ol en +ond er +Ġcon sole +in st +Ġb om +Ġunc ertain +1 50 +ock ing +Ġmeas ured +Ġpl ain +Ġse ats +Ġd ict +S L +af e +Ġest imate +iz on +at hered +Ġcontribut ed +Ġep isodes +omm od +G r +AN T +Ġ6 9 +G ener +Ġ2 50 +vious ly +rog en +Ġterror ism +Ġmove ments +ent le +oun ce +ĠS oul +Ġpre v +ĠT able +act s +ri ors +t ab +Ġsuff er +Ġn erv +Ġmain stream +ĠW olf +Ġfranch ise +b at +Ġdem ands +Ġag enda +Ġdo zen +Ġclin ical +iz ard +ĠO p +t d +Ġvis ited +ĠPer haps +Ġact or +Ġde lic +Ġcont ribute +Ġin ject +ĠE s +ac co +Ġlist ening +Ġcon gress +epend ent +Ġprem ium +Ġ7 6 +ĠIr ish +Ġass igned +ĠPh ys +Ġworld wide +Ġnarr ative +ot ype +m ont +b ase +ĠB owl +ĠAdminist ration +Ġrel ation +ĠE V +C P +Ġco vers +Ġ7 8 +Ġcert ific +Ġgr ass +Ġ0 4 +pir acy +ir a +Ġengine ering +ĠM ars +Ġun employ +ĠFore ign +st ract +Ġv en +Ġst eal +Ġrepl ied +Ġult imate +Ġtit les +d ated +Ġj oy +a us +Ġhy per +ak u +Ġoffic ially +ĠPro duct +Ġdifficult y +per or +Ġresult ed +rib ed +l ink +wh o +~~ ~~ +ĠSpe ed +ĠV iet +W ind +ĠBar ack +Ġrestrict ions +ĠSh are +Ġ199 5 +ition ally +Ġbeaut y +op t +Ġm aps +ĠC R +ĠN ation +ĠCru z +W ill +Ġelectric ity +Ġor g +Ġb urd +Ġviol ation +Ġus age +Ġper mit +ĠCh ron +ĠF ant +Ġn aturally +Ġ0 7 +Ġth rown +ĠAw oken +Ġal ien +ĠHer o +ĠK ent +ĠR ick +ri ke +Ġp ace +}, {" +G L +Ġpo ison +ĠT ower +Ġform al +al ysis +Ġgen uine +Ġk il +a ver +Ġproced ure +ĠPro p +intend o +ĠM ain +as ant +Ġtr ained +G ame +ĠL oad +ĠM A +Ġcru cial +Ġle ts +ĠF R +Ġch ampion +1 01 +ĠCon ference +Ġwrit ers +Ġconnect ions +Ġo kay +ir ms +ĠR and +Ġenc ounter +ĠB uff +Ġachie ved +Ġche cks +isc ons +Ġassist ant +Ġwhen ever +ĠA ccess +ĠU r +b in +Ġcl ock +is p +op her +Ġb orrow +Ġm ad +Ġperson ality +on ly +IS T +ab ama +Ġg ains +Ġcommon ly +Ġter r +Ġhyp ot +Ġre ly +Ġt iss +iscons in +Ġrid ic +f unction +ĠO regon +Ġun com +r ating +el and +ĠN C +Ġm oon +ann on +Ġvulner able +ut ive +³³ ³³ +ĠRad io +Ġw estern +se ct +ĠT ony +Ġocc urs +ĠO s +ĠH on +Ã Ń +Ġv essel +ĠScot land +Ġdiscrim ination +Ġsubsequ ent +st ring +Ġfant asy +ĠSh adow +Ġtest im +W E +it i +r as +Ġbo at +Ġmar ks +Ġord inary +Ġre n +Ġrepresent ative +Ġpet ition +Ġ7 3 +Ġad venture +Ġign ore +ĠPhil adelphia +ĠS av +V P +Ġfact ory +Ġt asks +Ġdep ression +z ed +................ ................ +ĠSt orm +Ġc ogn +Ġelig ible +Ġredu cing +v ia +Ġ0 5 +Ġstri king +Ġdoll ar +h o +O V +Ġinstr ument +Ġphilosoph y +ĠMo ore +ĠA venue +Ġrul ed +ĠFr ont +IN E +ĠM ah +Ġscen ario +ĠNAS A +Ġen orm +Ġdeb ut +Ġte a +T oday +Ġabs ence +S im +Ġh am +le ep +Ġt ables +ĠHe art +M I +K e +re qu +V D +m ap +Ġchair man +Ġp ump +Ġrapid ly +v i +Ġsubstant ial +E P +d es +ch ant +ili pp +ĠS anta +ri ers +anche ster +L oad +ĠC ase +Ġsa ving +Ġ7 4 +ĠA FP +er ning +oun ced +ĠMin nesota +ĠW as +Ġrec ru +Ġassess ment +ĠB ron +U E +Ġdynam ic +Ġf urn +ul ator +Ġprop ag +h igh +Ġacc ommod +Ġst ack +ĠS us +w rit +Ġre ven +ĠGod d +ĠZeal and +ab s +Ġbr ut +Ġper pet +h ot +Ġhard ly +ĠB urn +ãĤ ¹ +Ġst y +Ġtrans actions +Ġg ate +Ġsc reens +Ġsub mitted +Ġ1 01 +Ġlangu ages +ugh t +em en +Ġfall s +Ġc oc +Ĥ ¬ +Ġstri kes +p a +Ġdel iber +ĠI M +Ġrel ax +ann els +ĠSen ator +Ġext rem +Ġ} , +ĠDe b +Ġbe ll +Ġdis order +c ut +Ġi OS +Ġl ocked +Ġem issions +Ġshort ly +" ] +ĠJud ge +ĠS ometimes +Ġr ival +Ġd ust +Ġreach ing +F ile +¯¯ ¯¯ +ino is +ĠJ ason +Ġs atell +are t +Ġst ations +Ġag ric +ĠTechn ology +com es +ĠUn fortunately +ĠChild ren +Ġappl ies +ast ed +Ġan ger +ail ability +ĠDam age +Ġcomp are +ĠStand ard +Ġaim ed +ĠB a +angu age +Ġreg ulation +Ġj ury +Ġair port +Ġse ctions +ĠPr ince +em ed +Ġmedic ine +Ġh itting +Ġsp ark +ol ves +Ġad s +St ate +Ġfood s +Ġrepl acement +Ġch icken +Ġlow est +Ġmind s +Ġinvol ves +u i +Ġarr ang +Ġproced ures +ĠWh ich +ivers ary +Ġb ills +Ġimprove ment +Ġin ev +Ġexpect ations +Ġintellect ual +Ġsp aces +Ġmechan ism +2 50 +bre ak +ĠZ e +ĠT enn +ĠB alt +Ġbar rel +Ġstat ic +man n +Pol ice +Ġt ips +Ġhand ling +c us +od ed +il ton +ir y +Ġjournal ists +our se +Ġcom ic +Ġnom ine +IT Y +Ġvers us +Ġlo op +Ġsur f +ĠInd ust +ĠHun ter +Ġbelief s +is an +Ġset up +Ġbre w +im age +Ġcomput ers +f ol +} ," +ĠMed al +Ġtax p +Ġdisplay ed +Ġg rav +Ġf iscal +M on +ĠMos cow +ĠK ong +ĠCent re +Ġcamer as +ĠMr s +ĠH ay +Ġa ver +ĠK elly +p y +Ġrequire ment +Ġent itled +omb ie +Ġsh adow +ag ic +ĠA k +Ġel ite +Ġdiv ided +Ġhead ing +Ġcop ies +Ġloss es +Ġv it +k ed +ĠB ry +Ġan s +ĠSte am +Ġrep orter +he im +ĠIt em +Ġsuper ior +d on +ere nt +à ¶ +Ġtherap y +Ġpe ak +ĠMod el +Ġl ying +Ġg am +z er +r itten +Ġrespons es +Ġconsider ation +ĠB ible +Ġl oyal +Ġinst ant +Ġp m +ĠFore st +à ¼ +Ġext end +Ġconv icted +Ġfound er +Ġconv in +ĠO ak +che ck +Ġsch olars +p ed +Ġover se +T op +c ount +ĠAr k + · +Ġ0 6 +ĠL A +m d +ĠLat in +im ental +ĠC PU +Ġsubst ance +Ġminor ity +Ġmanufact uring +E r +ocol ate +Ġatt ended +ĠMan ager +r ations +Ġappreci ate +om y +GB T +id ency +B L +Ġguarant ee +pos ition +Ġo cean +clud e +Ġhead ed +Ġt ape +Ġlo ose +Ġlog ic +Ġpro ven +Ġsp ir +Ġad mit +is a +Ġinvestig ate +Ġ199 4 +sy lv +ĠL ost +c est +Ġ7 1 +Ġrequest ed +Ġwind ows +ĠPok é +ĠWith out +M et +Ġbehavi our +Ġread er +Ġh ung +ĠKe ep +Ġro les +Ġimplement ed +Ġbl ank +Ġserv es +ĠJ ay +Ġc ited +ĠF riend +prof it +ap on +Ġrep air +it em +arr ass +Ġcrit ics +ad i +ĠF ather +Ġsh out +Ġf ool +Ġ8 8 +Ġprodu cing +Ġl ib +Ġround s +Ġcirc le +Ġpre par +Ġsub mit +Ġn ic +mor row +ãĥ « +U nder +Ġv ital +ater n +Ġpass word +Ġpublic ation +Ġprom inent +Ġspeak s +Ġb ars +Ġde eper +ĠM ill +port ed +Ġw id +Ġbut ter +Ġsm oking +Ġindic ates +K ey +rop ri +ĠF ile +all ing +ast ing +ĠR us +Ġad j +Ġ7 9 +av al +Ġpres um +bur gh +on ic +Ġf ur +Ġpoll s +ik a +Ġsecond ary +Ġmon ster +ig s +ĠCur rent +E vent +Ġowners hip +end ar +Ġarri ve +ĠT ax +Ġn ull +ĠPri v +Ġth ro +Ġk iss +c at +Ġup set +ang le +it ches +ect or +olog ists +ĠGal axy +Ġcor ruption +Ġh int +ent er +ĠH ospital +Ġgreat ly +Ġbeg un +es y +Ġso il +ĠAnt on +Ġmain tenance +ãĥ © +Ġdo zens +Ġhuman ity +ĠAl abama +Ġr om +w orth +ap ing +sylv ania +l ah +Ġg athered +G A +Ġattack ing +f ound +ĠSqu are +Ġar bit +ict ions +ĠW isconsin +Ġd ance +ĠS aint +arch y +Ġbase ball +Ġcontribut ions +Ġliter ature +Ġex ha +per ty +t est +Ġb ab +Ġcontain er +let ter +Ġfall en +Ġwebs ites +Ġbott le +ĠS ac +Ġbre ast +ĠP L +Ġveter an +Ġinterview s +ĠA le +Ġb anned +eng ers +ĠRev olution +in th +Ġconc erning +IV E +Ġexp enses +ĠMatt hew +ĠColumb ia +d s +ist ance +Ġent ity +.. ." +Ġrel iable +Ġpar alle +ĠChrist ians +Ġopin ions +Ġin du +l ow +Ġcompet e +Ġth orough +Ġemploy ed +Ġestablish ment +ig en +ĠC ro +Ġlawy ers +ĠSt ation +T E +ĠL ind +ĠP ur +it ary +Ġeffic iency +âĢ IJ +ĠL y +Ġm ask +Ġdis aster +Ġag es +ER E +es is +ĠH old +Ġcas ual +b led +Ġen abled +ĠEn vironment +ĠInt elligence +i per +ĠM ap +ĠB E +Ġemer ged +is dom +Ġc abin +Ġregist ration +Ġfing ers +Ġro ster +Ġfram ework +ĠDo ctor +et ts +Ġtransport ation +Ġaware ness +H er +Ġattempt ing +O ff +ĠSt ore +ÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤ +ĠK now +Ġdef ence +Ġsc an +ĠT en +ĠCh air +ĠP H +ĠAtl anta +Ġfuck ing +Ġans wered +b n +ĠK ar +Ġcateg ories +Ġr ational +Ġc ust +Ġrob ot +Ġcorrect ly +Ġg if +Ġgraph ics +m ic +Ġground s +ĠO pp +i ate +Ġdist ributed +Ġsan ctions +Ġchalleng ing +ut o +Ġingred ients +Ġinv ited +Ġfound ed +ĠRe qu +d ed +Ġb owl +Ġbrother s +ĠH a +I O +Ġw ages +im ore +oc ial +Ġse ed +ative ly +Ġaddress es +ĠI owa +ab eth +Ġatt itude +is d +ch ild +Ġm ole +Ġdisco very +y ard +B r +Ġ8 2 +Ġsuppl ies +ell ing +Ġdist ingu +C R +Ġre cept +Ġ vert +Ġsw im +b ec +d oor +ĠY eah +Ġg al +Ġinter act +ĠE SP +ĠC S +amp s +Ġconvin ced +Ġobject ive +Ġdis h +ĠPhot os +l ad +Ġdownt own +o il +in ction +Ġto morrow +ĠC OM +Ġsurv ival +sh ot +Ġsett lement +C ons +ĠX box +int erest +ĠS M +arg o +en ess +Ġeth nic +b ered +M in +ĠT ok +Ġinc ent +ĠComm and +Ġmain tained +Ġbreak s +br idge +at ar +ag g +ĠF inally +un icip +ĠO nt +le ft +Ġrecogn ition +Ġ* / +ĠP ers +Ġwe lf +Ġaddress ed +ĠK ansas +Ġvir us +Ġwhere as +Ġp apers +ram s +ĠMin istry +Ġple asure +Ġacqu ired +Ġd uration +j pg +Ġcal m +ĠN HL +Ġburn ing +Ġfold er +ick ed +ĠP y +ĠIll inois +Cl ass +ĠGodd ess +Ġperform ing +Ġwelf are +j ar +In ter +Ġl in +Ġenh ance +Ġnot ion +f are +yp es +ĠAre a +Ġcann abis +ĠDie go +f s +ĠM anchester +com m +in ite +Ġcover ing +ĠS ound +Ġ19 60 +Ġ8 4 +e lect +z ing +Ġcitiz en +Ġph ones +Ġr aid +Ġign ored +ĠOb ject +Ġu pload +c ard +Ġmod ified +Ġroom s +ia h +r ange +he ast +ach us +Ġsuggest ing +âĢ ĭ +gr ade +E l +Ġclot hing +Ġr h +ĠH an +un ity +en cing +ĠAust in +sec ution +t ra +d em +ĠQ ual +Ġhe aven +Ġst ages +Ġw edd +pl us +ific ial +ĠIm m +ĠH o +iet ies +Ġphr ase +Ġbr ill +act ory +Ġprov iders +Ġsil ence +Ġa er +ĠA I +ĠAd venture +Ġplatform s +Ġdemonstr ated +Ġinter f +ing ton +Ġr aces +Ġgr ade +ult ane +ĠTh rough +f alse +Ġb ow +ĠA B +Ġfl avor +Ġhistor ic +g ov +Ġcol our +Ġview ed +ĠEm ail +el come +Ġinter vention +Ġd iversity +Ġperiod s +Ġre verse +ĠV ery +Ġqu ote +ĠLe ft +th rough +Ġsc rew +Ġland ing +Ġp ill +Ġw et +Ġprot esters +Ġrepe at +av ed +er k +Ġsal ary +ĠPenn sylvania +St ill +Ġmay or +Ġkit chen +Ġfeat uring +ĠM useum +ĠT ournament +ĠF al +Ġser vers +U C +Ġany body +im g +ĠTr ade +ixt ure +the less +Ġfin ance +Ġcl osing +ĠPat ri +i ac +ab el +Ġ> > +or ous +Ġf irms +sc reen +un a +Ġemb arrass +ul se +Ġlet ting +Ġth rew +ile y +Ġch annels +l an +ĠVeg as +Ġse ar +Ġfant astic +ar re +uzz le +ĠD er +Th ose +Ġsw ing +Ġshe et +ind ex +co ver +og an +Ġvari ables +ĠTe ch +Ġsp oken +ac hel +ĠD a +ĠMount ain +Ġload ed +Ġfoot age +vers ion +Ġun l +ĠPh oenix +Ġthrow ing +Ġf iring +Ġtrack ing +Ġw idth +Ġstrugg ling +ro oms +ot ion +Ġmonth ly +ĠSer ver +Ġegg s +op en +M C +Ġ199 3 +Ġh ired +Ġstay ed +ĠAll en +Ġst ro +Ġ9 8 +st ep +ĠTurk ish +Ġfab ric +ist ing +ĠD om +Ġd ates +Ġpr on +Ġbasket ball +Ġl ucky +ĠArab ia +Ġassum ed +est y +Ġaff airs +Ġgl ad +ĠInd eed +ĠF A +ĠW ord +Ġjo ining +if ice +p read +ir ts +ĠSe lect +Ġpop ulations +aw are +Ġn ose +Ġcompl aints +st art +Ġsc oring +Th anks +Ġmin ing +Ġvisit ors +S H +Ġdam aged +Ġcharacter istics +ĠP ent +D C +Ġ8 3 +ĠS ix +r ates +Ġfl ags +ĠB rew +d og +M ark +// // +Ġexec ution +Ġj oke +ph ones +Ġtestim ony +Ġob st +Q L +ĠC ut +Ġstud ied +ĠN intendo +ick et +ĠN BC +Ġl ad +ĠB ra +ĠM oh +Ġk ernel +Ġoverwhel ming +Ġag ed +Ġapplic able +ĠC ond +Ġroad s +ĠBl ock +m ade +od ge +Ġcomm ands +Ġoff ices +vel and +Ġt ut +Ġrece iver +ĠF ro +Ġsho pping +Ġi P +ĠSt re +ĠA BC +Ġentertain ment +ĠB ow +ort ed +M c +Ġread s +gr ad +ĠCol lect +Ġâ ĪĴ +ĠCap ital +eder ation +Ġemploy er +Ġinvolve ment +Ġanx iety +al ia +Ġro of +ĠAm ong +ĠDemocr at +Ġstat s +ĠV ill +Ġconst itutional +Ġrefer ring +itt y +Ġtack le +out ube +Ġback ed +ĠH ong +ĠBro ad +Ġe le +ĠO tt +Ġ199 2 +h our +achus etts +C al +Ġdefe ated +Ġ8 1 +es p +Ġseem ingly +w as +ĠJ enn +ĠK urd +Ġg ene +Ġdisc ount +R et +EC T +( ); +Ġclub s +Ġs id +ĠM arsh +Che ck +Ġp p +ĠE ag +ides pread +Ġbe ings +F T +Ġintrodu ction +ĠCh ange +AR D +Ġ1 10 +ad ows +ier ce +Ġme al +a uthor +ĠB ang +lah oma +Ġr anks +201 1 +?? ?? +m ax +Ġcoll apse +Ġop ens +Ġe cho +Ġs oph +Ġrac ist +Ġenorm ous +Ġw aves +Ġt ap +Ġcomprehens ive +. -- +ĠR oy +Ġfarm ers +Rel ated +a ired +ron es +ĠC rim +Ġproport ion +Ġdesign s +Ġnegoti ations +Ġvirt ually +ĠBat man +Ġwar n +Ġlegit imate +m ate +Ġcon vention +, , +net ic +ĠS D +Ġconsist ently +Ġcompens ation +Ġpunish ment +Ġy e +Ġt ie +ĠB ureau +ir lf +ĠB u +ĠA ren +ĠPh ilipp +Ġkn ife +Ġmem ories +ĠR oss +Ġang le +Ġ8 6 +ĠTh under +Ġre nd +ĠT our +Ġcount s +s ung +ĠIm p +Ġeduc ational +Ġaccess ible +C OM +Ġd rew +y er +G l +am ine +OR T +O B +I B +m aster +Ġtri als +og y +h ar +ĠTr ust +Ġprefer red +irlf riend +ĠN ev +Ġb in +Ġc ow +P age +Ġsign ature +ĠB L +7 00 +Ġret ired +Ġby tes +Ġneigh b +ĠLeg end +Ġdev ast +Ġsuspect ed +is ons +ĠPoké mon +sc ale +Ġcap abilities +Ġre vel +Ġche ese +d y +igr ant +Ġfail ing +b its +ĠHer oes +ĠG host +ĠS cient +Ġappoint ed +ur i +Ġinst itution +Ġexpand ed +g reg +Ġmonitor ing +Ġp odcast +Ġcoal ition +Ġ9 6 +J o +Ġst olen +ĠS ab +Ġstop s +Ġhol iday +Ġint r +C ar +Bl ack +ĠL GBT +Ġwar ming +ĠAnd erson +Ġ8 9 +Ġprodu cer +M ed +Ġaccur acy +ĠMar vel +iz abeth +ĠPat rick +m ony +Ġmin i +ac les +Ġover t +the y +Ġmembers hip +ĠV en +Ġex ch +Ġrem oval +ĠD ave +T Y +m ad +ĠF ind +Ġad equ +Ġe c +Ġte eth +Ġemot ion +Ġper m +Ġsole ly +d b +Ġextra ord +IG HT +c al +Ġgu idelines +Ġd ying +Ġsusp ended +ĠPrem ier +ĠAnth ony +el ve +Ġd ad +ĠE th +ĠFoot ball +Ġabandon ed +Ġ< < +Ġm arch +Ġhor ror +â̦ " +Ġchild hood +Ġcampaign s +Ġl unch +ĠAl bert +bl ock +âĸĪ âĸĪ +ound ing +Ġb one +or gan +ad ers +ĠFl ash +ĠDri ve +Ġton ight +Ġw ars +ĠF L +Ġform ation +con st +New s +Ġcom pe +or ious +ĠSt aff +Ġdiscuss ions +ĠProt ection +ĠJ am +Ġcrit eria +Ġinstall ation +Ġaccompl ish +iz za +Ġpub lisher +Ġresc ue +ĠT ry +U LL +ĠS om +ĠH op +ore t +th s +ord on +Ġp ocket +ĠIn v +Down load +ĠCr ime +Ġb ene +ĠGu ide +ĠAs sembly +Ġparam eters +I E +ĠAlex ander +Ġconc ert +ĠSc he +Ġsh oes +Ġvis iting +Ġrec all +Ġb ub +Ġr ural +Ġconc rete +ĠR os +N ext +R uss +Ġlo ans +ĠSh ield +Ġtre m +hem at +k g +ĠHar ris +is ition +ĠM ove +ĠF C +Ġf ate +ĠCh o +Ġt ired +Ġprinc ipal +h ist +ien ces +ath y +Ġse vent +Ġm ood +Ġstrateg ic +Ġdise ases +Ġfor um +Ġtem por +Ġhead quarters +P ar +ig e +fl ix +Ġgu itar +Ġ9 4 +On ly +Ġrele ases +ro ph +================ ================ +Ġ6 00 +ĠContin ue +ig ate +ĠC rit +sy stem +Ġdis abled +Ġunex pected +ith ub +Ġuncle ar +ĠE st +Ġcontr ad +Ġstrateg ies +vent ures +Ġpass age +AM E +Ġimpro ving +Ġreve als +Ġdecre ase +ov a +Ġann oy +ĠSh ort +ĠL ibrary +Ġcy ber +n ell +ĠH ur +ĠC B +Ġphot ograp +U I +Ġs ed +G e +Ġ8 7 +Ġd iverse +Ġencour aged +Ġcons piracy +Ġbird s +Ġoper ator +Ġhand ful +Ġclass ified +? ) +Ġdram atic +Ġinvestig ators +it o +Ġw idespread +ĠR oom +-------------------------------- -------------------------------- +Ġcollect ive +Ġjournal ist +St ring +Ġtemper atures +il a +Ġgu id +Ġins pect +Ġmiss ile +ĠMay or +Ġman ual +Ġsim ultane +Ġrat ings +Ġsu ck +Ġ9 7 +Ġunivers al +Ġph arm +Ġdis rupt +ian o +A V +Ġf t +Ġstat ist +old s +ĠWalk er +ph p +Ġunder t +ĠL as +ish op +nt il +res hold +ĠWhe ther +M s +Ġden y +ĠCl oud +Ġprov ider +Ġsurv iv +ĠUp date +h as +Ġmist akes +ch arge +pl ed +r ity +Ġn ode +ĠMass achusetts +ool s +lic ation +Ġf ails +em ale +or i +back s +Ġsh irt +Ġ' ' +ĠN AT +Ġwat ers +els on +Ġe ase +Ġsc ar +Ġcont ents +m ind +Ġcont ribution +Ġsh r +Ġhand ed +Ġst ability +Ġtra ve +E m +Ġmir ror +12 3 +Ġwe igh +Ġf iction +ou ver +ist ant +r ition +ĠF ed +Ġphys ically +Ġst ake +ĠArt icle +ĠAr c +ĠLew is +ĠM ind +Ġdemonstr ate +Ġprof its +v ision +om ic +ol id +Ġbatt les +Ġdri ves +Ġeas tern +ĠS ony +!! ! +ar ation +v ard +ĠG L +port ation +Ġ9 2 +Ġlaw makers +Ġprotect ing +ĠE PA +Ġy eah +Ġsh ame +ol ph +e ven +x it +Ġatt ach +Ġrepresent ing +Ġob s +ĠUt ah +iff s +ĠFre edom +à ³ +A K +Ġinc idents +it age +Ġview ers +c d +Ġm ouse +Ġcl ar +Ġaccord ance +Ġb ot +c or +ĠSum mer +he ld +Ġinnoc ent +Ġiniti ative +ol s +________________ ________________ +Ġsp ots +p ace +Ġconvent ional +Ġcorpor ations +Ġblock ed +H D +at tered +Ġref ers +Ġbu ck +ĠDig ital +12 0 +Ġtop ics +T F +Ä ģ +br id +re ement +Ġunder lying +ĠM ember +Ġinvestig ating +Ġpregn ancy +Ġtouch down +ĠB and +ĠCall er +Ġinst ances +P P +w a +G ood +Ġ199 1 +ĠC old +Ġfear s +Ġrem arks +Ĩ Ĵ +at al +Ġm it +Ġexper iments +i pt +Col or +ind u +Up date +Ġ9 3 +A g +Ġ å +anc ouver +B oth +Ġjud ges +Ob ject +Ġst ere +umb n +Ġparticip ation +ĠSt ars +ĠJ ere +Ġweek ly +ĠB an +Ġconvers ations +ĠP itt +u z +ĠIndian a +ĠK ick +Ġinf ection +Ġhero es +Ġsett led +Ġstri p +Ġh al +Ġd ump +ĠS ci +Ġl es +Ġref erences +ĠU RL +ĠBr idge +Ġwant ing +For ce +Ġex clus +Me anwhile +m n +Ġg entle +m aker +sen al +ĠG ro +ou ri +ĠR ain +ĠAll iance +Ġl ift +el a +S D +ĠCle veland +Ġrank ed +Ġst adium +Ġdead ly +ä ¸ +Ġr iding +ar ia +ĠAr mor +Ġdocument ation +ĠGree ce +ree k +Ġl ens +ĠS a +Ġg ross +ĠE mer +ag ers +ĠD ub +ĠR h +ĠAM D +Ġarri val +Ġdes ert +Ġsupp lement +ĠRes p +Ġkn ee +Ġmarg in +f ont +og g +201 0 +ĠP ir +ĠP rom +iv als +Ġint ake +Ġdifferent ly +ug s +Ġb its +clud ed +Ġsearch ing +ĠD u +um ble +Ġfunction al +ĠBalt imore +ĠC ould +Ġdes ired +Ġcirc uit +ĠL yn +ĠG O +ĠF alse +re pre +' : +alt ies +Ġmin im +Ġdro ve +ĠSh ould +Ġh ip +Ġpro s +Ġut ility +ĠN ature +ĠM ode +P resident +o pp +r at +form ance +Ġconcent ration +Ġf ont +ĠB ud +Ġam id +Ġre vers +ĠM L +B ar +Ġinter action +Ġjur isd +Ġspell s +d ep +f il +Ġcivil ians +ut ter +ĠCo oper +ĠBel ow +Ġent rance +Ġcon vert +Ġcontrovers y +ow ered +Ġcontr ary +Ġar c +ĠExec utive +ĠOffic er +Ġpack ages +Ġprog ressive +w idth +Ġreserv ed +v ol +ĠSam sung +Ġprint ed +Ġcent ers +Ġintrodu ce +ĠKenn edy +Ġodd s +Ġsure ly +Ġindepend ence +Ġpass engers +repre ne +ĠBe h +Ġl oves +ĠESP N +Ġfac ilit +Ġident ical +Ġdo ct +Ġpartners hip +con f +ĠH ide +Ġconf used +ĠC ow +M en +Ġw rest +ĠIraq i +Ġh oles +ĠStud ies +Ġpregn ant +h ard +Ġsign als +I X +Ġpull ing +Ġgrad uate +Ġnomine e +D ate +Ġper mitted +Ġâ Ĥ¬ +ĠOk lahoma +St art +Ġauthor ized +Ġal arm +ĠC os +v an +Ġgener ations +c ular +Ġdr agon +ĠSoft ware +ĠEd ward +Ġcontro ller +S en +ge red +ĠV ik +Ġappro ached +Th ank +Ġcan ce +Ġform ula +ĠSm all +Ġweak ness +Ġr amp +it udes +j ud +Ġbrill iant +Ġacc us +s ource +Ġ8 00 +ĠE vil +S w +Ġhom eless +we ek +i ens +r ics +ĠTh ird +T O +Ġorgan ic +Ġpresent ation +ag h +ĠDown load +v ation +Ġas sembly +or able +hold ers +ĠBern ie +ĠHel p +Ġt ong +ĠF ight +Ġbe ach +B ook +ĠL ic +Ġr ush +ĠR ound +ou p +ĠMar x +Ġcalcul ated +ĠDe vil +ĠSar ah +Ġoccasion ally +Ġbul let +Av ailable +g ate +Ġ9 1 +Ġh osp +Ġprom ises +ĠH IV +ĠSt adium +ĠSt ock +ĠCorpor ation +g age +N G +ĠC redit +Ġs ne +ib l +Ġacc um +s uch +Ġterror ists +Ġconscious ness +ĠZ h +Ġdram a +ool a +pir ation +Ġlab our +ĠN in +Ġut ter +Ġdemocr atic +Ġass ass +il ation +Ġg est +Ġab road +Ġmet ab +Ġs orts +Ġfl av +U B +Ġm g +ĠNot hing +ĠO d +Ġmus ical +200 9 +Ġdro ps +oc ated +ater al +0000 00 +Ġg re +Ġequ ality +Ġburd en +Ġv ig +ĠLe ader +-------- ---- +Ġcere mony +Ġf ighter +Ġact ors +Ġ æ +am an +F i +Ġal ign +put er +Ġe lder +ĠN SA +Ġrepresent ation +ĠOnt ario +IT H +usal em +Ġharass ment +itz er +Ġsy mp +Ġbox es +ĠD R +Ġman ifest +at re +Ġ ^ +Ġd ies +le ton +Ġmiss ions +et he +Ġres olve +Ġfollow ers +Ġas c +Ġk m +l ord +am med +Ġsil ent +ĠAssoci ated +Ġtim ing +Ġprison ers +ĠK ings +ĠF ive +Ġtow er +Ġappro aches +Ġprecise ly +Ġb ureau +ĠM other +ĠI ss +Ġkey board +it ual +Ġfund ed +Ġstay ing +Ġpsych ological +Ġm ile +ĠLe on +ĠBar b +w ill +Ġw ider +ĠAtl antic +Ġt ill +ĠR ome +ro t +Ġaccomp an +Ġfl our +ac o +W orld +ĠExp ress +ĠY u +C or +Ġple ased +part y +Ġpoint ing +Ġinf lation +Ġro y +Ġ ), +ain er +Ġwedd ing +orm on +Ġrequ iring +Ġqual ified +Ġse gment +EN D +Ġs izes +e als +Ġcor rupt +ass ador +Ġcele b +Ġdream s +ĠM ess +Ġcheck ing +ĠV ersion +Ġprep aring +Ġact ively +ĠD iff +Ġl ux +ĠW inter +act eria +ĠN E +Ġdep uty +Ġtrans gender +Ġsum mary +Ġin her +er ies +ch ar +ĠY an +Ġkn ock +ĠP ath +Ġl ip +roll er +Ġimp ression +Ġcelebr ate +Ġsl ide +Ġgu ests +Ġcl ip +F S +Ġsav ings +Ġcapt ain +Ġleg acy +ĠDen ver +Ġw ounded +tab oola +AC T +Ġpurs ue +Ġo xy +Ġ q +Ġsem i +ĠN eed +ĠAff airs +Ġob sc +Ġcheck ed +Ġd ual +C ode +ĠM D +le m +ult y +Ġ © +ĠEl izabeth +Ġcent uries +ard ed +s rc +Ġev ident +enn is +at in +Ġunemploy ment +ĠMar io +Ġint im +Ch rist +Ġbi ological +Ġsold ier +ĠAdd ed +Ġm ath +ĠG il +Ġbi as +Ġd ating +ĠO cean +Ġm ice +M us +h ire +ĠT es +Ser ver +lim ited +S ize +Ġmet ers +Ġrock et +es see +Ġcertific ate +ĠIran ian +AS S +Ġgr id +D ec +Ġro lling +com mun +ĠSwed en +b ury +Ġtiss ue +Ġrac ism +ĠL ocal +Ġmyster y +Ġexam ine +Ġst em +Ġs its +Ġhop ed +ot ing +Ġdial ogue +Ġpers u +W atch +l ay +M AN +Ġch ronic +ĠPort land +mark et +ĠS EC +Ġparalle l +Ġsc andal +Ġcar ries +Ġphenomen on +h uman +ack er +ĠO x +Ġretire ment +tain ment +ov ie +ĠG ear +Ġd uties +Ġdo se +Ġsc roll +M B +in f +Ġsa uce +Ġland scape +red dit +ĠChampions hip +ĠRed dit +al id +Ġco in +Ġover s +Ġpost ing +ab out +Ġf el +and y +Ġb old +Ġfocus ing +e ffect +G R +Ġde emed +Ġrecommend ations +Ġste pped +Ġvot er +ĠDe ep +ĠInst agram +Ġmoder ate +ĠMary land +Ġrestrict ed +ĠM B +ĠCh all +Ġto b +Ġc ir +ĠO cc +ĠE ver +Ġcoll aps +IN FO += - +ĠP ict +ĠAcc ount +n c +Ġo ught +Ġex port +Ġdr unk +( ' +Ġw ise +ĠM ort +ne cess +Ġan cest +ĠInc re +Ġfrequ ent +m ir +Ġinterpret ation +Ġdepend ent +Ġco ins +ĠB ol +V ideo +ĠJust in +Ġfat al +Ġcook ing +Ġconf usion +ip her +Ġcust ody +ĠMor gan +om ach +ĠGovern or +Ġrestaur ants +el ing +Ġacknowled ged +Ġthe r +Ġgen es +ch ing +He y +Ġtact ics +ĠMex ican +Ġv end +Ġhe s +qu er +Ġnot ing +ĠCamer on +Ġtarget ing +ro ck +Ġcred its +Ġemot ions +Ġrepresent atives +new s +Ġlegisl ative +Ġrem oving +Ġtweet ed +ĠCar ter +ĠF ixed +Ġfor cing +Ġspeak er +Ġm ales +ĠViet nam +l ined +Ġconcept s +Ġvo ices +o ir +ĠT rib +W he +ĠJer usalem +ĠS ant +Ġc ul +Ġl ady +ĠHaw ai +Ġar ts +ĠIn n +ĠMach ine +ĠEm peror +Ġsl ot +g ly +ĠPro cess +II I +Ġathlet es +ĠTem ple +ĠRep resent +Ġpres c +Ġt ons +Ġgold en +Ġp unch +ĠG R +iver pool +Ġen act +Ġlob by +Ġm os +Ġpick ing +Ġlif etime +Ġcogn itive +E ach +z o +Ġd ub +Ġcons ists +ol n +Ġf estival +am ous +Ġint ellig +w ords +ĠSm art +Ġde le +Ġl apt +Ġmag ical +ĠS in +b us +ur ities +igh th +ĠRub y +ĠS ure +ol ving +Ġj un +O ST +Ġimp osed +Ġast ron +Ġcor rel +ĠN S +ĠK it +ĠF uture +b urn +Ġimm une +oc us +Ġcour ses +ĠSt ring +Ġle an +Ġg host +Ġout comes +Ġexp ense +Ġevery day +Ġaccept able +A h +Ġequ ipped +Ġor ange +F R +ĠD utch +Th ough +ĠR ank +Q U +ĠRober ts +wh at +re nd +Ġdisapp ear +Ġsp awn +ĠL am +o is +Ġdes erve +Ġmin imal +Ġnerv ous +ĠW ould +Ġro ok +ĠV ancouver +Ġres ign +sh ire +ĠW orks +ĠB uild +Ġafford able +ĠG ary +ĠAren a +Ġh anging +Ġimpl ications +ĠS ong +Ġmain taining +Ġgu ards +C ON +Ġder ived +Ġexecut ed +Ġthe ories +Ġqu oted +ĠAnd re +og a +sel ess +in fo +ĠBel g +Ġt ears +ĠSur v +Ġbirth day +ig ious +im mer +Ġspect rum +Ġarchitect ure +Ġrec ruit +arm a +T able +Ġmon sters +ĠG ov +Ġdest ination +Ġattract ive +Ġf oss +ĠMore over +Ġpres ents +TH E +Ġrep ly +pt on +Ġc um +Ġdel ight +Ġaffect s +Ġdon ations +ĠT oy +ĠH im +M ENT +Ġover come +it ched +ĠFant asy +ĠH at +ĠBe ast +b ott +Ġinvestig ations +R un +Ġhun ting +d i +f und +Ġs essions +est yle +Ġport ray +oid s +Y eah +Ġcommun icate +Ġcom edy +ĠY ang +Ġbel t +ĠMar ine +Ġpredict ed +Pl ay +Ġimportant ly +Ġremark able +Ġelim inate +D avid +Ġb ind +V ID +Ġadvoc ates +ĠG aza +im p +D B +ĠN a +ĠSim ilar +I ES +Ġchar ity +v as +m ath +Ġâ ĸ +ok er +nd um +Ġcap s +ĠH al +2 000 +e an +Ġfle et +Ġrec re +R ight +Ġsleep ing +ij ing +k ind +Ġdesign ated +à ¤ +Ġanim ation +ke e +ĠInt rodu +Ġ/ > +Ġdelay ed +Ġtrem end +Ġcur ious +U se +Ġle ct +d am +Ġinnov ation +ĠPoint s +Ġload ing +Ġdisp ute +ct ic +ird s +ĠB Y +Ġn urs +ĠVal ue +ION S +ĠH um +Ġtem plate +m ers +Ġappear ances +ĠEnter tainment +Ġtransl ation +Ġsa ke +Ġbene ath +Ġin hib +Ġe uro +abet es +Ġstud ying +ĠM as +Ġper ceived +Ġexam ined +Ġe ager +Ġco aches +Ġim per +ch i +Ġprodu ces +" ). +ĠEvery one +Ġm unicip +Ġg irlfriend +Ġh ire +ĠV ice +Ġsu itable +op y +Ġin equ +ĠD uke +f ish +f irst +ĠO bs +Ġinter ior +ĠBru ce +ĠR y +Ġanal ys +Ġconsider able +Ġfore cast +Ġf ert +ors hip +ĠD rug +ĠA LL +: " +th ur +ĠM ail +Ġball ot +Ġinst antly +ĠCh annel +Ġp icks +Ġ198 9 +Ġt ent +ol i +Ġcivil ian +b ling +ell o +b u +Ġin ch +Ġlog o +Ġcooper ation +Ġwal ks +Ġinvest ments +Ġimp rison +ĠF estival +ĠK y +Ġleg ally +Ġg ri +ch arg +S l +Ġthreat ening +du ction +fl ow +Ġdismiss ed +ibr aries +c ap +e le +ĠMc G +ĠHar vard +ĠConserv ative +ĠC BS +p ng +Ġro ots +ĠH aving +umb led +ĠF un +\ / +ĠS earch +ple x +Ġdiscuss ing +Ġcontin u +ĠT ai +ĠW ik +F ree +f it +Ġref use +Ġmanag ing +Ġsy nd +ip edia +w alk +Ġprofession als +Ġguid ance +Ġunivers ities +Ġas semb +unt u +F inally +AS E +ĠAut o +ĠH ad +Ġann iversary +L D +ĠD ur +ĠUlt imate +ih ad +pro duct +Ġtrans it +Ġrest ore +Ġexpl aining +Ġass et +Ġtransfer red +Ġbur st +ap olis +ĠMag azine +ĠC ra +ĠB R +gg ed +ĠH E +M ich +b et +ĠL ady +yl um +erv es +Ġme ets +wh ite +L og +Ġcorrespond ing +Ġins isted +G G +Ġsurround ed +Ġt ens +Ġl ane +Ġco inc +h ome +Ġexist ed +ect ed +ĠDou ble +lam m +Ġske pt +ex p +Ġper ception +ie v +ĠBe ing +o ft +Ġadop t +. : +] ; +Wind ows +Ġsatell ite +AS H +Ġinf ant +d escription +ĠMe anwhile +c m +oc a +ĠT reat +act or +Ġtob acco +ĠN orm +em ption +Ġfl esh +Ġj e +o op +ĠHe aven +Ġbe ating +an im +Ġgather ing +Ġcult iv +G O +ab e +ĠJon athan +ĠSaf ety +Ġbad ly +pro t +Ġcho osing +Ġcontact ed +Ġqu it +Ġdist ur +Ġst ir +Ġto ken +D et +ĠP a +Ġfunction ality +00 3 +s ome +Ġlimit ations +Ġmet h +b uild +con fig +N T +re ll +ble m +ĠM om +Ġveter ans +ĠH u +Ġtrend s +are r +ĠG iven +ĠCa ption +m ay +AS T +Ġwond ering +ĠCl ark +n ormal +Ġsepar ated +Ġdes p +st ic +b rew +Ġrel ating +ĠN ik +ĠF arm +Ġenthus i +g ood +d eb +Ġactiv ist +Ġm art +Ġexplos ion +ĠEconom ic +L ink +Ġins ight +Ġconven ient +Ġcounter part +su pport +ĠV irt +ag en +ĠTenn essee +ĠSim on +ĠA ward +OC K +ĠF igure +Ġoverse as +Ġpr ide +ĠC as +n ote +m g +C urrent +Ġdispl ays +cont ent +Ġtravel ing +Ġhosp itals +ĠFin ancial +ĠP ast +Ġdefend ant +Ġstream ing +m ble +ĠBer lin +uk i +Ġdist ribut +Ġant ib +Ġch ocolate +ĠCast le +Ġinter rupt +ĠR ow +Ġconvers ion +Ġbug s +ĠR ather +li est +L Y +ĠJe an +com mon +ak h +Ġ1 30 +ot ton +ĠDe an +Ġam endment +Ġgame play +ĠWar ren +od a +Ġhigh lights +Ġir re +ĠNAT O +Ġball s +Ġdemand ing +U RE +ĠL uke +F igure +st op +on ia +z one +iz ers +ĠW R +Ġaward ed +Ġregul atory +ĠH art +ĠS N +pl ing +Ġs our +ĠP ixel +us ive +Ġf et +ĠS ent +Ġautom atic +Ġf er +vern ment +ĠKh an +T ON +f ather +Ġextraord inary +th rop +ĠP ython +ĠG PU +Ġsex ually +Ġdesk top +it ivity +ĠAnton io +Ġo rient +Ġe ars +ob by +ous es +vertis ements +Ġmanufacture rs +ic ient +min ute +Ġconv iction +Ġg arden +p ublic +Ġsatisf ied +f old +O K +Ġin hab +ĠTh ink +Ġprogram me +Ġst omach +Ġcoord in +Ġh oly +Ġth reshold +Ġr het +Ġser ial +Ġemploy ers +ĠEvery thing +ra h +Ġb other +Ġbr ands +Val ue +ĠT ed +ĠPlan et +Ġp ink +ĠFurther more +s a +P E +re ck +ĠUS D +ot te +Ġ& & +Ġland ed +g ets +Ġprodu cers +Ġhealth care +Ġdomin ant +Ġdest ro +Ġam ended +ch ron +Ġf its +ĠSy d +ĠAuthor ity +AT CH +Ġfight s +ĠL LC +Ġ-- - +ĠCor p +Ġtox ic +spe cific +ĠC orn +ĠChe l +Ġtele phone +ĠP ant +Ġmyster ious +aun ch +od ox +med ia +Ġwitness es +ag u +Ġquestion ed +ĠBre xit +ĠRem ember +ene z +Ġend orse +iat ric +ĠId ent +Ġridic ulous +1 10 +Ġpr ayer +Ġscient ist +Ġ19 50 +ĠA qu +Ġunder ground +ĠU FC +m are +ĠL ater +w ich +Ġsubsc rib +Ġhost s +Ġer r +Ġgr ants +ant om +Ġsum mon +ear ly +ĠC lear +ĠPr im +Ġsusp ension +Ġguarant eed +app er +Ġr ice +ĠSe an +ĠSh in +Ġrefere ndum +Ġfl ed +r ust +Ġ3 60 +ter y +Ġsh ocked +B R +ĠO il +ĠAll ah +Ġpart ly +Ġign or +Ġtrans mission +Ġhom osexual +ivers al +Ġhop efully +ãĤ ¤ +Ġless on +L eg +Ġ .. +Y et +t able +app ropri +re tt +Ġbo ards +Ġincor rect +Ġb acteria +ar u +am ac +Ġsn ap +.' " +Ġpar ad +t em +he art +Ġav ailability +Ġw isdom +Ġ( + +Ġpri est +ĠÂł ĠÂł +O pen +Ġsp an +Ġparam eter +Ġconv ince +Ġ( %) +r ac +Ġf o +Ġsafe ly +Ġconver ted +ĠOlymp ic +Ġres erve +Ġhe aling +ĠM ine +M ax +Ġin herent +ĠGra ham +Ġinteg rated +D em +Ġpip eline +Ġapp lying +Ġem bed +ĠCharl ie +Ġc ave +200 8 +Ġcons ensus +Ġre wards +P al +ĠHT ML +Ġpopular ity +look ing +ĠSw ord +ĠAr ts +' ) +Ġelect ron +clus ions +Ġinteg rity +Ġexclus ively +Ġgr ace +Ġtort ure +Ġburn ed +tw o +Ġ18 0 +P rodu +Ġent reprene +raph ics +Ġg ym +ric ane +ĠT am +Ġadministr ative +Ġmanufacture r +Ġ vel +ĠN i +Ġisol ated +ĠMedic ine +Ġback up +Ġpromot ing +Ġcommand er +Ġfle e +ĠRus sell +Ġforg otten +ĠMiss ouri +Ġres idence +m ons +Ġrese mb +Ġw and +Ġmeaning ful +P T +Ġb ol +Ġhe lic +Ġwealth y +Ġr ifle +str ong +row ing +pl an +as ury +â̦ . +Ġexpand ing +ĠHam ilton +Ġrece ives +S I +eat ures +ĠAn im +RE E +P ut +Ġbrief ly +ri ve +Ġstim ul +Ġ`` ( +Ġ __ +Ġch ip +Ġha z +Ġpri ze +ĠTh ings +AC E +ul in +d ict +ok u +Ġassoci ate +ock ets +y outube +St ory +ateg ory +Ġm ild +ail ing +ĠY e +O rig +ĠK a +or ig +Ġpropag anda +Ġan onymous +Ġstrugg led +Ġout rage +AT ED +ĠBe ijing +r ary +Ġle ather +Ġworld s +Ġbroad er +12 5 +id al +ĠBet ter +Ġt ear +E xt +Ġpropos als +Ġit er +ĠSqu ad +Ġvol unt +m i +D id +ĠP u +p in +Ġspeak ers +Ġb orders +Ġfig ured += ' +Ġsimultane ously +aed a +Ġcharg ing +Ġur ged +Ġcon j +25 6 +ĠG ordon +mer ce +Ġdocument ary +Sh are +it ol +ON E +ĠG arden +h att +ĠThom pson +ane ous +ap ore +Ġt anks +Ġless ons +tr ack +Ġout standing +Ġvolunte ers +Ġsp ray +Ġmanag ers +l arge +Ġcamp s +Ġart ificial +ĠR u +Ġb ags +th al +Ġcompat ible +ĠBl ade +Ġf ed +Ġarg ues +F I +Ġunf air +Ġcor n +Ġoff set +Ġdirect ions +Ġdisappoint ed +ĠCon vention +Ġview ing +M E +oc ity +Ġtown s +Ġlay ers +Ġro lled +Ġjump ed +Ġatt ribute +Ġun necess +inc oln +Ġsupp ose +ĠNet her +ch a +Ġbur ied +Ġsix th +B en +ress ing +OU R +Ġw ound +Ġcy cl +Ġmechan isms +Ġcongress ional +ĠE lement +Ġagre ements +Ġdec or +Ġclos est +ĠM it +Go ogle +} } +Ġm ixture +Ġflu id +S ign +ĠSch olar +Ġp ist +ask et +ab ling +Ġrac ing +he ro +ri el +ass y +Ġche aper +b en +Ġvert ical +amac are +ĠRead ing +g ments +Ġhelic op +Ġsacr ifice +ay a +p aren +V A +ĠL es +ĠStud io +Ġviol ations +ĠAn na +ac er +é ¾ +ĠR at +ĠBe ck +ĠD ick +ĠA CT +Ġcomp osition +Ġtext ure +ĠO wn +Ġsmart phone +ĠN A +Ġfor b +im port +Ġdef ending +il st +re r +Ġo h +ĠJere my +Ġbank ing +cept ions +Ġrespect ive +/ . +Ġdr inks +ĠW i +Ġb ands +ĠL iverpool +Ġg rip +ĠB uy +Ġopen ly +Ġreview ed +per t +Ġver ify +ĠCo le +ĠW ales +M O +Ġun pre +Ġshel ter +ĠIm perial +Ġgu i +ĠD ak +Ġsuggest ions +Ġexplicit ly +Ġsl ave +Ġblock chain +Ġcompet ing +Ġprom ising +S ON +Ġsoc cer +Ġconst itution +4 29 +Ġdist ract +ĠU ser +es ides +ĠMet hod +ĠTok yo +Ġaccompan ied +Cl ient +s ur +al og +Ġident ification +Ġinv asion +as ma +Ġindust ries +pp ers +Ġsub tle +ĠUn it +n atural +Ġsurv ived +Ġfl aw +ĺ ħ +ĠH oll +Ġdef icit +Ġtut orial +ĠCh ance +Ġarg uing +Ġcontem porary +Ġinteg ration +for ward +Ġt um +it is +Ġh iding +ĠD omin +ĠT an +ĠB uilding +ĠV in +Ġspokes person +ĠNot es +Ġemer ging +Ġprepar ation +Ġpro st +Ġsuspect s +Ġaut onom +D escription +Ġdeal t +ĠP ear +Ġstead y +Ġdecre ased +Ġso vere +ĠCl in +Ġgrad ually +ors es +ĠW AR +S erv +ãĤ ¢ +h r +Ġd irty +ĠB arn +ĠB C +Ġd il +Ġcal endar +Ġcompl iance +Ġch amber +b b +Ġpass enger +ate ful +ĠT itle +ĠSyd ney +ĠG ot +Ġdark ness +Ġdef ect +Ġpack ed +ass ion +Ġgod s +Ġh arsh +IC K +le ans +Ġalgorith m +Ġoxy gen +Ġvis its +Ġbl ade +Ġkil omet +ĠKent ucky +Ġkill er +P ack +enn y +Ġdiv ine +Ġnom ination +be ing +Ġeng ines +Ġc ats +Ġbuff er +ĠPh ill +Ġtra ff +AG E +Ġtong ue +Ġrad iation +ere r +m em +ĠExpl icit +é¾ į +Ġcou ples +Ġphys ics +ĠMc K +Ġpolit ically +aw ks +ĠBl oom +Ġwor ship +e ger +ut er +ĠF O +Ġmat hemat +Ġsent enced +Ġdis k +ĠM arg +Ġ/ * +P I +Ġoption al +Ġbab ies +Ġse eds +ĠScott ish +Ġth y +] ] +ĠHit ler +P H +ng th +Ġrec overed +ing e +Ġpow der +Ġl ips +Ġdesign er +Ġdis orders +Ġcour age +Ġch aos +" },{" +Ġcar rier +b ably +H igh +ĠR T +es ity +l en +Ġrout es +u ating +F il +N OT +w all +s burgh +Ġeng aging +ĠJava Script +ore r +li hood +Ġun ions +ĠF ederation +ĠTes la +Ġcomple tion +ĠT a +Ġprivile ge +ĠOr ange +Ġne ur +paren cy +Ġb ones +Ġtit led +Ġprosecut ors +ĠM E +Ġengine er +ĠUn iverse +ĠH ig +n ie +o ard +Ġheart s +ĠG re +uss ion +Ġmin istry +Ġpen et +ĠN ut +ĠO w +ĠX P +in stein +Ġbul k +S ystem +ic ism +ĠMarket able +Ġpre val +Ġpost er +Ġatt ending +ur able +Ġlicens ed +ĠG h +et ry +ĠTrad able +Ġbl ast +à ¤ +ĠTit an +ell ed +d ie +H ave +ĠFl ame +Ġprof ound +Ġparticip ating +Ġan ime +ĠE ss +Ġspec ify +Ġregard ed +ĠSpe ll +Ġs ons +own ed +Ġm erc +Ġexper imental +land o +h s +ĠDun geon +in os +Ġcomp ly +ĠSystem s +ar th +Ġse ized +l ocal +ĠGirl s +ud o +on ed +ĠF le +Ġconstruct ed +Ġhost ed +Ġsc ared +act ic +ĠIs lands +ĠM ORE +Ġbl ess +Ġblock ing +Ġch ips +Ġev ac +P s +Ġcorpor ation +Ġo x +Ġlight ing +Ġneighb ors +ĠU b +ar o +Ġbe ef +ĠU ber +F acebook +ar med +it ate +ĠR ating +ĠQu ick +Ġoccup ied +Ġaim s +ĠAdd itionally +ĠInt erest +Ġdram atically +Ġhe al +Ġpain ting +Ġengine ers +M M +ĠM ust +Ġquant ity +P aul +Ġearn ings +ĠPost s +st ra +ãĥ¼ ãĥ +Ġst ance +Ġdro pping +sc ript +Ġd ressed +M ake +Ġjust ify +ĠL td +Ġprompt ed +Ġscr ut +Ġspeed s +ĠGi ants +om er +ĠEd itor +Ġdescrib ing +ĠL ie +ment ed +Ġnow here +oc aly +Ġinst ruction +fort able +Ġent ities +Ġc m +ĠN atural +Ġinqu iry +Ġpress ed +iz ont +for ced +Ġra ises +ĠNet flix +ĠS ide +Ġout er +Ġamong st +im s +ows ki +Ġclim b +ne ver +Ġcomb ine +d ing +Ġcomp r +Ġsignific ance +Ġremem bered +ĠNev ada +ĠT el +ĠSc ar +ĠWar riors +ĠJ ane +Ġcou p +b as +Ġtermin al +, - +O H +Ġt ension +Ġw ings +ĠMy ster +�� �� +ĠUn like +val id +viron ments +ĠAl i +Ġn aked +book s +ĠM un +ĠG ulf +Ġd ensity +Ġdim in +Ġdesper ate +Ġpres idency +Ġ198 6 +h y +IN D +Ġun lock +im ens +Ġhand led +ĠE b +Ġdisapp eared +Ġgen re +Ġ198 8 +Ġdetermin ation +St ream +ik o +ap ters +Ġacknow ledge +J an +Ġcapital ism +P at +Ġ20 20 +Ġpain ful +Ġcur ve +Ġbom bs +st orm +ĠMet al +en cer +ĠF ig +ĠA aron +anc hes +Ġins piration +Ġexha ust +t ains +ash i +Ġdesc ript +Ġr itual +ĠChel sea +Ġpromot ion +ĠH ung +ĠW ard +iv a +ĠE T +Ġto ss +all ow +ĠFranc is +D ep +Ġhapp iness +ĠGl ass +Ġbet a +Ġstreng then +N E +o a +Ġbutt ons +ĠMur ray +Ġkick ed +Qu est +ĠT alk +ĠS everal +ĠZ ero +Ġdr one +ul k +Ġc am +ĠM obile +Ġprevent ing +Ġret ro +ĠA x +Ġcru el +Ġflo at +. ), +Ġfil ing +ĠGr ant +ĠB or +Ġr ib +Ġchampions hip +ĠM erc +Ġsty les +Ġc ake +Ġbuild s +ĠS elf +io x +Ġep ic +oy d +B el +ĠSt ew +. ( +ah u +ĠBe yond +Ġout s +Ġsol o +ĠT ree +Ġpres erve +Ġt ub +AR E +ro c +ĠIm pro +ĠW right +Ġbu nd +Ġtr aged +Ġoccas ional +b ian +Sec ond +r ons +Ġinter actions +form ed +s ing +Ġown s +Ġh ockey +Gener al +Ġlog ical +Ġexp end +Ġesc al +ĠGr iff +ĠC rown +ĠRes erve +Ġsto pping +Ġexc use +sec ond +Ġoper ated +Ġre aches +ĠMal ays +Ġpoll ution +ĠBrook lyn +Ġde lete +Ġhas h +Bl ock +ah a +âĢ ³ +Ġsh orter +p iece +> >> +ĠM ormon +t or +Ġpartic les +ĠB art +ry ption +Ġad min +Ġsqu ee +VID IA +Ġcreat or +iam eter +ic ular +N BC +Ġgrab bed +Ġn odd +Ġr ated +Ġrot ation +Ġgr asp +Ġexcess ive +ĠE C +ĠWh it +Ġinvent ory +ault s +ĠF B +Ġe cosystem +Ġbill ions +Ġvent ure +n amed +Ġdef ender +out e +Inst ead +ir able +W ar +Ġassum ption +Ġb ite +Ġearth qu +t ail +sp ace +Ġgif ts +boy s +Ġinev itable +Ġstruct ural +Ġbenef icial +Ġcompe lling +h ole +erv ation +Ġco at +o j +inc arn +ĠY ears +Ġdetermin ing +Ġrhet oric +Ġbound aries +Ġwh ites +A nt +add y +) - +ra ham +eter min +Ġhar vest +ĠCon c +Ġlapt op +ĠM atch +Ġenjoy ing +cc a +oll ar +Ġtri ps +Ġadd iction +ĠS ak +Ġpow ered +Ġc ous +ĠRuss ians +ie re +Ġret rie +qu ality +Ġdiff er +Ġking dom +ĠL aur +ĠCap itol +Ġcon clusions +ĠAl tern +ĠN av +Ġtrans parent +B ER +G roup +ĠCom plete +Ġinf er +Ġint rig +Ġins ane +R O +oph ob +is en +qu al +Mich ael +Ġm useum +ĠP ope +Ġres et +r ative +f ive +Ġagg reg +itte es +osit ory +Ġcar b +ĠRec ord +Ġdec ides +ĠF ix +Ġexcept ions +ĠCommission er +un s +ĠEnvironment al +Ġlegend ary +ist ence +Ġtun nel +k m +Ġins ult +Ġt roll +Ġsh ake +Ġdet ention +qu es +ĠCh rome +ĠF iles +Ġsub t +Ġprospect s +Ġpro l +re nder +pro of +Ġperform ances +St r +Ġh ref +ern ame +Ġachieve ment +Ġf ut +F ull +ĠLe ban +go ogle +ãĥ Ī +amp a +May be +Ġproject ed +ĠE mb +Ġcol leg +Ġa wards +Ġâ Ķ +G old +ĠBl ake +ĠR aj +if ting +Ġp ending +Ġinst inct +Ġdevelop ments +Con nect +ĠM and +ĠW ITH +ĠPhilipp ines +prof ile +Ġalt ogether +ĠB und +ĠT D +oo oo +amp ed +ip h +Ġste am +Ġold est +Ġdet ection +ul pt +Ġ ç +ĠWay ne +200 6 +f a +Ġcir cles +ĠF u +Ġdon ors +appropri ate +ĠDak ota +j amin +Ġmotiv ated +Ġpurch ases +ĠLouis iana +ĠS pl +Ġgl obe +Ġ10 5 +z ip +c all +Ġdepart ments +Ġsustain able +10 5 +ĠO P +if iers +Ġprevent ed +Ġinc omp +ĠComm ander +Ġdom inated +Ġ » +Ġinvest ed +Ġcomplex ity +Ġin cl +Ġens uring +Ġreal m +yn c +ĠInd ependent +r ained +ĠJ en +ĠFl ight +Ġat he +Ġspec ulation +ĠT E +oc ate +t ic +Ġpl aint +her ry +Ġto y +Ġ1 11 +Ġpl ates +st atus +ĠIs a +Ġdev oted +C op +ĠE S +25 5 +ur rency +M ain +Ġsl aves +Ġpe pper +Ġqu otes +Ġce iling +ĠF ish +Ġtrans formation +Ġfra ction +Ġadvant ages +Ġto ile +Ġstun ning +Ġmo ist +bre aking +s i +ĠL ocation +ĠMed ium +Ġtext s +Ġu gly +Ġb io +. âĢĶ +ĠB ased +Ġtr ains +ĠW ing +ĠAn cient +ĠRec ords +ĠH ope +Spe cial +ades h +ob i +[ / +Ġtempor arily +V er +h u +os er +Ġover night +Ġm amm +ĠTre asury +ĠV enezuel +ĠMeg a +Ġt ar +Ġexpect s +bl ack +or ph +\\ \\ +Ġaccept ance +Ġrad ar +s is +Ġjun ior +Ġfram es +Ġobserv ation +ac ies +P ower +ĠAdv anced +M ag +olog ically +ĠMe chan +Ġsent ences +Ġanaly sts +augh ters +force ment +Ġv ague +Ġcl ause +Ġdirect ors +Ġeval uate +Ġcabin et +M att +ĠClass ic +A ng +Ġcl er +ĠB uck +Ġresear cher +Ġ16 0 +Ġpoor ly +Ġexperien cing +ĠP ed +ĠMan hattan +Ġfre ed +Ġthem es +ad vant +Ġn in +Ġpra ise +10 4 +ĠLib ya +b est +Ġtrust ed +Ġce ase +Ġd ign +D irect +Ġbomb ing +Ġm igration +ĠSci ences +Ġmunicip al +ĠA verage +Ġgl ory +Ġreve aling +Ġare na +Ġuncertain ty +Ġbattle field +ia o +G od +Ġc inem +ra pe +el le +ap ons +Ġlist ing +Ġwa ited +Ġsp otted +ke ley +ĠAud io +e or +ard ing +idd ing +ig ma +ĠN eg +Ġl one +Ġ ---- +ex e +d eg +Ġtrans f +Ġwas h +Ġsl avery +Ġexpl oring +ĠW W +ats on +Ġen cl +l ies +ĠC reek +Ġwood en +Man ager +ĠBr and +um my +ĠAr thur +Ġbureau cr +Ġbl end +ar ians +F urther +Ġsupposed ly +Ġwind s +Ġ19 79 +Ġgrav ity +Ġanalys es +ĠTra vel +ĠV eter +Ġd umb +Ġaltern ate +g al +Ġconsum ed +Ġeffect iveness +.' ' +Ġpath s +ond a +L A +ĠStr ong +Ġen ables +Ġesc aped +Ġ" " +Ġ1 12 +Ġ198 3 +Ġsm iled +Ġtend ency +F ire +Ġp ars +ĠR oc +Ġl ake +Ġf itness +ĠA th +ĠH orn +Ġh ier +Ġimp ose +m other +Ġp ension +ic ut +bor ne +ic iary +. _ +ĠS U +Ġpol ar +is y +eng u +itial ized +AT A +w rite +Ġexerc ises +ĠD iamond +ot ypes +Ġharm ful +on z +Ġprint ing +st ory +Ġexpert ise +ĠG er +Ġtraged y +ĠF ly +Ġd ivid +amp ire +st ock +M em +Ġre ign +Ġun ve +Ġam end +ĠProp het +Ġmut ual +ĠF ac +Ġrepl acing +H ar +ĠCirc uit +Ġthro at +ĠSh ot +Ġbatter ies +Ġto ll +Ġaddress ing +ĠMedic aid +Ġp upp +ĠN ar +ol k +Ġequ ity +M R +ĠHis pan +ĠL arge +m id +D ev +Ġexp ed +Ġdem o +ĠMarsh all +erg us +Ġf iber +Ġdiv orce +ĠCre ate +Ġsl ower +ĠPark er +ĠStud ent +ĠTr aining +Ret urn +ĠT ru +Ġc ub +ĠRe ached +Ġpan ic +Ġqu arters +Ġre ct +Ġtreat ing +Ġr ats +ĠChristian ity +ol er +Ġsac red +Ġdecl are +ul ative +et ing +Ġdeliver ing +est one +Ġt el +ĠL arry +Ġmet a +ac cept +art z +ĠRog er +hand ed +Ġhead er +Ġtra pped +ĠCent ury +Ġkn ocked +ĠOx ford +Ġsurviv ors +b ot +Ġdemon stration +Ġd irt +Ġass ists +OM E +ĠD raft +ortun ate +fol io +pe red +ust ers +g t +ĠL ock +Ġjud icial +ver ted +Ġsec ured +out ing +ĠBook s +Ġhost ing +Ġlif ted +l ength +Ġj er +Ġwhe els +ĠR ange +umbn ails +Ġdiagn osis +te ch +ĠStew art +ĠP ract +Ġnation wide +Ġde ar +Ġoblig ations +Ġgrow s +Ġmand atory +Ġsusp icious +! ' +A pr +G reat +Ġmort gage +Ġprosecut or +Ġeditor ial +ĠK r +Ġprocess ed +ung le +Ġflex ibility +Ear lier +ĠC art +ĠS ug +Ġfoc uses +Ġstart up +Ġbre ach +ĠT ob +cy cle +ãĢ Į +ro se +Ġb izarre +ãĢ į +Ġveget ables +$ $ +Ġret reat +osh i +ĠSh op +ĠG round +ĠSt op +ĠHawai i +ĠA y +Per haps +ĠBe aut +uff er +enn a +Ġproduct ivity +F ixed +cont rol +Ġabs ent +ĠCamp aign +G reen +Ġident ifying +Ġreg ret +Ġpromot ed +ĠSe ven +Ġer u +ne ath +aug hed +ĠP in +ĠL iving +C ost +om atic +me ga +ĠN ig +oc y +Ġin box +Ġem pire +Ġhor izont +Ġbr anches +Ġmet aph +Act ive +ed i +ĠFil m +ĠS omething +Ġmod s +inc ial +ĠOrig inal +G en +Ġspir its +Ġear ning +H ist +Ġr iders +Ġsacr ific +M T +ĠV A +ĠS alt +Ġoccup ation +ĠM i +Ġdis g +lic t +Ġn it +Ġn odes +e em +ĠP ier +Ġhat red +ps y +ãĥ ī +Ġthe ater +Ġsophistic ated +Ġdef ended +Ġbes ides +Ġthorough ly +ĠMedic are +Ġbl amed +arent ly +Ġcry ing +F OR +pri v +Ġsing ing +ĠI l +Ġc ute +o ided +olit ical +ĠNe uro +å ¤ +Ġdon ation +ĠEag les +ĠG ive +T om +Ġsubstant ially +ĠLic ense +ĠJ a +Ġg rey +ĠAn imal +ĠE R +ĠU nd +Ġke en +Ġconclud e +ĠMississ ippi +Eng ine +ĠStud ios +P ress +o vers +ll ers +Ġ3 50 +ĠR angers +Ġr ou +ert o +E p +iss a +iv an +Ġse al +ĠReg ist +dis play +Ġwe aken +u um +ĠComm ons +ĠS ay +Ġcult ures +Ġl aughed +Ġsl ip +Ġtreat ments +iz able +m art +ĠR ice +Ġbe ast +Ġob esity +ĠLa ure +ig a +Wh ich +hold er +Ġelder ly +Ġp ays +Ġcompl ained +Ġc rop +Ġpro c +Ġexplos ive +ĠF an +ĠAr senal +A uthor +ef ul +Ġme als +Ġ( - +id ays +Ġimag ination +Ġann ually +Ġm s +as ures +H ead +ik h +m atic +Ġboy friend +ĠCom puter +Ġb ump +Ġsur ge +ĠCra ig +ĠKir k +D el +medi ate +Ġscen arios +ĠM ut +ĠSt ream +Ġcompet itors +Ù Ħ +ĠStan ford +ĠRes ources +az ed +b age +Ġorgan is +ĠRe lease +Ġsepar ately +Ġha bits +Ġmeasure ments +ĠCl ose +Ġaccomp any +Ġg ly +Ġt ang +ĠR ou +Ġplug in +Ġcon vey +ĠChall enge +oot s +j an +Ġcur s +ĠRel ations +ke eper +Ġapproach ing +p ing +Spe aking +Ġarrang ement +ĠV I +are ttes +Ġaffect ing +Ġperm its +b ecause +Ġu seless +ĠH us +!! !! +Ġdestro ying +Un fortunately +Ġfasc inating +S em +Ġelect oral +Ġtrans parency +ĠCh aos +Ġvolunte er +Ġstatist ical +Ġactiv ated +ro x +We b +H E +ĠHamp shire +is ive +M ap +Ġtr ash +ĠLaw rence +st ick +C r +Ġr ings +EX T +Ġoper ational +op es +D oes +ĠEv ans +Ġwitness ed +P ort +Ġlaunch ing +ec onom +w ear +ĠPart icip +um m +cul es +ĠR AM +ĠT un +Ġass ured +Ġb inary +Ġbet ray +Ġexpl oration +ĠF el +Ġad mission +it ated +S y +Ġav oided +ĠSim ulator +Ġcelebr ated +ĠElect ric +¥ ŀ +Ġcl uster +itzer land +he alth +L ine +ĠN ash +at on +Ġsp are +Ġenter prise +ĠD IS +clud es +Ġfl ights +Ġreg ards +ĠÃ Ĺ +h alf +Ġtr ucks +Ġcontact s +Ġunc ons +ĠCl imate +Ġimm ense +N EW +oc c +ect ive +Ġemb od +Ġpat rol +Ġbes ide +Ġv iable +Ġcre ep +Ġtrig gered +ver ning +Ġcompar able +q l +Ġg aining +ass es +Ġ( ); +ĠG rey +ĠM LS +s ized +Ġpros per +" ? +Ġpoll ing +Ġsh ar +ĠR C +Ġfire arm +or ient +Ġf ence +Ġvari ations +g iving +ĠP i +osp el +Ġpled ge +Ġc ure +Ġsp y +Ġviol ated +Ġr ushed +Ġstro ke +ĠBl og +sel s +ĠE c +,' ' +Ġp ale +ĠColl ins +ter ror +ĠCanad ians +Ġt une +Ġlabor atory +Ġn ons +t arian +Ġdis ability +ĠG am +Ġsing er +al g +ĠSen ior +Ġtrad ed +ĠWar rior +Ġinf ring +ĠFrank lin +Ġstr ain +ĠSwed ish +Ġsevent h +ĠB enn +ĠT ell +Ġsynd rome +Ġwond ered +id en +++ ++ +ig o +Ġpur ple +Ġjournal ism +Ġreb el +Ġf u +bl og +Ġinv ite +ren cies +ĠCont act +Is rael +ĠCont ent +Ġche er +Ġbed room +ĠEngine ering +ĠQue ens +Ġd well +ĠPlay Station +ĠD im +ĠCol on +l r +Ġoper ates +Ġmotiv ation +US A +ast ered +C ore +ĠTr uth +ol o +OS E +ĠMem ory +Ġpred ec +Ġan arch +Ġ19 20 +ĠY am +à ¨ +b id +Ġgr ateful +Ġexc itement +Ġtre asure +Ġlong est +ct ive +Ġdes erves +Ġreserv es +Ġcop s +ĠOtt awa +ĠEgypt ian +ank ed +Ġart if +Ġhypot hesis +: / +Ġpurch asing +Ġlove ly +H P +Ġdiv ide +Ġstrict ly +Ġquestion ing +Ġtaxp ayers +ĠJ oy +Ġroll s +ĠHe avy +Ġp orts +Ġmag netic +Ġinf lamm +Ġbr ush +t ics +â ĪĴ +Ġbott les +pp y +Ġp add +ãĤ ¯ +m illion +Ġdevast ating +Ġcomp iled +Ġmed ication +Ġtw elve +ĠPer ry +Sp ace +im b +y our +Ġle aked +ĠT ar +Ġun ity +Ġinfect ed +Ġtravel ed +ID E +ĠMc Donald +t xt +ĠPr inc +Ġinter ven +ĠTai wan +ĠP ow +Ġbe aring +ĠTh read +Ġz ones +iz ards +un ks +Ch apter +ll or +Ġ · +Ġw ounds +Ġdisc retion +Ġsucceed ed +ik ing +Ġicon ic +C all +Ġscreen ing +ĠM is +ict s +Ġmin isters +Ġsepar ation +Pl ayer +Ġb ip +Ġbel oved +Ġcount ing +ĠE ye +ar ound +ing ing +Ġtable t +Ġoff ence +in ance +h ave +ĠInf o +ĠNin ja +Ġprotect ive +ĠC ass +M ac +ĠQual ity +N orth +Ġ ic +ĠCub a +ĠChron icle +ĠPro perty +Ġfast est +ot os +ĠG erm +OW N +Ġbo om +ĠStan ley +ergus on +Ġcle ver +Ġent ers +m ode +ter ior +ĠS ens +Ġlin ear +AR K +Ġcomp aring +Ġpure ly +Ġsaf er +ĠPot ter +Ġc ups +R T +Ġgl uc +Ġatt ributed +Ġdu pl +ĠP ap +Ġprec ious +Ġp a +iction ary +ĠT ig +ĠTo o +ol utions +st an +Ġrob ots +Ġlob b +Ġstat ute +Ġprevent ion +w estern +16 0 +ĠAct ive +ĠMar ia +h al +N one +ell ar +ĠK B +ĠPart ners +ĠSing le +ĠFollow ing +ang o +ac ious +Ġth ou +Ġk g +Ġinflu ential +ĠFriend s +S ur +ain ted +Ġfor ums +Ġst arter +Ġcitizens hip +ĠE lection +on ge +ot ation +os ph +;; ;; +ut ical +p ur +ere n +Ġaccus ations +bit ious +ab bit +ĠOr d +Post ed +ir k +Ġsens itivity +ic he +ĠAm y +ĠF ab +Ġsum mit +Ġped est +Ġrub ber +Ġagric ultural +Ġcan cel +A E +Ġin aug +Ġcont am +Ġfirm ly +i w +st age +ĠK an +Ġt ier +Ġinv ention +Ġtransl ated +ĠR ules +B ox +Tw itter +ID S +Ġp izza +Ġdeb ug +ĠD rop +v s +Ġh orses +b ig +Ġb oring +Ġh ood +ĠMcC ain +at ched +ĠBro s +Ġsk ip +Ġess ay +st at +ĠLeg ends +Ġam munition +au c +Ġshoot er +Ġun h +Ġsuppl ied +Ġgener ic +ĠS K +ib an +yr ics +Ġ25 5 +Ġclim bing +Form er +Ġfl ip +Ġjump ing +Ġfrust ration +ĠTer ry +Ġneighborhood s +Ġmed ian +be an +Ġbr ains +Follow ing +Ġsh aped +Ġdraw s +Ġal tered +J ack +Ġrecip es +Ġsk illed +we alth +ach i +e lection +Ġbehavi ors +de als +ĠU ntil +F e +Ġdecl aration +mar ks +ĠBet ween +cel ona +Ġres on +Ġbub ble +Am ong +Ġim perial +G S +Ġfemin ist +200 5 +ĠK yle +Ġaccount ing +ĠTe le +ĠT yr +Ġconnect ing +Ġre hab +ĠP red +s im +Ġmeant ime +Ġphys ician +M W +ĠCamp bell +ĠBr andon +Ġcontribut ing +ĠR ule +ĠWe ight +ĠN ap +Ġinter active +Ġv ag +Ġhel met +ĠCom b +f our +Ġsh ipped +Ġcomple ting +ĠP D +PD ATE +Ġspread ing +Ġsc ary +erv ing +ĠG as +Ġfr ank +s chool +Ġrom antic +Ġstab il +R ob +Ġaccur ately +Ġac ute +ĠH ann +Ġsymbol s +Ġcivil ization +ĠA W +Ġlight ning +Ġcons iders +Ġven ue +Ġ × +Ġo ven +ĠS F +h is +Ġn u +ĠLear n +Ġpe oples +Ġst d +Ġsle e +Ġs lic +ĠStat istics +Ġcor ners +ĠB aker +Ġ: ) +ment ation +ol ver +Ġlaugh ing +ĠT odd +ond e +ĠH ills +Ġn uts +ĠW oman +pl ane +Ġl iver +ĠIn side +S orry +Ġagre es +Ġfund ament +ĠF isher +Ġa uction +Ġthread s +gl as +ĠBas ic +ĠN at +Ġlack ing +Ġceleb ration +j u +Ġs illy +E uro +Ġt att +ight y +cont rolled +T est +ĠSing h +Ġr age +Ġrh yth +o ffic +ĠPh antom +Ġhead lines +Ġrespond ing +ĠMor ning +Ġvit amin +Ġboot s +ĠS ite +al in +p i +Ġvir al +ĠU C +D ER +ĠSe x +Ġst ocks +c urrent +Ġch urches +ĠR are +ĠMur phy +Ġden ial +ĠG aming +Ġtou g +Ġn ick +Ġm akers +ĠRon ald +Ġgener ous +ĠD oc +ĠMor ris +Ġtransform ed +ĠN ormal +Ġ10 4 +ĠKick starter +ĠUp on +On line +ĠI RS +Ġw rap +Ġl oving +Ġarri ves +ĠD ue +Ġhe ter +ĠM ade +Ġrent al +Ġbelong s +Ġatt orneys +Ġcro ps +Ġmat ched +ul um +ol ine +10 9 +Ġdis par +Ġbuy ers +ĠCam bridge +Ġeth ics +rou ps +Ġjust ified +Ġmarg inal +Ġrespect ed +win ning +Ġnodd ed +ĠSer ge +ĠForm er +C raft +######## ######## +ĠWar ner +Ġd ash +et e +Ġent ert +ĠE scape +out heast +Ġkn ees +ĠB omb +Ġr ug +P ass +Ġatt itudes +go vernment +ĠPri or +Ġqual ities +Ġnot ification +ĠPh one +l ie +Ġanticip ated +ĠCom bat +ĠBar ry +Ġ198 2 +Us ers +on er +Ġcomput ing +ĠConnect icut +Ġless er +Ġpe ers +ĠC u +Ġtechn ically +Ġsub mission +ĠUn iversal +Ġman ually +our ge +Ġrespond ents +ĠB TC +ĠH ost +Ġf are +ĠB ird +Ġrece ipt +al so +Ġj ack +Ġagric ulture +Ġsk ull +Ġ! = +Ġpass ive +ĠC I +Ġsoc ieties +Ġremind ed +Ġinter ference +B uy +Ġâ ľ +g on +Ġscrut iny +ĠW itch +Ġconduct ing +Ġ ãĥ +Ġexch anges +ĠMit chell +Ġinhab it +Ġtw ist +B D +Ġwhere ver +group on +Ġj okes +ĠBen jamin +ĠR andom +fr ame +ĠL ions +Ġhighlight ed +ĠArk ansas +E nt +Ġp ile +Ġpre lim +g s +mind ed +Ġfel ony +ĠG A +ĠL uck +Ġpract ically +ĠB os +Ġact ress +D am +ĠB ou +Ġvis a +Ġembed ded +Ġhy brid +Ġear liest +Ġsoon er +s ocial +ĠH A +Ġste ep +Ġdis advant +Ġexplo it +ĠE gg +ĠUlt ra +Ġnecess ity +L ocal +ie ge +Ġd ated +Ġmass es +Ġsubsc ription +pl ess +Ġan onym +Ġpresum ably +Bl ue +The ir +asket ball +ĠPhil ip +Ġcom ed +load ed +r ane +Ġref lection +Ch ina +Ġext ends +Ġform ing +Ġund ers +200 1 +Ġgr at +Ġconcent rations +Ġins ulin +Ġsec ular +Ġwh ilst +Ġwin ners +Ad vertisements +Ġdeliber ately +ĠWork ing +Ġs ink +et ics +d ale +Ġmand ate +Ġg ram +Ġvac ation +Ġwarn ings +ri pp +ĠTH AT +Ġcomment ary +Ġint u +Ġa est +Ġreason ing +Ġbreak down +ĠZ ombie +Ġ-- > +ĠPolit ical +c ott +Ġthr ust +Ġtechn ological +Ġdec iding +Ġtraff icking +L ong +W elcome +pr ising +ĠCommun ications +Ġend ors +Ġsw ift +Ġmetab ol +co ins +res a +ĠHT TP +Ġen roll +ĠH appy +us r +int age +Ġ[ " +u ably +ĠM aterial +Ġrepe al +Se pt +k h +ĠMod i +Ġunder neath +ĠI L +sh ore +Ġdiagn osed +ace utical +Ġsh ower +au x +ĠSw itch +ĠStre ngth +Ġj ihad +n ational +Ġtra uma +uss y +on i +Ġcons olid +Ġcal ories +ĠF lynn +ag ged +16 8 +ĠP ink +Ġfulf ill +Ġch ains +Ġnot ably +ĠA V +L ife +ĠCh uck +m us +ĠUr ban +ĠH end +Ġdep osit +ĠS ad +Ġaff air +OR K +ie val +ĠF DA +Ġt rop +ĠOver all +Ġvirt ue +Ġsatisf action +au nd +Ġl un +ĠSw itzerland +ĠOper ation +pro cess +Ġsh ook +Ġcount ies +le ased +ĠCharl otte +1 12 +Ġtrans cript +Ġre dd +p ush +ĠHe y +ĠAn alysis +[ " +Ġaltern atives +ard less +Ġele ph +Ġpre jud +ĠLe af +H aving +ĠH ub +Ġexpress ions +ĠVol ume +Ġshock ing +ĠRed s +Ġread ily +Ġplan ets +ad ata +Ġcollaps ed +ĠMad rid +Ġir rit +i pper +ĠEn c +ĠW ire +Ġbu zz +ĠG P +ash a +Ġaccident ally +ur u +Ġfrust rated +ĠS A +Ġhung ry +ĠH uff +Ġlab els +ant o +ĠE P +Ġbar riers +) | +ĠBer keley +ĠJ ets +Ġp airs +ĠL an +J ames +ĠB ear +Ġhum or +ĠLiber ty +Ġmagn itude +Ġag ing +ĠM ason +Ġfriends hip +umb ling +Ġemer ge +Ġnewsp apers +Ġam bitious +ĠRich ards +atern al +Ġ198 1 +Ġcook ies +Ġsc ulpt +Ġpur suit +L ocation +Ġscript s +p c +Ġarrang ements +Ġd iameter +Ġl oses +am ation +Ġl iqu +ĠJ ake +aret te +Ġunderstand s +ĠZ en +v m +Ġappro ve +Ġw ip +Ġult ra +Ġint end +ĠD I +asc ular +Ġst ays +ĠK or +ĠK l +Ġinvest ing +L a +Ġbelie ving +b ad +m outh +Ġtaxp ayer +ãĥ ĥ +ĠQue bec +Ġl ap +ĠSw iss +d rop +Ġdr ain +ir i +et c +ft en +ĠN ex +Ġst raw +Ġscream ing +Ġcount ed +Ġdam aging +Ġamb assador +cent ury +Ġpro x +Ġarrest s +u v +il ateral +ĠCh arg +Ġpresc ribed +Ġindepend ently +Ġf ierce +ĠB aby +Ġb rave +Ġsu its += > +Ġbas eline +ĠR ate +Ġis lands +Ġ( ( +g reen +ix els +Ġname ly +ĠVill age +th an +am y +V ersion +g mail +ential s +ĠS ud +ĠMel bourne +Ġarri ving +Ġquant um +e ff +rop olitan +T ri +Ġfun eral +ĠI R +ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ +ĠC ob +it ably +Ġt urb +Ġcomb o +Re view +Ġdeploy ment +u ity +ĠB ott +Ġinv isible +Ġrender ing +Ġunl ocked +Ġa qu +ĠVlad imir +Ġp ad +ĠBr ain +ĠLeg acy +dr agon +ĠKurd ish +Ġsound ed +Ġdet ained +ĠD M +g ary +Ġd aughters +Ġdistur bing +uk a +ĠPar ad +Ġt ast +Ġunf ortunate +Ġu l +em in +Ġattend ance +tr l +Ġpar ks +ĠMem orial +ĠAl ice +oth y +gu ard +ĠD ise +ĠSh an +ĠFor um +R ich +Ġshif ted +ue z +Ġl ighter +ĠMag n +Ġc od +S ch +ham mad +P ub +3 50 +ĠP okemon +Ġprot otype +Ġun re +B ase +ĠStud ents +ĠRep ly +ĠCommun ist +Ġg au +ĠTy ler +I Z +Ġparticip ated +Ġsup rem +ĠDet ails +Ġvessel s +ro d +Ġt ribe +ke ep +Ġassum ptions +Ġp ound +Ġcr ude +ĠAv ailable +Ġswim ming +Ġin clusion +Ġadv ances +c ulation +Ġconserv ation +Ġover d +ĠBuff alo +Art icle +ed ge +Ġaw a +ĠMad ison +Ġsid ew +Ġcat ast +ĠK rist +uc le +ĠHigh way +ĠTer ror +Ġactiv ation +Ġuncons cious +ĠSat an +ĠSus an +ill ery +Ġarr anged +i op +Ġrum ors +ur ring +th ink +ĠKe ith +ĠK ind +Ġavoid ing +by n +n ut +ĠSpe aker +r us +n ames +Ġgu ilt +ĠOlymp ics +Ġsa il +ĠM es +lev ant +ĠColumb us +a ft +C ity +S outh +ĠHar vey +ĠP un +S everal +Ġment ally +Ġimp ress +m ount +ĠUb untu +âĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶ +ĠSuper man +ĠMP s +Ġintent ions +ĠR acing +Ġlike lihood +Ġ2 40 +T otal +Ġto ys +ĠW atson +Ġur ge +L ear +ĠP aper +Ġoccur ring +ĠB eng +ĠC ert +Ġst ones +T im +ĠTw in +z b +ĠD ynam +Ġpolit ician +k ens +ĠEnter prise +UT ERS +Ġab ol +Ġref resh +Ġarbit rary +pe ction +Ġtrou bles +Ġ} ); +t v +Ġpil ots +Ġdist ribute +Ġaud it +Ġp ause +orig inal +Ġr ivals + £ +F ig +T L +ab il +ry ing +L in +ion ed +l on +Ġf ancy +Ġcr ashed +Ġt ract +Ġshe d +Ġcons ume +B ased +down load +in it +Ġvolt age +Int rodu +Ġcondem ned +ĠFin ance +res pect +Ġex cluded +Ġestablish ing +her ic +Ġher itage +Ġspect acular +Ġun st +ĠSnow den +ĠL ane +S an +Ġprotect ions +st ruction +inc inn +Ġmac ro +C ustom +ios ity +Ġes p +Ġfunction ing +Ġm ush +Ġp uzzle +Ġeth ical +M al +Ġgo verning +ĠF erguson +Ġrest ored +Ġst ressed +ĠCoun ter +ĠK as +cl ip +AN S +Ġse iz +U K +by ss +old own +ap i +Ġperman ently +oun ters +W est +Th rough +L ight +at oes +Ġne at +Ġc ord +ure r +Ġsevere ly +ĠA ven +Ġinter rog +Ġtri ple +G iven +N umber +Ġar ise +Ġs her +pl ant +Ġfl ower +ĠC ou +Ġat e +Ġnew er +b ul +Ġmean while +ĠL air +Ġadjust ment +ĠCop yright +Ġd ivers +i ological +Ġgam ers +o at +Ġhistor ically +Ġanal og +Ġlong time +Ġpres cription +ĠM ist +ĠHy per +ĠM aine +ĠDe ity +Ġmulti pl +ĠRe incarn +ĠH yd +ĠP ic +S il +r ants +ĠC ris +. ; +( { +epend ence +Ġrec y +ate ur +Ġqu ad +Ġgl ob +Ġcon ced +te am +Ġcapital ist +ĠL ot +Ġroy al +ĠCy ber +Ġblack s +met ic +ri v +ĠD anny +Ġsp o +ĠR O +Ġanim ated +rypt ed +ĠDep uty +Ġrend ered +F E +Ġstre ak +Ġcloud s +ĠDou g +~~~~ ~~~~ +Ġdisc our +ĠVe h +Ġpsych ology +ĠJ ourney +Ġcry stal +ĠFro st +Ġsuspic ion +Ġrel ate +or us +ĠC rypt +ĠN VIDIA +com ed +ut ing +incinn ati +Ġvulner ability +ost ic +Ġisol ation +Ġcool ing +ĠCoal ition +Ġ1 19 +F our +ĠDe al +Ġâ ī +se mble +ram ent +ĠBar celona +Ġ10 2 +Ġcoc aine +ocaly pse +F eb +ogen ic +Ġmut ation +Ġcrypt oc +ĠK el +ĠG it +a is +Ġs isters +AN K +Ġactiv ate +T er +Ġd read +yl on +Ġprop ri +A ust +ĠDef ault +Ġout door +Ġshe er +ce ive +Ġg ently +Ð ¾ +Pro gram +Ġâ ĨĴ +Ġve gan +ĠCr us +Ġrespons ibilities +ĠH R +OL D +Ġprev ents +Ġst iff +ĠW ere +Ġathlet ic +ĠSc ore +Ġ) : +Ġcolumn s +ĠL oc +av ailable +ĠF ram +ĠS essions +Ġcompan ion +Ġpack s +14 0 +ĠKn ights +Ġf art +Ġstream s +Ġsh ore +Ġapp eals +ĠPer formance +h aul +ĠSt ra +ĠN ag +10 3 +ĠTrans portation +B B +E v +z an +P ublic +Ġtw in +uls ion +M ult +Ġelect ro +Ġstat ue +ation ally +ĠN ort +Ġins pection +/ * +ig ue +Ġcomp assion +ĠT ales +ĠSte in +ĠSc reen +ĠB ug +ĠL ion +g irl +Ġwithdraw al +Ġobject ives +Ġblood y +Ġprelim inary +Ġj acket +Ġdim ensions +ĠC ool +ĠOcc up +Ġw reck +Ġdoub led +ank ing +Ġ19 75 +Ġglass es +ĠW ang +pro v +P ath +connect ed +ĠMult i +ĠNor way +agon ist +Ġfe ared +Ġtouch ing +Ġarg uably +¯¯¯¯ ¯¯¯¯ +ĠNC AA +che m +Ġsp at +ĠW WE +ĠC el +ig ger +Ġattack er +ĠJo in +ob ject +ett a +Ġelim inated +d et +Ġdest ruct +ĠLuc as +ct uary +18 0 +ĠBr ady +ĠBl ues +B ay +au kee +Ġtim eline +Ġdeleg ates +w ritten +uff icient +Ġsh apes +Cop yright +ou ble +serv ice +Ġp ione +Ġcolleg es +Ġrow s +Ġsp ite +Ġassess ed +3 60 +Ġle ase +Ġconfident ial +ck er +ĠMan ning +ĠV oice +Ġse aled +Ġcalcul ate +N O +ĠAss istant +Ġteen ager +ul ent +ather ine +Ġm ock +Ġd iamond +Ġf est +Ġsw itched +Ġres ume +ĠPu erto +Ġl anes +ir ation +ĠSimilar ly +Ġro d +ĠS el +ĠPal ace +ĠLim ited +e ous +Ġvar iant +Ġw ard +Ġ) ) +Sh ow +OO K +A lex +ĠN ep +br is +ĠWik ipedia +Ġexcept ional +Ġman ages +ĠD raw +Ag ain +Ġco pper +ut t +Ġex ports +Ġport folio +Ġelev ated +R ated +ĠOther wise +ĠT act +ĠShe l +ĠT X +" âĢĶ +Ġres ur +ĠW a +ven ant +Ġmon etary +pe ople +E mail +Ġfif ty +ĠS weet +ĠMalays ia +Ġconf using +ĠR io +ud a +uten ant +" ); +Ġpra ised +Ġvol umes +t urn +Ġm ature +Ġnon profit +Ġpassion ate +ĠPriv ate +Ġ10 3 +Ġdesc end +ç ¥ŀ +uff y +head ed +Whe ther +ri en +ze ch +be it +Ġch rom +ĠMc M +Ġd ancing +Ġe leg +ĠNot iced +11 5 +Ġadvoc acy +ENT S +amb ling +ĠMin or +ĠF inn +Ġprior ities +Ġthere of +ĠSt age +ĠRog ers +Ġsubst itute +ĠJ ar +ĠJeff erson +Ġlight ly +10 2 +ĠL isa +u its +ys ical +Ġshif ts +Ġd rones +Ġwork place +Ġres id +ens ed +ah n +Ġpref erences +ser ver +Ġdeb ates +d oc +ĠGod s +Ġhelicop ter +Ġhon our +Ġconsider ably +ed ed +ĠF emale +ĠAn ne +Ġre un +ĠF ace +ĠHall ow +ĠBud get +Ġcondem n +Ġt ender +Pro f +ocr atic +ĠTurn er +ĠAg ric +Ġ19 76 +Ġa pt +d isc +ĠF ighter +ĠA ur +Ġgar bage +in put +ĠK arl +ĠOl iver +ĠL anguage +k n +N on +ĠCl ar +Ġtrad itions +Ġad vertisement +ĠS or +Ġarch ive +Ġvill ages +7 50 +Ġimplement ing +w aukee +Ġdiet ary +Ġswitch ing +Rep ublic +Ġvel ocity +Ġc it +ĠA wards +Ġfin ancing +Ġlast ed +) ] +Ġrem inder +P erson +Ġprec ision +Ġdesign ers +ĠF ried +ĠB order +Ġtr agic +Ġw ield +Ġiniti atives +ĠT ank +w er +Ġjo ins +R o +in ery +Ġar row +Ġgener ating +found er +Ġsear ches +Ġrandom ly +A ccess +Ġb atch +Ġp osed +l at +Ġpursu ing +as a +Ġtest ified +form ing +ĠSh ar +w iki +ĠE ither +S ometimes +Ġsen ators +ĠJohn ny +ĠTal iban +ĠG PS +":" / +ãģ® å +Ġanaly zed +ĠRub io +ĠMove ment +op ard +ii i +St and +f ight +Ġign oring +i ang +ĠG N +so ever +ĠST AT +Ġref using +Ġswe at +Ġb ay +P ORT +ir med +ak y +Ġdis pro +Ġlabel ed +Ġ10 8 +H ello +Ġple asant +ab a +Ġtri umph +Ġab oard +Ġinc om +ĠC row +le tt +Ġfol k +Ġch ase +` ` +ĠBr us +Ġte ens +c ue +Ġter rain +h yd +il ight +OR Y +Su pport +ew s +ll i +rain ts +ĠC and +Ġab used +ach ment +l arg +B as +ĠC ancer +Ġ19 78 +Ġsupp orter +ac cess +ĠTer min +ĠT ampa +ĠAN Y +Ġnew est +ĠCrim inal +ed u +Ġ19 30 +Ġadm its +Ġend e +Ġfail ures +ur ate +ful ness +cy cl +ĠSub ject +Ġinf inite +th ree +W A +p it +ĠInst all +R ad +ili ation +G M +Ġcontin ent +Ġaccommod ate +ĠCl ay +Ġp up +ĠF unction +Ġham mer +ĠAlbert a +Ġrev ised +Ġminor ities +Ġmeasure ment +Con nell +Ġdis able +ĠM ix +In cre +Ġfor k +ĠR osen +Ġimpl ies +umb lr +AN G +Ġprote ins +Ġagg ression +Ġfacilit ate +S N +Ġilleg ally +u er +Ġacad em +Ġp uzz +ĠSh ift +p ay +oll o +Ġaud iences +B uild +Ġno ble +Ġsynt ax +â ĺħ +Ġbe am +ĠB ed +ĠA ld +Ġorig ins +v ideo +Ġ19 77 +ĠAss ault +Ġgar age +Te am +Ġver dict +Ġd war +ĠVirt ual +e vent +Ke ep +Ġsent iment +Ġwild life +sh irt +Ġb urg +Ġrecommend ation +rep resent +Ġgall ery +own ers +Ġsch olar +Ġconven ience +ĠSw ift +Ġconv inc +C ap +Ġwar fare +ĠVis ual +Ġconst itute +Ġab ort +ĠWe ather +ĠLook ing +ĠH em +Ġmart ial +Ġinc oming +et ition +Ġtoler ance +ĠCre ated +Ġfl ows +ĠE lder +Ġsoul s +Ġf oul +ĠP ain +ĠC AN +Ġ2 20 +b c +he nd +Ġgen ius +R eal +ĠW r +omet er +p ad +Ġlim iting +ĠS i +ĠL ore +ĠAd ventures +Ġvar ied +D isc +f in +ĠPerson al +Ch ris +Ġinv ented +Ġd ive +ĠR ise +Ġo z +ĠCom ics +Ġexp ose +ĠRe b +let ters +s ite +im ated +Ġh acking +Ġeduc ated +ĠNob ody +Ġdep ri +Ġincent ive +ãĤ · +Ġovers ight +Ġtrib es +ĠBelg ium +Ġlicens ing +our t +Produ ct +ah l +ĠG em +Ġspecial ist +Ġc ra +ann ers +ĠCor byn +Ġ19 73 +RE AD +Ġsum mar +Ġover look +ĠApp lication +Ġin appropriate +Ġdownload ed +Q ue +ĠB ears +Ġth umb +ĠChar acter +ĠReincarn ated +ĠS id +Ġdemonstr ates +s ky +ĠBloom berg +ĠAr ray +ĠRes ults +ĠFour th +ĠED T +ĠO scar +c end +Ġ10 6 +ĠN ULL +ĠH ERE +m atch +ĠBr un +Ġgluc ose +ie g +eg u +Ġcert ified +Ġrel ie +Ġhuman itarian +Ġpr ayers +K ing +Ġn an +h ou +10 8 +ul u +Ġrenew able +Ġdistingu ish +Ġd ense +ĠV ent +ĠPack age +ĠB oss +Ġedit ors +Ġm igr +T ra +ĠPet ers +ĠAr ctic +200 4 +ĠC ape +Ġloc ally +Ġlast ing +Ġhand y +. ). +P an +ĠR ES +Ind ex +Ġt ensions +Ġformer ly +Ġide ological +Ġsens ors +Ġdeal ers +Ġdef ines +S k +Ġproceed s +Ġpro xy +az ines +ĠB ash +ĠP ad +ĠC raft +eal ous +Ġshe ets +omet ry +J une +cl ock +T T +ĠThe atre +ĠB uzz +Ġch apters +Ġmill enn +Ġd ough +ĠCongress ional +Ġimag ined +av ior +Ġclin ic +Ġ19 45 +Ġhold er +ro ot +oles ter +Ġrest art +B N +ĠHam as +ĠJ ob +Ġor b +Ġr am +Ġdiscl ose +Ġtransl ate +Ġimm igrant +Ġannoy ing +Ġtreat y +an ium +ĠTe a +ĠLeg ion +Ġcrowd s +ĠB ec +ĠA er +oh yd +B ro +Look ing +Ġl bs +Ġagg ress +Ġse am +Ġinter cept +ĠM I +mer cial +act iv +ĠC it +Ġdim ension +Ġconsist ency +Ġr ushing +ĠDou glas +Ġtr im +Inst all +ick er +Ġsh y +10 6 +Ġment ions +pe lled +ĠT ak +c ost +Ġclass room +Ġfort une +dri ven +Ġun le +ĠWhe el +Ġinvest or +ĠM asters +k it +Ġassoci ations +ĠEv olution +op ing +us cript +Ġprov incial +ĠWal ter +av i +S O +Ġun limited +Eng lish +ĠC ards +ĠEb ola +ne red +Ġreven ge +Ġout right +um per +Ġf itting +ĠSol id +Ġform ally +Ġproblem atic +Ġhaz ard +Ġenc ryption +Ġstraight forward +ĠA K +Ġp se +ĠOr b +ĠCh amber +ĠM ak +Cont ents +Ġloyal ty +Ġl yrics +ĠSy m +Ġwel comed +Ġcook ed +Ġmon op +Ġn urse +Ġmis leading +Ġe ternal +Ġshif ting +Ġ+ = +V is +Ġinst itutional +ill ary +Ġp ant +VER T +ĠA CC +ĠEn h +Ġinc on +ĠRE UTERS +Ġdon ated +â̦â̦ â̦â̦ +In tern +Ġexhib it +Ġt ire +ĠR ic +ĠCh ampion +ĠMu hammad +N ING +ĠSoc cer +Ġmob ility +Ġvary ing +ĠM ovie +Ġl ord +o ak +F ield +Ġve ctor +us ions +Ġsc rap +Ġen abling +m ake +T or +. * +| | +ĠWe bsite +ĠN PC +Ġsocial ist +ĠBill y +ĠAdd itional +Ġc argo +Ġfar ms +ĠSo on +ĠPri ze +Ġmid night +Ġ9 00 +se en +ĠSp ot +Ġshe ep +Ġspons ored +ĠH i +ĠJ ump +Ġ19 67 +Micro soft +ĠAg ent +Ġch arts +d ir +Ġadj acent +Ġtr icks +Ġman ga +Ġex agger +/ > +foot ball +ĠF CC +G C +ĠT ier +and ra +OU ND +% ), +Ġfru its +V C +ĠA A +R ober +Ġmid st +â Ĺ +ank a +Ġlegisl ature +ĠNe il +Ġtour ists +" " +ĠWar ning +ĠNever theless +ĠOffic ial +ĠWh atever +Ġm old +Ġdraft ed +Ġsubst ances +Ġbre ed +Ġt ags +ĠT ask +Ġver b +Ġmanufact ured +com ments +ĠPol ish +Pro v +Ġdetermin es +Ob ama +k ers +Ġutter ly +Ġse ct +sc he +ĠG ates +ĠCh ap +Ġal uminum +Ġz ombie +ĠT ouch +ĠU P +Ġsatisf y +Ġpred omin +asc ript +Ġelabor ate +Ġ19 68 +Ġmeas uring +ĠV ari +any ahu +Ġs ir +ul ates +id ges +ick ets +ĠSp encer +T M +oub ted +Ġpre y +Ġinstall ing +ĠC ab +re ed +re ated +Su pp +Ġwr ist +ĠK erry +10 7 +ĠK le +ĠR achel +Ġc otton +ĠA RE +ĠE le +Cont rol +Ġload s +ĠD od +an as +b one +Ġclass ical +ĠReg ional +ĠInt eg +V M +Ġdes ires +Ġaut ism +support ed +ĠM essage +Ġcomp act +writ er +Ġ10 9 +ĠHur ricane +c ision +Ġcy cles +Ġdr ill +Ġcolle ague +Ġm aker +G erman +Ġmist aken +S un +ĠG ay +Ġwhat soever +Ġsell s +ĠA irl +l iv +ĠO ption +Ġsol ved +Ġse ctors +Ġhorizont al +Ġequ ation +ĠSk ill +ĠB io +g ement +ĠSn ap +ĠLeg al +Ġtradem ark +Ġmake up +Ġassemb led +Ġsa ves +ĠHallow een +ĠVer mont +ĠFR OM +Ġfar ming +ĠP odcast +accept able +ĠHig her +Ġas leep +ull ivan +Ġrefere n +ĠLe v +Ġbul lets +ok o +H C +Ġst airs +Ġmain tains +ĠL ower +ĠV i +Ġmar ine +Ġac res +Ġcoordin ator +ĠJ oh +Ġcounterpart s +ĠBrother s +Ġind ict +b ra +Ġch unk +Ġc ents +H ome +ĠMon th +Ġaccording ly +if les +ĠGerm ans +ĠSy n +H ub +Ġey eb +âĶĢâĶĢ âĶĢâĶĢ +Ġr anges +ĠHoll and +ĠRob ot +f c +M ike +Ġpl asma +Ġsw ap +Ġath lete +ĠR ams +,' " +Ġinfect ions +Ġcor rid +Ġv ib +Ġpat ches +Ġtradition ally +Ġrevel ation +Ġswe ep +Ġgl ance +Ġin ex +200 3 +ĠR aw +work ing +os ures +ĠD at +ĠLyn ch +Ġle verage +ĠRe id +Ġcorrel ation +ian ces +av ascript +Ġrep ository +ret ty +Ġ19 72 +24 0 +Ġo un +p ol +ĠRe ed +Ġtact ical +is ite +App le +ĠQu inn +Ġrap ed +ill o +Euro pe +Ġalgorith ms +ĠRod rig +i u +Ġill um +Ġf ame +Ġintrodu cing +Ġdel ays +ĠRaid ers +Ġwh istle +Ġnovel s +ĠRe ally +Ġder iv +Ġpublic ations +ĠNe ither +ĠCom merce +Ġa ston +l anguage +Not es +ĠR oth +ĠF ear +Ġm ate +Ġpar ade +ĠQ B +Ġman eu +ĠC incinnati +m itting +Ġwa ist +ĠR ew +Ġdisc ont +Ð ° +Ġst aring +Ġal ias +Ġsec urities +Ġtoile t +ĠJ edi +Ġun law +v ised +//// //// +] ( +ĠWe iss +Ġpre st +ĠComp an +Ġmem o +ĠGr ace +J uly +ĠEl ite +cent er +ĠSt ay +Ġgal axy +Ġto oth +ĠS ettings +Ġsubject ed +ãĤ ¦ +Ġline back +Ġretail ers +ĠW ant +Ġd angers +A ir +Ġvolunt ary +ew ay +Ġinterpret ed +ot ine +à § +Ġp el +Serv ice +ĠEvent ually +Ġcare ers +Ġthreat en +Ġmem or +ĠBrad ley +anc ies +s n +ĠUn known +N ational +Ġsh adows +ail and +ĠD ash +Every one +izz ard +M arch += ( +Ġpull s +Ġstr anger +Ġback wards +ĠBern ard +imens ional +Ġch ron +Ġtheoret ical +k top +Ġw are +ĠInvest ig +ĠIn iti +ĠOper ations +o ven +oc ide +* / +Ġfl ames +ĠC ash +sh it +Ġc ab +ĠAn aly +ĠSe ah +Ġdefin ing +Ġorder ing +Ġimm un +Ġpers istent +AC H +Russ ian +m ans +Ġh ind +Ġphot ography + © +Ġh ug +Ġ10 7 +ĠH ence +i ots +ude au +Ġsubsid ies +Ġroutine ly +ĠDev ice +it ic +Ġdisg ust +land er +Ġ19 40 +Ġassign ment +ĠB esides +w ick +ĠD ust +us c +struct ed +11 1 +de velop +Ġf ond +Ġinter section +Ġdign ity +Ġcommission er +With out +re ach +Ġcart oon +Ġsc ales +ãĥ Ń +F IG +Ġsurve ys +ĠIndones ia +Ġart work +Ġun ch +Ġcy cling +un ct +au er +or ate +ĠOb viously +Ġcharacter ized +fe ld +Ġaff irm +Ġinn ings +Ġ é +Ġal iens +Ġcl oth +et ooth +ĠC ertain + § +Ġdig est +k now +ĠX L +Ġpredict ions +Ġd in +W AR +Ġafter math +Ex ample +ĠSu ccess +ĠTh r +IG N +Ġmin er +B us +Ġcl arity +heim er +ĠO UT +ĠS end +ĠCirc le +ĠD iet +Ġpron ounced +Ġcreat ors +Ġearthqu ake +atter y +ge ons +Ġo d +Ġlay ing +or p +U lt +pro ject +Ġunder min +Ġsequ el +S am +ĠDark ness +Ġre ception +b ull +Y S +ĠV ir +Ġsequ ences +ĠCo in +Ġout fit +ĠW ait +1 19 +Ġdel ivers +.... .. +Ġbl own +ĠE sc +ĠM ath +per m +ĠU l +Ġgl im +Ġfac ial +Ġgreen house +Ġto kens +/ - +ĠAnn ual +ĠON E +Ġteen age +ĠPhys ical +ĠL ang +ĠC elt +Ġsu ed +ivid ually +Ġpat ience +ch air +reg ular +Ġa ug +in v +ex cept +ĠL il +Ġn est +f d +s um +ĠCh ase +Russ ia +ĠJenn ifer +Ġoff season +Over all +F ore +Ġr iot +A ud +form er +Ġdefend ers +ĠC T +iot ic +rib ly +Ġautom ated +Ġpen is +Ġins ist +Ġdi agram +ĠS QL +ĠG arc +Ġw itch +cl ient +ier ra +am bers +Ġrec ount +f ar +V ery +oster one +Ġappreci ated +ĠPer fect +S ection +Ġd oses +oca ust +Ġcost ly +Ġg rams +ĠSh i +Ġwrest ling +Ġ19 71 +Ġtro phy +Ġn erve +ĠK az +ĠExper ience +Ġpled ged +Ġplay back +Ġcreat ivity +by e +Ġattack ers +Ġhold ers +ĠCo ach +ĠPh D +Ġtransf ers +Ġcol ored +ĠH indu +Ġd rown +Ġlist ened +ĠW A +ias m +P O +Ġappeal ing +Ġdiscl osed +ĠCh icken +ag ging +Ġple aded +Ġnav igation +ĠReturn s +Ġ[ [ +R OR +E A +Ġphotograp her +ĠR ider +ipp ers +Ġsl ice +Ġe rect +Ġhe d +iss ance +ĠVik ings +ur ious +Ġapp et +oubted ly +Ch ild +Ġauthent ic +o os +ĠM aking +Ġannoun cing +Ġb od +Ġmet er +ĠN ine +ĠR ogue +Ġwork force +Ġrenew ed +Ġorganis ations +ac s +P LE +Sh ort +Ġcomp ounds +ĠVis it +Ġen velop +ear th +Ġsupport ive +gg le +ĠBrus sels +ĠGu ild +Cre ate +RE L +Ġaver aged +Ġ19 69 +ri ages +Ġlength y +Ġforg ot +O kay +ĠE rd +Ġdeal er +Ġrec ession +D D +Ġdesper ately +Ġhun ger +Ġst icks +Ġm ph +ĠF aith +Ġintention ally +Ġdem ol +ue ller +ĠS ale +Ġde bris +s pring +Ġle ap +>> >> +Ġcontain ers +se lling +rane an +atter ing +Ġcomment ed +ĠC M +on ut +Ġwood s +es pecially +Ġorgan ize +iv ic +ĠWood s +ang a +s qu +Ġm aj +am on +Ġax is +Ġ19 74 +ĠDen mark +Ġwar rior +ĠP and +Ġout lined +ĠB O +ins ula +z illa +eb ook +Ġd are +Ġsear ched +Ġnav igate +S n +writ ing +Ġun ited +J apan +ĠHe brew +Ġfl ame +Ġrel ies +Ġcatch ing +ĠSh o +Ġimprison ment +Ġp ockets +Ġclos ure +ĠF am +t im +ade qu +Act ivity +Ġrecru iting +ĠW ATCH +ĠArgent ina +d est +Ġapolog ize +or o +Ġlack s +Ġtun ed +ĠGriff in +Ġinf amous +Ġcelebr ity +ss on +Ġ ---------------------------------------------------------------- +ĠIs is +ĠDis play +Ġcred ibility +Ġeconom ies +Ġhead line +ĠCow boys +Ġind ef +Ġl ately +Ġincent ives +but ton +ĠM ob +A ut +Ġres igned +ĠO m +c amp +Ġprof iles +Ġsche mes +olph ins +ay ed +Cl inton +en h +ĠY ahoo +Ġab st +Ġan k +su its +Ġw ished +ĠMar co +udd en +Ġsp here +ĠB ishop +Ġincorpor ated +ĠPl ant +11 4 +Ġh ated +p ic +Ġdon ate +Ġl ined +Ġbe ans +Ġsteal ing +Ġcost ume +Ġsher iff +Ġfor ty +Ġint act +Ġadapt ed +Ġtrave lling +b art +Ġnice ly +Ġdri ed +Ġsc al +os ity +NOT E +ĠB h +ĠBron cos +ĠI gn +Ġint imate +Ġchem istry +Ġopt imal +D eb +ĠGener ation +Ġ] , +ich i +ĠW ii +ĠYOU R +vent ions +W rite +Ġpop ul +un ning +ĠW or +V ol +Ġqu een +head s +K K +Ġanaly ze +op ic +ear chers +Ġd ot +leg raph +ast ically +Ġupgr ades +Ġca res +Ġext ending +Ġfree ze +Ġin ability +Ġorg ans +Ġpret end +Ġout let +11 3 +ol an +ĠM all +ul ing +t alk +Ġexpress ing +ĠAl ways +ĠBe gin +f iles +Ġlic enses +% % +ĠM itt +Ġfil ters +ĠMil waukee +G N +Ġunf old +M o +Ġnut rition +pp o +B o +Ġfound ing +Ġunder mine +Ġeas iest +ĠC zech +ĠM ack +Ġsexual ity +ĠN ixon +W in +ĠAr n +ĠK in +ãĤ £ +ic er +Ġfort un +Ġsurf aces +agh d +Ġcar riers +ĠP ART +ĠT ib +Ġinter val +Ġfrust rating +ĠSh ip +ĠAr med +ff e +Ġbo ats +ĠAb raham +in is +Ġsu ited +th read +i ov +ab ul +ĠVenezuel a +Ġto m +su per +Ġcast le +alth ough +iox ide +ec hes +Ġevolution ary +Ġnegoti ate +Ġconfront ed +Rem ember +Ġ17 0 +S uch +Ġ9 11 +m ult +ĠA byss +ur ry +ke es +spe c +ĠBarb ara +Ġbelong ing +Ġvill ain +ist ani +Ġaccount able +Ġport ions +ĠDe cl +U r +ĠK ate +g re +Ġmag azines +UC K +Ġregul ate +om on +ĠAl most +Ġover view +Ġsc ram +Ġl oot +ĠF itz +Ġcharacter istic +ĠSn ake +s ay +ĠR ico +Ġtra it +ĠJo ined +au cus +Ġadapt ation +ĠAirl ines +Ġarch ae +ĠI de +Ġb ikes +Ġliter ary +Ġinflu ences +ĠUs ed +C reat +Ġple a +ĠDef ence +ĠAss ass +Ġp ond +UL T +) " +Ġeval uated +Ġob taining +Ġdem ographic +Ġvig il +ale y +Ġsp ouse +ĠSeah awks +resp ons +ĠB elt +um atic +Ġr ises +run ner +ĠMichel le +Ġpot ent +r ace +ĠP AC +F ind +olester ol +IS S +ĠIntrodu ced +ress es +ign ment +O s +ĠT u +ĠDe x +ic ides +Ġspark ed +ĠLaur a +ĠBry ant +Ġsm iling +ĠNex us +Ġdefend ants +ĠCat al +Ġdis hes +sh aped +Ġpro long +m t +( $ +ãĢ Ĥ +Ġcalcul ations +ĠS ame +Ġp iv +H H +Ġcance lled +Ġgr in +Ġterrit ories +ist ically +C ome +ĠP arent +Pro ject +Ġneg lig +ĠPriv acy +Ġam mo +LE CT +olute ly +ĠEp ic +Ġmis under +w al +Apr il +m os +path y +ĠC arson +Ġalbum s +ĠE asy +Ġpist ol +< < +Ġ\ ( +t arget +hel p +Ġinter pre +cons cious +ĠH ousing +ĠJ oint +12 7 +Ġbe ers +s cience +ĠFire fox +effect ive +ĠC abin +ĠO kay +ĠApp lic +Ġspace craft +ĠS R +ve t +ĠStr ange +S B +Ġcor ps +iber al +e fficient +Ġpreval ence +Ġeconom ists +11 8 +Th read +ord able +OD E +ĠC ant +=- =- +if iable +ĠA round +Ġpo le +Ġwilling ness +CL A +ĠK id +Ġcomple ment +Ġsc attered +Ġin mates +Ġble eding +e very +Ġque ue +ĠTr ain +Ġh ij +Ġme lee +ple ted +Ġdig it +Ġg em +offic ial +Ġlif ting +Ð µ +Re qu +it utes +Ġpack aging +ĠWork ers +h ran +ĠLeban on +ol esc +Ġpun ished +ĠJ uan +Ġj am +ĠD ocument +Ġm apping +ic ates +Ġinev itably +Ġvan illa +ĠT on +Ġwat ches +Ġle agues +Ġiniti ated +deg ree +port ion +Ġrec alls +Ġru in +Ġm elt +I AN +Ġhe m +Ex p +Ġb aking +ĠCol omb +at ible +Ġrad ius +pl ug +ĠI F +et ically +Ġf ict +H ER +ĠT ap +atin um +Ġin k +Ġco h +ĠW izard +b oth +te x +Ġsp ends +ĠCurrent ly +ĠP it +Ġneur ons +ig nt +Ġr all +Ġbus es +b uilding +Ġadjust ments +Ġc ried +ibl ical +att ed +ĠZ ion +ĠM atter +Ġmed itation +ĠD ennis +Ġour s +ĠT ab +Ġrank ings +ort al +Ġad vers +Ġsur render +ĠG ob +ci um +om as +im eter +Ġmulti player +Ġhero in +Ġoptim istic +Ġindic ator +ĠBr ig +Ġgro cery +Ġapplic ant +ĠRock et +v id +Ex ception +p ent +Ġorgan izing +Ġenc ounters +ĠT OD +Ġjew el +S ave +ĠChrist ie +Ġhe ating +Ġl azy +ĠC P +Ġcous in +Con fig +Ġreg ener +Ġne arest +Ġachie ving +EN S +th row +ĠRich mond +ant le +200 2 +Ġan ten +b ird +13 3 +Ġn arc +r aint +un ny +ĠHispan ic +ourn aments +Ġprop he +ĠTh ailand +ĠT i +Ġinject ion +Ġinher it +rav is +Ġmed i +Ġwho ever +ĠDE BUG +G P +ĠH ud +C ard +p rom +Ġp or +Ġover head +L aw +Ġviol ate +Ġhe ated +Ġdescript ions +Ġachieve ments +ĠBe er +ĠQu ant +W as +Ġe ighth +ĠI v +Ġspecial ized +U PDATE +ĠD elta +P op +J ul +ĠAs k +oph y +Ġnews letters +ĠT ool +Ġg ard +ĠConf eder +ĠGM T +ĠAb bott +Ġimm unity +ĠV M +Is lam +Ġimpl icit +w d +Ġ19 44 +rav ity +omet ric +Ġsurv iving +ur ai +ĠPr ison +Ġr ust +ĠSk etch +Ġbe es +ĠThe ory +Ġmer it +T ex +ch at +Ġm im +Ġpast e +ĠK och +Ġignor ance +ĠSh oot +Ġbas ement +Un ited +ĠAd vis +he ight +Ġf oster +Ġdet ain +in formation +Ġne ural +' ; +Ġprov es +all ery +Ġinv itation +um bers +Ġc attle +Ġbicy cle +z i +Ġconsult ant +Ġap ology +ĠT iger +Ġ12 3 +99 9 +Ġind ividually +r t +ig ion +ĠBrazil ian +Ġdist urb +Ġentreprene urs +Ġfore sts +cer pt +pl ates +p her +clip se +Ġtw itter +Ġac ids +ograph ical +h um +ĠB ald +if ully +Ġcomp iler +ĠD A +Ġdon or +as i +Ġtrib al +l ash +ĠCon fig +Ġapplic ants +Ġsal aries +13 5 +Put in +ĠF ocus +ir s +Ġmisc onduct +ĠH az +Ġeat en +M obile +Mus lim +ĠMar cus +v iol +Ġfavor able +Ġst ub +ad in +ĠH ob +Ġfaith ful +Ġelectron ics +Ġvac uum +w ait +back ed +econom ic +d ist +Ġten ure +Ġsince re +ĠT ogether +ĠW ave +Ġprog ression +Ġden ying +Ġdist ress +br aska +th ird +Ġmix ing +Ġcolon ial +Ġpriv ately +Ġun rest +atern ity +Ġprem ises +ant i +greg ation +Ġlic ence +ĠH ind +ĠSam uel +Ġconvinc ing +ĠA ce +ĠR ust +ĠNet anyahu +Ġhand les +ĠP atch +orient ed +ah o +ĠG onz +Ġhack ers +claim er +Ġcustom s +ĠGr an +f ighters +Ġl uc +Ġman uscript +aren thood +Ġdev il +Ġwar riors +Ġoff enders +Will iam +Ġhol idays +Ġnight mare +Ġle ver +iff erent +St at +Ġexhib ition +put ed +ĠP ure +Ġal pha +Ġenthus iasm +ĠRepresent atives +E AR +ĠT yp +Ġwhe at +ĠAl f +Ġcor rection +Ġev angel +AT T +M iss +Ġs oup +Ġimpl ied +par am +Ġsex y +ĠL ux +Ġrep ublic +p atch +ab lish +Ġic ons +Ġfather s +ĠG ET +ĠCar ib +Ġregul ated +ĠCo hen +ĠBob by +Ġn er +Ġb ent +vent ory +ĠAl ong +ĠE ST +ĠWall ace +Ġmurd ers +r ise +ke ll +ĠCommon wealth +Ġn asty +et a +ĠM IT +Ġadminist ered +Ġgenuine ly +Ed itor +n ick +Ġhyd ro +**************** **************** +ĠB le +Ġfin es +Ġg orge +aus ible +r h +Ġapp le +ment ioned +Ġro pe +ot yp +H R +Ġdisappoint ing +Ġc age +n ik +Ġdoub ts +ĠF REE +print s +ĠM UST +Ġvend ors +ĠIn qu +Ġliber als +Ġcontract or +Ġup side +child ren +Ġtrick y +Ġregul ators +charg ed +l iter +Ġ *** +Ġreb ell +l ang +Ġloc als +Ġphys icians +Ġhe y +ar se +t m +ĠLe x +Ġbehavior al +success ful +F X +Ġbr ick +ov ic +Ġcon form +Ġreview ing +Ġins ights +Ġbi ology +ĠRem ove +ĠExt ra +Ġcomm itting +indu ced +ignt y +ig m +Ġat omic +Comm on +ĠE M +ĠP ere +ĠIt ems +e h +Ġpres erved +ĠH ood +Ġprison er +Ġbankrupt cy +Ġg ren +us hes +Ġexplo itation +Ġsign atures +Ġfin an +] ," +ĠM R +Ġme g +rem lin +Ġmusic ians +Ġselect ing +Ġexam ining +IN K +l ated +H i +Ġart ic +Ġp ets +Ġimp air +ĠM AN +Ġtable ts +in clude +R ange +Ġca ut +Ġlog s +Ġmount ing +Ġun aware +Ġdynam ics +ĠPalest ine +ĠQu arter +ĠPur ple +Ġm a +ĠIm port +Ġcollect ions +ci ation +Ġsuccess or +Ġcl one +Ġaim ing +Ġposs essed +Ġstick ing +Ġsh aking +Ġloc ate +ĠH ockey +T urn +17 0 +Ġfif teen +ĠHar rison +Ġcontinu ously +ĠT C +ĠVal ent +ĠRes cue +Ġby pass +am ount +Ġm ast +Ġprotect s +Ġart istic +Ġsomet ime +Ġsh oe +Ġshout ed +ific ant +et itive +ĠReg ister +ĠJ in +Ġconcent rated +ling ton +on ies +Ġgener ator +yr im +ĠAr men +Ġclear ing +id o +ĠT W +al ph +Ġlad ies +H ard +Ġdial og +Ġinput s +æ ľ +Ġpos es +Ġsl ots +ĠPrem ium +Ġle aks +Ġboss es +Ġ11 3 +c ourse +A cc +ĠNew ton +ĠAust ria +ĠM age +Ġte aches +ab ad +Ġwe ars +Ġc yl +Ġcur se +ĠS ales +ĠW ings +Ġp sy +Ġg aps +ĠIce land +ĠP interest +Ġland lord +Ġdefin itions +ĠK er +Ġsufficient ly +ĠP ence +ĠArch itect +Ġsur pass +Ġ11 4 +Ġsuper hero +ĠDise ase +Ġpri ests +ĠC ulture +Ġdefin itive +Ġsecret ly +ĠD ance +inst all +ch ief +ĠJess ica +W ould +Up dated +Ġlock er +ĠK ay +Ġmem orial +è ¦ +f at +Ġdis gu +Ġflav ors +ĠBase ball +ĠRes istance +Ġk icks +Ġen v +Ġteen agers +D ark +ĠC AR +Ġh alt +ĠL G +ĠGab riel +Ġfe ver +Ġs atur +Ġm all +Ġaffili ate +ĠS leep +ĠSpe cific +ĠV el +Ġj ar +ĠSac red +ĠEd wards +ĠA CL +Ġret ained +ĠG iant +Ġlim itation +in ces +Ġref usal +ĠT ale +ĠBut ler +Ġacc idents +ĠC SS +Ġimport ed +ĠCop y +Î ± +ER T +z el +Ġdiv isions +h ots +ĠAl b +ĠD S +Load er +W ashington +at isf +ĠCreat ive +\ . +ĠAut om +red ict +Ġrecept or +ĠCarl os +Met hod +ok a +Ġmal icious +Ġste pping +, [ +ĠD ad +Ġatt raction +ĠEffect s +ĠPir ate +ĠC er +ĠIndust ry +ĠR ud +Ġchar ter +Ġd ining +Ġins ists +Ġconfig ure +Ġ( # +ĠSim ple +ĠSc roll +UT C +17 5 +ĠK on +Ġmarket place +Ġ ãĤ +Ġref res +Ġg ates +er red +ĠP od +Ġbeh ave +Fr ank +n ode +Ġendors ed +he tt +as ive +ĠHom eland +Ġr ides +ĠLe ave +er ness +Ġflood ing +A FP +Ġris en +Ġcontin ually +Ġun anim +ĠCont ract +ĠP as +Ġgu ided +ĠCh ile +b d +Ġsu cc +pt ic +Ġcomm ittees +ĠL uther +ĠAny one +Ġs ab +12 4 +Ġp ixel +ĠB ak +ĠT ag +ĠBenn ett +En ter +sm all +ĠPresident ial +Ġp ul +Ġcontr ace +arch ive +Ġcoast al +ĠK ids +19 2 +âĢ ² +ick y +ING TON +Ġw olf +ĠSt alin +T ur +id get +am as +ĠUn less +Ġspons or +Ġmor ph +ĠCho ose +Ġrun ner +Ġun bel +Ġm ud +ĠMan a +Ġdub bed +Ġg odd +ure rs +wind ow +Ġrel ied +Ġcelebr ating +os c +Ġ13 5 +Ġlobb ying +Ġincom plete +Ġrestrict ion +Ġinc ap +it us +Ġexpect ation +ĠAp ollo +Ġint ens +Ġsyn c +G H +Ġmanip ulation +B Y +Ġspe ar +Ġbre asts +Ġvol can +il ia +M aterial +Ġform ats +ĠB ast +Ġparliament ary +Ġsn ake +Ġserv ants +ĠTr udeau +ĠGr im +ĠArab ic +ĠSC P +ĠBoy s +st ation +Ġprospect ive +ord e +in itialized +Ġb ored +AB LE +Ġaccess ed +Ġtax i +ĠShe ll +aid en +urs ed +in ates +ĠIns urance +ĠPet e +Sept ember +6 50 +Ġad ventures +ĠCo ver +Ġt ribute +Ġsk etch +Ġem power +Ġ Ø +ĠGl enn +ĠD aw += \" +ĠPolit ics +Ġgu ides +Ġd ioxide +ĠG ore +ĠBr ight +ĠS ierra +Ġval ued +c ond +Ġpo inter +Se lect +Ġrisk y +Ġabsor b +im ages +Ġref uses +Ġbon uses +__ _ +Ġh ilar +ĠF eatures +2 20 +ĠCollect or +F oot +Ġ19 64 +cul us +Ġd awn +Ġwork out +ĠL O +Ġphilosoph ical +ĠSand y +ĠYou th +Ġl iable +A f +bl ue +Ġovert urn +less ness +ĠTrib une +ĠIn g +Ġfact ories +Ġcat ches +Ġpr one +Ġmat rix +Ġlog in +Ġin acc +Ġex ert +s ys +Ġneed le +ĠQ ur +Ġnot ified +ould er +t x +Ġremind s +Ġpublisher s +Ġn ort +Ġg it +Ġfl ies +ĠEm ily +Ġflow ing +ĠAl ien +ĠStr ateg +Ġhard est +Ġmod ification +AP I +ĠM Y +Ġcr ashes +st airs +n umber +Ġur ging +ch annel +ĠFal con +Ġinhabit ants +Ġterr ifying +Ġutil ize +Ġban ner +Ġcig arettes +Ġsens es +ĠHol mes +Ġpract ition +ĠPhill ips +ott o +Ġcomp ile +Mod el +ĠK o +Ġ[ ] +Americ ans +ĠTer ms +Ġmed ications +ĠAn a +Ġfundament ally +ĠNot ice +Ġwe aker +Ġ 0000 +Ġgar lic +Ġout break +Ġeconom ist +ĠB irth +Ġobst acles +ar cer +ĠOr thodox +Ġplace bo +ĠC rew +asp berry +ĠAng els +Ġdis charge +Ġdestruct ive +11 7 +ĠR ising +Ġd airy +l ate +Ġcoll ision +ĠTig ers +ean or +ocument ed +ĠIn valid +Ġd ont +ĠL iter +ĠV a +Ġhyd rogen +Ġvari ants +ĠBrown s +Ġ19 65 +Ġind igenous +Ġtrad es +Ġremain der +Ġswe pt +ĠImp act +Ġred ist +Ġun int +grad uate +ãĥ ķ +ĠW ILL +ãģ® ç +ĠCrit ical +Ġf isher +Ġv icious +Ġrevers ed +Y ear +ĠS ox +Ġshoot ings +Ġfil ming +Ġtouchdown s +ai res +m el +Ġgrand father +Ġaffect ion +ing le +Ġover ly +Add itional +Ġsup reme +ĠGr ad +Ġsport ing +Ġmer cy +ĠBrook s +ount y +Ġperform s +Ġtight ly +Ġdem ons +Ġkill ings +Ġfact ion +ĠNov a +aut s +Ġund oubtedly +ar in +Ġunder way +ra k +Ġl iv +ĠReg ion +Ġbrief ing +s ers +cl oud +ĠM ik +us p +Ġpred iction +az or +Ġport able +ĠG and +Ġpresent ing +Ġ10 80 + » +ush i +ĠSp ark +there um +Ġjust ification +ĠN y +Ġcontract ors +ming ham +ĠSt yle +å ħ +ĠChron icles +ĠPict ure +Ġprov ing +Ġw ives +set t +Ġmole cules +ĠFair y +Ġconsist ing +Ġp ier +al one +in ition +Ġn ucle +j son +Ġg otta +Ġmob il +Ġver bal +ar ium +Ġmon ument +uck ed +Ġ25 6 +T ech +mine craft +ĠTr ack +Ġt ile +Ġcompat ibility +as is +Ġs add +Ġinstruct ed +ĠM ueller +Ġle thal +Ġhorm one +Ġor che +el se +Ġske let +Ġentert aining +Ġminim ize +ag ain +Ġunder go +Ġconst raints +Ġcig arette +ĠIslam ist +Ġtravel s +ĠPant hers +l ings +C are +Ġlaw suits +ur as +Ġcry st +Ġlow ered +Ġaer ial +Ġcomb inations +Ġha un +Ġch a +Ġv ine +Ġquant ities +Ġlink ing +b ank +Ġso y +B ill +ĠAngel a +Ġrecip ient +ĠProt est +Ġs ocket +Ġsolid arity +Ġâ Ĩ +m ill +Ġvar ies +ĠPak istani +Dr agon +Ġun e +Ġhor izon +³³³³ ³³³³ +Ġprov inces +Ġfrank ly +Ġenact ed +not es +[ ' +Ġ19 2 +ocr acy +Ġendorse ment +Ġover time +Tr ue +L ab +lic ted +ĠD NC +Ġbe ats +ĠJam ie +15 2 +ĠIN T +Cont act +Ġaccount ed +h ash +ĠPack ers +p ires +Ġles bian +Ġamend ments +Ġhop eful +ĠFin land +Ġspot light +Ġconfig ured +Ġtrou bled +Ġg aze +ĠCal gary +Ġrel iability +Ġins urg +sw er +b uy +ĠSk in +Ġp ixels +Ġhand gun +Ġpar as +Ġcateg or +ĠE L +ĠRe x +Ind eed +Ġkind a +Ġconj unction +ĠBry an +ĠMan ufact +y ang +Pl us +S QL +ish ment +Ġdom inate +Ġn ail +Ġo ath +Ġeru pt +ĠF ine +it bart +ĠCh ip +ĠAb d +ĠN am +Ġbuy er +Ġdiss ent +Le aks +Cont in +Ġr ider +ĠSome one +Ġill usion +c in +ĠBoe ing +Ġin adequ +ov ation +i ants +Ġreb uild +4 50 +ĠDest iny +S W +ĠT ill +H it +ia z +ĠBang l +acher s +ĠRe form +Ġse gments +Ġsystem atic +d c +ĠConserv atives +Ġport al +h or +ĠDragon bound +Ġdrag ged +om o +Ġthe e +ad vert +ĠRep orts +ĠE t +Ġbarrel s +Aug ust +Ġcompar isons +Ġhe x +Ġan throp +" [ +bor ough +ab i +Ġpict ured +play ing +ĠAdd ress +ĠMir ror +Sm ith +Ġt ires +ĠN PR +AA AA +Ġclass ification +ĠTh an +ĠH arm +ĠR A +Ġreject ion +min ation +Ġr anged +ĠF alls +D I +H ost +ãĤ ´ +ĠEx ample +list ed +th irds +Ġsaf egu +br and +Ġprob able +Can ada +IT ION +ĠQ aeda +Ġch ick +Ġimport s +h it +l oc +W W +Ġble w +Ġany time +Ġwh oles +ik ed +Ġcal culation +cre ate +ĠO ri +Ġupgr aded +Ġapp ar +ut ory +ĠM ol +B rit +ĠJ ong +IN AL +ĠStart ing +Ġd ice +urt le +Ġre lying +cl osure +Ġprof itable +Ġsl aughter +ĠMan ual +c aster +Ġ" $ +Ġfe ather +ĠSim ply +ie ves +Ġdeter ior +ĠPC I +Ġst amp +Ġfl aws +Ġsh ade +ham mer +Ġpass port +Ġcont ing +am el +Ġobser vers +Ġneg lect +ĠR B +ĠBrother hood +Ġskept ical +f amily +us k +Ġemotion ally +â Ļ +ĠBet a +ason able +id ity +ĠM ul +Ġkick ing +ĠC arm +oll ah +VERT IS +ĠAt hen +Ġlad der +ĠBul let +å £ +00 01 +ĠWild life +ĠM ask +ĠN an +R ev +Ġun acceptable +leg al +Ġcrowd ed +ag i +ĠC ox +j e +Ġmor ality +Ġfu els +Ġc ables +Ġman kind +ĠCarib bean +Ġanch or +Ġby te +ĠO ften +ĠO z +Ġcraft ed +Ġhistor ian +ĠW u +Ġtow ers +ĠCitiz ens +Ġhel m +Ġcred entials +Ġsing ular +ĠJes se +Ġtack les +Ġcont empt +Ġa fore +ĠSh adows +Ġn il +Ġur gent +app le +bl ood +Ġv on +Ġoff line +Ġbreat he +Ġj umps +Ġirre levant +ox ic +om al +import ant +J im +Ġgl oves +arm ing +dep th +Ġtal ents +ook ie +ĠS B +Ġpal m +uff s +est a +IG H +Ġcan on +ĠVer izon +ĠP le +Ġcou pled +vel t +Ġfundra ising +ĠGet ting +ĠD LC +Ġmathemat ical +ĠH S +ĠCard inals +te lling +Ġspons ors +Ġ Ï +ĠBull s +op tion +Ġprop ose +Ġmem orable +Ġembr aced +Ġdecl ining +He alth +ed a +Ġ} ; +Ġsp am +m ile +Ġpit cher +ĠE ight +Ġcar ing +ut ic +ro le +Ġair line +ernand ez +ĠAth let +Ġcert ification +ux e +rig er +Ġem pir +Ġsens ation +Ġdis m +Ġb olt +Ġev olve +H ouse +Ġconsult ation +ĠD uty +Ġtou ches +ĠN athan +Ġf aint +h ad +" ( +ĠCons umer +ĠExt reme +Ġ12 7 +ĠHer m +ĠSac rament +iz oph +Ġanx ious +ul ously +Ġsoc ially +ĠU TC +Ġsol ving +ĠLet ter +Hist ory +ed uc +Pr ice +) ); +Ġrel oad +am ic +Ġp ork +Ġdisc ourse +Ġt ournaments +ai ro +ĠK ur +ĠCost a +Ġviol ating +Ġinterf ere +Ġrecre ational +uff le +Ġspe eches +Ġneed ing +Ġremem bers +Ġcred ited +n ia +f ocused +amer a +Ġb ru +um bs +ĠCub an +Ġpreced ing +Ġnons ense +ac ial +Ġsmart phones +ĠSt ories +S ports +ĠEmer gency +oun cing +ef ined +Ġb er +Ġconsult ing +Ġm asters +he astern +." [ +ĠRun ning +Ġsus cept +ĠF eng +Americ a +pr ises +st itial +ĠWeek ly +ĠGreat er +mod ules +if ter +G raphics +ul er +Ġwho lly +Ġsupp ress +Ġconce aled +Ġhapp ily +Ġaccept s +ĠEn joy +Ġr ivers +ĠEx cept +2 25 +ĠN HS +ĠMc Connell +Ġp ussy +fer red +ut able +Ġatt ain +Ġ> = +Ġdepos its +roph ic +Ġnot orious +ĠSh aw +il itation +Ġepid emic +all ic +Ġsmall est +ov ich +Ġaccess ories +per ties +Ġsur plus +ĠMe ch +Ġamb ig +ĠImm igration +Ġch im +ev al +Ġpract icing +ĠMyster y +Ġdom ains +ĠSil icon +app s +Ġkilomet ers +e a +ĠSm ash +Ġwarrant y +Ġn ost +s il +re v +J on +ĠDub lin +Ġtast es +Ġb out +g reat +er ror +Ġsw itches +ĠB apt +D O +ok i +Ġsour ced +pro du +Ġattach ment +ĠIss ue +ĠQuest ion +Jo in +Ġf itted +Ġunlaw ful +^ ^ +ere k +Ġauthent ication +Ġst ole +Ġaccount ability +l abel +S earch +Ġal beit +atic an +fund ed +ĠAdd ing +ĠI Q +Ġsub mar +l it +a que +ĠLear ning +Ġint eger +M aster +ĠCh rom +Ġprem ier +O p +ĠLi u +Ġbl essed +ĠGl obe +ĠResp onse +Ġlegit im +ĠMer kel +Ġdispos al + ´ +Ġgau ge +pe at +Ġindu ced +Ġquestion able +arth y +ĠV it +ĠF eed +U ntil +U t +worth y +R Y +ĠH erald +ĠHam mer +Ġmed al +ĠR ivers +ĠH ack +Ġclar ify +Ġtrack ed +Ġautonom ous +Ġten ant +ĠQ atar +er ie +Ġgr im +ĠMon itor +Ġresist ant +ĠSpe c +ĠWell s +N AS +14 8 +Ġmin ers +iot ics +Ġmiss es +11 6 +g ian +g it +ĠE yes +p res +Ġgrad uated +Ġang el +Ġsyn chron +Ġefficient ly +Ġtrans mitted +H arry +Ġglob ally +EN CE +ĠMont ana +r aged +ĠPre vention +Ġp iss +ĠL l +Ġshe lf +ĠB JP +ĠTest ament +ĠL ate +ik er +ĠH app +ĠJul ian +h all +Ġsp ont +Ġshut down +Ġincons istent +Ġsubscrib ers +Ġske leton +ĠNe braska +Ġins pire +ĠV oid +F eed +Ġang les +ĠSpr ings +Ġbench mark +Ġvacc ines +izoph ren +se xual +uff ed +Ġsh ine +ĠK ath +Ġgest ure +ine a +Ġr ip +Ġopp ression +Ġcons cience +b t +ĠL um +Ġinc idence +ĠF a +w r +Ġmin eral +ĠSp urs +alk y +Ġth under +Ġop io +Be ing +ĠPal m +Ġwas ted +Ġl b +i aries +ĠIniti ative +Ġcur ric +Ġmark er +ĠMc L +Ġext ensions +ĠP v +ĠAr ms +Ġoffer ings +Ġdef enses +Ġvend or +Ġcontrad ict +ĠCol in +Ġredd it +Ġper ipher +12 2 +Ġs ins +E dit +IC T +So ft +ĠSh ah +Ġadministr ator +ĠT rip +Ġporn ography +Ġtu ition +in ence +ĠPro gress +Ġcat alog +Ġsu ite +Ġh ike +Ġreprodu ctive +eng ine +Ġd rought +ĠNo ah +Ġ2 30 +Ġd ude +Ġrelax ed +Ġpart ition +Ġparticip ant +Ġtel esc +Ġfe as +ĠF F +own er +Ġswe eping +Ġl enses +Ġmatch up +ĠRe pl +ourn als +Ġcred ible +Ġgrand mother +Ġther mal +Ġsubscrib ing +Ġident ities +col m +U CT +Ġreluct ant +us ers +ĠC ort +Ġassist ed +OS S +ATION S +IS H +Ġpharm aceutical +ic able +ad ian +ĠSon ic +ĠF ury +ĠM ong +A H +ĠPsych ology +Ġph osph +Ġtreat s +Ń Ķ +Ġstead ily +ĠHell o +Ġrel ates +Ġcl ue +Ex pl +a uth +Ġrev ision +Ġe ld +os ion +Ġbr on +14 4 +ri kes +Ġmin es +Ġblank et +ĠF ail +el ed +ĠIm agine +ĠPl anned +a ic +Re quest +M ad +ĠHor se +ĠEag le +Ġcap ac +15 7 +Ġl ing +ĠN ice +ĠP arenthood +min ster +og s +ens itive +Not hing +Ġcar n +F in +ĠP E +Ġr ifles +ĠL P +S and +Ġgui Active +Ġtour ist +C NN +Ġunve iled +Ġpredec essor +} { +u ber +Ġoff shore +Ġopt ical +ĠR ot +ĠPear l +et on +Ġst ared +Ġfart her +at ility +cont in +ĠG y +ĠF oster +ĠC oc +ri ents +Ġdesign ing +ĠEconom y +ON G +W omen +ĠN ancy +er ver +Ġmas cul +Ġcasual ties +Ġ2 25 +ĠS ullivan +ĠCh oice +Ġa ster +w s +Ġhot els +Ġconsider ations +Ġcou ch +ĠSt rip +ĠG n +Ġmanip ulate +l ied +Ġsynt hetic +Ġassault ed +Ġoff enses +ĠDra ke +Ġim pe +Oct ober +ĠHer itage +h l +ĠBl air +Un like +Ġg rief +Ġ4 50 +Ġopt ed +Ġresign ation +il o +Ġver se +ĠT omb +Ġu pt +Ġa ired +ĠH ook +ĠML B +Ġassum es +out ed +ĠV ers +Ġinfer ior +Ġbund le +ĠD NS +ograp her +Ġmult ip +ĠSoul s +Ġillust rated +Ġtact ic +Ġdress ing +Ġdu o +Con f +Ġrel ent +Ġc ant +Ġscar ce +Ġcand y +ĠC F +Ġaffili ated +Ġspr int +yl an +ĠGarc ia +Ġj unk +Pr int +ex ec +C rit +Ġport rait +ir ies +ĠOF F +Ġdisp utes +W R +L ove +ãģ Ħ +ĠRe yn +Ġh ipp +op ath +Ġflo ors +ĠFe el +Ġwor ries +Ġsett lements +ĠP os +Ġmos que +Ġfin als +Ġcr ushed +ĠPro bably +ĠB ot +ĠM ans +ĠPer iod +Ġsovere ignty +Ġsell er +Ġap ost +Ġam ateur +Ġd orm +Ġconsum ing +Ġarm our +ĠRo ose +Ġint ensive +Ġelim inating +ĠSun ni +ĠAle ppo +j in +Ġadv ise +p al +ĠH alo +Ġdes cent +Ġsimpl er +Ġbo oth +ST R +L ater +ĠC ave +== = +Ġm ol +Ġf ist +Ġshot gun +su pp +Ġrob bery +E ffect +Ġobsc ure +ĠProf essional +Ġemb assy +Ġmilit ant +Ġinc arcer +Ġgener ates +Ġlaun ches +Ġadministr ators +Ġsh aft +Ġcirc ular +Ġfresh man +ĠW es +ĠJo el +ĠD rew +ĠDun can +ĠApp arently +s ight +ĠIntern al +ĠInd ividual +ĠF E +Ġb ore +ĠM t +Ġbroad ly +ĠO ptions +ount ain +ip es +ĠV ideos +20 4 +Ġh ills +Ġsim ulation +Ġdisappoint ment +it an +ĠLabor atory +Ġup ward +Ġbound ary +Ġdark er +h art +Ġdomin ance +C ong +ĠOr acle +ĠL ords +Ġscholars hip +ĠVin cent +ed e +ĠR ah +Ġencour ages +ro v +Ġqu o +Ġprem ise +ĠCris is +ĠHol ocaust +Ġrhyth m +Ġmet ric +cl ub +Ġtransport ed +Ġn od +ĠP ist +Ġancest ors +ĠFred er +th umbnails +ĠC E +ON D +Ph il +ven ge +ĠProduct s +cast le +Ġqual ifying +ĠK aren +VERTIS EMENT +Ġmight y +Ġexplan ations +Ġfix ing +D i +Ġdecl aring +Ġanonym ity +Ġju ven +ĠN ord +ĠDo om +ĠAct ually +O k +ph is +ĠDes ert +Ġ11 6 +I K +ĠF M +Ġinc omes +V EL +ok ers +Ġpe cul +Ġlight weight +g ue +Ġacc ent +Ġincre ment +ĠCh an +Ġcompl aining +ĠB aghd +Ġmidfield er +Ġover haul +Pro cess +ĠH ollow +ĠTit ans +Sm all +man uel +ĠUn ity +ĠEv ents +S ty +Ġdispro portion +n esty +en es +ĠC od +Ġdemonstr ations +ĠCrim son +ĠO H +Ġen rolled +Ġc el +ĠBre tt +Ġa ide +Ġhe els +Ġbroad band +Ġmark ing +Ġw izard +ĠN J +ĠChief s +Ġingred ient +Ġd ug +ĠSh ut +urch ase +end or +Ġfar mer +ĠGold man +12 9 +15 5 +Or der +Ġl ion +i ably +Ġst ain +ar ray +ilit ary +ĠFA Q +Ġexpl oded +ĠMcC arthy +ĠT weet +ĠG reens +ek ing +l n +ens en +Ġmotor cycle +Ġpartic le +Ġch olesterol +B ron +Ġst air +Ġox id +Ġdes irable +ib les +Ġthe or +for cing +Ġpromot ional +ov o +b oot +ĠBon us +raw ling +Ġshort age +ĠP sy +Ġrecru ited +Ġinf ants +Ġtest osterone +Ġded uct +Ġdistinct ive +Ġfirm ware +bu ilt +14 5 +Ġexpl ored +Ġfact ions +Ġv ide +Ġtatt oo +Ġfinan cially +Ġfat igue +Ġproceed ing +const itutional +Ġmis er +Ġch airs +gg ing +ipp le +Ġd ent +Ġdis reg +ç Ķ +st ant +ll o +b ps +aken ing +Ġab normal +ĠE RA +å£ « +ĠH BO +ĠM AR +Ġcon cess +Ġserv ant +Ġas pir +l av +ĠPan el +am o +Ġprec ip +Ġrecord ings +Ġproceed ed +Ġcol ony +ĠT ang +ab lo +Ġstri pped +Le ft +to o +Ġpot atoes +Ġfin est +% ). +Ġc rap +ĠZ ach +ab ases +ĠG oth +Ġbillion aire +w olf +Ġsan ction +S K +Ġlog ged +P o +ey ed +un al +Ġcr icket +Ġarm ies +Ġunc overed +Cl oud +ó n +Ġreb ounds +Ġm es +O per +P ac +Ġnation ally +Ġinsert ed +p ict +Ġgovern ance +Ð ¸ +Ġprivile ges +G ET +Ġfavor ites +im ity +Ġlo ver +the m +em pl +Ġgorge ous +An n +Ġsl ipped +Ġve to +B ob +Ġsl im +u cc +ĠF ame +udden ly +Ġden ies +ĠM aur +Ġdist ances +Ġw anna +t ar +ĠS ER +Ġâ Ī +Ġle mon +at hetic +Ġlit eral +Ġdistingu ished +Ġansw ering +G I +Ġrelig ions +ĠPhil os +ĠL ay +Ġcomp os +ire ments +ĠK os +ine z +roll ing +Ġyoung est +and ise +ĠB orn +Ġalt ar +am ina +ĠB oot +v oc +Ġdig ging +Ġpress ures +Ġl en +26 4 +Ġassass ination +ĠBir mingham +ĠMy th +Ġsovere ign +ĠArt ist +ĠPhot ograph +Ġdep icted +Ġdisp ens +orth y +Ġamb ul +int eg +ĠC ele +ĠTib et +Ġhier archy +Ġc u +Ġpre season +ĠPet erson +Ġcol ours +Ġworry ing +Ġback ers +ĠPal mer +ĠÎ ¼ +Ġcontribut or +Ġhear ings +Ġur ine +Ġ Ù +ourge ois +Sim ilar +ĠZ immer +s omething +ĠUS C +Ġstrength s +ĠF I +Ġlog ging +As ked +ĠTh ai +in qu +ĠW alt +Ġcrew s +it ism +3 01 +Ġshar ply +um ed +Ġred irect +r ators +In f +ĠWe apons +Ġte asp +19 99 +L ive +ĠEs pecially +ĠS ter +ĠVeter ans +Ġint ro +other apy +Ġmal ware +Ġbre eding +Ġmole cular +ĠR oute +ĠCom ment +oc hem +Ġa in +Se ason +Ġlineback er +Ä « +ĠEconom ics +es ar +ĠL ives +ĠEm ma +Ġk in +ĠTer rit +Ġpl anted +ot on +ĠBut ter +ĠSp ons +P ER +Ġdun geon +Ġsymb olic +Ġfil med +Ġdi ets +Ġconclud es +Ġcertain ty +ĠForm at +Ġstr angers +form at +ĠPh ase +Ġcop ied +Ġmet res +ld a +ĠUs ers +Ġdeliber ate +Ġwas hed +ĠL ance +im ation +Ġimpro per +ĠGen esis +ick r +ĠK ush +Ġreal ise +Ġembarrass ing +alk ing +b ucks +Ġver ified +Ġout line +year s +ĠIn come +20 2 +Ġz ombies +F inal +ĠMill enn +Ġmod ifications +ĠV ision +ĠM oses +ver b +iter ranean +ĠJ et +Ġnav al +ĠA gg +Ġur l +Ġvict ories +Ġnon etheless +Ġinj ust +ĠF act +ç ļ +Ġins ufficient +re view +face book +Ġnegoti ating +Ġguarant ees +im en +uten berg +Ġg ambling +Ġcon gr +Load ing +Ġnever theless +Ġpres idents +ĠIndust rial +Ġ11 8 +Ġp oured +ĠT ory +Ġ17 5 +Ġ: = +Sc ott +ange red +T ok +Ġorgan izers +M at +ĠG rowth +Ġad ul +Ġens ures +Ġ11 7 +é¾į å +Ġmass acre +Ġgr ades +be fore +AD VERTISEMENT +ĠSl ow +ĠM MA +âĢĶ " +ĠV atican +Q aeda +Ġo we +66 66 +ĠS orry +ĠGr ass +Ġbackground s +Ġexha usted +Ġcl an +Ġcomprom ised +ĠE lf +ĠIsa ac +ens on +In vest +IF A +Ġinterrupt ed +ãĥī ãĥ© +Ġtw isted +ĠDrag ons +M ode +ĠK remlin +Ġfert il +he res +ph an +ĠN ode +f ed +ĠOr c +Ġunw illing +C ent +Ġprior it +Ġgrad uates +Ġsubject ive +Ġiss uing +ĠL t +Ġview er +Ġw oke +Th us +bro ok +Ġdep ressed +Ġbr acket +ĠG or +ĠFight ing +Ġstri ker +Rep ort +ĠPortug al +Ġne o +w ed +19 9 +Ġflee ing +sh adow +ident ified +US E +Ste am +Ġstret ched +Ġrevel ations +art ed +ĠD w +Ġalign ment +est on +ĠJ ared +S ep +Ġblog s +up date +g om +r isk +Ġcl ash +ĠH our +Ġrun time +Ġunw anted +Ġsc am +Ġr ack +Ġen light +on est +ĠF err +Ġconv ictions +Ġp iano +Ġcirc ulation +ĠW elcome +Ġback lash +ĠW ade +Ġrece ivers +ot ive +J eff +Ġnetwork ing +ĠPre p +ĠExpl orer +Ġlect ure +Ġupload ed +ĠMe at +B LE +ĠNaz is +ĠSy nd +st ud +ro ots +ri ans +Ġportray ed +Ġ ?? +ĠBudd ha +s un +Rober t +ĠCom plex +Ġover see +Ġste alth +T itle +ĠJ obs +ĠK um +Ġappreci ation +ĠM OD +Ġbas ics +Ġcl ips +Ġnurs ing +Ġpropos ition +Ġreal ised +ĠNY C +Ġall ocated +ri um +ar an +ĠPro duction +ĠV ote +Ġsm ugg +Ġhun ter +az er +ĠCh anges +Ġfl uct +y on +Ar ray +Ġk its +W ater +Ġuncom mon +Ġrest ing +ell s +w ould +Ġpurs ued +Ġassert ion +omet own +ĠMos ul +ĠPl atform +io let +Ġshare holders +Ġtra ils +P ay +ĠEn forcement +ty pes +ĠAn onymous +Ġsatisf ying +il ogy +Ġ( ' +w ave +c ity +Ste ve +Ġconfront ation +ĠE ld +C apt +ah an +ht m +ĠC trl +ON S +2 30 +if a +hold ing +Ġdelic ate +Ġj aw +ĠGo ing +or um +S al +Ġd ull +ĠB eth +Ġpr isons +Ġe go +ĠEl sa +avor ite +ĠG ang +ĠN uclear +Ġsp ider +ats u +Ġsam pling +Ġabsor bed +ĠPh arm +iet h +Ġbuck et +ĠRec omm +O F +ĠF actory +AN CE +Ġb acter +H as +ĠObs erv +12 1 +Ġprem iere +De velop +Ġcur rencies +C ast +Ġaccompany ing +ĠNash ville +Ġfat ty +ĠBre nd +Ġloc ks +Ġcent ered +ĠU T +augh s +or ie +ĠAff ordable +v ance +D L +em et +Ġthr one +ĠBlu etooth +Ġn aming +if ts +AD E +Ġcorrect ed +Ġprompt ly +ĠST R +Ġgen ome +Ġcop e +Ġval ley +Ġround ed +ĠK end +al ion +p ers +Ġtour ism +Ġst ark +v l +Ġblow ing +ĠSche dule +st d +Ġunh appy +Ġlit igation +ced es +Ġand roid +Ġinteg ral +ere rs +ud ed +t ax +Ġre iter +ĠMot ors +oci ated +Ġwond ers +ĠAp ost +uck ing +ĠRoose velt +f ram +Ġyield s +Ġconstit utes +aw k +Int erest +Ġinter im +Ġbreak through +ĠC her +Ġpro sec +ĠD j +ĠM T +Res p +ĠP T +Ġs perm +ed it +B T +Lin ux +count ry +le ague +Ġd ick +Ġo ct +Ġinsert ing +Ġsc ra +ĠBrew ing +Ġ19 66 +Ġrun ners +Ġpl un +id y +ĠD ian +Ġdys function +Ġex clusion +Ġdis gr +Ġincorpor ate +Ġrecon c +Ġnom inated +ĠAr cher +d raw +achel or +Ġwrit ings +Ġshall ow +Ġh ast +ĠB MW +ĠR S +Ġth igh +Ġ19 63 +Ġl amb +Ġfav ored +ag le +Ġcool er +ĠH ours +ĠG U +ĠOrig in +Ġglim pse +---------------- ---- +L im +Ġche ek +Ġj ealous +- ' +Ġhar ness +ĠPo ison +Ġdis abilities +ne apolis +Ġout look +Ġnot ify +ĠIndian apolis +Ġab rupt +ns ic +Ġenc rypted +Ġfor fe +reat h +Ġr abb +Ġfound ations +Ġcompl iment +ĠInter view +ĠS we +Ġad olesc +Ġmon itors +ĠSacrament o +Ġtime ly +Ġcontem pl +Ġposition ed +Ġpost ers +ph ies +iov ascular +v oid +ĠFif th +Ġinvestig ative +OU N +Ġinteg rate +ĠIN C +ish a +ibl ings +ĠRe quest +ĠRodrig uez +Ġsl ides +ĠD X +Ġfemin ism +Ġdat as +Ġb end +ir us +ĠNig eria +F ox +Ch ange +Ġair plane +ĠLad en +Ġpublic ity +ixt y +Ġcommit ments +Ġaggreg ate +Ġdisplay ing +ĠAr row +Ġ12 2 +Ġrespect s +and roid +s ix +ĠSh a +Ġrest oration +) \ +W S +oy s +Ġillust rate +with out +12 6 +ĠâĶ Ĥ +Ġpick up +n els +Ġ .... +f ood +ĠF en +) ? +Ġphenomen a +Ġcompan ions +ĠW rite +Ġsp ill +Ġbr idges +ĠUp dated +ĠF o +Ġinsect s +ASH INGTON +Ġsc are +il tr +ĠZh ang +Ġsever ity +Ġind ul +14 9 +ĠCo ffee +Ġnorm s +Ġp ulse +ĠF T +Ġhorr ific +ĠDest roy +ĠJ SON +Ġo live +Ġdiscuss es +R est +E lect +ĠW inn +ĠSurv iv +ĠH ait +S ure +op ed +Ġro oted +ĠS ke +ĠBron ze +Ġl ol +Def ault +Ġcommod ity +red ited +Ġliber tarian +Ġforb idden +Ġgr an +à ¨ +Ġl ag +en z +dri ve +Ġmathemat ics +Ġw ires +Ġcrit ically +Ġcarb ohyd +ĠChance llor +ĠEd die +Ġban ning +ĠF ri +Ġcompl ications +et ric +ĠBangl adesh +Ġband width +St op +ĠOrig inally +Ġhalf way +yn asty +sh ine +Ġt ales +rit ies +av ier +Ġspin ning +ĠWH O +Ġneighbour hood +b ach +Ġcommer ce +ĠS le +B U +Ġentreprene ur +Ġpecul iar +ĠCom ments +f re +3 20 +IC S +Ġimag ery +ĠCan on +ĠElect ronic +sh ort +( ( +D ig +Ġcomm em +u ced +Ġincl ined +ĠSum mon +Ġcl iff +ĠMed iterranean +Ġpo etry +Ġprosper ity +ĠRe ce +Ġp ills +m ember +Ġfin ale +un c +ĠG ig +ä ½ +Ġl od +Ġback ward +- + +ĠFor ward +Ġth ri +s ure +Ġso ap +ĠF X +R ES +ĠSe xual +oul os +Ġfool ish +Ġright eous +Ġco ff +terror ism +ust ain +ot er +Ġab uses +ne xt +Ġab usive +Ġthere after +Ġprohib ition +ĠS UP +Ġd ip +Ġr ipped +Ġinher ited +Ġb ats +st ru +G T +Ġflaw ed +ph abet +Ġf og +do ors +Ġim aging +Ġdig its +ĠHung ary +Ġar rog +Ġteach ings +Ġprotocol s +ĠB anks +à ¸ +p ound +ĠC urt +." ) +. / +Ġex emption +end ix +ĠM ull +Ġimpro ves +ĠG amer +d imensional +I con +ĠMarg aret +St atus +d ates +Ġint ends +Ġdep ict +Ġpark ed +J oe +ĠMar ines +chn ology +! ). +Ġjud ged +Ġwe ights +R ay +Ġapart ments +he ster +Ġrein force +Ġoff ender +occ up +Ġs ore +e pt +ĠPH P +ĠB row +Ġauthor ization +ĠR isk +ĠDel aware +ĠQ U +Ġnot ifications +Ġsun light +Ġex clude +d at +Ġm esh +ĠSud an +Ġbelong ed +Ġsub way +Ġno on +ĠInter ior +ol ics +ĠL akers +Ġc oding +Dis claimer +Cal if +O ld +Ġdis l +???? ? +Ġconfir ms +Ġrecruit ment +Ġhom icide +Cons ider +ĠJeff rey +ft y +} ; +Ġobject ion +do ing +ĠLe o +W ant +Ġgl ow +ĠClar ke +ĠNorm an +Ġver ification +Ġpack et +ĠForm ula +Ġpl ag +es ville +Ġshout ing +Ġo v +ĠR EC +ĠB ub +Ġn inth +Ġener g +Ġvalid ity +Ġup s +j ack +Ġneighbor ing +ĠN ec +ew orks +ĠH ab +are z +Ġsp ine +Ġevent ual +ĠLe aders +ĠC arn +Ġprob ation +Ġrom ance +ms g +ĠMechan ical +ER Y +R ock +Ġpart isan +N ode +ass ets +min ent +Ġforeign ers +Ġtest ify +ĠUs ually +l ords +ĠG ren +ĠPow ell +BI L +Ġs r +Ġadd ict +Ġshell s +Ġs igh +ĠY ale +tern ity +Ġ7 50 +E U +ĠR ifle +Ġpat ron +em a +ĠB annon +an ity +Ġtrop ical +ĠV II +c ross +Every thing +ĠIS O +Ġhum ble +ass ing +ĠF IG +Ġupd ating +ys on +Ġcal cium +Ġcompet ent +Ġste ering +Pro t +ĠS Y +ĠFin als +ĠR ug +15 9 +13 7 +ĠG olf +Ġ12 6 +Ġaccommod ation +ĠHug hes +Ġaest hetic +art isan +ĠTw ilight +Ġpr ince +ĠAgric ulture +ĠDis co +Ġpreced ent +Ġtyp ing +author ized +O ption +ĠA ub +l ishes +ach t +m ag +P eter +ĠU FO +mont on +ĠL ith +Ġa rom +Ġsec uring +Ġconf ined +priv ate +Ġsw ords +Ġmark ers +Ġmetab olic +se lect +ĠCur se +ĠO t +g ressive +Ġinc umb +ĠS aga +Ġpr iced +Ġclear ance +Cont ent +Ġdr illing +Ġnot ices +Ġb ourgeois +Ġv est +Ġcook ie +ĠGuard ians +ry s +in yl +Ġ12 4 +Ġpl ausible +on gh +ĠOd in +Ġconcept ion +ĠY uk +ĠBaghd ad +ĠFl ag +Aust ral +ĠI BM +Ġintern ationally +ĠWiki Leaks +I ED +Ġc yn +Ġcho oses +ĠP ill +Ġcomb ining +Ġrad i +ĠMoh ammed +def ense +atch ing +Sub ject +ic iency +Fr ame +Ġ{ " +Ġche ss +Ġtim er +19 0 +Ġt in +Ġord inance +emet ery +Ġacc using +Ġnotice able +Ġcent res +Ġl id +ĠM ills +img ur +Ġz oom +erg ic +Ġcomp ression +pr im +f ind +Ġsur g +Ġp and +ĠK ee +ĠCh ad +cell ence +oy le +Ġsocial ism +ĠT ravis +ĠM Hz +Ġgu ild +ALL Y +ĠSub scribe +ĠRel ated +Ġoccur rence +itch ing +Ġfict ional +Ġcr ush +ĠE A +c od +m ix +ĠTri ple +Ġretrie ve +Ġstimul us +Ġpsych iat +ĠDo or +Ġhomosexual ity +Ġelement ary +Ġcell ular +id ian +ĠL aun +Ġintrig uing +Ġfo am +ĠB ass +id i +its u +Ġass ure +Ġcongr at +Ġbusiness man +ĠBo ost +cl ose +Ġl ied +Ġsc iences +ĠO mega +ĠG raphics +Ġ< = +sp oken +Ġconnect ivity +S aturday +ĠAven gers +Ġto ggle +Ġank le +Ġnational ist +mod el +ĠP ool +ophob ia +V ar +ĠM ons +ator ies +Ġaggress ively +C lear +For ge +act ers +Ġhed ge +Ġpip es +Ġbl unt +Ġs q +Ġremote ly +W ed +as ers +Ġref riger +Ġt iles +Ġresc ued +Ġcompr ised +ins ky +Ġman if +avan augh +Ġprol ifer +Ġal igned +x ml +Ġtri v +Ġcoord ination +ĠP ER +ĠQu ote +13 4 +b f +ĠS aw +Ġtermin ation +Ġ19 0 +Ġadd itions +Ġtri o +Ġproject ions +Ġpositive ly +Ġin clusive +Ġmem br +19 90 +old er +Ġpract iced +ink le +Ar ch +Ġstar ters +ari us +Ġinter mediate +ĠBen ef +ĠK iller +Ġinter ventions +ĠK il +ĠF lying +In v +Ġprem ature +Ġpsych iatric +Ġind ie +Ġcoll ar +ĠRain bow +af i +Ġdis ruption +ĠFO X +cast ing +Ġmis dem +c ro +Ġw ipe +ard on +Ġb ast +ĠTom my +ĠRepresent ative +Ġbell y +ĠP O +ĠBre itbart +13 2 +Ġmess aging +Sh ould +Ref erences +ĠG RE +ist ical +L P +ĠC av +ĠC razy +Ġintu itive +ke eping +ĠM oss +Ġdiscont in +ĠMod ule +Ġun related +ĠPract ice +ĠTrans port +Ġstatist ically +orn s +Ġs ized +p u +Ġca f +ĠWorld s +ĠRod gers +ĠL un +ĠCom ic +l iving +Ġc ared +Ġclim bed +) { +Ġconsist ed +Ġmed ieval +fol k +Ġh acked +Ġd ire +ĠHerm ione +Ġt ended +ce ans +D aniel +w ent +Ġlegisl ators +Ġred es +g ames +Ġg n +am iliar +Ġ+ + +gg y +th reat +Ġmag net +Ġper ceive +Ġz ip +Ġindict ment +Ġcrit ique +g ard +ĠSaf e +ĠC ream +Ġad vent +ob a +Ġv owed +ous ands +Ġsk i +Ġabort ions +u art +Ġstun ned +Ġadv ancing +Ġlack ed +Ġ\ " +Ġsch izophren +Ġeleg ant +Ġconf erences +Ġcance led +ĠHud son +ĠHop efully +Ġtr ump +Ġfrequ encies +Ġmet eor +ĠJun ior +ĠFle et +ĠMal colm +ĠT ools +Ġ ........ +Ġh obby +ĠEurope ans +Ġ15 00 +ĠInt o +Ġs way +ĠApp ro +ĠCom pl +Comm unity +Ġt ide +ĠSum mit +ä » +Ġinter vals +ĠE ther +Ġhabit at +ĠSteven s +lish ing +ĠDom ain +Ġtrig gers +Ġch asing +Ġchar m +ĠFl ower +it ored +Ġbless ing +Ġtext ures +F ive +Ġliqu or +R P +F IN +Ġ19 62 +C AR +Un known +Ġres il +ĠL ily +Ġabund ance +Ġpredict able +r ar +Ġbull shit +le en +che t +M or +M uch +ä ¹ +Ġemphas ized +Ġcr ust +Ġprim itive +Ġenjoy able +ĠPict ures +Ġteam mate +pl er +ĠT ol +ĠK ane +Ġsummon ed +th y +ram a +ĠH onda +Ġreal izing +Ġquick er +Ġconcent rate +cle ar +Ġ2 10 +ĠErd ogan +ar is +Ġrespond s +ĠB I +Ġelig ibility +Ġpus hes +ĠId aho +Ġagg rav +Ġru ins +ur ations +Ġb ans +Ġan at +sh are +Ġgr ind +h in +um en +Ġut ilities +ĠYan kees +Ġdat abases +ĠD D +Ġdispl aced +Ġdepend encies +Ġstim ulation +h un +h ouses +ĠP retty +ĠRaven s +ĠTOD AY +Ġassoci ates +Ġthe rape +cl ed +Ġde er +Ġrep airs +rent ice +Ġrecept ors +Ġrem ed +ĠC e +Ġmar riages +Ġball ots +ĠSold ier +Ġhilar ious +op l +13 8 +Ġinherent ly +Ġignor ant +Ġb ounce +ĠE aster +REL ATED +ĠCur rency +E V +ãĥ ŀ +ĠLe ad +Ġdece ased +B rien +ĠMus k +J S +Ġmer ge +heart ed +c reat +m itt +m und +ĠâĢ ĭ +ĠB ag +Ġproject ion +Ġj ava +ĠStand ards +ĠLeon ard +Ġcoc onut +ĠPop ulation +Ġtra ject +Ġimp ly +Ġcur iosity +ĠD B +ĠF resh +ĠP or +Ġheav ier +ne ys +gom ery +Ġdes erved +Ġphr ases +ĠG C +Ġye ast +d esc +De ath +Ġreb oot +Ġmet adata +IC AL +Ġrep ay +ĠInd ependence +Ġsubur ban +ical s +Ġat op +Ġall ocation +gener ation +ĠG ram +Ġmoist ure +Ġp ine +ĠLiber als +Ġa ides +Ġund erest +ĠBer ry +Ġcere mon +3 70 +ast rous +ĠPir ates +Ġt ense +ĠIndust ries +ĠApp eals +ĠN ear +Ġè£ı ç +Ġlo vers +ĠC AP +ĠC raw +Ġg iants +Ġeffic acy +E lement +ĠBeh avior +ĠToy ota +Ġint est +P riv +A I +Ġmaneu ver +Ġperfect ion +Ġb ang +p aper +r ill +Ge orge +b order +in ters +ĠS eth +Ġcl ues +ĠLe vi +ĠRe venue +14 7 +Ġv apor +Ġfortun ate +Ġthreat ens +Ġve t +Ġdepend ency +ers ed +art icle +ĠBl izzard +Ġch lor +Ġmin us +ĠB ills +Ġcryptoc urrency +Ġmetabol ism +ter ing +Ġp estic +step s +ĠTre asure +ract ed +ĠConst ant +Ġtem p +13 9 +ĠDet ective +ur ally +Ġrecover ing +Ġcort ex +Ġ14 4 +cl osed +Ġprejud ice +aun ted +Ġstorm s +ĠN OW +Ġmach inery +Add ress +Ġcompe lled +27 0 +Ġdesp air +b ane +Ġveget able +Ġbed s +Lear n +Ġcolor ful +Ġsp ike +Ġmarg ins +Ġsymp athy +Ġworks hop +ĠC BC +S at +Ġburn s +ĠG ender +Ġ12 9 +ĠC able +Ġdeb ts +ĠThe resa +Ġreflect ing +Ġa irst +Ġr im +ram id +Ġweakness es +W rit +ogg le +t i +ĠCh arge +Ġwe ighed +Ġ( . +Ġl aughter +Ġrou ter +ĠDemocr acy +D ear +Ġhas ht +Ġd y +Ġhint s +run ning +Ġfin ishes +ar us +M ass +res ult +asc us +Ġv intage +Ġcon qu +Ġwild ly +ac ist +Ġl ingu +Ġprot agonist +st rom +te enth +ĠSol o +m ac +f illed +Ġre nown +it ives +Ġmot ive +ĠAnt ar +ĠM ann +ĠAd just +Ġrock ets +Ġtrou bling +e i +Ġorgan isms +ass is +Christ ian +Ġ14 5 +ĠH ass +Ġsw all +Ġw ax +ĠSurv ival +V S +ĠM urd +v d +stand ard +Ġdrag ons +Ġacceler ation +r ational +f inal +Ġp aired +ĠE thereum +Ġinterf aces +Ġres ent +Ġartif acts +Å « +are l +Ġcompet itor +ĠNich olas +ĠSur face +c pp +ĠT ot +Ġeconom ically +Ġorgan ised +Ġen forced +in ho +Ġvar ieties +Ġab dom +ĠBa iley +id av +ĠSal v +p aid +Ġalt itude +ess ert +ĠG utenberg +are a +op oulos +Ġprofess ors +igg s +ĠF ate +he y +Ġ3 000 +D ist +Ġtw ins +c ill +ĠM aps +Ġtra ps +Ġwe ed +ĠK iss +Ġy oga +Ġrecip ients +ĠWest minster +Ġpool s +ĠWal mart +18 8 +ĠSchool s +att ack +ĠAR M +par agraph +W arning +j l +Ġself ish +anche z +ĠHe ights +F re +ĠS oph +Ġ -------------------------------- +t ml +33 3 +Ġraid s +Ġsatell ites +KE Y +Ġlast s +Ñ Ĥ +In s +ĠD ame +Ġunp redict +// / +gh ai +Ġart illery +Ġcru ise +Ġg el +ĠCabin et +Ġbl ows +ĠE sp +Ġprox imity +ot he +ĠSk ills +ĠU pper +ob o +ĠN DP +Ġenjoy s +Ġrepe ating +ĠConst ruction +ĠQuest ions +H illary +Ġu int +Ġprocess ors +ĠGib son +ĠMult iple +q a +ĠB om +ĠM iles +vent ional +Ġhur ts +s kin +ĠA IDS +Ġadvis ers +ĠR oot +Ġmethod ology +ĠD ale +Ġdet on +ĠKnow ledge +sequ ently +Ġ12 1 +Ġconnect s +C y +ĠD anger +Ġcontribut ors +ĠB ent +Ġbr ass +ĠGun s +int o +ĠFort une +Ġbro ker +bal ance +Ġlength s +Ġv ic +Ġaver aging +Ġappropri ately +ĠCamer a +Ġsand wich +ĠCD C +Ġcoord inate +Ġnav ig +Ġgood ness +l aim +Ġbra ke +Ġextrem ist +ĠW ake +ĠM end +ĠT iny +ĠC OL +ĠR F +ĠD ual +ĠW ine +C ase +Ġref ined +Ġl amp +L ead +Ġb apt +ĠCar b +ĠS add +ĠMin neapolis +PD F +Ear ly +ĠH idden +I ts +ĠT IME +Ġp ap +Ġcommission ed +ĠF ew +ĠCol ts +ĠB ren +Ġbot hered +Ġlike wise +Ex per +ĠSch w +c ry +n n +ĠM itch +im on +M G +b m +UM P +r ays +Ġregist ry +Ġ2 70 +ach ine +re lla +ant ing +00 000 +Ġru ined +sp ot +Ġt a +Ġmaxim ize +Ġincon ven +D ead +H uman +En abled +ĠMar ie +Ġch ill +ĠParad ise +Ġstar ring +ĠLat ino +ĠProt ocol +ĠE VER +Ġsuppl iers +m essage +ĠBro ck +Ġser um +âĸĪâĸĪ âĸĪâĸĪ +Ġen comp +Ġamb ition +ues e +Ġar rows +And rew +Ġanten na +Ġ19 61 +ĠB ark +Ġb ool +ãĤ ª +ĠSt orage +Ġrail way +Ġtoug her +ĠC ad +Ġwas hing +P y +' ] +em bed +ĠMem phis +ack le +Ġfam ously +ĠF ortunately +ov ies +Ġmind set +Ġsne ak +ĠD h +RA W +ĠSim pson +Ġliv est +Ġland mark +Ġc ement +L ow +Ġthr illed +ĠCour se +in el +Ġch uck +id ate +gl obal +Ġwh it +Ġ � +ad ays +s ki +ĠS V +Ġvir uses +30 6 +ĠResp ons +Ġthe aters +ĠBr anch +ĠGene va +ĠM K +Ġunbel iev +Ġcommun ist +Orig inal +ĠRe ceived +ĠTrans fer +ĠAr g +In put +ĠStr ategy +Ġpal ace +the ning +D ri +Ġsent encing +umbn ail +Ġp ins +re cy +Ġs iblings +Get ting +ĠB U +ĠNorth west +Ġprolong ed +ĠSak ura +C omb +ĠB our +Ġinadequ ate +ĠK ash +Ġus ername +ĠImpro ve +Ġbatt ling +ĠM AC +Ġcurric ulum +Ġs oda +ĠC annon +Ġsens ible +sp ons +De cember +Ġw icked +ĠP engu +Ġdict ators +ĠHe arts +og yn +Ġsimilar ities +ĠSt ats +Ġh ollow +it ations +": [ +Ġh over +ĠList en +s ch +S und +Ġc ad +ĠPar ks +Ġl ur +Ġhy pe +ĠL em +N AME +is ure +Fr iday +Ġshoot s +Ġclos es +Ġd b +ĠR idge +ĠDiff erent +Ġrepl ies +ĠBroad way +op ers +Ġint oler +ĠZe us +akes pe +Ġpropri etary +Ġrequest ing +Ġcontro llers +ĠM IN +im edia +be cca +Ġexp ans +Ġoil s +B ot +ĠCh and +Ġpr inter +Ġto pped +ĠP OL +ĠEar lier +S ocial +av in +Ġdecre ases +ĠSe b +Ġspecific ations +ĠBl ast +ĠK urt +Ġfre el +B rown +Ġdil ig +ro e +ĠPro blem +ĠQu ad +Ġdecent ral +ĠV ector +an ut +Ġplug ins +ĠGreg ory +Ġfuck ed +el ines +ĠAmb assador +t ake +Ġcle ans +ong yang +An onymous +st ro +" } +al ine +ĠO dd +ĠE ug +2 16 +Ġbo il +ĠP owers +Ġnurs es +Ob viously +ĠTechn ical +Ġexceed ed +OR S +Ġextrem ists +Ġtr aces +ex pl +Ġcom r +ĠS ach +) / +Ġm asks +Ġsc i +B on +Ġreg ression +we gian +Ġadvis or +it ures +ĠV o +ex ample +ĠInst ruct +Ġs iege +Ġredu ctions +pt r +Ġstat utory +Ġrem oves +Ġp uck +red its +Ġbe e +Ġsal ad +Ġpromot ions +ĠJosh ua +with standing +ET H +ĠCh a +im us +Ġexpend iture +aun ting +Ġdelight ed +Ġ15 5 +be h +Ġcar pet +ĠSp art +Ġj ungle +l ists +Ġbull ying +ĠNob el +ĠGl en +Ġreferen ced +Ġintrodu ces +se in +Ġcho pped +gl ass +ĠW rest +Ġneutral ity +Ġâ Ļ +Ġinvestig ator +Ġshel ves +Ġun constitutional +Ġreprodu ction +Ġmer chant +m ia +Ġmet rics +Ġexplos ives +ĠSon ia +Ġbod ily +Ġthick ness +Ġpredomin antly +ĠAb ility +Ġmon itored +IC H +Ġ] . +ĠMart inez +Ġvis ibility +Ġqu eries +Ġgen ocide +ĠWar fare +Qu ery +Ġstud ios +Ġemb ry +Ġcorrid or +Ġclean ed +com plete +ĠM H +Ġenroll ment +ING S +Ġimpact ed +Ġdis astrous +ĠY un +ĠCl aire +ĠBas ically +y t +uster ity +Ġindirect ly +w ik +Ġd od +ĠCar r +Ġam p +Ġprohib it +ĠIn itial +ĠR d +ij i +Ġeduc ate +c orn +i ott +ĠBeaut y +Ġdetect ive +ĠCon n +s ince +Ġst agger +Ġob ese +Ġb ree +olog ic +is se +walk er +Ġbl ades +Ġlaw ful +fun c +ĠBeh ind +Ġappet ite +Ġ( * +Ġt ennis +Ġoff spring +Ġj ets +Ġstruct ured +Ġafore mentioned +N ov +Ġsc aling +f ill +Ġst ew +Ġcur b +ĠStep han +ed In +S F +ob ic +é ŃĶ +ou g +ĠM M +Ġgen etically +ope z +13 6 +Ġu mb +anc ers +Ġcoh ort +Ġmerch andise +Ġimp osing +ĠLegisl ature +ĠArch ive +iv ia +ĠN aval +Ġoff ences +Ġmir acle +Ġsn apped +Ġf oes +Ġextensive ly +ĠR af +Ġc ater +ed ience +K it +ĠB in +Ġrecomm ends +ĠC ities +Ġrig id +ĠRE AD +ĠNob le +ĠT ian +Ġcertific ates +ant is +o iler +ĠBudd hist +d id +Ġsurvey ed +Ġdown ward +Ġprint s +ĠMot ion +ron ics +ĠS ans +oss ibly +u ctions +Ġcolon ies +ĠDan ish +un it +Ġsp oil +Ġadvis ory +ber ries +Pl an +Ġspecific ation +op hers +ĠRes ource +Ġsh irts +prising ly +commun ications +Ġtriv ial +Ġmention ing +ise xual +Ġsupp lements +Ġsuper vision +B P +v or +Ġw it +Ġco oldown +Ġplaint iff +ĠReview s +ĠS ri +ĠM int +ĠSug ar +Ġafter ward +ĠPri est +ĠInvest ment +og ene +ĠT aking +Ġstretch ing +Ġinflamm ation +ĠTe hran +Ġl ining +Ġfree zing +ĠEnt ity +Ġins piring +spe cial +pr ice +Ġsu e +ĠP orter +oun ge +ET A +ĠD erek +ĠLu is +u o +ym ph +Ġex terior +ih il +ĠAsh ley +in ator +Ġnut rients +ĠTh rones +Ġfin ances +ĠIn spect +Ġspe cially +ĠRequ ired +ĠP TS +ĠViol ence +oint ed +sh ots +Ġex cerpt +co on +IN S +ĠG ri +Ġrecogn ised +We ek +You ng +Ġv om +is le +ĠCur ry +ĠBudd h +Ġnot ebook +Ġd urable +/ ? +ĠG ad +ĠP upp +Ġforg ive +p ark +Ġpersonal ities +an alysis +cl amation +Ġelev ator +Ġware house +ĠR ole +un n +Ġillust ration +ĠSc an +Ġatmosp heric +Im port +AN C +rict ed +f u +01 0 +Ġar che +Ġreward ed +akespe are +Ġintern ally +ĠR BI +alk er +Ġeleph ant +ow itz +ĠP izza +Ġbip artisan +é s +Ġslow ed +ĠSt ark +Ġover ride +OU S +Ġ3 20 +undred s +ĠDe ck +ĠC ensus +be e +14 6 +ot or +Ġ ip +Ġu b +oc ations +ĠBut ton +r ice +Ġc ripp +ff f +Ġorig inated +Ġoverwhel med +app a +Ġfore most +âĢ ij +ĠL EG +re lease +eat ured +at ches +Ġre ps +Ġl ending +ĠRe ference +ĠCl ient +16 5 +vent h +Com plete +ĠPat rol +Ġsw orn +c am +Ġshut tle +ĠR alph +Ġh ometown +- , +on al +ĠB P +å ı +Ġpersu ade +ĠAlex and +Ġcomb ines +Ġv ivid +ĠL ag +Ġenc oding +Ġsal vation +w en +ĠRec overy +i ya +Un iversity +ĠB iden +Ġbud gets +ĠTex ans +f its +Ġhon ored +Ġp ython +T D +## # +cl one +Ġbl ink +ĠL iquid +Ġunemploy ed +Ġcl ashes +ĠCoun sel +Ġdirect ing +Ġpun ct +ĠFal cons +Ġsh ark +ĠDam ascus +Ġje ans +Ġemb ark +Ġse ize +Ġup wards +2 80 +ĠE z +ĠAny thing +Ġex otic +l ower +ĠCreat or +ĠU m +Ġsubur bs +ber ger +ĠW end +Ġm int +ĠX X +ĠD ro +Ġsuff ers +Ġher b +t ree +Ġfrag ile +Ġflood ed +ĠAl cohol +ole an +ny der +ĠK O +F ram +Ġ13 6 +Ġow ed +ĠMe lee +ĠH ash +Ġwh isk +Ġsu do +r r +Qu ick +app ro +Ġi i +ĠEx amples +he e +Ġpromot es +per ature +k ar +ĠHon or +Ġs odium +ĠL if +ros so +intend ent +Ġcorrespond ent +F ound +sec ret +Ġident ifies +ag ne +Ġl ou +ĠP P +Ġcoinc idence +m ove +Ġmilit ia +Ġinf iltr +ĠPrim ary +Ġpitch ing +ĠI b +ĠGO OD +ãĤ ¸ +ĠW izards +ir al +ĠVen us +R R +ĠâĢ ķ +ĠCase y +Ġsad ly +Ġadm ire +Ġembarrass ed +c b +M el +Ġtub es +Ġbeaut ifully +ĠQueens land +Bel ow +re z +qu et +ple asant +Ġ « +C amp +Ġdec isive +19 98 +ĠL amb +ut ton +h n +ĠJ agu +au nder +ĠC ord +Ġcl erk +Ġca ffe +Ġwip ed +Ġre im +ĠMount ains +Ġimprison ed +Ġdevelop s +ĠP ra +Ġmodel ing +Any one +ance l +ĠS it +Ġshield s +Ġl awn +Ġcard iovascular +Ġdemonstr ating +Ġpar se +ĠIsrael is +Ġeuro s +14 3 +Ġgl orious +ins ki +ec d +Ġcondition ing +Ġhel pless +Ġmicro sc +ĠHar bor +Ġst akes +Ġ2 60 +Ġun equ +ĠFl oyd +Ġd amp +Ġappar atus +ĠLaw s +Ġcoun ters +Ġindu ce +at able +ĠAh med +Ġsl am +N ovember +Ġpers ist +Ġim minent +á n +Ġsh red +Ġph ases +ĠEd monton +ĠArm strong +ĠMe et +ĠK itty +Ñ Ģ +c irc +ĠAd ult +Ġa rose +ĠX en +D an +g ow +Ġsuper f +ĠAd mir +Ġend ure +Ġkey word +yr us +Ġy arn +Ġpath way +ĠHop kins +mid t +Ġcens orship +d ependent +Ġinstruct or +S ources +Ġto e +Ġball oon +N ob +Ġsw ear +ĠCast ro +Ġgl oss +ĠK avanaugh +Ġremark ably +Ph otos +ĠN om +ĠS outheast +y ers +Ġvalid ation +Ġcann on +ĠVict ory +ĠPier re +Ġcaut ious +Aud io +Ġf etch +ĠG ift +ĠH yp +Ġrem edy +Z E +Ġsc ent +Ġbe ard +ĠR ut +- " +Ġpat ents +H y +Ġun just +Ġpot ato +Ġforth coming +Ġche f +ĠR ift +aff e +ĠR OM +ĠL aunch +Ġp ads +ĠNe o +Ġon set +Ġsquee ze +s afe +Ġpref ix +ĠT M +ĠN early +ĠClin ical +ĠM ental +ot iation +ĠUn ic +ant ry +ĠC ir +Ġep it +à ¦ +Ġextract ed +verse ly +ri ad +Ġstr ains +Ġto ps +Ġpo em +ĠRand y +ĠMap le +TH ER +up iter +ĠSS D +ļ é +Ġun con +per ing +Ġsle pt +in ers +Ġunder water +ĠEv idence +g one +20 5 +Ġhistor ians +Ġsynt hesis +Ġf rog +b asketball +Ġvibr ant +Ġsub ord +Ġ3 65 +ĠD ial +Ġcooper ate +HA HA +Ġgreet ed +15 8 +Ġj azz +Ġinto x +ĠWalk ing +Ġsuper visor +ĠF usion +ĠMer cedes +s end +H am +s d +n l +Ġtour s +ĠF IFA +Ġcul p +g d +30 4 +Ġple as +Ġillust rates +ĠColomb ia +Ġhighlight ing +ĠSum mary +Ġexp osing +ĠD ru +Ġir ony +r itional +ĠCar roll +ĠEll is +P ict +ĠR apt +Ġad apter +Ġun m +Ġcor pse +Ġceleb rities +D en +at um +ĠAp ocalypse +ĠW ag +lin ing +Ġhorm ones +R ub +ĠX i +ĠV aults +20 8 +alky rie +inos aur +Ġfeed s +v ity +Ġdefe ating +W ait +Ġemphas ize +ĠSteel ers +yr inth +le ys +ĠWhe never +Current ly +ĠCl ock +Ġcollect ively +any on +ĠJ P +Ġment ality +Ġdownload s +Ġsurround ings +ĠBarn es +Ġflags hip +Ġindic ators +Ġgra pp +Jan uary +ĠElement al +ĠAthen a +ib al +Ġs ights +Ġcap ita +ĠTreat y +Ġvo iced +ĠG az +let te +Ġy a +Ġexp ired +Leg end +H ot +n ature +Ġunst able +Ġ2 80 +à º +Com ment +AL E +Ġquest s +Ġhand ler +n is +Ġvers atile +Ġconce al +enge ance +ĠInter active +Ġobs essed +ĠDog s +Ġcr acked +S ound +s v +ĠD ylan +ro ads +f x +ĠCath olics +ĠH ag +Ġsl ammed +Ġgl owing +s ale +Ġtiss ues +ĠCh i +ne e +Ġc her +s ic +ur rection +Ġb acon +ul atory +) ." +Ġir regular +FOR M +ass ed +Ġintention al +Ġcompens ate +ĠSpe aking +ĠS ets +15 3 +Ġconvent ions +b ands +em ade +Ġe cc +ĠWin ston +ĠAssass in +ĠBelg ian +Ġdepend ence +Ġnic he +Ġb ark +ĠJ azz +Ġdisadvant age +Ġgas oline +Ġ16 5 +çļ Ħ +ess a +mod ule +ang ular +O Y +ĠTreat ment +it as +ol ation +ĠArn old +Ġfe ud +ĠN est +Ġthe atre +ew ater +Ġmin ors +olic y +ĠH aven +div ision +Ġtr unk +F ar +ĠP ull +Ġcapt uring +Ġ18 00 +ĠTe en +Ġex empl +Ġclin ics +ĠB urg +Ġsubst it +Ġpay load +ĠL av +ĠT roy +ĠW itness +Ġfrag ments +Ġpass words +Ġg ospel +ĠG in +Ġten ants +ol ith +S ix +Pre vious +ĠAg es +ĠDar win +Ġbl at +Ġem pathy +sm ith +b ag +ĠE cho +ĠC amb +ĠM add +ĠB oo +Ġred e +ĠBurn ing +Ġsmooth ly +ĠAd rian +ĠV ampire +ĠMon sters +ste am +Sty le +M a +re a +ĠD war +aly st +urs or +Ġelim ination +Ġcrypt o +ch t +ĠE ternal +â̦ ] +ĠS orce +I ll +N ER +Ġu h +Con clusion +w age +Ġresp ir +Ġrem inis +het ical +Ġg y +Ġutil ized +ic idal +Ġ19 00 +Ġhun ters +ĠSw an +ĠRe act +Ġvis itor +ĠThanks giving +30 8 +Post s +Ġh ips +19 97 +om ers +Ġkn ocking +ĠVeh icle +Ġt il +Ġ13 8 +Ġm i +ĠInvest igation +ĠKen ya +Ġcas ino +Ġmot ives +Ġreg ain +re x +Ġweek ends +Ġstab bed +bor o +Ġexplo ited +ĠHA VE +ĠTe levision +c ock +Ġprepar ations +Ġende av +ĠRem ote +ĠM aker +ĠPro du +ĠEv an +Ġinform ational +ĠLouis ville +15 4 +ĠDream s +Ġpl ots +ĠRun ner +Ġhur ting +Ġacad emy +ĠMont gomery +n m +ĠL anc +ĠAl z +2 10 +el ong +Ġretail er +Ġar ising +Ġrebell ion +Ġbl onde +play ed +Ġinstrument al +C ross +Ġret ention +Ġtherape utic +Ġse as +Ġinfant ry +ĠCl int +Ġprompt ing +Ġbit ch +Ġst ems +ĠK ra +Ġthe sis +ĠB og +ru ed +Ġk ings +Ġcl ay +ific ent +ĠY ES +ĠTh ing +ĠCub s +vey ard +els h +in arily +ĠE y +ĠRoll ing +Ġev olving +Ind ia +Ġrecogn izes +Ġgrad uation +is ers +Ġfert ility +ĠMil an +Comm and +Ġbox ing +Ġ19 43 +Ġgl uten +ĠEm ir +Ġid ol +Ġcon ceived +ĠCre ation +Mer it +udd y +uss ions +ĠLie utenant +iet al +Ġunch anged +ĠSc ale +ĠCrime a +ball s +ator ial +Ġdepth s +Ġempir ical +Ġtrans m +Ġuns afe +miss ible +com fort +15 6 +Ġmechan ic +00 2 +l ins +Ġsm oked +P os +Ġslow ing +Ġl av +Tex as +Ġche ating +ĠMet ropolitan +eth yl +Ġdiscover ing +as se +Ġpen cil +ĠPy ongyang +Ġclos et +ĠShe et +ĠEnt ry +ou stic +Ġmy st +er ate +ari at +Ġminer als +Ġmusic ian +ĠP ul +ĠM az +24 9 +Ġper missions +Ġ iv +en ary +ick ers +ĠB ing +he a +en able +Ġgri ev +Ġassert ed +ĠColon el +Ġaff idav +w o +Ġse ated +ĠR ide +Ġpaint ings +ĠP ix +Ġ13 7 +ish i +umb ai +g otten +ĠEar l +Ġin ning +Ġc ensus +Ġtrave lled +ĠCons ult +18 5 +b ind +Ġsimpl icity +Ġoverlook ed +ĠHelp ful +Ġmon key +Ġoverwhelming ly +Bl ood +ĠFl int +ĠJ ama +ĠPres ent +ĠR age +ĠT A +pt ive +Ġturn out +w ald +ĠD olphins +ĠV PN +Ġon ion +Ġcraft ing +m ma +ĠMerc ury +Ġarr ange +Ġalert s +ĠO T +zb ollah +Ġg ases +ĠRichards on +s al +l ar +Ġfro st +Ġlower ing +Ġacc laim +Ġstart ups +ĠG ain +ess ment +Ġguard ian +äº º +ĠP ie +ĠL inks +Ġmer its +Ġaw ake +Ġparent al +Ġexceed s +Ġid le +ĠPil ot +Ġe Bay +ĠAc cept +ipe g +C am +ĠK ot +Ġtrad ers +olit ics +unk er +ĠP ale +os i +an mar +Ġ19 47 +ĠF ell +est ial +it ating +G F +ĠS r +if ted +Ġconnect or +ĠB one +ill es +2 60 +h ma +Ġoverl ap +ĠGit Hub +Ġclean er +ĠBapt ist +ĠW AS +Ġlung s +Ñ ģ +ĠB UT +Ġc ite +Ġpit ched +reat ment +Ġtro phies +ĠN u +38 6 +ĠPr ide +Ġattend ees +[ ] +17 9 +Ġspat ial +Ġpri zes +ĠRel igion +Ġshow case +ĠC ategory +vid ia +T arget +Pro perty +? , +Ġf usion +p ie +ĠU CLA +Ġsound track +Ġprin cess +ĠC aval +sh ould +Ġlim bs +Back ground +Ġlone ly +Ġc ores +ĠT ail +she et +Ġ13 2 +R a +ãĤ « +ĠB olt +Ġbook ed +Ġadmin ister +Ġequ als +w y +Ġobserv ing +ĠBar on +ĠAd obe +Ġv irgin +ĠSocial ist +M ove +gh azi +ĠLind a +2 12 +Ġbre wing +Ġmerch ants +bur se +Ġdiv or +Ġmet als +ĠN er +Ġsum s +ĠEn emy +Ġen vision +Ġgrant ing +ĠH oney +ĠSk yrim +Ġsoc io +gr aded +Ġselect ive +W ASHINGTON +Ġ19 48 +ĠSir ius +ĠG ross +act ivity +ĠI van +Ġfur ious +BS D +ĠPre vious +Ġrespons ive +Ġchar itable +Ġle aning +ĠP ew +Ġviol ates +\\\\ \\\\ +ĠCom ing +w ire +Ġpo et +Ġres olutions +comm and +ĠPortug uese +Ġnick name +Ġde af +Feb ruary +Ġrecogn ise +Ġentire ty +Ġseason al +pl aced +ĠTe legraph +Ġmicro phone +our ing +Ġgr ains +Ġgovern ed +Ġpost p +ĠW aters +in ement +Ġund ocumented +ĠCom cast +Ġf ox +Ġassault s +re on +man y +ĠJen kins +ĠAny way +Ġassess ments +Ġdown s +ĠM ouse +Ġsuper b +k t +ĠD ow +Ġtax ation +4 01 +Ġsm iles +Ġundert aken +Ġex h +Ġenthusi astic +Ġtw ent +Ġgovernment al +Ġautonom y +ĠTechn ologies +ĠCh ain +Ġpreval ent +f b +Ġnic otine +og ram +j ob +Ġawa iting +ĠMen u +Ġdep uties +k ov +ish ops +But ton +ĠShan ghai +Ġdies el +ĠD uck +R yan +ĠPC s +N F +j ury +ent e +Ġinacc urate +edd y +Wh atever +Ġshow c +ĠN ad +od us +et r +Ġplaint iffs +ĠW OR +ĠAss ange +Ġpriv at +Ġpremium s +Ġt am +UR L +Ġel ites +ĠR anger +otten ham +ĠH off +ĠAt hens +Ġdefin ite +Ġs ighed +Ġeven ly +2 11 +ĠAm ber +ak ia +Ġmail ing +Ġcr ashing +ĠConfeder ate +ru gged +W al +ĠDep ths +Ġjuven ile +Ġreact or +Introdu ction +ĠDel uxe +19 95 +ĠS anchez +ĠM ead +iv able +: - +ĠPlan ning +ĠT rap +qu in +ĠProt ect +ve red +In formation +Ġkid ney +inn amon +l as +Ġpolic ing +Ġtoler ate +ĠQ i +Ġbi ased +F ort +ĠK i +s ave +Ġprivile ged +Ġbe asts +ĠGl as +ĠC inem +Ġcome back +Sund ay +Ġext inction +h ops +Ġtrans mit +Ġdoub les +ĠFl at +16 7 +Ġdis puted +Ġinjust ice +f oo +V ict +role um +ĠJul ie +Con text +ĠR arity +iss ue +Comp onent +Ġcounsel ing +an ne +d ark +Ġobject ions +u ilt +Ġg ast +Ġpl ac +Ġun used +ãĥ ĩ +ĠT rial +ĠJ as +hed ral +ob b +Ġtempor al +ĠPR O +ĠN W +ĠAnn iversary +L arge +Ġther m +Ġd avid +Ġsystem ic +ĠSh ir +m ut +ĠNe pt +add ress +Ġscan ning +Ġunderstand able +Ġcan vas +C at +ĠZ oo +Ġang els +L O +ĠStat ement +ĠS ig +ov able +ĠA way +sh aring +ocr ats +st ated +Ġweigh ing +N or +w ild +B ey +Ġaston ishing +ĠReyn olds +Ġop ener +Ġtrain er +Ġsurg ical +p n +Ġadjust ing +whe el +Ġf rown +erv ative +Ġsusp end +With in +te in +Ġobst acle +Ġliber ties +ym es +Ġur anium +ans om +an ol +ub a +ĠL oss +Ġa rous +ĠHend erson +W ow +s pl +c ur +ĠÂ Ń +Ġtheir s +Dam age +Ġdownload ing +Ġdisc ern +ĠSt o +ĠFl a +Ġh ath +ĠA j +Ġun pleasant +Europe an +exp ensive +Ġscreens hot +ĠU V +Ġall ied +ĠPers ian +Ġmonop oly +Ġat om +ĠReds kins +"> < +Ġcan cell +Ġcinem a +13 1 +f air +ĠAlf red +Ġd uck +arg s +22 3 +ĠIS I +Ġsign aling +in ar +Ġlaugh s +Ġfor wards +Ġreck less +Ġlisten ers +at ivity +Ġvast ly +n ant +L ess +ĠHun ting +ĠScient ific +IT ED +Ġkn ight +ĠH TC +us a +t mp +Ġr ude +ĠLegend ary +Ġar ises +B ad +ĠCl aim +pe g +Ġreal ities +Th ink +Ġ ° +Ġro de +Ġstri ve +Ġan ecd +Ġshort s +Ġhypot hes +Ġcoord inated +ĠGand hi +ĠF PS +R ED +Ġsuscept ible +Ġshr ink +ĠCh art +Hel p +Ġ ion +de ep +rib es +ĠK ai +ĠCustom er +Sum mary +Ġc ough +w ife +Ġl end +Ġposition ing +Ġlot tery +ĠC anyon +Ġf ade +Ġbron ze +ĠKenn y +Ġbo asts +ĠEnh anced +rec ord +Ġemer gence +Ġa kin +ĠB ert +it ous +âĸ ij +Ġst ip +Ġexch anged +om ore +als h +Ġreserv oir +Ġstand point +W M +Ġiniti ate +Ġdec ay +Ġbrew ery +Ġter ribly +Ġmort al +lev ard +Ġrev is +N I +el o +Ġconf ess +ĠMS NBC +Ġsub missions +Cont roller +Ġ20 2 +ĠR uth +} ); +ĠAz ure +Ġ ." +20 6 +ĠMarket ing +Ġl aund +ien cies +Ġrenown ed +ĠT rou +ĠN GO +ble ms +Ġterr ified +Ġwar ns +Ġper t +Ġuns ure +4 80 +ale z +ult z +ĠOut side +Ġst yl +ĠUnder ground +Ġp anc +Ġd ictionary +Ġf oe +rim inal +ĠNor wegian +Ġj ailed +Ġm aternal +é e +ĠLu cy +c op +Ch o +Ġuns igned +ĠZe lda +ĠIns ider +ĠContin ued +Ġ13 3 +ĠNar uto +ĠMajor ity +16 9 +ĠW o +ãĤ ĵ +Ġpast or +Ġinform al +Ð ½ +an throp +jo in +ãģ Ĺ +it ational +N P +ĠWrit ing +f n +ĠB ever +19 5 +Ġy elling +Ġdr astically +Ġe ject +Ġne ut +Ġth rive +ĠFre qu +ou x +Ġpossess es +ĠSen ators +ĠD ES +ĠSh akespeare +ĠFran co +ĠL B +uch i +Ġinc arn +Ġfound ers +F unction +Ġbright ness +ĠB T +Ġwh ale +ĠThe ater +m ass +ĠD oll +S omething +Ġecho ed +ĠHe x +c rit +af ia +Ġgodd ess +Ġele ven +ĠPre view +ĠAur ora +Ġ4 01 +uls ive +ĠLog an +in burgh +ĠCent ers +ĠON LY +ĠA id +Ġparad ox +Ġh urd +ĠL C +D ue +c ourt +Ġoff ended +Ġeval uating +ĠMatthew s +Ġto mb +Ġpay roll +Ġextra ction +ĠH ands +if i +Ġsuper natural +ĠCOM M +] = +dog s +Ġ5 12 +ĠMe eting +Rich ard +ĠMax imum +Ġide als +Th ings +m and +ĠReg ardless +Ġhum ili +b uffer +L ittle +ĠD ani +ĠN ak +Ġliber ation +ĠA be +ĠO L +Ġstuff ed +ac a +ind a +raph ic +Ġmos qu +Ġcampaign ing +Ġoccup y +S qu +r ina +ĠW el +ĠV S +Ġphys ic +Ġp uls +r int +oad ed +ET F +ĠArch ives +Ġven ues +h ner +ĠTur bo +Ġl ust +Ġappeal ed +que z +il ib +ĠTim othy +Ġo mn +d ro +Ġobs ession +ĠSav age +19 96 +Gl obal +J es +2 14 +Ġsl iding +Ġdisapp ro +ĠMag ical +Ġvolunt arily +g b +ane y +Ġprop het +ĠRe in +ĠJul ia +ĠW orth +aur us +Ġb ounds +ie u +)) ) +Ġcro re +ĠCitiz en +S ky +Ġcolumn ist +Ġseek ers +ond o +IS A +ĠL ength +Ġnost alg +Ġnew com +Ġdet rim +ent ric +3 75 +ĠG E +Ġaut op +Ġacadem ics +App Data +ĠS hen +Ġid iot +ĠTrans it +Ġteasp oon +W il +K O +ĠCom edy +> , +Ġpop ulated +W D +Ġp igs +ĠO culus +Ġsymp athetic +Ġmar athon +19 8 +Ġseiz ure +s ided +Ġd op +irt ual +L and +ĠFl oor +osa urs +... ] +Ġl os +Ġsubsid iary +E Y +ĠPart s +ĠSt ef +ĠJud iciary +Ġ13 4 +Ġmir rors +Ġk et +t imes +Ġneuro log +Ġc av +ĠGu est +Ġtum or +sc ill +ĠLl oyd +E st +Ġcle arer +Ġstere otypes +Ġd ur +not hing +Red dit +Ġnegoti ated +---------------- -------- +23 5 +Ġfl own +ĠSe oul +ĠRes ident +ĠS CH +Ġdisappear ance +ĠV ince +g rown +Ġgrab s +r il +ĠInf inite +ĠTw enty +Ġpedest rian +Ġjer sey +ĠF ur +ĠInf inity +ĠEll iott +Ġment or +Ġmor ally +Ġob ey +sec ure +iff e +Ġantib iotics +ang led +ĠFre eman +ĠIntrodu ction +J un +Ġm arsh +ic ans +ĠEV ENTS +och ond +W all +icult y +Ġmisdem eanor +Ġl y +Th omas +ĠRes olution +Ġanim ations +ĠD ry +Ġinter course +ĠNew castle +ĠH og +ĠEqu ipment +17 7 +Ġterrit orial +Ġarch ives +20 3 +Fil ter +ĠMun ich +Ġcommand ed +ĠW and +Ġpit ches +ĠCro at +Ġrat ios +ĠM its +Ġaccum ulated +ĠSpecific ally +Ġgentle man +acer b +Ġp enn +Ġa ka +ĠF uk +Ġinterven e +ĠRef uge +ĠAlz heimer +Ġsuccess ion +oh an +d oes +L ord +Ġsepar at +Ġcorrespond ence +Ġsh iny +P rior +Ġs ulf +Ġmiser able +Ġded ication +( ). +Ġspecial ists +Ġdefect s +ĠC ult +ĠX ia +Ġje opard +ĠO re +Ab ility +Ġle ar +Ġamb itions +ĠB MI +ĠArab s +Ġ19 42 +Ġpres ervation +ific ate +Ġash amed +l oss +ĠRest aur +Ġrese mble +Ġen rich +ĠK N +ĠCl an +fl oat +Ġplay able +IT T +Ġharm ony +arr ison +ĠWe instein +w ere +Ġpoison ing +ĠCom put +ĠWord Press +m ajor +ĠVal ve +F an +ĠTh row +ĠRom ans +ĠDep ression +ad os +Ġtort ured +Ġbal ancing +bott om +Ġacqu iring +ĠMon te +ard i +Ġa ura +Ġ# # +ĠStand ing +ĠAtl as +C F +Ġintr ins +ĠBen ghazi +Ġcamp ing +Ġt apped +bl ade +st rous +ĠR abb +ĠW ritten +t ip +ĠNe igh +ster dam +ĠAll ow +ĠHe aling +ĠR hod +n um +Ġcaffe ine +ĠPer cent +Ġbo o +Ġapp les +30 5 +Ġwel coming +Ġappl aud +Ġa usterity + ± +ĠRe ality +ef e +å ® +Ġsu cks +Ġtab s +ĠPay Pal +Ġback pack +Ġgif ted +abul ary +ĠSc out +ir teen +Ġch in +Ġo mitted +Ġnegative ly +Ġaccess ing +ĠE arn +Ġambul ance +Ġhead phones +Ġ20 5 +ĠRef resh +p resident +ĠKit chen +ĠEnt ered +ĠS nyder +00 5 +om ical +Ġborrow ed +ĠN em +Ġav iation +Ġst all +rim ination +Ġuniform s +it ime +ĠSim mons +ener gy +ab lished +y y +qual ified +Ġrall ies +ĠSt uart +fl ight +Ġgang s +r ag +Ġv ault +lu x +ĠCom par +Ġdesign ation +20 9 +ĠJ os +d ollar +z ero +Ġwell s +30 3 +Ġconstitu ents +Ġhe ck +Ġc ows +Ġcommand ers +Ġdifferent ial +ĠC atherine +29 9 +Ġval ve +Ġbr ace +Ġperspect ives +c ert +f act +icular ly +ĠMc N +pl anes +Ġint ric +Ġpe as +ov an +Ġtoss ed +ret ch +ĠL opez +Ġunf amiliar +de ath +ĠA part +ĠCh ang +Ġrelie ved +rop he +Ġair ports +Ġfre ak +ut il +M ill +ĠCh in +ĠOw en +m ale +ĠBro ken +ĠWind s +ro b +r ising +Ġfire fighters +Ġauthor itarian +Ġ14 8 +Bit coin +ex ternal +Ġbrow sers +iche ver +or ian +Ġun b +Ġpo ke +ĠZ ot +M id +ĠPop ular +Ġco vert +Ġcont ributes +Ġ6 50 +Ġcont ention +G ate +Ġcons oles +Ġchrom os +ĠI X +Ġvis ually +ĠE isen +Ġjewel ry +Ġdeleg ation +Ġacceler ate +ĠR iley +Ġsl ope +Ġind oor +it ially +Ġhuge ly +Ġtun nels +Ġfin ed +Ġdirect ive +Ġfore head +ustom ed +Ġsk ate +Mus ic +g as +Ġrecogn izing +am bo +Ġover weight +ĠGr ade +Ù Ĭ +Ġsound ing +Ġlock ing +ĠR EM +St ore +Ġexc av +ĠLike wise +ĠL ights +Ġel bow +ĠSupp ly +w ic +Ġhands ome +19 94 +C oll +Ġadequ ately +ĠAssoci ate +Ġstri ps +Ġcrack down +Ġmar vel +ĠK un +Ġpass ages +@@ @@ +ĠT all +Ġthought ful +names e +Ġprost itution +bus iness +Ġball istic +person al +c ig +iz ational +R ound +ĠÂłĠÂł ĠÂłĠÂł +ĠCole man +Ġadm itting +ĠPl ug +Ġbit coins +ĠSu z +Ġfair ness +Ġsupp lier +Ġcatast rophic +ĠHel en +o qu +M arc +ĠArt icles +g ie +Ġend angered +Ġdest iny +ĠVol t +ol ia +ax is +Ġche at +Ġun ified +IC O +qu ote +30 2 +ĠS ed +Ġsupp ression +Ġanaly zing +Ġsqu at +Ġfig uring +Ġcoordin ates +Ġch unks +Ġ19 46 +Ġsub p +Ġw iki +ĠFor bes +ĠJ upiter +ĠE rik +im er +ĠCom mercial +\ ) +Ġlegitim acy +Ġd ental +ĠMe an +Ġdefic its +5 50 +Orig inally +ĠHor ror +Ġcontam ination +ll ah +Ġconf isc +ĠCl are +T B +ĠF ailed +an ed +Ġrul er +ĠCont roller +Ġfemin ists +F ix +g ay +20 7 +Ġr abbit +Th ird +ownt own +Ġgl ue +Ġvol atile +Ġsh ining +Ġf oll +Ġimp aired +Ġsup ers +æ Ī +Ġcl utch +ļé ĨĴ +Ġpro let +Ġ( ! +Ġy elled +ĠK iev +ĠEr n +ĠSh ock +K B +Ġsit uated +qu ery +ĠN as +Ġan nex +char acter +ĠHol iday +Ġautom ation +ĠJ ill +ĠRem astered +Ġl inem +Ġwild erness +ĠHor izon +ĠGu inea +A Z +Ġmain land +Ġsec recy +LE ASE +Ġp unk +ĠProv ince +( ), +Spe ed +Ġhand ing +ĠSeb ast +S ir +r ase +Ġj ournals +Ġcon gest +ĠT ut +ir rel +Ġschizophren ia +Ġmis ogyn +health y +I ron +Ġreact ed +- $ +25 2 +Ġpl ural +Ġpl um +Ġbarg ain +Ġground ed +f inder +Ġdis se +ĠL az +O OD +Ġat roc +F actory +Ġmin ions +Ġo ri +ĠB rave +ĠP RE +ĠMy anmar +ĠH od +Ġexped ition +Ġexpl ode +ĠCo ord +Ġext r +ĠB rief +ĠAD HD +Ġhard core +feed ing +Ġd ile +ĠF ruit +Ġvacc ination +ĠM ao +osp here +Ġcont ests +- | +Ġf ren +isp here +R om +ĠSh arp +ĠTre nd +Ġdis connect +âĢ¢ âĢ¢ +Ġper secution +Ear th +Ġhealth ier +38 4 +Ġc ob +ĠTr inity +OW S +AN N +Ġspecial ty +Ġg ru +Ġcooper ative +wh y +Start ing +ĠIss ues +st re +ens or +Ġ18 5 +Ad v +! ? +ĠRe vel +em ia +ĠH ulk +Ġcelebr ations +ĠS ou +ra ud +ĠKle in +Ġun real +con text +Ġpartners hips +Ġadop ting +t ical +Ġspl ash +ĠHe zbollah +c ategory +cycl op +xt on +ĠD ot +urd y +t z +Ġenvelop e +ĠN L +â ķ +Ġwhere in +Spe c +18 4 +Ġte lev +al iation +Ġmyth s +å ° +Ġrig orous +Ġcommun icating +Ġobser ver +Ġre he +ĠW ash +Ġapolog ized +ĠT in +Ġexpend itures +work ers +d ocument +Ġhes itate +ĠLen in +Ġunpredict able +Ġrenew al +cl er +ok ia +ĠCON T +Ġpost season +Tok ens +Ġex acerb +Ġbet ting +Ġ14 7 +Ġelev ation +W ood +ĠSol omon +19 4 +00 4 +out put +Ġredu nd +ĠM umbai +Ġp H +Ġreprodu ce +ĠD uration +MA X +Ġb og +C BS +ĠBal ance +ĠS gt +ĠRec ent +Ġc d +Ġpo pped +Ġincomp et +pro p +ay an +g uy +Pac ific +Ġty r +Ġ{ { +ĠMy stic +ĠD ana +Ġmast urb +Ġge ometry +à ¢ +ĠCor rect +Ġtraject ory +Ġdistract ed +Ġf oo +ĠW elsh +L uc +m ith +Ġrug by +Ġrespir atory +Ġtri angle +Ġ2 15 +Ġunder graduate +ĠSuper ior +ch anging +_ - +Ġright ly +Ġrefere e +Ġluc rative +Ġun authorized +Ġresemb les +ĠGN U +ĠDer by +Ġpath ways +ĠL ed +Ġend urance +Ġst int +Ġcollect or +F ast +Ġd ots +Ġnational s +ĠSec urities +Ġwh ip +Par am +Ġlearn s +M agic +Ġdetail ing +m oon +Ġbroadcast ing +Ġb aked +26 5 +hol m +ĠS ah +ĠHus sein +ĠCourt esy +17 4 +Ġ14 6 +Ġge ographic +pe ace +Ġjud ging +ĠS tern +B ur +Ġstory line +G un +ĠSt ick +24 5 +30 7 +ãĤ´ ãĥ³ +ĠAdminist rator +Ġbur nt +Ġp ave +ch oes +Ex ec +Ġcamp uses +Res ult +Ġmut ations +ĠCh arter +Ġcapt ures +Ġcomp ares +Ġbad ge +S cient +Ġer ad +ier y +o i +ett es +ĠE state +Ġst rap +Ġproud ly +Ġf ried +Ġwithd rawn +ĠV oy +ph ony +It ems +ĠP ierce +b ard +Ġann otation +ant on +ill on +Im pro +... ) +Ġhapp ier +---- -- +ad just +Ġstaff ers +Ġactiv ism +Ġper f +Ġal right +N eed +Ġcomm ence +Ġopio id +ĠAm anda +E s +ĠP ars +ĠK aw +W orks +24 8 +Ġind o +t c +end ant +ĠM oto +Ġlegal ization +OT E +Ġtask ed +Ġt sp +ĠACT IONS +16 6 +Ġrefres hing +ĠN R +ĠPere z +Ġinfring ement +S Y +List en +in ning +k u +Ġrot ate +pro gram +ar ah +Des ign +Ġ( £ +Ġst oring +Ġwar rants +Ġjud gement +ĠB rist +us ually +ph oto +ĠR an +ĠP ine +Ġoutrage ous +ĠValent ine +lu ence +ĠEvery body +Al tern +Ġrele vance +Ġtermin ated +Ġd essert +Ġfulf illed +Ġprosecut ed +ĠW ords +Ġm igrant +Ġcultiv ation +ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ +idel ity +ĠV ern +ĠLog in +Ġmetaph or +ĠT ip +Ġrecru its +ĠP ig +rib ing +Ġenthusi asts +ex per +Ġfright ening +ĠH air +ans on +str ate +Ġh i +He ight +Ġown ing +n one +Ġdis like +Ġkn ives +pher d +Ġloud ly +ĠAP Is +Dis play +ĠL ac +ĠUS S +ab l +ver ages +J ew +Ġ17 2 +ĠHist orical +at oon +ĠPhys ics +in tern +Ġwarm th +Ġto pp +D M +Ġgun man +Ġem peror +od i +ãĥ £ +in atory +ĠR ib +Ġ13 1 +ĠSat urn +ĠSh ining +Ġw aking +Qu otes +Ġcomed ian +en berg + ½ +Ġbelie vers +Ġpaper work +c ustom +Ġle v +Ġl ament +Ġpour ing +22 2 +p olitical +ĠSupp lement +m aid +Ġcruel ty +Ġt read +ys ics +A w +rit es +Ġmod ifier +ĠP osition +Ad am +l b +ub s +Ġimper fect +Ġcl usters +ĠEngine er +ĠC herry +Ġinaug uration +ĠS au +Ġembod iment +ĠUn cle +Ġover r +Ġexplos ions +c ule +ĠPrinc eton +ĠAndre a +Ġincorrect ly +Ġearn est +Ġpil gr +ĠS print +Ġslee ve +Ġhe ars +ĠAm azing +Ġbrow sing +ag in +Ġhom eland +Ġha w +Ġd iving +ist ered +17 8 +Ġbarg aining +ĠArc ade +Ġdeleg ate +ters on +................................ ................................ +ĠJackson ville +27 5 +Ġst agn +Ġad am +ĠSher man +C B +Ġsub urb +ĠFood s +Ġconver ting +ĠAr ist +Ġch ambers +l ove +Ġam ino +ĠG an +Ġmad ness +m c +ĠUS E +def ined +Ġul tr +ind ust +Ġw olves +l ance +Add itionally +Ġcr acks +as ia +ĠRe ason +ĠP ump +Ġaccident al +ĠL aser +ĠR id +Ġinitial ized +ell i +Ġun named +Ġn oun +ĠPass ed +Ġhost age +ĠEth iop +sh irts +Ġun rel +ĠEmb assy +Ġ19 41 +Ġat oms +Ġpur ported +16 4 +ĠF i +Ġgall ons +ĠMon ica +Ġp g +en ment +Ġsort ed +ĠG ospel +Ġhe ights +Ġtr aced +Ġunder going +She ll +Ġs acks +Ġproport ions +Ġhall uc +F ont +ac et +Ġwar mer +ĠIN TER +Ġgrab bing +Pl ug +Ġreal ization +ĠBur ke +Ġen chant +AT ER +ĠSe ed +Ġabund ant +F M +Ġc ivic +V s +is i +Ġv ow +Ġre per +ĠPartners hip +Ġpenet ration +Ġax e +Ġsh attered +ĠZ ombies +Ġv inyl +ĠAl ert +e on +Ġoblig ed +ĠIll ust +ĠPl aza +ĠFront ier +Ġdavid jl +ĠSer ial +ĠH av +ĠNut rition +B i +Ġâĸ Ī +ĠJ ays +lin ux +Ġhur ry +Ġv oy +Ġhop eless +ĠSte alth +Ġ ãģ +ess ors +tt le +b org +ĠSaf ari +f ell +Ġw ary +d ue +ĠAb ove +H a +E LL +Ġnot or +ĠW on +T oo +Ġoccup ations +Ġposs essions +Ġinv iting +Ġpred ators +Ġacceler ated +Ġ15 7 +uter te +ĠC ube +e ast +acc ount +G ive +Ġtrans plant +red ients +id able +Ġscreens hots +ĠG und +ĠF S +Ġtravel ers +Ġsens ory +ĠF iat +ĠRock ets +İ ĭ +_ { +F riend +Ġchar ming +AL S +Ġenjoy ment +m ph +Ġ5 000 +ĠRE G +Ù Ĩ +b ia +Ġcomp ilation +ro st +ĠV P +ĠSch ne +201 9 +Ġcop ying +M ORE +ĠFl ore +f alls +2 15 +t otal +Ġdis ciples +d ouble +Ġexceed ing +Ġsm ashed +Ġconcept ual +ĠRom ania +ĠB rent +ĠI CE +ĠT ou +Ġg rap +Ġn ails +18 9 +ãĥ ĺ +Ġproc ure +e ur +Ġconfir ming +ĠC ec +aw i +ĠEd en +Ġn g +Ġengine ered +at ics +Ġhook ed +Ġdisgust ing +ĠMur der +ãĤ ¿ +L ibrary +Ġ16 8 +Al most +hem atic +Men u +ĠNot re +ĠJ ur +Ġkidn apped +Ġhack er +ĠJ ade +Ġcreep y +Ġdraw ings +ĠSpons or +Ġcycl ists +ĠGob lin +Ġoptim ized +Ġst aged +ĠMc D +bet ween +A ge +en o +S ex +ĠW ide +n ings +av is +Ġincap able +ĠK ob +Ġreward ing +ĠL one +oles cent +Ġcontract ed +Ġstick y +J ose +B all +f est +ĠIn put +ĠRec ently +Ġto mat +squ are +App lication +Ġnit rogen +Ġdupl icate +ĠRec on +ĠD ear +L ondon +Ġint ra +Ġd ock +Ġout reach +ĠM illion +Ġmamm als +am pton +V AL +Ġsn aps +Ġd os +ĠWh ole +ĠRead y +T ry +ĠWinn ipeg +ear ance +Ġinc urred +ren ched +ĠNS W +il ot +rain e +Ġc ube +g ot +Ġrun way +etermin ed +ĠHaw ks +Ġsurviv or +ĠW ish +ĠD in +ĠDE F +ĠV ault +18 7 +Ġmush rooms +Ġcris p +be y +ĠDisco very +Ġdevelopment al +Ġparad igm +Ġcha otic +ĠT su +Ġ3 33 +b ons +Ġbacter ial +Ġcomm its +Ġcos mic +Ġme ga +oc ative +ĠP aint +ophob ic +Ġv ain +Ġcar ved +ĠTh ief +ĠG ul +ows hip +Ġc ites +ĠEd inburgh +Ġdimin ished +Ġacknowled ges +ĠK ills +Ġmic row +ĠHer a +Ġsen iors +Ġwhere by +H op +at ron +Ġun available +ĠN ate +Ġ4 80 +Ġsl ated +ĠRe becca +ĠB attery +Ġgram mar +Ġhead set +Ġcurs or +Ġex cluding +any e +aunder ing +eb in +Ġfeas ible +ĠPub lishing +ĠLab s +ĠCl iff +ĠFerr ari +Ġp ac +vis ible +mark ed +pe ll +Ġpol ite +Ġstagger ing +ĠGal actic +Ġsuper st +Ġpar an +ĠOffic ers +ãĢ ģ +Ġspecific s +ul us +23 9 +ĠP aste +AM P +ĠPan ama +ĠDe lete +angu ard +rest rial +Ġhero ic +ĠD y +ا ÙĦ +Ġincumb ent +Ġcr unch +t ro +Ġsc oop +Ġblog ger +Ġsell ers +ure n +Ġmedic ines +ĠC aps +ĠAnim ation +ox y +Ġout ward +Ġinqu iries +22 9 +Ġpsych ologist +ĠS ask +ev il +Ġcontam inated +ãĤ ¨ +he rence +Ġbrand ed +ĠAbd ul +z h +Ġparagraph s +Ġmin s +Ġcor related +er b +Ġimp art +Ġmil estone +ĠSol utions +ot le +Ġunder cover +Ġmar ched +ĠCharg ers +f ax +ĠSec rets +Ġr uth +we ather +Ġfemin ine +Ġsh am +Ġprest igious +igg ins +Ġs ung +hist ory +ett le +gg ie +Ġout dated +ol and +Ġper ceptions +ĠS ession +ĠDod gers +u j +ĠE ND +D oc +Ġdefic iency +Gr and +ĠJ oker +Ġretro spect +Ġdiagn ostic +Ġharm less +Ġro gue +ĠA val +E qu +Ġtrans c +ĠRoberts on +ĠDep ending +ĠBurn s +iv o +Ġhost ility +F eatures +ĵ ĺ +Ġdis comfort +ĠL CD +spec ified +ĠEx pect +3 40 +Ġimper ative +ĠReg ular +Ch inese +Ġstate wide +Ġsy mm +Ġlo ops +Ġaut umn +N ick +Ġsh aping +Ġqu ot +Ġc herry +ĠCross ref +è¦ ļéĨĴ +Stand ard +he ed +ĠD ell +ĠViet namese +Ġo st +ĠV alkyrie +O A +Ass ad +Ġreb ound +ĠTra ffic +pl aces +æ ĺ +ĠB uc +17 2 +Ġshel ters +Ġins isting +ĠCertain ly +ĠKenn eth +ĠT CP +Ġpen al +ĠRe play +he ard +Ġdial ect +iz a +ĠF Y +it cher +ĠD L +Ġspir al +Ġquarterback s +Ġh ull +Ġgo ogle +Ġto dd +ĠSter ling +ĠPl ate +Ġsp ying +mb ol +ĠReal m +ĠPro ced +ĠCr ash +Ġtermin ate +Ġprotest ing +C enter +gu ided +Ġun cover +Ġboy cott +Ġreal izes +s ound +Ġpret ending +ĠV as +19 80 +Ġfram ed +Ġ13 9 +Ġdesc ended +Ġrehab ilitation +Ġborrow ing +ĠB uch +Ġbl ur +R on +ĠFro zen +en za +Ch ief +ĠP oor +Ġtransl ates +M IN +Ġ2 12 +J ECT +Ġerupt ed +Ġsuccess es +S EC +Ġpl ague +Ġg ems +d oms +Ġstret ches +ĠSp y +Ġstory telling +C redit +ĠP ush +Ġtra ction +Ġin effective +ĠL una +Ġt apes +Ġanaly tics +erc ise +Ġprogram mes +ĠCar bon +Ġbeh old +he avy +ĠConserv ation +ĠF IR +Ġs ack +ter min +ric ks +Ġhous ed +Ġunus ually +I ce +Ġexecut ing +ĠMor oc +ed ay +Ġed itions +Ġsm arter +ĠB A +Ġout law +Ġvan ished +ib a +AL SE +ĠSil va +23 8 +C ould +Ġphilos opher +Ġevac uated +Sec ret +14 2 +Ġvis as +ãĤ ¬ +ĠM alt +ĠClear ly +ĠN iger +ĠC airo +ĠF ist +3 80 +ĠX ML +aut o +it ant +Ġrein forced +Rec ord +ĠSurviv or +G Hz +Ġscrew s +parent s +Ġo ceans +ma res +Ġbra kes +vas ive +Ġhell o +ĠS IM +rim p +Ġo re +ĠArm our +24 7 +Ġterr ific +Ġt ones +14 1 +ĠMin utes +Ep isode +Ġcur ves +Ġinflamm atory +Ġbat ting +ĠBeaut iful +L ay +Ġunp op +v able +Ġr iots +ĠTact ics +b augh +ĠC ock +Ġorg asm +ĠS as +Ġconstruct or +et z +G ov +Ġant agon +Ġthe at +Ġde eds +ha o +c uts +ĠMc Cl +Ġu m +ĠScient ists +Ġgrass roots +ys sey +"] => +Ġsurf aced +Ġsh ades +Ġneighb ours +Ġad vertis +oy a +Ġmer ged +Up on +Ġg ad +Ġanticip ate +Any way +Ġsl ogan +Ġdis respect +I ran +ĠT B +act ed +Ġsubp oen +medi ately +OO OO +Ġwa iver +Ġvulner abilities +ott esville +ĠHuff ington +J osh +ĠD H +M onday +ĠEll en +K now +x on +it ems +22 8 +Ġf ills +ĠN ike +Ġcum ulative +and als +I r +Ġ ì +Ġfr iction +ig ator +Ġsc ans +ĠVi enna +ld om +Ġperform ers +P rim +Ġb idding +M ur +Ġlean ed +ĠPri x +al ks +Ġ[ â̦] +ĠTw itch +ĠDevelop er +ĠG ir +Ġcall back +Ab stract +Ġacc ustomed +Ġfreed oms +ĠP G +ur acy +Ġl ump +is man +,, ,, +19 92 +ĠR ED +Ġwor m +M atch +ĠPl atinum +I J +ĠOwn er +Tri via +com pl +Ġnew born +Ġfant as +O wn +Ġ19 59 +Ġsymp ath +Ġub iqu +Ġoutput s +Ġal lev +Ġpr ag +K evin +Ġfav ors +Ġbur ial +Ġn urt +so lete +c ache +Ġ15 6 +Ġunl ocks +te chn +M aking +Ġcon quer +ad ic +æ ĸ +Ġel f +Ġelect orate +ĠKurd s +ĠSt ack +ĠSam urai +Ġâ ĺħ +Ġ{ } +ĠS aid +ĠFall out +Ġkind ness +ĠCustom s +ĠBou levard +Ġhelicop ters +ot ics +ĠVe get +com ment +Ġcritic ised +Ġpol ished +ĠRem ix +ĠC ultural +Ġrec ons +Ġdo i +at em +Sc reen +Ġbar red +Com ments +ĠGener ally +Ġsl ap +7 20 +V ari +p ine +Ġem pt +Ġh ats +ĠPlay ing +l ab +a verage +form s +ĠC otton +Ġcan s +ĠD ON +ĠSom alia +C rypt +ĠIncre ases +E ver +mod ern +Ġsur geon +3 000 +Ġrandom ized +================================ ================================ +B ern +im pl +ĠC OR +Ġpro claim +th ouse +Ġto es +Ġam ple +Ġpres erving +Ġdis bel +gr and +B esides +Ġsil k +ĠPat tern +h m +Ġenter prises +Ġaffidav it +ĠAdvis ory +Ġadvert ised +ĠRel igious +se ctions +psy ch +ĠField s +aw ays +Ġhasht ag +ĠNight mare +Ġv ampire +Ġfore nsic +rosso ver +n ar +Ġn avy +Ġvac ant +ĠD uel +Ġhall way +Ġface book +ident ally +ĠN RA +Ġm att +Ġhur ricane +ĠKir by +ĠP uzzle +Ġsk irt +ou st +du llah +Ġanal ogy +in ion +Ġtomat oes +ĠN V +ĠPe ak +ĠMe yer +Ġappoint ments +Ġm asc +Ġal ley +re hend +Ġchar ities +Ġund o +Ġdest inations +ĠTest ing +"> " +c ats +* . +Ġgest ures +gener al +Le ague +Ġpack ets +ĠInspect or +ĠBer g +Ġfraud ulent +Ġcritic ize +F un +Ġbl aming +nd ra +Ġsl ash +ĠE ston +Ġpropos ing +Ġwh ales +Ġtherap ist +Ġsub set +Ġle isure +EL D +ĠC VE +ĠAct ivity +Ġcul min +sh op +ĠD AY +is cher +ĠAdmir al +ĠAtt acks +Ġ19 58 +Ġmem oir +Ġfold ed +Ġsex ist +Ġ15 3 +ĠL I +Ġread ings +Ġembarrass ment +ĠEmploy ment +w art +ch in +Ġcontin uation +l ia +Rec ently +Ġd uel +Ġevac uation +ĠKash mir +Ġdis position +ĠR ig +Ġbol ts +Ġins urers +4 67 +M ex +Ġret aliation +Ġmis ery +Ġunre asonable +r aining +I mm +ĠP U +em er +Ġgen ital +ãĤ ³ +ĠC andy +Ġon ions +ĠP att +lin er +Ġconced ed +Ġf a +Ġfor c +ĠH ernandez +ĠGe off +deb ian +ĠTe ams +Ġc ries +Ġhome owners +23 7 +A BC +Ġst itch +Ġstat istic +Ġhead ers +ĠBi ology +Ġmot ors +ĠG EN +ĠL ip +Ġh ates +Ġhe el +S elf +i pl +ED IT +ort ing +Ġann ot +ĠSpe ech +old emort +ĠJ avascript +ĠLe Bron +Ġfoot print +Ġf n +Ġseiz ures +n as +h ide +Ġ19 54 +ĠBe e +ĠDecl aration +ĠKat ie +Ġreserv ations +N R +f emale +Ġsatur ated +Ġb iblical +Ġtroll s +Dev ice +ph otos +Ġdr ums +ãĥīãĥ© ãĤ´ãĥ³ +N ight +f ighter +ĠH ak +ri ber +Ġc ush +Ġdiscipl inary +ba um +ĠG H +ĠSch midt +ilib rium +Ġs ixty +ĠKush ner +ro ts +Ġp und +ĠR ac +Ġspr ings +Ġcon ve +Bus iness +F all +Ġqual ifications +Ġvers es +Ġnarc iss +ĠK oh +ĠW ow +ĠCharl ottesville +ed o +Ġinterrog ation +ĠW ool +36 5 +B rian +Ġâľ ĵ +Ġalleg es +ond s +id ation +ĠJack ie +y u +Ġl akes +Ġworth while +Ġcryst als +ĠJud a +Ġcomp rehend +Ġfl ush +Ġabsor ption +ĠO C +Ġfright ened +ĠCh ocolate +Mart in +Ġbu ys +Ġbu cks +Ġapp ell +ĠChampions hips +Ġlist ener +ĠDef ensive +Ġc z +ud s +ĠM ate +Ġre play +Ġdecor ated +Ġs unk +ĠV IP +ĠAn k +Ġ19 5 +aa aa +Nob ody +ĠMil k +ĠG ur +ĠM k +ĠS ara +Ġse ating +ĠW id +Tr ack +Ġemploy s +Ġgig antic +AP P +ãĤ § +in ventory +Ġtow el +at che +l asting +ĠT L +Ġlat ency +Ġkn e +B er +me aning +Ġup held +Ġplay ground +Ġm ant +S ide +Ġstere o +Ġnorth west +Ġexception ally +Ġr ays +Ġrec urring +D rive +Ġup right +Ġab duct +ĠMar athon +Ġgood bye +Ġal phabet +h p +Ġcourt room +ring ton +ot hing +T ag +Ġdiplom ats +Ġbar bar +ĠAqu a +18 3 +33 33 +Ġmat urity +Ġinst ability +ĠAp ache +Ġ= == +Ġfast ing +ĠGr id +Mod Loader +Ġ15 2 +A bs +ĠOper ating +ett i +Ġacqu aint +Don nell +ĠK em +ĠFor ge +Ġarm ored +M il +Ġphilos ophers +in vest +Pl ayers +â Ī +Ġmy riad +Ġcomr ades +R ot +Ġremember ing +Ġcorrespond s +Ġprogram mers +ĠLyn n +Ġo lig +Ġco herent +yn chron +ĠChem ical +Ġj ugg +p air +post s +E ye +ĠIn ner +Ġsem ester +ott est +ĠEmir ates +ric anes +or ously +m its +ĠW is +Ġd odge +l ocation +Ġf aded +Am azon +ĠPro ceed +ĠIN FO +j ournal +ĠTru ck +T en +Ġ2 17 +Ġstat utes +m obile +ĠT ypes +Rec omm +b uster +pe x +Ġleg ends +Ġhead ache +f aced +ĠWi Fi +if ty +ĠH ER +Ġcirc uits +ER ROR +22 6 +ol in +Ġcyl inder +osp ace +ik ers +P rem +Qu ant +Ġconflic ting +Ġslight est +Ġfor ged +ion age +Step hen +ĠK ub +ĠOpp ortun +ĠHe al +Ġbl o +Ġrul ers +Ġh uh +Ġsubmar ine +f y +ass er +Ġallow ance +ĠKas ich +ĠT as +ĠAustral ians +Forge ModLoader +ĠâĨ ij +ĠMat rix +am ins +Ġ12 00 +ĠAc qu +23 6 +D ocument +ĠBre aking +19 3 +ĠSub st +ĠRoll er +ĠPro perties +ĠN I +t ier +Ġcr ushing +Ġadvoc ating +Further more +keep ers +Ġsex ism +x d +Ġcall er +ĠS ense +chie ve +ĠT F +Ġfuel ed +Ġreminis cent +Ġobs ess +ur st +Ġup hold +ĠF ans +het ics +Ġâ Ĺ +ĠB ath +Ġbe verage +Ġo scill +25 4 +Ġpol es +Ġgrad ual +Ġex ting +ĠS uff +ĠS uddenly +Ġlik ing +Ġ19 49 +un ciation +am ination +ĠO mar +ĠL V +ĠCon sequently +Ġsynt hes +ĠG IF +Ġp ains +Ġinteract ing +u ously +inc re +Ġrum or +ĠScient ology +19 7 +ĠZ ig +Ġspe lling +ĠA SS +Ġexting u +ms on +Ġg h +Ġremark ed +ĠStrateg ic +ĠM ON +å ¥ +g ae +ĠWH AT +E ric +ĠCamp us +Ġmeth ane +Ġimag in +J UST +ĠAl m +X T +i q +ĠR SS +Ġwrong doing +att a +Ġbig ot +Ġdemonstr ators +ĠCal vin +ĠV illa +Ġmembr ane +ĠAw esome +Ġbenef ic +26 8 +Ġmagn ificent +ĠL ots +G reg +ĠBor is +Ġdetain ees +ĠH erman +Ġwhis pered +Ġa we +Prof essor +fund ing +Ġphys iological +ĠDest ruction +Ġlim b +Ġmanip ulated +Ġbub bles +Ġpse ud +Ġhyd ra +ĠBrist ol +Ġst ellar +ĠExp ansion +ĠK ell +ĠInterest ingly +Ġm ans +Ġdrag ging +Ġec ological +ĠF it +Ġg ent +Ġbenef ited +ĠHait i +Ġpoly g +ãĥ İ +Ġ20 30 +Ġpro w +Ġrecon struction +Ġwas t +Ġpsych ic +ĠGree ks +Hand ler +16 2 +ĠP ulse +Ġsol icit +Ġsy s +Ġinflu x +ĠG entle +per cent +Ġprolifer ation +Ġtax able +Ġdisreg ard +Ġesc aping +Ġg inger +Ġwith stand +Ġdevast ated +ĠD ew +ser ies +Ġinject ed +ela ide +Ġturn over +he at +Ļ Ĥ +H appy +ĠSil ent +ãĤ Ń +iv ism +Ġir rational +AM A +Ġre ef +r ub +Ġ16 2 +Ġbank ers +ĠEth ics +v v +Ġcritic isms +K n +18 6 +M ovie +ĠT ories +Ġno od +Ġdist ortion +F alse +od ore +Ġt asty +Res earch +ĠU ID +- ) +Ġdivor ced +ĠM U +ĠHay es +ĠIs n +ian i +ĠH Q +Ġ" # +ign ant +Ġtra umatic +ĠL ing +H un +Ġsab ot +on line +r andom +Ġren amed +ra red +K A +d ead +é t +ĠAss istance +Ġse af +++++ ++++ +Ġse ldom +ĠWeb b +Ġbo olean +u let +Ġref rain +ĠDI Y +ru le +Ġshut ting +Ġutil izing +load ing +ĠPar am +co al +oot er +Ġattract ing +ĠD ol +Ġher s +ag netic +ĠRe ach +im o +Ġdisc arded +ĠP ip +01 5 +ü r +Ġm ug +Im agine +C OL +Ġcurs ed +ĠSh ows +ĠCurt is +ĠSach s +spe aking +ĠV ista +ĠFram ework +ong o +Ġsub reddit +Ġcr us +ĠO val +R ow +g rowing +Ġinstall ment +Ġgl ac +ĠAdv ance +EC K +ĠLGBT Q +LE Y +Ġac et +Ġsuccess ive +ĠNic ole +Ġ19 57 +Qu ote +Ġcircumst ance +ack ets +Ġ14 2 +ort ium +Ġguess ed +ĠFr ame +Ġperpet rators +ĠAv iation +ĠBen ch +Ġhand c +A p +Ġ19 56 +25 9 +r and +Net Message +d in +urt les +h ig +ĠV III +ff iti +ĠSw ords +b ial +Ġkidn apping +dev ice +Ġb arn +ĠEl i +auc as +S end +Con structed +Ġ ½ +Ġneed les +Ġad vertisements +Ġv ou +Ġexhib ited +ĠFort ress +As k +B erry +TY PE +Ġcan cers +ump ing +ĠTerrit ory +Ġpr ud +Ġn as +Ġathe ist +Ġbal ances +ãģ Ł +ĠSh awn +& & +Ġland sc +ĠR GB +Ġpet ty +Ġex cellence +Ġtransl ations +Ġpar cel +ĠChe v +E ast +ĠOut put +im i +Ġamb ient +ĠTh reat +Ġvill ains +Ġ5 50 +IC A +Ġtall er +Ġle aking +c up +Ġpol ish +Ġinfect ious +ĠK C +Ġ@ @ +back ground +Ġbureaucr acy +ĠS ai +un less +it ious +ĠSky pe +At l +ID ENT +00 8 +Ġhyp ocr +Ġpit chers +Ġguess ing +ĠF INAL +Bet ween +Ġvill agers +Ġ25 2 +f ashion +ĠTun is +Be h +ĠEx c +ĠM ID +28 8 +ĠHas kell +19 6 +ĠN OR +Ġspec s +Ġinv ari +Ġgl ut +ĠC ars +Ġimp ulse +Ġhon ors +g el +Ġjurisd ictions +ĠBund le +ul as +Calif ornia +ĠIncre ase +Ġp ear +Ġsing les +Ġc ues +Ġunder went +ĠW S +Ġexagger ated +Ġdub ious +Ġfl ashing +L OG +) ]. +J ournal +t g +V an +ĠI stanbul +ĠIn sp +ĠFrank en +D raw +Ġsad ness +Ġiron ic +ĠF ry +x c +Ġ16 4 +is ch +W ay +ĠProtest ant +h orn +Ġun aff +ĠV iv +ill as +ĠProduct ions +ĠH ogan +Ġper imeter +ĠS isters +Ġspont aneous +Ġdown side +Ġdescend ants +Ġor n +w orm +Japan ese +Ġ19 55 +Ġ15 1 +ĠDo ing +els en +umb les +Ġrad ically +ĠDr um +ĠB ach +Ġli abilities +ĠO B +ĠElement ary +Ġmem e +yn es +Ġfinger print +ĠGr ab +Ġundert ake +Mem bers +ĠRead er +ĠSim s +g od +Ġhypot hetical +s cient +ĠA J +Ġchar ism +Ġad missions +ĠMiss ile +tr ade +Ġexerc ising +ĠBack ground +W ritten +Ġvoc als +whe ther +Ġv i +ĠW inner +Ġl itter +ĠSh ooting +ST EM +ãĤ ¡ +ĠA FL +Ġvari ability +Ġe ats +ĠD PS +b row +Ġeleph ants +Ġstr at +Ġ Å +Ġsett lers +Matt hew +Ġin advert +H I +ĠIM F +ĠGo al +Ġnerv es +John son +ey e +ablish ment +Th ursday +BIL ITY +H ad +am oto +het amine +ep s +Ġmit ochond +Ġcomp ressed +ĠTre vor +ĠAnim als +T ool +L ock +Ġtwe ak +Ġpin ch +Ġcancell ation +P ot +Ġfoc al +ĠAst ron +17 3 +ĠA SC +ĠO THER +umn i +Ġdem ise +d l +Ù ħ +Sem itism +Ġcr acking +Ġcollabor ative +Ġexpl ores +s ql +Ġher bs +Ġconfig urations +m is +ĠRes ult +ace y +ĠSm oke +Ġsan ct +el ia +Ġdeg ener +Ġdeep est +Ġscream ed +Ġn ap +Soft ware +ĠST AR +E F +ĠX in +spons ored +mans hip +23 3 +Ġprim aries +Ġfilter ing +Ġas semble +m il +ĠMy ers +b ows +Ġpun ched +M ic +Ġinnov ations +Ġfun c +and o +Ġfr acking +ĠV ul +о Ð +osh op +ĠIm mun +Ġsett ling +Ġadolesc ents +Ġreb uilding +Ġtransform ing +Ġpar ole +Ġhar bor +Ġbook ing +ot ional +onge vity +ĠY o +b ug +Ġemer ges +ĠMethod s +ĠCh u +P res +ĠDun geons +Ġtra iling +ĠR um +ĠH ugh +å¤ © +ĠE ra +ĠBatt les +Res ults +ĠTr ading +Ġvers a +c ss +ax ies +he et +Ġgre ed +19 89 +Ġgard ens +Ġconting ent +P ark +ĠLeaf s +h ook +ro be +Ġdiplom acy +ĠF uel +ĠInv asion +Ġupgr ading +M ale +Ġe lic +Ġrelent less +ĠCo venant +ap esh +ĠT rop +T y +pro duction +art y +Ġpun ches +ak o +cyclop edia +ĠR abbit +ĠHD MI +Ġ14 1 +Ġf oil +Item Image +ĠF G +Ġimplement ations +ĠP om +ixt ures +Ġaw ait +Ġ3 30 +am us +Ġumb rella +Ġfore see +se par +Ġcircum cision +Ġperipher al +S ay +ĠExper t +In c +Ġwithd rew +ĠAnd ers +f ried +Ġradio active +ĠOp ening +Ġboard ing +ĠN D +Ġover throw +Act iv +W P +ĠAct s +× Ļ +Ġmot ions +v ic +ĠM ighty +ĠDef ender +a er +Ġthank ful +ĠK illing +ĠBr is +mo il +Ġpredict ing +26 6 +ch oice +Ġkill ers +Ġinc ub +ĠChe st +ather ing +Ġpro claimed +fl ower +oss om +umbled ore +ĠCy cling +ĠOccup y +AG ES +P en +ĠY ug +Ġpack aged +Ġheight ened +c ot +st ack +C ond +Ġst amps +m age +Ġpersu aded +Ġens l +ĠCard inal +Ġsol itary +Ġpossess ing +ĠC ork +Ġev id +ĠT ay +Ġbl ues +Ġextrem ism +Ġlun ar +Ġcl own +Te chn +Ġfest ivals +ĠPv P +ĠL ar +Ġconsequ ently +p resent +Ġsom eday +ç İĭ +ĠMet eor +Ġtour ing +c ulture +Ġbe aches +S hip +c ause +ĠFl ood +ãĥ ¯ +Ġpur ity +th ose +Ġem ission +b olt +Ġch ord +ĠScript ure +L u +Ġ$ { +cre ated +Other s +25 8 +Ġelement al +Ġannoy ed +ĠA E +d an +ĠS ag +Res earchers +Ġfair y +âĢĵ âĢĵ +======== ==== +Sm art +GG GG +Ġskelet ons +Ġpup ils +link ed +Ġur gency +en abled +ĠF uck +Ġcoun cill +r ab +U AL +T I +Ġlif es +Ġconf essed +B ug +Ġharm on +ĠCON FIG +ĠNe utral +D ouble +Ġst aple +ĠSH A +Brit ish +ĠSN P +AT OR +oc o +Ġswing ing +ge x +ole on +pl ain +ĠMiss ing +ĠTro phy +v ari +ran ch +Ġ3 01 +4 40 +00000000 00000000 +Ġrest oring +Ġha ul +uc ing +ner g +Ġfut ures +Ġstrateg ist +quest ion +Ġlater al +ĠB ard +Ġs or +ĠRhod es +ĠD owntown +????? - +ĠL it +ĠB ened +Ġco il +st reet +ĠPort al +FI LE +ĠG ru +* , +23 1 +ne um +Ġsuck ed +Ġr apper +Ġtend encies +ĠLaure n +cell aneous +26 7 +Ġbrow se +Ġover c +head er +o ise +Ġbe et +ĠG le +St ay +Ġm um +Ġtyp ed +Ġdiscount s +T alk +ĠO g +ex isting +ĠS ell +u ph +C I +ĠAust rian +ĠW arm +Ġdismiss al +Ġaver ages +c amera +Ġalleg iance +L AN +=" # +Ġcomment ators +ĠSet ting +ĠMid west +Ġpharm ac +ĠEX P +Ġstain less +Ch icago +Ġt an +24 4 +Ġcountry side +ĠV ac +29 5 +Ġpin ned +Ġcr ises +Ġstandard ized +T ask +ĠJ ail +ĠD ocker +col ored +f orth +" }, +Ġpat rons +Ġsp ice +Ġm ourn +ĠM ood +Ġlaund ry +Ġequ ip +ĠM ole +y ll +ĠTH C +n ation +ĠSher lock +Ġiss u +ĠK re +ĠAmeric as +ĠA AA +Ġsystem atically +Ġcont ra +ĠS ally +Ġrational e +Ġcar riage +Ġpe aks +Ġcontrad iction +ens ation +ĠFail ure +Ġpro ps +Ġnames pace +Ġc ove +field s +ãĤ ĭ +Ġw ool +ĠC atch +Ġpresum ed +ĠD iana +r agon +ig i +Ġh amm +Ġst unt +ĠG UI +ĠObserv atory +ĠSh ore +Ġsmell s +ann ah +Ġcock pit +ĠD uterte +8 50 +Ġopp ressed +bre aker +ĠCont ribut +ĠPer u +ĠMons anto +ĠAtt empt +Ġcommand ing +Ġfr idge +ĠR in +ĠChe ss +ual ity +Ġo l +Republic an +ĠGl ory +ĠW IN +.... ... +ag ent +read ing +Ġin h +J ones +Ġcl icks +al an +Ġ[ ]; +ĠMaj esty +ĠC ed +op us +ate l +à ª +AR C +ĠEc uador +ãĥ ł +ĠK uro +Ġritual s +Ġcapt ive +Ġoun ce +Ġdisag reement +Ġsl og +f uel +P et +M ail +Ġexerc ised +Ġsol ic +Ġrain fall +Ġdev otion +ĠAss essment +Ġrob otic +opt ions +ĠR P +ĠFam ilies +ĠFl ames +Ġassign ments +00 7 +aked own +Ġvoc abulary +Re illy +Ġc aval +g ars +Ġsupp ressed +ĠS ET +ĠJohn s +Ġwar p +bro ken +Ġstat ues +Ġadvoc ated +Ġ2 75 +Ġper il +om orph +ĠF emin +per fect +Ġh atch +L ib +5 12 +Ġlif elong +3 13 +Ġche eks +Ġnum bered +ĠM ug +B ody +ra vel +We ight +ĠJ ak +ĠHe ath +Ġkiss ing +ĠJ UST +Ġw aving +u pload +Ġins ider +ĠPro gressive +ĠFil ter +tt a +ĠBe am +Ġviol ently +ip ation +Ġskept icism +Ġ19 18 +ĠAnn ie +ĠS I +Ġgen etics +Ġon board +at l +ĠFried man +ĠB ri +cept ive +Ġpir ate +ĠRep orter +27 8 +Ġmyth ology +Ġe clipse +Ġsk ins +Ġgly ph +ing ham +F iles +C our +w omen +Ġreg imes +Ġphotograp hed +K at +ĠMA X +Offic ials +Ġunexpected ly +Ġimpress ions +F ront +;;;; ;;;; +Ġsuprem acy +Ġs ang +Ġaggrav ated +Ġabrupt ly +ĠS ector +Ġexc uses +Ġcost ing +ide press +St ack +ĠR NA +ob il +Ġghost s +ld on +at ibility +Top ics +Ġreim burse +ĠH M +ĠDe g +Ġth ief +y et +ogen esis +le aning +ĠK ol +ĠB asketball +Ġf i +ĠSee ing +Ġrecy cling +Ġ[ - +Cong ress +Ġlect ures +P sy +Ġne p +Ġm aid +Ġori ented +A X +Ġrespect ful +re ne +fl ush +ĠUn loaded +re quest +gr id +ĠAltern atively +ĠHug o +Ġdec ree +ĠBuddh ism +and um +And roid +ĠCong o +ĠJoy ce +Ġacknowled ging +hes ive +ĠTom orrow +ĠH iro +th ren +ĠM aced +Ġho ax +ĠIncre ased +ĠPr adesh +W ild +____ __ +16 1 +Ġa unt +Ġdistribut ing +ĠT ucker +ĠSS L +ĠW olves +B uilding +ou lt +ĠLu o +ĠY as +ĠSp ir +ĠSh ape +ĠCamb od +ĠIP v +Ġm l +Ġext rad +39 0 +ĠPenn y +d ream +Ġstation ed +opt ional +ew orthy +. +ĠWorks hop +ĠRet ail +ĠAv atar +6 25 +N a +ĠV C +ĠSec ure +M Y +19 88 +oss ip +Ġpro state +Ġund en +Ġg amer +ĠCont ents +ĠWar hammer +ĠSent inel +3 10 +Ġse gregation +ĠF lex +ĠM AY +Ġdr ills +ĠDrug s +Islam ic +Ġsp ur +Ġca fe +Ġimag inary +Ġgu iding +Ġsw ings +ĠThe me +ob y +Ġn ud +Ġbe gging +Ġstr ongh +Ġreject ing +Ġpedest rians +ĠPro spect +R are +s le +Ġconcess ions +ĠConst itutional +Ġbe ams +Ġfib ers +p oon +Ġinstinct s +pro perty +ĠB IG +Sand ers +im ates +Ġco ating +Ġcorps es +ĠTR UE +check ed +Ġ16 6 +A sh +ĠJ S +ĠF iction +Ġcommun al +Ġener getic +oooo oooo +Ġnow adays +IL D +ib o +ĠSU V +R en +Ġdwell ing +Sil ver +Ġt ally +ĠM oving +Ġcow ard +Ġgener als +Ġhorn s +Ġcirc ulated +Ġrob bed +ĠUn limited +Ġharass ed +Ġinhib it +Ġcomp oser +ĠSpot ify +Ġspread s +3 64 +Ġsu icidal +Ġno ises +ĠSt ur +Ġs aga +ĠK ag +is o +Ġtheoret ically +M oney +Ġsimilar ity +Ġslic ed +ut ils +ing es +" - +Ġan th +Ġimp ed +Mod ule +Through out +Ġmen us +comm ittee +and i +ob j +in av +f ired +ĠAb dullah +Ġund ead +Ġfont s +H old +EN G +Ġsustain ability +Ġfl ick +Ġr azor +ĠF est +ĠChar acters +Ġword ing +Ġpopul ist +Ġcritic izing +Ġm use +v ine +Ġcard board +Ġkind ly +Ġfr inge +ĠThe ft +icult ural +Ġgovern ors +Ġ ���� +Ġ16 3 +Ġtime out +ĠA uth +Child ren +A U +Ġred emption +ĠAl ger +Ġ19 14 +Ġw aved +Ġastron auts +og rams +Ġsw amp +ĠFinn ish +Ġcand le +Ġton nes +ut m +Ġr ay +Ġsp un +Ġfear ful +art icles +Ġca us +or ically +ĠRequ ires +ĠG ol +Ġpop e +Ġinaug ural +Ġg le +AD A +ĠIS IL +ĠOff ensive +Ġwatch dog +Ġbal con +ent ity +ĠH oo +Ġgall on +AC C +Ġdoub ling +Ġimpl ication +ĠS ight +Ġdoct r +---- --- +Ġ\ \ +Ġm alt +R oll +Ġâī ¥ +Ġrec ap +add ing +u ces +ĠB end +fig ure +Ġtur key +Ġsoc ietal +ĠT ickets +Ġcommer cially +Ġsp icy +Ġ2 16 +ĠR amp +Ġsuperior ity +à ¯ +ĠTr acker +C arl +ĠC oy +ĠPatri ot +Ġconsult ed +Ġlist ings +Ġsle w +reens hot +ĠG one +Ġ[ ...] +30 9 +Ġh ottest +Ø ± +Ġrock y +ĠD iaz +Ġmass age +Ġpar aly +Ġp ony +A z +Ġcart ridge +ĠN Z +Ġsn ack +ĠLam ar +ple ment +ĠLes lie +Ġm ater +Ġsn ipp +24 6 +Ġjoint ly +ĠBris bane +ĠiP od +Ġpump ing +Ġgo at +ĠSh aron +eal ing +Ġcor on +Ġan omal +rah im +ĠConnect ion +Ġsculpt ure +Ġsched uling +ĠD addy +at hing +Ġeyeb rows +Ġcur ved +Ġsent iments +Ġdraft ing +D rop +( [ +Ġnom inal +ĠLeaders hip +ĠG row +Ġ17 6 +Ġconstruct ive +iv ation +Ġcorrupt ed +ger ald +ĠC ros +ĠChe ster +ĠL ap +ãģ ª +OT H +D ATA +Ġal mond +pro bably +I mp +Ġfe ast +ĠWar craft +F lor +Ġcheck point +Ġtrans cription +Ġ20 4 +Ġtwe aks +Ġrel ieve +S cience +Ġperform er +Z one +Ġtur moil +ig ated +hib it +ĠC afe +the med +Ġflu or +ben ch +Ġde com +ĠU nt +ĠBar rett +ĠF acts +Ġt asting +ĠPTS D +ĠSe al +ĠJuda ism +ĠDynam ic +ĠC ors +V e +ĠM ing +ĠTrans form +v on +ĠDef enders +ĠTact ical +ĠV on +ĠUn ivers +Ġdist orted +ĠB reath +?' " +Ġag on +ĠDead ly +Ġl an +ĠCy cle +orn ed +Ġrel iably +Ġgl or +ĠMon key +ãĥ ¡ +Ġad ren +Ġmicrow ave +ĠAl ban +irc raft +dig it +sm art +ĠD read +¯¯¯¯¯¯¯¯ ¯¯¯¯¯¯¯¯ +{ { +ĠRoc hester +Ġsimpl ified +Ġinf licted +Ġtake over +Ġyour selves +ad itional +Ġmus cular +K S +Ġing en +T ax +ĠFe ature +27 7 +Ġcru c +Ġcr ate +Ġun identified +Ġacclaim ed +ĠM anga +ĠFr ances +ĠNep al +ĠG erald +ĠKu wait +Ġsl ain +ĠHe b +ĠG oku +ãģ® æ +28 6 +M rs +ĠC ody +ĠSan ctuary +01 6 +Ġdism ant +Ġdatas et +ĠH ond +b uck +ĠPat terson +Ġpal ette +ĠG D +ic ol +ĠL odge +Ġplanet ary +ak in +ĠRegist ered +ab we +ĠPeters burg +Ġha iled +ĠP iece +S che +ĠDO J +Ġen umer +18 1 +ĠObs erver +ĠB old +f ounded +com merce +Ġexplo its +ĠF inding +UR N +ĠS ne +ĠAc id +ay ette +ĠVal ues +Ġdr astic +Ġarchitect ural +Ġ" . +× ķ +ump ed +Ġwra pping +Ġwid ow +ĠSl ayer +l ace +on ce +German y +av oid +Ġtem ples +P AR +à ´ +ĠLuc ifer +ĠFl ickr +l ov +for ces +Ġsc outing +Ġlou der +tes y +Ġbefore hand +Ä ĵ +ĠNe on +ĠW ol +ĠTyp ically +ĠPolit ico +-+ -+ +Ġbuild er +Ġder ive +K ill +Ġp oker +Ġambig uous +Ġlif ts +Ġcy t +Ġrib s +ood le +ĠS ounds +h air +ĠSynd rome +t f +Ġproport ional +u id +Ġper taining +ĠKind le +ĠNeg ro +Ġreiter ated +ĠTon ight +oth s +ĠCorn ell +Ġo wing +Ġ20 8 +elf are +oc ating +ĠB irds +Sub scribe +Ġess ays +Ġburd ens +Ġillust rations +ar ious +ER AL +ĠCal cul +Ġx en +ĠLink edIn +ĠJ ung +Ġredes ign +Con nor +29 6 +Ġrevers al +ĠAd elaide +ĠL L +Ġs inking +Ġg um +US H +c apt +ĠGr imm +Ġfoot steps +ĠCB D +isp ers +Ġpro se +Wed nesday +ĠM ovies +ed in +Ġoverturn ed +Ġcontent ious +US B +~~~~~~~~ ~~~~~~~~ +ĠCo pper +Ġpoint less +N V +val ues +olph in +d ain +Ġdepos ited +ĠG W +Ġpreced ed +ĠCl a +ĠGo lem +ĠN im +ĠÎ ² +ĠEngine ers +m iddle +Ġfl att +oper ative +Ġcouncil s +imb abwe +el in +Ġstress ful +ĠL D +Ġres h +l ake +Ġwheel chair +ĠAltern ative +Ġoptim ize +oper ation +Ġpe ek +Ġones elf +ig il +Ġtrans itions +op athy +bl ank +Ġ16 9 +17 1 +________________________________ ________________________________ +Ġl aundering +En c +ĠD EC +Ġwork outs +Ġsp ikes +Ġdin osaurs +Ġdiscrim inatory +P ool +R ather +38 5 +R NA +tes ters +et o +ĠIdent ity +Ġve in +ĠBur ton +Ġarc ade +4 20 +Ult imately +ĠSad ly +à ° +p ill +Ġcub ic +ĠSpect rum +the se +st ates +Ġun official +h awks +ĠEVER Y +Ġrain bow +Ġincarcer ation +and ing +Ġsy ll +ĠEver ton +Ġ17 9 +ĠSer bia +Ġ18 9 +m eter +ĠMic key +Ġant iqu +Ġfact ual +ne ck +ĠN are +n orm +m ust +Ġhigh ways +Ġgl am +Ġdivid ing +ĠSquad ron +ĠMar tha +Ġbirth s +C over +//////// //////// +ĠW ong +Ph ot +ĠA LS +ri o +ĠNon etheless +ĠL emon +Ġ20 6 +ĠE E +Ġderiv ative +ĠWW II +v ote +Ġthere in +Ġsepar ating +44 6 +sy nc +ĠStre ets +Ġr att +Ġmunicip ality +ĠShort ly +Ġmon k +) ," +Ġscr ub +Ġoper atives +Ne ither +Pl ace +ĠLim it +F emale +ĠAct or +Char acter +Ġconstit uted +35 7 +Ġprotest ed +ĠSt raw +ĠHe ight +ild a +ĠTy ph +Ġflood s +Ġcos metic +W AY +pert ure +up on +t ons +ess ing +ĠP ocket +Ġro oft +ĠC aucas +Ġant idepress +Ġincomp atible +EC D +Ġoper a +ĠCont est +Ġgener ators +l ime +Def ense +19 87 +for um +Ġsav age +ĠHung arian +n z +Ġmet allic +Ġex pelled +Ġres idency +Ġdress es +66 6 +ĠC lement +f ires +C ategory +Ġge ek +al is +Ġc emetery +educ ated +Ġc rawl +ĠUn able +ĠT yson +ak is +Ġp ardon +ĠW ra +Ġstrengthen ed +ĠF ors +33 5 +ĠH C +ĠM ond +Ġvisual s +ĠBeat les +ett lement +Ġ ï +g ro +Ġb ash +Ġpo orest +Ġex cel +Ġaspir ations +ĠM unicip +ens ible +Ġceremon ies +Ġintimid ation +ĠCON TR +be ck +ĠK ap +as u +Ġtradem arks +ĠS ew +ĠComp etition +net work +ĠAr ri +ĠT et +Ro aming +W C +D at +Ġso b +Ġpair ing +Ġoverd ose +SA Y +ab er +Ġrev olt +ĠF ah +act ing +e q +est ation +F ight +ĠMar ks +27 3 +Ġ17 8 +R aw +ãģ ĭ +34 9 +bl ocks +Ġver ge +est ine +ĠPod esta +Ġinv asive +Ġprofound ly +ĠA o +e ach +Ġl est +inter pret +Ġshr inking +Ġerr one +Ġche es +ly s +ĠI vy +ĠDirect ory +Ġhint ed +V ICE +Ġcontact ing +ĠG ent +he i +Ġlabel ing +Ġmerc ury +ĠL ite +Ġexp ires +Ġdest abil +rit is +c u +Ġfeather s +Ġste er +Ġprogram med +ĠV ader +Go ing +ĠE lim +Ġy o +ĠMic he +Ġ20 3 +Ġslee ves +Ġb ully +ĠHum ans +36 8 +Ġcomp ress +ĠBan ner +AR S +Ġa while +Ġcal ib +Ġspons orship +ĠDiff iculty +ĠP apers +Ġident ifier +} . +Ġy og +ĠSh ia +Ġclean up +Ġvib e +int rodu +im ming +Austral ia +Ġout lines +ĠY outube +tr ain +ĠM akes +Ġde ported +Ġcent r +ĠD ug +ĠB oulder +ĠBuff y +Ġinj unction +ĠHar ley +ĠG roups +ĠD umbledore +ĠCl ara +Ġ" - +Ġsacrific ed +ep h +Sh adow +ib ling +Ġfreel ance +Ġevident ly +ph al +Ġret ains +M ir +Ġfin ite +d ar +ĠC ous +Ġrep aired +Ġperiod ic +Ġchampions hips +Ġaster oid +bl ind +Ġexpress ly +ĠAst ros +Ġsc aled +Ġge ographical +ĠRap ids +En joy +Ġel astic +ĠMoh amed +Mark et +be gin +Ġdisco vers +Ġtele communications +Ġscan ner +Ġen large +Ġsh arks +Ġpsy chedel +ĠRou ge +Ġsnap shot +is ine +X P +Ġpestic ides +ĠL SD +ĠDist ribution +re ally +Ġde gradation +Ġdisgu ise +Ġbi om +ĠEX T +Ġequ ations +Ġhaz ards +ĠComp ared +) * +Ġvirt ues +Ġeld ers +Ġenh ancing +ĠAc ross +er os +ang ling +Ġcomb ust +ucc i +Ġconc ussion +Ġcontrace ption +ĠK ang +Ġexpress es +Ġa ux +ĠP ione +Ġexhib its +Deb ug +OT AL +ĠAl ready +ĠWheel er +Ġexp ands +? : +Ġreconc iliation +Ġpir ates +Ġpur se +Ġdiscour age +Ġspect acle +R ank +Ġwra ps +ĠTh ought +Ġimp ending +O pp +ĠAng lo +ĠE UR +Ġscrew ed +ret ched +Ġencour agement +mod els +Ġconf use +mm m +ĠVit amin +âĸij âĸij +C ru +Ġkn ights +Ġdisc ard +Ġb ishops +ĠW ear +ĠGar rett +k an +ãĥ Ł +Ġmascul ine +cap ital +ĠA us +Ġfat ally +th anks +ĠA U +ĠG ut +12 00 +Ġ 00000000 +Ġsur rog +ĠBI OS +ra its +ĠWat ts +Ġresur rection +ĠElect oral +ĠT ips +4 000 +Ġnut rient +Ġdepict ing +Ġspr ink +Ġm uff +ĠL IM +ĠS ample +ps c +ib i +gener ated +Ġspec imens +Ġdiss atisf +Ġtail ored +Ġhold ings +ĠMonth ly +ĠE at +po ons +Ġne c +ĠC age +ĠLot us +ĠLan tern +Ġfront ier +Ġp ensions +Ġj oked +ĠHard y +=-=- =-=- +r ade +U ID +Ġr ails +Ġem it +Ġsl ate +Ġsm ug +Ġsp it +ĠCall s +ĠJac obs +f eat +ĠU E +Ġrest ruct +Ġregener ation +Ġenerg ies +ĠCon nor +OH N +ĠChe ese +Ġg er +Ġresur rect +man agement +N W +Ġpres ently +ĠBru ins +M ember +ĠM ang +id an +Ġboost ing +w yn ++ . +requ isite +ĠNY PD +ĠMe gan +ĠCond itions +Ġp ics +nes ium +ĠR ash +Ġ17 4 +ĠD ucks +Ġemb ro +z u +on ian +rel igious +Ġc raz +ĠAC A +ĠZ ucker +EM A +ĠPro s +We apon +ĠKn ox +ĠAr duino +Ġst ove +Ġheaven s +ĠP urchase +Ġher d +Ġfundra iser +Dig ital +5 000 +Ġprop onents +/ âĢĭ +Ġj elly +ĠVis a +Ġmon ks +Ġadvance ment +ĠW er +Ġ18 7 +e us +ert ility +Ġfet al +Ġ19 36 +L o +Ġout fits +Ġstair case +b omb +Ġcustom ized +cl air +T ree +Ġm apped +ĠConsider ing +ĠTor res +Ġmeth yl +Ġapprox imate +Ġdo om +ĠHans en +Ġc rossover +Ġstand alone +ä ¼ +Ġinv ites +Ġgra veyard +Ġh p +Donald Trump +Ġesc ort +G ar +Ġpredec essors +Ġh ay +Ġen zyme +ĠStra ight +vis ors +I ng +ane ously +ĠApp lied +Ġf ec +ĠDur ant +Ġout spoken +or b +Ġz eal +Ġdisgr ace +' ). +ĠChe ng +28 9 +ĠRen a +ĠSu icide +29 4 +Ġout raged +ĠNew man +ĠN vidia +ĠA ber +ĠB ers +Ġrecre ation +Wind ow +ĠD P +x e +Ġped oph +Ġfall out +ambo o +Ġpresent ations +ĠApp s +Ġh tml +3 45 +ĠX XX +Ġrub bing +ĠLe ather +Ġhum idity +se ys +est ablished +ĠUn its +64 6 +Ġrespect able +A uto +Ġthri ving +ĠInn ovation +ang s +Ext ra +reg ulation +29 8 +p ick +Ex amples +ĠC J +Att ack +Ġdr acon +L T +Ġstick er +re rs +Ġsun ny +I ss +reg ulated +d im +ĠAb stract +Ġhus bands +Off ice +om ination +it ars +AN GE +asc al +ĠK ris +ĠInf antry +Ġm alf +ĠA the +ĠR ally +bal anced +................ ........ +OU P +Ġmole cule +met ics +ĠSpl it +ĠInstruct ions +ĠN ights +c ards +Ġt ug +Ġcon e +å Ń +Ġt x +ĠDisc ussion +Ġcatast rophe +pp e +g io +Ġcommun ism +Ġhal ted +ĠGu ant +cle an +ĠSc hed +ĠK anye +Ġw ander +ĠSer iously +Ġ18 8 +enn ial +f ollow +product ive +ĠFl ow +ĠS ail +Ġc raw +Ġsim ulations +or u +ang les +ĠN olan +Ġmen stru +4 70 +Ġ20 7 +aj a +Ġcas ually +board ing +Ġ2 22 +ov y +ĠN umbers +um at +O E +28 7 +ĠCle mson +Ġcert s +Ġsl id +ĠT ribe +Ġto ast +Ġfort unes +Ġf als +ĠComm ittees +Ġg p +Ġf iery +ĠN ets +ĠAn ime +Pack age +ĠComp are +l aughter +in fect +Ġatroc ities +Ġjust ices +Ġins ults +ĠVern on +Ġsh aken +Ġperson a +est amp +36 7 +br ain +Ġexperiment ing +K en +ĠElect ronics +Ġ16 1 +dom ain +Ġgraph ical +b ishop +Ġwho pping +ĠEv angel +Ġadvertis ers +ĠSpe ar +Ġb ids +Ġdestro ys +ut z +Ġunders c +ĠAD D +Ġan ts +ĠC um +ipp les +ĠF ill +Ġgl anced +Ġind icted +ĠE ff +Ġmis con +ĠDes ktop +Ġab ide +ãĥ Ģ +ĠI o +ĠC oul +Ġcaps ule +ĠCh rys +M ON +Ġund es +ĠI RA +Ġc itation +Ġdict ate +ĠNet works +ĠConf lict +ĠSt uff +x a +is ec +ĠChem istry +Ġquarter ly +William s +an an +O pt +ĠAlexand ria +out heastern +ĠSpring field +ĠBlack s +Ġge ography +24 2 +Ġut most +ĠEx xon +ab outs +E VA +ĠEn able +ĠBar r +Ġdisag reed +ĠCy prus +Ġdement ia +Ġlab s +Ġubiqu itous +ĠLO VE +Ġconsolid ated +s r +Ġcream y +ĠTim ber +Reg ardless +ĠCert ificate +Ġ" ... +ogen ous +Capt ain +Ġinsult ing +ĠSor os +ĠInst r +ĠBulgar ia +bet ter +Ġsuck ing +ĠDavid son +at z +Ġcoll ateral +g if +Ġplag ued +ĠC ancel +ĠGard ner +R B +Ġsix teen +Rem ove +ur istic +c ook +R od +Ġcompr ising +f le +) âĢĶ +ĠVik ing +g rowth +agon al +Ġsr f +af ety +m ot +N early +st own +ĠF actor +Ġautom obile +Ġproced ural +m ask +amp ires +Ġdisapp ears +j ab +3 15 +Ġ19 51 +ne eded +Ġd aring +le ader +Ġp odium +Ġun healthy +Ġm und +Ġpy ramid +oc re +Ġkiss ed +Ġdream ed +ĠFant astic +ĠG ly +å Ĭ +Ġgreat ness +Ġsp ices +Ġmet ropolitan +Ġcomp uls +i ets +101 6 +ĠSh am +ĠP yr +fl ies +ĠMid night +Ġswall owed +Ġgen res +ĠL ucky +ĠRew ards +Ġdisp atch +ĠI PA +ĠApp ly +Ġa ven +al ities +3 12 +th ings +Ġ( ). +Ġm ates +ĠS z +ĠC OP +ol ate +O FF +Ġre charge +c aps +ĠYork er +ic one +Ġgal axies +ile aks +D ave +ĠP uzz +ĠCelt ic +ĠA FC +27 6 +ĠS ons +Ġaffirm ative +H or +Ġtutorial s +ĠC ITY +ĠR osa +ĠExt ension +Ser ies +Ġf ats +Ġr ab +l is +Ġun ic +Ġe ve +ĠSp in +Ġadul thood +ty p +Ġsect arian +Ġcheck out +ĠCy cl +S ingle +Ġmart yr +Ġch illing +88 8 +ou fl +Ġ] ; +Ġcongest ion +m k +ĠWhere as +Ġ19 38 +ur rencies +er ion +Ġbo ast +ĠPat ients +Ġch ap +ĠB D +real DonaldTrump +Ġexam ines +h ov +Ġstart ling +ĠBab ylon +w id +om ew +br ance +ĠOd yssey +w ig +Ġtor ch +ĠV ox +ĠMo z +ĠT roll +ĠAn s +Similar ly +ĠF ul +00 6 +Un less +ĠAl one +st ead +ĠPub lisher +r ights +t u +ĠDoes n +Ġprofession ally +Ġcl o +ic z +Ġste als +Ġ á +19 86 +Ġst urdy +ĠJoh ann +Ġmed als +Ġfil ings +ĠFr aser +d one +Ġmult inational +Ġf eder +Ġworth less +Ġp est +Yes terday +ank ind +Ġg ays +Ġb orne +ĠP OS +Pict ure +Ġpercent ages +25 1 +r ame +Ġpot ions +AM D +ĠLeban ese +Ġr ang +ĠL SU +ong s +Ġpen insula +ĠCl ause +AL K +oh a +ĠMac Book +Ġunanim ous +Ġl enders +Ġhang s +Ġfranch ises +ore rs +ĠUp dates +Ġisol ate +and ro +S oon +Ġdisrupt ive +ĠSur ve +Ġst itches +ĠSc orp +ĠDomin ion +Ġsupp lying +Ar g +Ġtur ret +ĠL uk +Ġbr ackets +* ) +ĠRevolution ary +ĠHon est +Ġnot icing +ĠSh annon +Ġafford ed +Ġth a +ĠJan et +! -- +ĠNare ndra +ĠPl ot +H ol +se ver +e enth +Ġobst ruction +Ġ10 24 +st aff +j as +or get +sc enes +l aughs +ĠF argo +cr ime +Ġorche str +Ġde let +ili ary +rie ved +Ġmilit ar +ĠGreen e +âĹ ı +ãģ ¦ +ĠGu ards +Ġunle ashed +ĠWe ber +Ġadjust able +Ġcal iber +Ġmotiv ations +Ġà ł +m Ah +ĠL anka +hand le +Ġp ent +ĠR av +ĠAng ular +ĠK au +umb ing +Ġphil anthrop +Ġde hyd +Ġtox icity +e er +ĠY ORK +w itz +å ¼ +ĠI E +commun ity +ĠA H +Ġret ali +Ġmass ively +ĠDani els +ĠD EL +Ġcar cin +Ur l +Ġrout ing +ĠNPC s +ĠR AF +ry ce +Ġwa ived +ĠGu atem +Every body +Ġco venant +Ġ17 3 +Ġrelax ing +Ġqu art +al most +Ġguard ed +ĠSold iers +ĠPL AY +Ġout going +L AND +Ġre write +ĠM OV +ĠIm per +ĠS olution +Ġphenomen al +Ġl ongevity +Ġimp at +ĠN issan +ir ie +Ġod or +ĠZ ar +ok s +Ġmilit ias +ĠSP EC +Ġtoler ated +ars er +ĠBrad ford ++ , +Ġsur real +s f +Can adian +Ġresemb lance +Ġcarbohyd rate +VI EW +Ġaccess ory +me al +larg est +ieg el +Some one +Ġtoug hest +os o +Ġfun nel +Ġcondemn ation +lu ent +Ġw ired +ĠSun set +Jes us +ĠP ST +ĠP ages +ĠTy coon +ĠP F +Ġselect ions +Ġ ठ+part isan +Ġhigh s +ĠR une +Ġcraft s +le ad +ĠParent s +Ġre claim +ek er +ĠAll ied +ae per +Ġlo oming +Ġbenefic iaries +ĠH ull +Stud ents +Jew ish +d j +Ġp act +tem plate +ĠOffic ials +ĠBay lor +Ġhe mp +Ġyouth s +ĠLevel s +ĠX iao +ĠC hes +Ġende avor +ĠRem oved +Ġhipp ocamp +H ell +ãĤ Ĭ +80 5 +Ġd inosaur +ĠWr ath +ĠIndones ian +Ġcalcul ator +ĠD ictionary +Ġ4 20 +ĠM AG +( _ +! , +t arians +Ġrestrict ing +rac use +Ġweek day +OU NT +Ġsh rugged +leg round +Ġb ald +ĠDo ctors +Ġt outed +ĠMax well +Ġ2 14 +Ġdiplom at +Ġrep ression +Ġconstitu ency +v ice +r anked +ĠNap oleon +g ang +ĠFore ver +t un +Ġbul b +ĠPD T +ĠC isco +V EN +Ġres umed +Ste ven +ĠManit oba +Ġfab ulous +ĠAg ents +19 84 +Ġam using +ĠMyster ies +Ġor thodox +fl oor +Ġquestion naire +Ġpenet rate +Ġfilm makers +ĠUn c +Ġst amped +Ġth irteen +Ġout field +Ġforward ed +Ġapp ra +Ġa ided +t ry +Ġunf ocused +ĠL iz +ĠWend y +ĠSc ene +Ch arg +Ġreject s +Ġleft ist +ĠProv idence +ĠBr id +reg n +Ġprophe cy +ĠL IVE +4 99 +Ġfor ge +ĠF ML +Ġintrins ic +ĠF rog +Ġw ont +ĠH olt +Ġfam ed +CL US +aeper nick +ĠH ate +ĠC ay +Ġregister ing +ort ality +rop y +ocaly ptic +a an +n av +Ġfasc ist +IF IED +Ġimpl icated +ĠRes ort +ĠChand ler +ĠBr ick +P in +ys c +Us age +ĠHel m +us ra +âĺħ âĺħ +ĠAb bas +Ġunanim ously +Ġke eper +Ġadd icted +?? ? +Ġhelm ets +Ġant ioxid +aps ed +80 8 +gi ene +Ġwa its +Ġmin ion +ra ved +ĠP orsche +Ġdream ing +Ġ17 1 +ĠC ain +Ġun for +ass o +ĠConfig uration +k un +hard t +Ġn ested +ĠL DS +L ES +Ġt ying +en os +Ġc ue +ĠMar qu +sk irts +Ġclick ed +Ġexp iration +ĠAccording ly +ĠW C +Ġbless ings +Ġaddict ive +ĠN arr +y x +ĠJagu ars +Ġrent s +ĠS iber +Ġt ipped +ous se +ĠFitz gerald +Ġhier arch +out ine +Ġwa velength +> . +ch id +ĠProcess ing +/ + +r anking +E asy +ĠConst ruct +Ġt et +ins ured +H UD +Ġqu oting +Ġcommun icated +in x +Ġin mate +Ġerect ed +ĠAbs olutely +ĠSure ly +Ġun im +ĠThr one +he id +Ġcl aws +Ġsuper star +ĠL enn +ĠWh is +U k +ab ol +Ġsk et +ĠN iet +Ġper ks +Ġaff inity +Ġopen ings +phas is +Ġdiscrim inate +T ip +v c +Ġgr inding +ĠJenn y +Ġast hma +hol es +ĠHom er +Ġreg isters +ĠGl ad +Ġcre ations +Ġlith ium +Ġappl ause +unt il +Just ice +ĠTur ks +Ġsc andals +Ġb ake +t ank +M ech +ĠMe ans +ĠM aid +Republic ans +is al +wind ows +ĠSant os +Ġveget ation +33 8 +t ri +Ġfl ux +ins ert +Ġclar ified +Ġmort g +ĠCh im +ĠT ort +Ġdiscl aim +met al +ĠAs ide +Ġindu ction +Ġinf l +Ġathe ists +amp h +Ġe ther +ĠV ital +ĠBu ilt +M ind +Ġweapon ry +S ET +Ġ18 6 +ad min +g am +cont ract +af a +Ġderiv atives +Ġsn acks +Ġch urn +E conom +Ġca pped +ĠUnder standing +ĠH ers +ĠI z +Ġd uct +I ENT +augh ty +Ġâľ Ķ +ĠN P +Ġsa iling +In itialized +Ġt ed +Ġreact ors +ĠL omb +Ġcho ke +ĠW orm +Ġadm iration +Ġsw ung +ens ibly +Ġr ash +ĠGo als +ĠImport ant +Sh ot +ĠR as +Ġtrain ers +ĠB un +Work ing +Ġhar med +ĠPand ora +ĠL TE +Ġmush room +ĠCH AR +ĠF ee +ĠM oy +B orn +ol iberal +ĠMart ial +Ġgentle men +Ġling ering +Offic ial +Ġgra ffiti +ĠN ames +D er +Ġqu int +ist rate +aze era +ĠNOT ICE +ĠFlore nce +Ġpay able +Ġdep icts +ĠSpe cies +He art +âĶĢâĶĢâĶĢâĶĢ âĶĢâĶĢâĶĢâĶĢ +Ġencl osed +Incre ases +D aily +ĠL is +Ġenact ment +ĠB acon +ĠSt eele +dem and +Ġ18 3 +Ġmouth s +Ġstr anded +Ġenhance ment +01 1 +ĠWh ats +Ġhe aled +en y +ĠR ab +Ġ3 40 +ĠLab yrinth +ro ach +ĠY osh +ĠCl ippers +Ġconcert s +Intern et +35 5 +Ġstick ers +Ġter med +ĠAx e +Ġgrand parents +Fr ance +ĠCl im +ĠU h +ul ic +Ġthr ill +cent ric +ĠOver view +ĠCond uct +Ġsubstant ive +Ġ18 2 +m ur +Ġstr ay +ĠCo ff +Ġrep etitive +ĠFor gotten +Ġqual ification +ew itness +ĠZ imbabwe +Ġsim ulated +ĠJ D +25 3 +ĠW are +Ġun sc +T imes +Ġsum mons +Ġdis connected +Ġ18 4 +ci us +ĠGu jar +od ka +Ġer ase +ĠTob acco +elect ed +Ġun cont +ĠShe pard +ĠL amp +Ġalert ed +Ġoper ative +arn a +u int +Ġneglig ence +ac ements +Ġsup ra +Ġprev ail +ĠSh ark +Ġbel ts +ãģ « +Ġt ighter +Engine ers +Ġin active +Ġexp onent +ĠWill ie +a ples +Ġhe ir +ĠH its +ian n +ĠS ays +Ġcurrent s +ĠBeng al +Ġar ist +B uffer +Ġbree ze +ĠWes ley +Col a +Ġpron oun +Ġde ed +ĠK ling +Ġof t +Ġinf lict +Ġpun ishing +Ġn m +ik u +OD UCT +01 4 +Ġsubsid y +ĠDE A +ĠHer bert +ĠJ al +B ank +Ġdef erred +Ġship ment +B ott +Ġal le +b earing +HT ML +Off line +Ġ2 13 +Ġscroll ing +Ġsc anned +ĠLib yan +ĠT OP +ch rom +d t +col umn +Psy NetMessage +Z ero +Ġtor so +0 50 +âķ IJ +Ġimp erson +ĠSchw artz +ud ic +Ġpiss ed +ĠS app +25 7 +ĠIS Ps +og l +Ġsuper vised +Ġad olescent +Ġatt ained +ĠDel ivery +ĠB unny +Ġ19 37 +Ġmini ature +Ġo s +Ġ3 70 +60 8 +ĠMour inho +Ġinn ate +Ġtem po +ĠN M +ĠFall en +00 9 +Ġprov ocative +Stream er +ĠBened ict +ĠBol she +Ġt urtle +ĠPC B +ĠEqu al +Direct or +ĠR end +Ġflu ids +Author ities +Ġcous ins +requ ency +ĠNeigh bor +s ets +sh ared +Char les +pass word +Ġg ears +Ġ2 11 +ĠHard ware +ri ka +Ġup stream +H om +Ġdisproportion ately +iv ities +Ġund efined +Ġelect rons +Ġcommem or +Event ually +Ġ> < +Ġir responsible +2 18 +ĠRe leased +ĠO VER +ĠI GN +ĠB read +st ellar +ĠS age +tt ed +dam age +ed ition +ĠPre c +Ġl ime +Ġconf inement +Ġcal orie +we apon +Ġdiff ering +ĠS ina +m ys +am d +Ġintric ate +k k +ĠP AT +ã o +st ones +lin ks +Ġr anch +Sem itic +Ġdifferent iate +ĠS inger +occup ied +Ġfort ress +c md +Ġinter ception +ĠAnk ara +Ġre pt +ĠSol itaire +Ġrem ake +p red +Ġd ared +aut ions +ĠB ACK +Run ning +Ġdebug ging +Ġgraph s +3 99 +ĠNig el +Ġb un +Ġpill ow +Ġprog ressed +fashion ed +Ġob edience +ER N +Ġrehe ars +C ell +t l +S her +Ġher ald +ĠPay ment +ĠC ory +ĠDe pt +Ġrep ent +ĠWe ak +uck land +Ġple asing +Ġshort ages +Ġjur ors +ĠK ab +q qa +Ant i +Ġw ow +ĠRC MP +Ġt sun +ĠS ic +Ġcomp rises +Ġsp ies +Ġprec inct +n u +Ġur ges +Ġtim ed +Ġstrip es +ĠB oots +Ġy en +Adv anced +Ġdisc rete +ĠArch angel +employ ment +D iff +Ġmon uments +Ġ20 9 +work er +Ġ19 6 +ĠI g +utter stock +T PS +J ac +Ġhomeless ness +Ġcomment ator +Ġrac ially +f ing +se ed +E le +ell ation +Ġeth anol +Ġpar ish +ĠD ong +ĠAw akening +Ġdev iation +ĠB earing +ĠTsu k +Ġrec ess +Ġl ymph +ĠCann abis +å ľ +ĠNEW S +Ġd ra +ĠStef an +ĠWr ong +ĠS AM +Ġloose ly +Ġinterpre ter +ĠPl ain +Go vernment +Ġbigot ry +Ġgren ades +ave z +pict ured +Ġmand ated +ĠMon k +ĠPed ro +Ġl ava +27 4 +Ġcyn ical +ĠScroll s +l ocks +M p +Ġcon gregation +orn ings +ph il +ĠI bid +Ġf erv +Ġdisapp earing +Ġarrog ant +sy n +ĠMa ver +ĠSu it +24 1 +Ġab bre +ack ers +P a +ĠY el +Whe never +Ġ23 5 +ĠV ine +ĠAn at +Ġext inct +LE T +Ġexecut able +V ERS +ox ide +D NA +ĠP rel +Ġresent ment +Ġcompr ise +ĠAv iv +Ġinter ceptions +Ġprol ific +IN A +ĠEr in +though t +2 19 +ĠPsychiat ry +un ky +chem ist +H o +ĠMcC oy +Ġbr icks +L os +ri ly +ĠUS SR +Ġr ud +Ġl aud +ĠW ise +ĠEmer ald +Ġrev ived +Ġdam ned +ĠRep air +id em +ct ica +Ġpatri arch +ĠN urs +me g +Ġcheap est +re ements +empt y +ĠCele br +Ġdepri vation +ch anted +ĠTh umbnails +E nergy +ĠEth an +ĠQ ing +Ġopp oses +W IND +v ik +ĠM au +ĠS UB +66 7 +G RE +ĠVol unte +nt on +C ook +å IJ +es que +Ġplum met +Ġsu ing +Ġpron ounce +Ġresist ing +ĠF ishing +ĠTri als +Ġy ell +Ġ3 10 +Ġin duct +Ġpersonal ized +oft en +R eb +EM BER +Ġview point +Ġexist ential +() ) +rem ove +MENT S +l asses +Ġev apor +Ġa isle +met a +Ġreflect ive +Ġentit lement +Ġdev ised +mus ic +asc ade +Ġwind ing +off set +Ġaccess ibility +ke red +Bet ter +ĠJohn ston +th inking +S now +ĠCroat ia +ĠAt omic +27 1 +34 8 +Ġtext book +ĠSix th +Ġ اÙĦ +Ġsl ider +ĠBur ger +b ol +S ync +Ġgrand children +Ġc erv ++ ) +Ġe ternity +Ġtweet ing +Ġspec ulative +Ġpiv otal +ĠW P +ĠT ER +ynam ic +Ġu pl +ĠC ats +per haps +Ġclass mates +Ġblat ant +' - +Ġl akh +ant ine +ĠB org +i om +/ ( +ĠAthlet ic +Ġs ar +OT A +ĠHoff man +Never theless +Ġad orable +Ġspawn ed +Ass ociated +ĠDom estic +Ġimpl ant +ĠLux em +ĠK ens +Ġp umps +ĠS AT +Att ributes +50 9 +av our +Ġcentral ized +ĠT N +Ġfresh ly +ĠA chieve +Ġouts iders +her ty +ĠRe e +ĠT owers +ĠD art +ak able +Ġm p +ĠHeaven ly +Ġr ipe +ĠCarol ine +ry an +Ġclass ics +Ġret iring +Ġ2 28 +Ġa h +Ġdeal ings +Ġpunch ing +ĠChap man +O ptions +max well +vol ume +Ġst al +Ġex ported +ĠQu ite +Ġnumer ical +B urn +F act +ĠKey stone +Ġtrend ing +Ġalter ing +ĠAfric ans +47 8 +ĠM N +ĠKn ock +Ġtempt ation +Ġprest ige +Over view +ĠTrad itional +ĠBah rain +Priv ate +ĠH OU +Ġbar r +ĠT at +C ube +US D +ĠGrand e +ĠG at +ĠFl o +Ġres ides +Ġind ec +vol ent +Ġperpet ual +ub es +Ġworld view +ĠQuant um +Ġfil tered +Ġen su +orget own +ERS ON +ĠM ild +37 9 +OT T +à ¥ +Ġvit amins +Ġrib bon +Ġsincere ly +ĠH in +Ġeight een +Ġcontradict ory +Ġgl aring +Ġexpect ancy +Ġcons pir +Ġmon strous +Ġ3 80 +re ci +Ġhand ic +Ġpump ed +Ġindic ative +Ġr app +Ġav ail +ĠLEG O +ĠMar ijuana +19 85 +ert on +Ġtwent ieth +################ ################ +ĠSw amp +Ġval uation +Ġaffili ates +adjust ed +ĠFac ility +26 2 +Ġenz ymes +itud inal +Ġimp rint +S ite +Ġinstall er +ĠT RA +m ology +lin ear +ĠCollect ive +ig ating +ĠT oken +Ġspec ulated +K N +ĠC ly +or ity +Ġdef er +Ġinspect ors +appro ved +R M +ĠSun s +Ġinform ing +ĠSy racuse +ib li +7 65 +Ġgl ove +Ġauthor ize +â̦â̦â̦â̦ â̦â̦â̦â̦ +ĠCru ise +Ġcontract ing +she ll +IF E +ĠJew el +p ract +ĠPhot oshop +ĠKnow ing +h arm +Ġattract ions +ad an +et us +01 8 +w agen +Al t +Ġmultip ly +Ġequ ilibrium +: { +ĠF ighters +ĠEd gar +Ġfour teen +Go vern +Ġmis use +Ġab using +Ġancest ry +ram er +64 4 +Ġwor ms +Ġthick er +ĠComb ine +Ġpeas ants +Ġv ind +Ġcon quest +Ġm ocked +Ġc innamon +ĠC ald +ĠGall up +Ġavoid ance +Ġincarn ation +ĠStr at +Ġt asted +ent a +ĠN eal +p ared +Ġtermin ology +ject ion +Scient ists +ĠIN S +ĠDe e +Ġdirect ories +R oad +ĠSh ap +br ight +ĠDirect ors +ĠCol umn +Ġb ob +Ġprefer ably +Ġgl itch +f urt +Ġe g +id is +C BC +Ġsur rendered +Ġtest ament +33 6 +ug gest +ĠN il +an other +Ġpat hetic +ĠDon na +Ġ2 18 +ĠA very +Ġwhis key +Ġf ixture +ĠCon quest +Ġbet s +O cc +ĠLe icester +] ." +Ġ) ); +Ġfl ashes +45 6 +Ġmask ed +ge bra +Ġcomput ed +che l +aud er +Ġdefe ats +ĠLiber ation +ĠOs ama +ĠV ive +Ch anges +Ch annel +Ġtar iffs +Ġm age +ĠS ax +Ġinadvert ently +ĠC RE +ĠRe aper +ink y +gr ading +Ġstere otyp +Ġcur l +ĠF ANT +Ġfram eworks +M om +ĠAn ch +Ġflav our +car bon +Ġperm itting +let cher +ĠMo zilla +ĠPark ing +ĠCh amp +Sc roll +Ġmurd erer +Ġrest ed +Ġow es +ĠP oss +AD D +IF F +res olution +ĠMin ing +Ġcompar ative +D im +Ġneighbour ing +ĠA ST +ĠT oxic +Ġbi ases +Ġgun fire +ur ous +ĠMom ent +19 83 +Ġper vasive +tt p +ĠNorm ally +r ir +S arah +ĠAlb any +Ġun sett +ĠS MS +ip ers +l ayer +ĠWh ites +up le +Ġtur bo +ĠLe eds +Ġthat s +ĠMin er +M ER +ĠRe ign +Ġper me +ĠBl itz +Ġ19 34 +Ġintimid ating +t ube +Ġecc entric +ab olic +box es +ĠAssoci ates +v otes +Ġsim ulate +um bo +aster y +Ġship ments +FF FF +an th +Ġseason ed +Ġexperiment ation +âĸ ł +law s +Me et +idd les +ant ics +R ating +IS IS +h ift +Ġfront s +b uf +01 7 +Ġun att +ĠD il +le ases +ĠGard ens +77 7 +t ouch +ve ll +45 8 +Ġ= ==== +s aving +Ġer osion +ĠQu in +Ġearn s +Ġaccomplish ment +ĠWe i +Ġ< [ +____ _ +Ġir rig +ĠT eddy +Ġconqu ered +ĠArm ored +Ġassert s +Ġmanip ulating +r é +Ġtranscript s +G allery +Ġplot ting +Ne il +Ġbetray al +load er +ĠS ul +Ġdispl acement +Ġroy alty +ĠW I +he it +ĠDev ices +alle l +Ġmunicipal ities +Ġcan al +St ars +ĠU AE +Ġ" â̦ +ĠC U +ab ove +Ġreson ance +ĠguiActive Un +add ed +ĠBra ves +ĠI bn +Ġhere by +ĠB RE +Ġshare holder +ĠH ir +ĠJ i +Ġstrange ly +Ġadm ired +Ġpl ight +Ġb achelor +ĠP ole +cipl inary +T ony +ĠArmen ian +Ġun man +ĠZion ist +St age +isco ver +Ġautom otive +Ġs idelines +Ġsl ick +ĠRena issance +ĠF UN +Im ages +ĠH aj +Ġp ing +Ġshort cut +ĠBl vd +ĠLook s +Ġbur sts +Ġcl amp +Ġm ish +Ġsort ing +Ġpatri ot +Ġcorrect ness +ĠScand inav +ĠCaval iers +p ython +az ar +Ġ3 75 +ĠJa une +40 9 +Ġdetrim ental +Ġstab bing +Ġpoison ed +Ġf ountain +oc ent +or st +ĠMar i +Ġr ains +ĠO vers +ĠInst itution +ud get +AM Y +t ale +ĠK R +ĠPr ices +Ġhead aches +Ġlands l +ĠA ura +Bon us +ĠZ hao +ĠH ip +Ġhop s +ĠKurd istan +Ġexplo iting +ry n +Ġhypocr isy +op ening +Ġgun shot +Ġw ed +inter stitial +Inter stitial +Ġam en +Bre aking +Ġmarket ed +W ire +ĠC rowd +Contin ue +ĠK nown +ĠEffect ive +ore an +iz ons +Jose ph +Ġescal ation +us ername +Ġcur tain +AT ES +ĠP AR +ĠM iy +Ġcounter fe +l ene +Ġcont enders +d aily +ĠAs c +ĠPhill ip +most ly +Ġfil ename +he ne +Ġresemb ling +Ġst aging +ĠCh loe +Ġw iring +H on +ĠRen ew +ott age +ĠHy brid +m uch +Ġstro kes +Ġpolicy makers +AP TER +ĠArk ham +pl ot +Ġassist ants +Ġde port +ĠSe ga +Ġinflu enza +ĠC ursed +ĠK obe +Ġskin ny +Prov ider +ĠR ip +Ġincrement al +product s +B F +Ġd ome +ĠC redits +Ġlos ers +int s +ĠBet ty +ĠTal ent +ĠD AM +L v +E ss +Ġd ens +tem p +J udge +od ic +Ġ' ( +UR ES +ets k +V O +Ġretrie ved +Ġarchitect s +Ù ĩ +Ġeth ic +ĠSecond ary +st ocks +ad ia +Ġ3 25 +ĠOp inion +Ġsimultane ous +Ġd izz +ul p +Ġsmugg ling +ipp ery +R andom +f acing +ĠD as +Ġstock p +Ġdiscl osures +po inter +Ġcor al +ĠSe lection +ĠP ike +ival ent +Ġruth less +ĠR im +Ġensu ing +ĠExper iment +Ġcongress man +Ġbelie ver +Ġun specified +ĠM ord +Ġknowledge able +ĠV ERY +T X +Ġstra ps +Ġtur f +apesh ifter +Ġmar ital +Ġfl ock +ãģ Ĩ +26 3 +AM ES +ĠOpp osition +Ġtre asures +ĠG OD +Ġmodel ed +ĠWOR LD +Ġ( [ +ĠUs age +H F +Ġ$ ( +uss ed +Ġpione er +E ight +par se +b read +rit z +ĠMir anda +ĠK ant +++ ) +ore n +Ġprov oked +Ġbre eds +ĠIn cludes +ĠPast ebin +ĠFl ip +J ava +Ġbr ink +Ġrum ored +Ġun seen +Ġgar nered +ĠDef in +al ted +Ġtatt oos +Ġhes itation +is itions +ĠWe aver +ĠReport ing +Ġtherap ies +Ġconsult ants +Ġresid ual +ĠMal i +ĠRom a +i ago +ĠRes idents +ub i +Ġremed ies +Ġadapt ive +ĠAl ive +ĠBar cl +Ġwal lets +c rypt +etermin ation +ĠPel osi +Ġsl ipping +oton in +Ġall iances +pat rick +ir is +Ġor th +ĠPer kins +ĠDe V +ĠG ets +Ġdry ing +ge e +fore st +ĠFor get +ore m +33 9 +Ġvague ly +ĠD ion +ĠP orn +ĠH OW +Ġp neum +Ġrub ble +ĠT aste +enc ia +ĠG el +Ġd st +Ġ24 5 +ĠMoroc co +inf lamm +ĠTw ins +Ġb ots +d aughter +ĠB alk +Ġbre thren +Ġlog os +Ġgo bl +f ps +Ġsub division +Ġp awn +Ġsquee zed +Ġmor ale +ĠD W +' " +Ġkn ot +ook y +Ġdiv isive +Ġboost ed +ch y +ãĥ IJ +if act +Ġnewcom ers +ĠWrest ling +Ġsc outs +w olves +R at +Ġnin eteenth +ĠOs borne +St ats +Ġem powered +Ġpsych opath +ĠO EM +ugg age +ĠP K +ĠMoh ammad +P ak +Ġanarch ists +ĠExt ract +est hes +ĠStock holm +l oo +ĠG raph +Ġdeploy ing +ĠStr anger +ĠM old +Ġstaff er +Ġdiscount ed +uck le +ple ase +ĠLand ing +ÃŃ a +Ġ19 3 +Ġan te +Ġrep etition +Ġ+ /- +Ġpar ody +Ġlive ly +AA A +ĠHor us +Ġp its +ind ers +L OC +ĠVen ice +40 6 +ĠDis cover +â Ĩ +ellect ual +Ġp ens +Ġey el +ig uous +Im pl +Ġj oking +Ġinv al +ĠBel fast +Ġcredit ors +ĠSky walker +ov sky +Ġcease fire +Ġse als +is oft +) ). +ĠFel ix +IT S +Ġt resp +ĠBlock chain +ew are +ĠSch war +en ne +mount ed +ĠBe acon +les h +Ġimmense ly +Ġche ering +Em ploy +sc ene +ish ly +atche wan +ĠNic olas +Ġdr ained +ĠEx it +ĠAz erb +j un +Ġflo ated +u ania +De ep +Ġsuper v +Ġmyst ical +ĠD ollar +ĠApost le +ĠR EL +ĠProv ided +ĠB ucks +ãĥ ´ +cut ting +Ġenhance ments +ĠPengu ins +ĠIsa iah +Ġj erk +ĠW yn +Ġst alled +Ġcryptoc urrencies +ĠR oland +sing le +Ġl umin +ĠF ellow +ĠCap acity +ĠKaz akh +W N +Ġfin anced +38 9 +Ġt id +Ġcoll usion +ĠMy r +î Ģ +Sen ator +Ġped iatric +Ġneat ly +Ġsandwic hes +ĠArchitect ure +Ġt ucked +Ġbalcon y +Ġearthqu akes +qu ire +F uture +Ġhe fty +é Ĺ +Ġspecial izes +Ġstress es +Ġs ender +Ġmisunder standing +Ġep ile +Ġprov oke +ĠCol ors +Ġdis may +uk o +[ _ +58 6 +ne utral +Ġdon ating +ĠRand all +Mult i +Ġconvenient ly +ĠS ung +ĠC oca +Ġt ents +ĠAc celer +Ġpart nered +27 2 +ir ming +ĠB AS +s ometimes +Ġobject ed +ub ric +p osed +LC S +gr ass +Ġattribut able +V IS +Israel i +Ġrepe ats +ĠR M +v ag +ut a +in ous +Ġin ert +ĠMig uel +æ Ń +ĠHawai ian +B oard +Ġart ific +ĠAzerb ai +as io +ĠR ent +A IN +Ġappl iances +Ġnational ity +Ġass hole +ĠN eb +Ġnot ch +h ani +ĠBr ide +Av ailability +Ġintercept ed +Ġcontin ental +Ġsw elling +ĠPers pect +b ies +. < +ith metic +ĠL ara +Ġtempt ing +add r +Ġoversee ing +cl ad +ĠD V +ĠGing rich +Ġm un +ĠApp ropri +Ġalter ations +ĠPat reon +Ġha voc +Ġdiscipl ines +Ġnotor iously +aku ya +ier i +? ). +ĠW ent +Ġsil icon +Ġtre mb +Cont ainer +K nown +Ġmort ar +est e +ick a +Ar thur +ĠPre viously +ĠMart y +Ġsp arse +g ins +Ġin ward +ĠParticip ant +C opy +ĠM isc +Ġantib iotic +ĠRet ro +Ġel usive +Ġass ail +ĠBatt alion +ĠB ought +Ġdimin ish +ĠEuro pa +s ession +ĠDanger ous +ies el +Ġdisbel ief +Ġbl asts +ext reme +ĠBoy d +ĠProject s +ĠGu ys +Ġunder gone +Ġgr ill +ĠDw ight +Ġ19 7 +US ER +Ġfiles ystem +Ġcl ocks +T aylor +Ġwra pper +Ġfold ing +ous and +ĠPhilipp ine +ATION AL +ĠPer th +Ġas hes +Ġaccum ulate +ĠGate way +Sh op +orks hire +H an +ĠBar rel +ĠLe h +ĠX V +Ġwh im +Ġrep o +ĠC G +ĠM am +Ġincorpor ating +Ġbail out +Ġlingu istic +Ġdis integ +C LE +Ġcinem atic +ĠF iber +S yn +il ion +ĠCom pos +c hens +Ġne oc +Ġbo iled +F INE +on o +un cle +ik en +ĠB M +Î ¹ +Ġreceipt s +Ġdisp osed +ĠTh irty +ĠR ough +ĠA BS +Ġnot withstanding +oll en +# $ +Ġunrel iable +Ġbl oom +Ġmedi ocre +Ġtr am +ĠTas man +Ġsh akes +Ġmanifest o +ĠM W +Ġsatisf actory +Ġsh ores +Ġcomput ation +Ġassert ions +orm ons +ar ag +ab it +Dem ocrats +ĠL oot +ĠVol ks +ha ired +Ġgrav itational +S ing +ĠM iz +Ġthro ttle +Ġtyr anny +ĠView s +Ġrob ber +ĠMinor ity +Ġsh rine +sc ope +pur pose +Ġnucle us +our cing +ĠUS DA +ĠD HS +w ra +ĠBow ie +Sc ale +ĠB EL +x i +I ter +Ġ( ), +w right +Ġsail ors +ous ed +NAS A +ĠPro of +ĠMin eral +t oken +ĠF D +R ew +Ġe ll +6 30 +Ġchance llor +ĠG os +Ġamount ed +ĠRec re +ome z +ĠOpt im +ĠOl ive +Ġtrack er +ow ler +ĠUn ique +R oot +Ġmar itime +ĠQur an +ĠAd apt +Ġecosystem s +ĠRe peat +ĠS oy +ĠI MP +Ġgrad uating +and em +P ur +ĠRes et +ĠTr ick +ĠPh illy +ĠT ue +ĠMalays ian +Ġclim ax +Ġb ury +Ġcons pic +ĠSouth ampton +ĠFl owers +Ġesc orted +ĠEduc ational +ĠI RC +Ġbrut ally +e ating +Ġpill ar +ĠS ang +ĠJ ude +ar ling +ĠAm nesty +Ġrem inding +ĠAdminist rative +hes da +Ġfl ashed +ĠP BS +per ate +fe ature +Ġsw ipe +Ġgra ves +oult ry +26 1 +bre aks +ĠGu er +Ġsh rimp +ĠV oting +qu ist +Ġanaly tical +Ġtables poons +ĠS OU +Ġresear ched +Ġdisrupt ed +Ġj our +Ġrepl ica +Ġcart oons +b ians +} ) +c opy +G ot +ou ched +P UT +Ġsw arm +not ations +s aid +Ġreb uilt +Ġcollabor ate +Ġr aging +Ġn ar +Ġdem ographics +ĠD DR +Ġdist rust +oss ier +ĠK ro +Ġpump kin +Ġreg rets +Ġfatal ities +ĠL ens +ĠO le +p d +Ġpupp et +ĠOut look +ĠSt am +O l +F air +U U +Ġre written +Ä ± +Ġfasc inated +Ġve ctors +Ġtrib unal +u ay +ĠM ats +ĠCo ins +[ [ +Ġ18 1 +Ġrend ers +ĠK aepernick +Ġesp ionage +Ġsum m +Ġd itch +Acc ount +Ġspread sheet +Ġmut ant +p ast +40 7 +Ġd ye +Ġinit iation +Ġ4 000 +Ġpunish able +Ġth inner +ĠKh al +Ġinter medi +D un +ĠGoth am +Ġeager ly +Ġvag inal +p owers +V W +ĠWATCH ED +Ġpred ator +ams ung +Ġdispar ity +Ġ[ * +Ġam ph +Ġout skirts +ĠSpir its +Ġskelet al +Ð » +ĠR ear +Ġissu ance +ĠLog ic +re leased +Z Z +ĠB ound +Ent ry +Ġex its +is ol +ĠFound er +Ġw re +ĠGreen land +ĠM MO +t aker +IN C +ãģ ¾ +Ġhour ly +hen ko +Ġfantas ies +Ġdis ob +Ġdemol ition +ãĥ ĭ +Ġen listed +rat ulations +Ġmis guided +Ġens ured +Ġdiscour aged +m ort +Ġfl ank +Ġc ess +Ġreact s +ĠS ere +s ensitive +ĠSer pent +ass ad +Ġ24 7 +Ġcalm ly +b usters +Ġble ed +ĠSt ro +Ġamuse ment +ĠAntar ctica +Ġs cept +ĠG aw +a q +ason ic +Ġsp rawling +n ative +atur ated +ĠBattle field +IV ERS +E B +ĠG ems +ĠNorth western +ĠFil ms +ĠAut omatic +Ġappre hend +ãģ ¨ +Ġgui Name +Ġback end +Ġevid enced +ge ant +01 2 +ĠS iege +Ġexternal To +Ġunfocused Range +ĠguiActiveUn focused +Ġgui Icon +ĠexternalTo EVA +ĠexternalToEVA Only +F ri +ch ard +en aries +Ġchief s +Ġc f +ĠH UD +Ġcorro bor +Ġd B +ĠT aken +ĠPat ricia +ra il +ĠCh arm +ĠLiber tarian +rie ve +Person al +ĠO UR +ger ies +Ġdump ing +Ġneurolog ical +it imate +ĠClint ons +raft ed +ĠM olly +Ġtermin als +reg ister +Ġfl are +Ġenc oded +Ġautop sy +p el +m achine +Ġexempt ions +ĠRoy als +d istance +Ġdraft s +Ġl ame +ĠC unning +Ġsp ouses +ĠMark ets +ĠCar rier +Ġimp lying +ĠY ak +s id +Ġl oser +Ġvigil ant +Ġimpe achment +Ġaug mented +ĠEmploy ees +Ġunint ended +tern ally +ĠW att +Ġrecogn izable +ess im +æ Ŀ +Ġco ated +r ha +Ġlie utenant +ĠLegisl ation +pub lished +44 4 +01 3 +Ġide ally +ĠPass word +Ġsimpl ify +ĠMet a +ĠM RI +Ġple ading +organ ized +hand ler +Ġun ravel +cor rect +Ġ icy +Ġparan oid +Ġpass er +Ġinspect ions +of er +ĠHealth care +28 3 +ĠBr ut +iol a +for ge +ĠMed ieval +MS N +ie vers +ĠProgram ming +å ī +Ġ2 23 +m u +ĠC LE +ug a +Ġsho ppers +Ġinform ative +ĠPl ans +Ġsupplement ation +ĠT ests +ty ard +ocy tes +ĠVeg a +ĠGujar at +erman ent +Ex cept +ĠL OT +all a +ĠC umm +ĠO sw +Ġven om +ĠDeb t +ĠD OWN +Ġreun ion +Ġm uc +ĠRel ief +Ġge op +ĠðŁ ĺ +al ogue +An th +ech o +Ġcor ros +Ġrepl ication +ĠBl azing +ĠD aughter +Ġinf lic +ĠLind sey +Ù Ī +28 4 +Ex it +Ġgl oom +TA IN +Ġundermin ing +Ġadv ising +h idden +Ġover flow +Ġg or +urd ue +Ġe choes +enh agen +Ġimp uls +d rug +c ash +Ġas ync +Ġmir ac +at ts +p unk +Ġpiv ot +ĠLegisl ative +Ġblog gers +ĠCl aw +s burg +d yl +ĠRecomm end +Ġver te +Ġprohib iting +ĠPant her +Jon athan +Ġo min +Ġhate ful +28 1 +ĠOr che +ĠMurd och +down s +Ġas ymm +G ER +Al ways +Ġinform s +ĠW M +ĠP ony +ĠApp endix +ĠAr lington +J am +Ġmedic inal +ĠS lam +IT IES +Ġre aff +ĠR i +F G +S pring +b ool +Ġthigh s +Ġmark ings +ĠRa qqa +ĠL ak +p oll +ts ky +ĠMort y +ĠDef inition +Ġdeb unk +end ered +ĠLe one +a vers +Ġmortg ages +App arently +N ic +ha us +ĠTh ousands +au ld +Ġm ash +sh oot +Ġdi arr +Ġconscious ly +H ero +e as +ĠN aturally +ĠDestroy er +Ġdash board +serv ices +R og +Ġmillenn ials +Ġinv ade +- ( +Ġcomm issions +ĠA uckland +Ġbroadcast s +Ġfront al +Ġcr ank +ĠHist oric +Ġrum ours +CT V +Ġster il +Ġboost er +rock et +ãĤ ¼ +ut sche +ĠP I +Ġ2 33 +ĠProdu cer +ĠAnaly tics +Ġinval uable +Ġunint ention +ĠC Y +Ġscrut in +Ġg igg +Ġeng ulf +Ġprolet ariat +Ġh acks +ĠH ew +ar ak +ĠSl ime +ield ing +ag her +ĠEll iot +Ġtele com +Ġ2 19 +ult an +ĠAr bor +ĠSc outs +B an +Ġlifes pan +Ġbl asp +38 8 +Ġjud iciary +ĠContin ental +ask ing +Mc C +L ED +Ġbag gage +ĠSorce rer +Ġrem nants +ĠGriff ith +ets u +ĠSub aru +ĠPerson ality +des igned +ush ima +agn ar +Ġrec oil +Ġpass ions +\ ": +Ġte e +Ġabol ition +ĠCreat ing +j ac +Ġ19 4 +01 9 +Ġpill ars +ric hed +/ " +t k +Ġlive lihood +Ġro asted +ah on +ĠH utch +ass ert +Ġdivid end +Ġkn it +Ġd aunting +Ġdisturb ance +Ġsh ale +Ġcultiv ated +Ġrefriger ator +L B +ĠN ET +Ġcommercial s +Ġthink ers +45 5 +Ġch op +B road +Ġsuspic ions +Ġtag ged +l ifting +Ġsty lish +ĠShield s +Short ly +Ġt ails +A uth +ST E +ĠG AME +Ġse ism +ĠK is +olog ne +Ġcow ork +Ġforc ibly +Ġthy roid +ĠP B +AN E +mar ried +h orse +Ġpoly mer +ĠCh al +od or +DE BUG +ĠCon text +Ġbl iss +Ġpin point +ĠMat hemat +leg ram +ĠWeek end +Ġlab elled +Ġb art +it les +Ġest rogen +âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ +" ' +Ġvis ibly +Ġouts ider +aid a +Are a +Ġdisse min +Ġdish onest +ĠCl osed +ĠBullet in +ĠRam sey +sw ord +ĠX I +our ced +S ame +34 6 +ĠRe pe +ĠK ou +c ake +em is +C ache +ĠMe aning +ĠEn light +onom y +Ġmanifest ation +sw orth +J ay +Ġch ore +ö r +D ream +Ġsanction ed +Ġcult urally +ĠA ra +N av +Ġthe ological +Ġstr ut +ĠV O +ĠHand book +Ġconstruct ing +Ġ ¶ +ĠBenef its +ĠPsych ological +s ac +å ¸ +p olicy +ĠMat ters +ĠReport ed +ĠBy te +Ġvit ro +ĠM aiden +Ġl am +ĠJenn ings +Ġgar ment +ĠRut gers +ĠStaff ord +ĠWell ington +Ġinter mitt +Ġn pm +Ġord eal +Ġplug ged +o oming +in ished +fram ework +Ġtim ber +Ġc ass +Ġ8 50 +il ess +ĠRed ux +7 68 +St re +Ġsurpass ed +w hel +Ġparalle ls +Ġve il +ĠG I +ĠR EST +Ġread iness +s ort +Ġmod ifying +ĠSl ate +ru ff +Ġmar ble +Ġinf rared +Ġaud itor +ĠFANT ASY +ĠP overty +ĠS PD +Ġ" ( +K y +RA Y +Ġexecut ions +ĠBever ly +ĠMarx ism +ĠBur st +ĠK ali +est ones +Clear ly +E ll +ãģ § +ĠProceed ings +T oken +IF IC +ñ a +Cent ral +ĠH aley +ĠD rama +Ġform ations +OR N +Book s +Ġdom inating +ĠFly ers +ĠCompan ion +Ġdiscipl ined +ĠYug oslav +ĠSpell s +Ġv engeance +Ġland lords +L en +ĠO gre +ano ia +Ġpier cing +Ġcon greg +Ġscore r +ob ia +Ġnic kel +ĠLear ns +Ġre jo +Ġmaster piece +Fl ash +Ġinhab ited +ĠOpen GL +ĠD ud +ĠI CO +Ġar ter +Ġpl ur +Ġmaster y +Ġlong standing +st ed +Ġw ines +Ġtelev ised +ĠSh rine +ĠBay ern +Ġâ ĵĺ +Ġencl osure +j ohn +Ġprophe ts +ĠRes urrection +ĠOrd ers +Ġun even +r als +Ġd wind +ĠL ah +ĠSl oven +37 8 +Ġins istence +aff le +ĠCl one +Ġhard ship +ĠCongress man +Ġple ad +Ġreview ers +Ġc ured +Ġ19 35 +as ley +f ake +ĠTh inking +yd ia +P ART +ĠD ota +o it +Ġwh ipped +Ġb ouncing +ĠHispan ics +com ings +Ġcann abin +ĠCh ambers +ĠZ ack +Option al +Ġco ats +Ġprow ess +ĠNort on +Ġplain ly +Ġfre ight +Ġinhib ition +Ġcl am +Ġ30 3 +ke f +ale igh +L uke +Ġpsych o +ator ium +M ED +Ġtreat ies +Ġind isc +Ġd c +OP S +Ġresil ient +ĠInter state +Ġsl ack +Ġmund ane +Ġestab lishes +35 9 +Ġstr ained +Ġn ond +S us +Ġcast e +ar ate +ie ving +Ġunfair ly +Ġpars er +on ial +urs ive +V ia +ĠOtt o +ĠAuthor ities +stro ke +K R +ĠMer cy +Ġfurn ished +Ġout set +Ġmet ic +19 82 +olith ic +ĠT ent +og ical +ĠA ircraft +Ġh ides +ĠBec ame +Ġeduc ators +re aching +Ġvol atility +Ġtodd ler +ĠNAS CAR +ĠTw elve +ĠHigh lights +Ġgra pe +Ġspl its +Ġpe asant +Ġre neg +ĠMS I +Tem p +st ars +Ġtre k +ĠHy de +b inding +Ġreal ism +Ġox ide +ĠH os +Ġmount s +Ġbit ing +Ġcollaps ing +Ġpost al +Ġmuse ums +Ġdet ached +Ġrespect ing +Ġmonop ol +Ġwork flow +ĠC ake +Tem plate +ĠOrgan isation +Ġpers istence +36 9 +C oming +B rad +Ġredund ant +ĠG TA +Ġb ending +Ġrev oked +Ġoff ending +Ġfram ing +Ġprint f +Comm un +mem bers +Out side +Ġconst rued +Ġc oded +F ORE +Ġch ast +Ch at +Ind ian +ĠY ard +? !" +ĠP orts +ĠX avier +ĠR ET +' ." +ĠBo at +iv ated +ich t +umer able +D s +ĠDun n +Ġcoff in +Ġsecure ly +ĠRapt ors +ĠB es +Install ation +Ġin ception +ĠHealth y +end ants +Ġpsych ologists +ĠShe ikh +c ultural +ĠBlack Berry +sh ift +F red +oc he +Ġc akes +ĠS EO +ĠG ian +ĠAs ians +og ging +e lement +Ġpund its +ĠV augh +ĠG avin +Ġh itter +Ġdrown ed +Ġch alk +ĠZ ika +Ġmeas les +80 2 +â̦ .. +ĠAW S +] " +Ġdist ort +ĠM ast +Ġantib odies +ĠM ash +Mem ory +ĠUg anda +ĠPro b +Ġvom iting +ĠTurn s +Ġoccup ying +Ġev asion +ĠTher apy +Ġprom o +Ġelect r +Ġblue print +ĠD re +pr iced +ĠDep ot +Ġallev iate +ĠSom ali +m arg +n ine +Ġnostalg ia +ĠShe pherd +Ġcaval ry +Ġtor ped +ĠBlood y +x b +Ġs ank +Ġgo alt +report print +embed reportprint +clone embedreportprint +ĠIn itially +ĠF ischer +Ġnot eworthy +c ern +Ġin efficient +raw download +rawdownload cloneembedreportprint +c ation +ĠD ynasty +l ag +D ES +Ġdistinct ly +ĠEston ia +Ġopen ness +Ġg ossip +ru ck +W idth +ĠIb rahim +Ġpet roleum +Ġav atar +ĠH ed +ath a +ĠHog warts +Ġc aves +67 8 +Ġsafegu ard +ĠM og +iss on +ĠDur ham +sl aught +ĠGrad uate +Ġsub conscious +ĠEx cellent +ĠD um +---- - +Ġp iles +ĠW ORK +ĠG arn +ĠF ol +ĠAT M +Ġavoid s +ĠT ul +Ġble ak +EL Y +iv ist +light ly +P ers +ĠD ob +ĠL S +Ġins anity +Î µ +atal ie +En large +Ġtw ists +Ġfault y +Ġpir acy +Ġimp over +Ġrug ged +ĠF ashion +Ġs ands +' ? +sw ick +Ġn atives +Ġhe n +ĠNo ise +ãĥ Ĺ +Ġg reens +Ġfree zer +Ġd ynasty +ĠFather s +ĠNew ark +Ġarchae ological +Ġo t +ob ar +Ġblock ade +Ġall erg +L V +Ġdeb it +ĠR FC +ĠMil ton +ĠPress ure +Ġwill ingly +Ġdisproportion ate +Ġopp ressive +Ġdiamond s +Ġbelong ings +19 70 +Ġbell s +Ġimperial ism +Ġ2 27 +Ġexpl oding +ĠE clipse +Ġ19 19 +Ġr ant +Ġnom inations +34 7 +Ġpeace fully +ric a +ĠF UCK +Ġvib ration +mal ink +Ġro pes +ĠIv anka +ĠBrew ery +ĠBook er +ĠOw ens +go ers +Serv ices +ĠSn ape +Ġ19 1 +39 5 +Ġ2 99 +just ice +Ġb ri +Ġdisc s +Ġprom inently +Ġvul gar +Ġsk ipping +l ves +Ġtsun ami +37 4 +ĠU rug +ĠE id +rec ated +p hen +Ġfault s +ĠStart ed +9 50 +Ġp i +Ġdetect or +Ġbast ard +Ġvalid ated +Space Engineers +OUR CE +Ġ( ~ +Ġuns ur +Ġaff irmed +Ġfasc ism +Ġres olving +ĠCh avez +ĠC yn +Ġdet ract +L ost +Ġrig ged +Ġhom age +ĠBrun o +55 5 +ec a +Ġpress es +Ġhum our +Ġsp acing +Ġ' / +olk ien +C oun +OP ER +T re +S on +ĠCambod ia +ier re +m ong +o zy +Ġliquid ity +ĠSov iets +ĠFernand o +Ġ2 29 +Ġsl ug +ĠCatal an +elect ric +Ġsc enery +ĠH earth +Ġconst rained +Ġgoal ie +ĠGu idelines +ĠAm mo +ĠPear son +Ġtax ed +Ġfet us +Resp onse +ĠAlex is +th ia +G uy +Ġrecon struct +Ġextrem es +Ġconclud ing +ĠP eg +ook s +Ġded uctions +R ose +Ġground breaking +ĠT arg +ãĥ ģ +ĠRe ve +res ource +Ġmo ons +Ġelectrom agnetic +Ġamid st +ĠVik tor +N ESS +B ACK +Ġcomm ute +ĠAna heim +Ġfluct uations +6 40 +Ġnood les +ĠCop enhagen +ĠT ide +ĠGri zz +ĠS EE +Ġpip elines +Ġsc ars +end o +ag us +ĠE TF +/ # +ĠBec ome +44 8 +Ġvis c +ĠRecomm ended +Ġj umper +Ġcogn ition +Ġassass in +Ġwitness ing +ĠSet up +Ġl ac +v im +IS M +p ages +SS L +35 8 +Ġad ject +indust rial +l ore +cher y +Ġgl itter +Ġc alf +Flor ida +Ġspoil ers +Ġsucceed s +Ġch anting +Ġslog ans +ĠTr acy +Vis it +rol ogy +Ġm ornings +Ġline age +Ġs ip +Ġintense ly +Ġflour ish +ĠSle eping +ĠF em +or por +ĠK lan +ĠDar th +h ack +ĠNi elsen +Ġtum ors +Ġprocure ment +ĠY orkshire +Ġra ided +K Y +An na +Ġ// [ +ĠDis order +ĠMust ang +ĠW en +ĠTry ing +s q +Ġdeliver ies +Ġshut ter +Ġcere bral +Ġbip olar +ĠC N +l ass +j et +Ġdeb ating +> : +Ġe agle +gr ades +ĠD ixon +UG C +M AS +ĠDr aco +ĠMach ines +aff er +Ġem an + ² +pr on +ĠG ym +Ġcompar atively +ĠTrib unal +PR O +Ġle x +Ġfert ile +Ġdep ressing +Ġsuperf icial +ess ential +ĠHun ters +g p +Ġprom inence +L iber +ĠAn cest +ote chnology +Ġm ocking +ĠTra ff +ĸ ļ +Med ium +I raq +Ġpsychiat rist +Quant ity +ĠL ect +Ġno isy +5 20 +G Y +Ġsl apped +ĠM TV +Ġpar a +p ull +Mult iple +as her +Ġn our +ĠSe g +Spe ll +v ous +ord ial +Sen ior +ĠGold berg +ĠPl asma +ne ed +Ġmess enger +ere t +Ġteam ed +Ġliter acy +ĠLe ah +ĠD oyle +Ġem itted +U X +Ġev ade +Ġm aze +Ġwrong ly +ĠL ars +Ġstere otype +Ġpled ges +Ġarom a +ĠM ET +Ġac re +ĠO D +Ġf f +Ġbrew eries +ĠH ilton +und le +ĠK ak +ĠThank fully +ĠCan ucks +in ctions +ĠApp ears +Ġco er +Ġundermin ed +ro vers +And re +Ġbl aze +um ers +Ġfam ine +amp hetamine +ulk an +Am ount +Ġdesper ation +wik ipedia +develop ment +ĠCor inth +uss ia +Jack son +L I +N ative +R s +Oh io +ĠKath leen +F ortunately +Ġattend ant +ĠPre ferred +ĠDid n +ĠV s +M is +Ġrespond ent +Ġb oun +st able +Ġp aved +Ġunex pl +ĠChe ney +L M +ĠC ull +bl own +Ġconfront ing +oc ese +serv ing +W i +ĠLith uania +ann i +Ġst alk +h d +Ġv ener +AP H +ynchron ous +UR R +um ably +hist oric +H alf +H ay +Ġresil ience +spe ction +Ġabandon ing +O bs +ĠDeb bie +Ġgrad ient +ĠPl aint +ĠCan al +AR CH +Ġexpans ive +Ġfun g +Ġb ounced +U nd +Ġprec autions +Ġclar ification +Ġd agger +Ġgri ps +Ġ µ +ĠRiver a +ĠUnd ead +is ites +ĠFIR ST +ñ o +aud i +Ġhost ages +Ġcompl iant +Ġal umni +Se ven +Ġcyber security +e ither +Col lect +Ġinvari ably +ĠS oci +Ġlaw maker +Ġa le +ĠPerson ally +N azi +Ġcustom ization +ĠPro c +ĠSask atchewan +eat uring +Ġsp ared +Ġdiscontin ued +Ġcomput ational +ĠMotor ola +Ġsuprem acist +government al +Ġparad ise +ĠDown ing +ĠNik on +Ġcat alyst +ber ra +Tor onto +8 75 +bet a +ĠMac ron +Ġunreal istic +ve ctor +ĠVeh icles +it iveness +ĠR V +ĠCol bert +s in +o ji +ent in +ĠKr ish +hell o +ff ield +ok y +ĠT ate +Ġmap le +Ġa ids +chem ical +33 4 +n uts +ĠWar p +Ġx x +ĠRob b +umer ous +_- _ +ft ime +ĠV W +Ġw inger +ĠD ome +t ools +ĠP V +ĠGe orgetown +Ġg eared +Ġjihad ists +Ġc p +Ġster oids +M other +cler osis +ĠDR M +nes ia +Ġl inger +Ġimm ersive +ĠC OUN +Ġoutwe igh +ens ual +B and +Ġtransform s +mat ched +ps ons +ĠJud icial +f actor +Ġrefer ral +Ġodd ly +ĠW enger +B ring +ĠB ows +60 2 +IC LE +Ġl ions +ĠAcad emic +ĠTh orn +ĠRa ider +kef eller +St orage +L ower +ĠOr t +ĠEqu ality +AL T +ĠS OC +T ypes +Ġl yn +ĠAss et +co at +TP P +C VE +ĠPione er +app lication +Mod ern +ĠH K +En vironment +Al right +R ain +IP P +ĠShi ite +Ġm ound +ĠAb ilities +cond ition +St aff +Ġcompet ence +ĠM oor +ĠDi ablo +Ġwith held +Ġost ensibly +ĠB rom +Ġms g +Ġden omin +ĠRef erences +ĠF P +Ġplun ged +Ġp amph +m oving +cent ral +Ġdown right +Ġf ading +T al +T yp +ĠTh y +uk es +it he +Ġo ve +Ġbatt led +Ġseaf ood +Ġfig ur +ĠR D +c rop +Ġsqu ads +{ \ +à ¹ +ĠE h +Ġinterview ing +ĠQ in +Ġas piring +PL IC +Ġcla uses +ĠG ast +ĠN ir +Ġl uggage +Ġh ose +Ġsystem d +Ġdesc ending +ĠRev ised +ĠR ails +al ign +70 9 +33 7 +Ġf ug +charg ing +t ags +Ġut er +k ish +WAR NING +49 0 +prof its +Ġvoy age +Ġa ce +ĠV anguard +ĠT anks +ĠM uk +Ġ2 26 +S afe +Ar mor +Ġvolcan ic +Ġwom b +ĠM IL +Ġbegin ner +ĠRec ogn +ĠA AP +PL AY +) ! +Ġdetect ing +c n +Ġbre aches +Bas ically +ĠP ag +ĠMunicip al +ĠInd ie +ĠL af +ĠDis able +ĠOl son +Ġrest rained +Ġrul ings +Ġhum ane +ev ents +ĠCinem a +display Text +ĠH atch +action Date +onna issance +Ġassault ing +ĠL ug +CH AT +Ġvig orous +ĠPer se +Ġintoler ance +ĠSnap chat +ĠSh arks +Ġd ummy +ĠDi agn +ĠGu itar +im eters +40 3 +RE G +A x +Ġsepar ates +ĠMah m +Ġt v +j ah +O OL +C irc +ĠWinds or +uss ian +Ġintu ition +Ġdis dain +ĠDon ovan +Ġ2 21 +E mb +Ġcondem ning +Ġgener osity +zz y +Ġpant ies +ĠPre vent +Action Code +AN A +34 2 +external ActionCode +Ġspec ifying +Ġcryst all +J ere +Ġru pt +ĠApp rentice +Ġprof iling +Ð º +St rike +Ġsid eline +Ġoblig ated +Ġocc ult +Ġbureaucr atic +ant ically +rupt ed +neg ative +ĠEthiop ia +ĠC ivic +Ġins iders +el igible +ĠTV s +ĠB AR +ĠT I +i ologist +ĠA IR +Ġsubstit uted +Ar ab +ĠS aul +ĠY og +p rem +Ġbuild ers +Ġstation ary +Ġdoubt ful +Ġvig orously +Ġthr illing +Ph ysical +ĠCare y +ĠHyd ra +geon ing +ĠS ly +y ton +Ġborrow ers +ĠPark inson +Ġ ë +ĠJama ica +Ġsat ir +Ġinsurg ents +ĠF irm +Ġis ot +ĠK arn +our ning +ak ens +doc s +l ittle +ĠMon aco +CL ASS +Tur key +L y +ĠCon an +ass ic +Ġstar red +ĠPac ers +et ies +Ġt ipping +M oon +ĠR w +s ame +Ġcav ity +Ġgo of +ĠZ o +Sh ock +um mer +Ġemphas izes +Ġreg rett +Ġnovel ty +Ġen vy +ĠPass ive +r w +50 5 +Ġind ifferent +ĠR ica +ĠHim self +ĠFred die +Ġad ip +ä¸ Ģ +Ġbreak out +Ġhur ried +ĠHu ang +ĠD isk +Ġro aming +?????- ?????- +U V +ĠRick y +ĠS igma +Ġmarginal ized +Ġed its +Ġ30 4 +mem ory +Ġspec imen +29 3 +ãģ ¯ +Ġvert ically +Ġaud ition +ĠHe ck +Ġc aster +ĠHold ings +ad al +ĠC ron +ĠL iam +Ġdef lect +P ick +ĠDeb ug +RE F +Ġvers atility +ot hes +class ified +ĠMah ar +ĠH ort +C ounter +st asy +not iced +33 1 +ĠSh im +f uck +ĠB ie +Ġair ing +ĠPro tein +ĠHold ing +Ġspect ators +ili ated +ĠThat cher +n osis +ãĥ¼ ãĥ³ +Te le +B oston +ĠTem pl +st ay +Ġdecl arations +47 9 +Vol ume +ĠDesign er +ĠOver watch +id ae +Ġon wards +Ġn ets +ĠMan ila +part icularly +Ġpolit ic +o other +Ġport raits +Ġpave ment +c ffff +Ġs aints +Ġbegin ners +ES PN +Ġshort comings +âķIJ âķIJ +Ġcom et +ĠOrgan ic +qu el +Ġhospital ized +Bre ak +Ġpe el +dyl ib +asp x +ur ances +ĠT IM +P g +Ġread able +ĠMal ik +Ġm uzzle +Ġbench marks +d al +ĠV acc +ĠH icks +60 9 +ĠB iblical +he ng +Ġover load +ĠCivil ization +Ġimm oral +Ġf ries +ãĤ Ĵ +Ġreprodu ced +Ġform ulation +j ug +ire z +g ear +Ġco ached +Mp Server +ĠS J +ĠK w +In it +d eal +ĠO ro +ĠL oki +ĠSong s +Ġ23 2 +ĠLou ise +asion ally +Ġunc ond +olly wood +Ġprogress ives +ĠEn ough +ĠDo e +Ġwreck age +Ġbr ushed +ĠBase Type +Ġz oning +ish able +het ically +ĠC aucus +ĠH ue +Ġk arma +ĠSport ing +Ġtrad er +Ġseem ing +ĠCapt ure +4 30 +b ish +Ġt unes +Ġindo ors +ĠSp here +ĠD ancing +TER N +Ġno b +ĠG ST +m aps +Ġpe ppers +F it +Ġoverse es +ĠRabb i +ĠR uler +vert ising +off ice +xx x +Ġra ft +Ch anged +Ġtext books +L inks +ĠO mn +ãĢ ij +Ġinconven ience +ĠDon etsk += ~ +Ġimplicit ly +Ġboost s +ĠB ones +ĠBo om +Cour tesy +Ġsens ational +AN Y +Ġgre edy +ed en +Ġinex per +ĠL er +ĠV ale +Ġtight en +ĠE AR +ĠN um +Ġancest or +S ent +ĠH orde +urg ical +all ah +Ġsa p +amb a +ĠSp read +tw itch +Ġgrand son +Ġfract ure +Ġmoder ator +ĠSe venth +ĠRe verse +Ġestim ation +Cho ose +Ġpar ach +Ġbar ric +ãĢ IJ +Ġcomp ass +Ġall ergic +âĢ ķ +OT HER +err illa +Ġw agon +Ġz inc +Ġrub bed +ĠFull er +ĠLuxem bourg +ĠHoo ver +Ġli ar +ĠEven ing +ĠCob b +est eem +Ġselect or +ĠB rawl +is ance +ĠE k +Ġtro op +Ġg uts +ĠApp eal +ĠTibet an +Ġrout ines +ĠM ent +Ġsummar ized +steam apps +Ġtr anqu +Ġ19 29 +or an +ĠAut hent +Ġg maxwell +Ġappre hens +Ġpo ems +Ġsa usage +ĠWeb ster +ur us +Ġthem ed +Ġl ounge +Ġcharg er +Sp oiler +Ġsp illed +h og +ĠSu nder +ĠA in +ĠAng ry +Ġdis qual +ĠFrequ ency +ĠEther net +Ġhel per +Per cent +Ġhorr ifying +Ġa il +ĠAll an +EE E +ĠCross ing +44 9 +Ġh olog +ĠPuzz les +ĠGo es +eren n +60 4 +ãģ ı +ĠRaf ael +Ġatt en +ĠE manuel +Ġup ro +ĠSus p +P sych +ĠTr ainer +ĠN ES +ĠHun ts +bec ue +Ġcounsel or +R ule +Ġtox ins +Ġb anners +r ifice +Ġgreet ing +Ġfren zy +Ġall ocate +Ġ* ) +ex pr +50 3 +ĠCh ick +ĠT orn +Ġconsolid ation +ĠF letcher +sw itch +fr ac +cl ips +ĠMcK in +ĠLun ar +Mon th +IT CH +Ġscholar ly +rap ed +39 8 +Ġ19 10 +Ġe greg +Ġin secure +Ġvict orious +cffff cc +Ġsing led +Ġel ves +ĠW ond +bur st +Ġcam oufl +ĠBL ACK +Ġcondition ed +ç ī +ans wered +Ġcompuls ory +asc ist +Ġpodcast s +ĠFrank furt +bn b +Ġne oliberal +ĠKey board +ĠBel le +w arm +Ġtrust s +Ġins ured +ĠBu cc +us able +60 7 +ĠPl ains +Ġ18 90 +Ġsabot age +Ġlod ged +f elt +Ġg a +ĠN arc +ĠSal em +Ġsevent y +ĠBl ank +p ocket +Ġwhis per +Ġm ating +om ics +ĠSal man +ĠK ad +Ġan gered +Ġcoll isions +Ġextraord inarily +Ġcoerc ion +G host +b irds +è Ģ +k ok +Ġper missible +avor able +Ġpo inters +Ġdiss ip +ac i +Ġtheat rical +ĠCos mic +Ġforget ting +Ġfinal ized +å¤ § +y out +l ibrary +Ġbo oming +ĠBel ieve +ĠTe acher +ĠL iv +ĠGOOD MAN +ĠDomin ican +OR ED +ĠPart ies +Ġprecip itation +ĠSl ot +R oy +ĠComb ined +Ġinteg rating +Ġch rome +Ġintest inal +ĠRe bell +Ġmatch ups +Ġblock buster +ĠLore n +ĠLe vy +Ġpre aching +ĠS ending +ĠPur pose +ra x +f if +Ġauthor itative +ĠP ET +ast ical +Ġdish on +Ġchat ting +Ġ"$ :/ +Connect ion +Ġrecre ate +Ġdel inqu +Ġbro th +ĠD irty +ĠAd min +z man +Ġscholars hips +Ġ25 3 +cont act +als a +7 67 +c reen +abb age +Ġ19 15 +Ġbl ended +Ġal armed +L anguage +35 6 +Ġbl ends +ĠCh anged +W olf +Ġhe pat +Creat ing +Ġper secut +Ġsweet ness +art e +Ġforfe iture +ĠRober to +im pro +N FL +ĠMag net +Det ailed +Ġinsign ificant +ĠPOL IT +ĠBB Q +ĠC PS +Ġse aw +amin er +m L +end if +f inals +Ġ26 5 +u ish +Ġ} ) +ĠPro blems +Ġem blem +Ġserious ness +Ġpars ing +Ġsubst itution +Ġpress ured +Ġrecy cled +ale b +Rub y +Ġprof iciency +Dri ver +ĠW ester +: ' +AF TA +Ġm antle +ĠClay ton +fl ag +Ġpractition er +c overed +ĠSt ruct +add afi +4 25 +ĠTown ship +ĠHyd ro +Lou is +34 3 +Ġcond o +ĠT ao +Ġutil ization +Ġnause a +ĠDem s +rid ges +p ause +Ġform ulas +Ġchall enger +37 6 +Ġdefect ive +ĠRail way +ĠPub Med +Ġyog urt +l bs +ĠNor folk +OP E +ĠMood y +Ġdistribut or +Ġscroll s +Ġextract s +St an +Ġv iability +Ġexp oses +Ġstar vation +ĠStep s +ĠD odd +f ew +ST D +33 2 +Ġclos ures +Ġcomplement ary +ĠS asha +ump y +Ġmon et +Ġartic ulate +ĠDo ct +k iller +Ġsc rim +Ġ2 64 +Ġprost itutes +Ġse vered +Ġattach ments +Ġcool ed +L ev +ĠF alk +f ail +Ġpolic eman +ĠD ag +Ġpray ed +ĠK ernel +Ġcl ut +Ġc ath +Ġan omaly +St orm +em aker +ĠBreak fast +ul i +o ire +J J +h z +Oper ation +ĠS ick +35 4 +ĠGuatem ala +R ate +Ġexp osures +f aces +ĠArch ae +ra f +ĠM ia +Ġ20 25 +Ġop aque +Ġdisgu ised +ĠHead quarters +S ah +Ġp ots +9 78 +ĠM alf +Ġfrown ed +Ġpoison ous +ĠCon vers +ee ks +Ġcr ab +." " +Ġtre ason +Ġr anc +Ġescal ating +Ġwar r +Ġmob s +Ġl amps +ĠSun shine +ĠBrun swick +Ph ones +Ġspe lled +ĠSk ip +Ġ20 50 +Ġ19 11 +ĠPl uto +ĠAm end +Ġme ats +38 7 +Ġst omp +ĠZh ou +ĠLevi athan +ĠHaz ard +ad v +ĠOr well +Ġal oud +Ġb umper +ĠAn arch +ub untu +ĠSer ious +f itting +ĠOption al +ĠCec il +RE AM +Ġser otonin +Ġcultiv ate +ag ogue +} \ +Ġmos ques +ĠSun ny +Ġre active +rev olution +ĠL up +ĠFed ora +Ġdefense man +ĠV ID +ist ine +Ġdrown ing +ĠBroad casting +Ġthr iller +ĠS cy +Ġacceler ating +Ġdirect s +od ied +b ike +d uration +Ġpain fully +R edd +Ġproduct ions +Ġg ag +Ġwh ist +Ġs ock +Ġinf initely +ĠConc ern +ĠCit adel +Ġlie u +Ġcand les +ogene ous +arg er +Ġheaven ly +inflamm atory +Per formance +C s +ruct ose +az aki +Ġp essim +Ġinf erence +Ġpow d +ĠZ oe +Ġpain ts +Ġd azz +pt a +-------- --- +Ġins pir +ĠExper imental +ĠKn ife +reg or +b ors +Ġshow ers +rom eda +Ġs aint +Ġben ign +ĠJ iang +Ġenvision ed +Ġsh roud +IF T +H O +Ġsh uff +ĠI CC +Ġse greg +Ġrevis it +ighth ouse +L i +Ġsub strate +ĠSe as +ĠRew ard +ĠH ep +ĠBr ass +s bm +Ġelim inates +Ġst amina +ĠV AT +ĠLo an +Ġconst raint +Ġappropri ated +Ġp es +ĠA LE +r anging +Ġ40 4 +39 2 +Ġintellectual s +ach u +Ġrestruct uring +ĠLe vin +Ġrun es +Ġdelight ful +Ġcarbohyd rates +ĠMod els +ĠExp o +Ġtransport ing +all oc +Ġring ing +S amsung +Ġscarce ly +ĠURL s +ĠM AS +Ġprot otypes +Ġnarr ator +ĠCPU s +cd n +ĠBart on +Ġdecided ly +ĠSh u +ix ir +oc ious +ĠMy st +N intendo +Ġre use +Ġforg iven +F ew +in ical +n at +Ġseam less +ĠEv a +ĠE VE +ĠJ O +land ers +Ġso fter +neg ie +Ġtrans ient +Ġorb ital +Ġfulf il +ĠK om +Hop efully +Ġdynam ically +ĠHun ger +å Ľ +ĠArmen ia +el man +ber to +Ġp ige +ĠID s +lim it +Ġve ins +Ġso aring +p acks +Gold en +ĠCr ab +ist or +ĠR PM +Ġ$ $ +g ression +Ġjihad ist +Ġgam ble +Ġcare g +Ġinf lated +F ace +ĠFire arms +ĠEm manuel +â Ŀ +Ġsh ocks +gr ab +Ġspl end +ĠHP V +ab ortion +Ab ove +Ent ity +play ers +Ġcomm enced +ul ence +Ġfulfill ment +Ġembod iments +ĠW elfare +Ġha il +Ġ< @ +tt en +Ġcat cher +ĠJ azeera +Ġvolcan o +Ġstabil ize +ĠHand ler +Ġintens ified +ĠAb rams +Ġhum iliation +p aced +60 5 +ĠCent OS +Spe cific +Ġhe ed +ĠC AM +ĠGal ile +D ie +Ġabol ished +ĠThom son +ĠTe achers +ĠW ass +j ong +ĠIS BN +ĠAll ies +sh ake +å · +v ict +How ard +Ġde em +Ġexceed ingly +ĠSmart stocks +ib e +Ġdoor way +Ġcompet ed +ig mat +Ġnational ists +Ġg room +ĠKe en +Ġdispos able +de cl +ĠT olkien +ĠSche me +Ġb iod +Ġav id +ĠEl on +ag ar +ĠT SA +R oman +Ġartific ially +Ġadvis ors +X L +ĠInf erno +36 6 +Ġted ious +ĠPhot ography +ĠCar rie +Ġtro pe +ĠSand ra +Ġdec imal +Que en +ĠGund am +ĠO M +ote ch +N BA +Ġ19 32 +Ġent renched +ĠMar ion +Ġfr aternity +Lab our +Hen ry +Ġlat itude +E ither +Ġenh ances +ĠPot ential +Ġsh ines +id ad +Ġbread th +Ġcapac ities +ĠðŁ ĻĤ +ĠBron x +Ġsex es +Ġdifferent iation +Ġheavy weight +ĠT aj +d ra +Ġmigr ate +Ġexhaust ion +ĠR UN +els ius +ĠCu omo +Ġgu itars +Ġcl ones +ĠSom ew +ĠP ry +------------ - +Ġwarr anted +cy cles +Ġsalv age +Ġdis ks +R ANT +ĠNGO s +ĠMart ian +":[ {" +Ġadd icts +oj ure +il let +Ġamazing ly +art ments +p ixel +ĠGPU s +Lay out +è £ +ĠTam il +ĠBas il +Ġimpart ial +ĠSt ructure +f ork +b ryce +Ġr idge +ĠHamb urg +ri ous +Ġbl itz +cig arettes +Ġcan ned +40 2 +Ġiron ically +Ġcompassion ate +ĠHaw kins +. # +ĠCat hedral +Ġrall ied +in ternal +Ġqu ota +st akes +T EXT +m om +Ġcomple tes +Ġ23 8 +Ġsh rug +ãĥ ij +ĠN inth +Ġrev ise +ĠProv ider +Ġtre acher +Ġqu asi +ĠPR ES +Ġdep osition +Ġconfidential ity +iss ors +Ġim balance +Ġspan ning +Ġang ular +ĠC ul +commun ication +ĠNor a +ĠGen ius +op ter +Ġs acked +Sp ot +Ġfine ly +ĠCH R +28 2 +w aves +Pal est +ĠRo hing +N L +è ¿ +Ġsh itty +ĠSc alia +4 75 +Pro gress +Ġreferen cing +Ġclass rooms +ab ee +Ġs od +hes ion +70 8 +ĠZucker berg +ĠFin ish +ĠScot ia +ĠSav ior +ĠInstall ation +an tha +( - +Ġ30 2 +ĠP unk +Ġcr ater +yout u +Ġro ast +Ġinflu encing +Ġd up +ĠJ R +ĠG rav +Ġstat ure +Ġbath rooms +A side +W iki +me an +ĠZ ak +ĠOn es +ĠN ath +Ġhyper t +Ġcommence ment +C ivil +Ġmoder ately +Ġdistribut ors +Ġbreast feeding +Ġ9 80 +ĠS ik +ĠC ig +ĠAM ER +R IP +ĠCare er +ust ing +Ġmess ed +Ġe h +ĠJ ensen +/ $ +Ġblack mail +Ġconvers ions +Ġscientific ally +Ġmant ra +p aying +Ġiv ory +ĠCour ts +OU GH +aunt let +Ser ial +B row +ĠH undreds +3 23 +Ġpe e +Ġlin ux +Ġsub mer +ĠPrinc ipal +48 5 +ĠD SL +ĠCous ins +Ġdoctr ines +ĠAthlet ics +Ġ3 15 +ĠK arma +Ġatt ent +ur ger +Ġpresc ribe +Ġenc aps +ĠC ame +Ġsecret ive +ĠCr imes +d n +C lean +ĠEgypt ians +ĠCar penter +Ġ ll +H um +ĠMil o +Ġcapital ists +Ġbrief ed +T we +ĠBas in +elve t +M os +Ġplun ge +ĠKa iser +ĠFu j +ill in +Ġsafegu ards +Ġo ste +ĠOpportun ity +ĠM afia +ĠCall ing +ap a +ur ban +br ush +ill ard +c é +int elligence +ĠL ob +ĠDru id +Ġsm oother +Ġfoot ing +Ġmotor ists +arc ity +Ġmascul inity +Ġm ism +Ġabdom inal +ĠTa vern +ĠR oh +Ġesc apes +s igned +Anth ony +Ġsacrific ing +Ġintim acy +Ġan terior +ĠK od +Ġmot if +Ġg raz +Ġvisual ization +Ġguitar ist +ĠTro tsky +m agic +D ar +ĠMor i +Ġw ards +Ġtoile ts +l est +Ġtele port +ĠSund ays +ĠPl at +ET S +Ġe Sports +Pat rick +ĠK atherine +en ko +Ġhas sle +ĠM ick +gg les +Ġh ob +aint ain +Ġair borne +Ġsp ans +Ġch ili +Ġa perture +Ġvolunte ered +ĠInc ident +ĠF res +ĠVeter an +augh tered +ing o +Ġun insured +CL OSE +Ġf use +Ġer otic +Ġadvert ise +ra ising +Text ure +Ġatt ends +ĠRE AL +udd led +Ġsm oot +Ġ30 5 +ĠWill is +Ġbl ond +An alysis +ĠV T +on ica +Ġstrongh old +R F +N M +. >> +Ġprosper ous +Ġbo asted +29 2 +ĠManufact uring +PR ESS +g ren +Ġpharm acy +ĠRoc kefeller +k ai +Ġth umbs +ĠH ut +Ġmother board +Ġguard ians +ĠAl ter +ll ular +Ġsh ack +Ġwise ly +Ġback bone +erv a +Ġsu icides +ĠMcG regor +ij ah +E mer +ĠB rav +Ġdesign ate +P OST +produ ced +Ġcleans ing +irl wind +ex istent +ĠHum ph +ĠPay ne +Ġv ested +Å ¡ +Ġstring ent +ion a +Ġuns ub +Ġsum med +ĠHer cules +sub ject +ĠR agnar +ĠN os +Ġcharacter ization +Ġsav vy +ĠDaw son +ĠCas ino +Ġf ri +ĠBar rier +Ġmis information +Ġins ulation +Ġcorrid ors +Ġair planes +ĠNo ct +ah i +Ġ19 16 +k b +arm ac +Ġsh un +Ġsche ma +Ġhorr ified +Ġ23 9 +aund ers +N B +i ates +er ity +ĠSh ard +Ġr arity +Ġgroup ed +ĠGh ana +again st +ĠBi ological +ĠA ware +ow ell +Ï Ħ +ĠBe au +sh aw +H ack +ĠJul ius +US S +ol son +aun a +c ru +ĠMaur ice +ĠI k +Ġsequ encing +Ġradical s +Ġ( ?, +v irtual +Ġany ways +Ġreper c +Ġhand lers +Ġhes itant +é ĥ +ĠM F +ple mentation +ass ociated +Ġcampaign ed +ĠY ue +ut ations +ĠY oga +Ġsim mer +Ġro ds +Ġmel ody +Ġconv oy +v ideos +Ġscreen ed +N eg +ochem ical +Ġ( )) +Ġultr as +Ġant ip +ĠIsland ers +70 4 +Ġfet ish +Ġridic ulously +ĠK art +Ġmitochond rial +Ġinterf ering +Build er +Ġover fl +Ġac ne +ĠM ud +ĠK err +f lex +ĠPost al +ĠBalt ic +47 7 +ĠPers ons +our age +H B +ĠM use +ĠImm ortal +ĠDri ving +Ġpet itions +Ġsubsc ript +Ġs orce +ĠProcess or +ut on +S ony +Ġph on +Ġr aced +ĠAnth rop +Ġday time +ĠEx ercise +Add ing +Ġeng ages +ĠQual comm +Ġmir acles +Ġmem es +ĠDr ink +ĠOri oles +Ġhair s +ĠPol ar +ath om +Ġsl ippery +ĠR emy +Ġcar amel +ĠY EAR +Ġal k +I gn +a ution +ĠMer lin +ĠC ran +Ġap ologies +Ġ4 10 +Ġout ing +ĠMem ories +app ointed +Ġcount ered +u ld +pos ing +Ġfire wall +ĠW ast +ĠW et +work ed +se ller +Ġrepe aled +ere o +ass uming +BL IC +m ite +ĠCEO s +ĠChap el +ellig ent +________________ ________ +D og +Ġw art +Ġsubsc riber +s ports +Ġbe gged +ĠM V +Ġsem if +eth ical +Ġpre ach +Ġrev ital +Ġpun itive +Ġshort cuts +Ġinstit uted +ĠWars aw +Ġabdom en +ĠK ING +Ġsuper intendent +Ġf ry +ĠGe o +T OR +Ġcontrad ictions +apt ic +Ġlandsc apes +b ugs +Ġcl ust +Ġvol ley +c ribed +Ġt andem +Ġrob es +WH AT +Ġpromot er +Ġel oqu +review ed +ĠD K +ĠPl ato +Ġf ps +T ank +ĠDer rick +Ġpriorit ize +as per +ĠHond uras +ĠCom pleted +ne c +Ġm og +n ir +ĠMay o +DE F +st all +in ness +ĠVolks wagen +Ġprec aution +ĠM ell +i ak +ist ries +Ġ24 8 +Ġoverl apping +Sen ate +ĠEnh ance +res y +rac ial +OR TS +ĠM ormons +Str ong +ĠCo ch +Mex ico +ĠMad uro +Ġj ars +Ġcan e +W ik +oll a +iff erence +Ġphysic ist +ĠMag gie +Ġ28 5 +Ġdep iction +ĠMcL aren +J u +Ġsl ows +Ġcommission ers +ĠWill ow +ĠExpl os +hov ah +Ġtechn ician +Ġhom icides +ĠFl av +ĠTr uman +Ġ100 00 +u ctor +Ġsh ader +News letter +45 7 +Ġre ver +Ġhard ened +Ġwhere abouts +Ġrede velop +Ġcar bs +Ġtra vers +Ġsqu irrel +Ġfoll ower +Ġs ings +50 8 +Ġrabb its +emon ium +Ġdocument ing +Ġmisunder stood +) ' +R ick +gg ies +Ġprem ie +Ġsk ating +Ġpass ports +Ġf ists +aged don +H aw +AC P +0 80 +ĠThough ts +ĠCarl son +Ġpriest hood +h ua +Ġdun geons +ĠLo ans +Ġant is +Ġfamiliar ity +ĠS abb +op al +ĠIn k +st rike +Ġc ram +Ġlegal ized +Ġcu isine +Ġfib re +Tra vel +ĠMon ument +OD Y +eth y +Ġinter state +ĠP UR +em porary +ĠArab ian +develop ed +Ġsadd le +Ġg ithub +ĠOff er +ĠIS P +ro let +ĠSUP ER +ĠDen is +Ġmultipl ier +Ġstir red +Interest ingly +Ġcustom ary +Ġbill ed +he x +Ġmultipl ied +Ġfl ipping +ĠCros by +Ġfundament als +ia e +ĠPlay ed +ĠAt om +am azon +ĠFl am +ee z +activ ated +Ġtables poon +Ġliberal ism +ĠPal in +ĠP atel +N um +ĠT AM +Ġs urn +ĠRel oaded +Ġco ined +" ], +ĠCl ash +ĠAg u +Ġprag matic +ĠActiv ate +Ġ8 02 +Ġtrail ers +Ġsil hou +Ġprob es +Ġcirc us +ĠB ain +ĠLind say +ĠAb bey +Del ivery +Ġconcess ion +Ġgast ro +ĠSpr ite +Ä Ł +and el +Ġg imm +Ġaut obi +ĠT urtle +Ġwonder fully +ĠHar am +ĠWorld wide +ĠHand le +Ġtheor ists +Ġsle ek +ĠZh u +ograph ically +EG A +ĠOwn ers +ath s +ĠAntar ctic +n atal +=" " +fl ags +`` `` +Ġs ul +K h +Ġpot assium +Ġlinem an +Ġcere al +ĠSe asons +Ġ20 22 +Ġmat hematic +Ġastron omers +prof essional +Ġf ares +cknow led +Ġch i +Ġyoung sters +Ġmistaken ly +Ġhem isphere +ĠDiv inity +r one +Ġ" , +r ings +Ġattract s +v ana +å ¹ +C AP +Ġplay list +Ġpor ch +ãģ £ +Ġincorpor ates +Ġso ak +Ġassert ing +ĠTerror ism +ĠP ablo +J a +ces ter +Ġfear ing +ĠPr ayer +Ġescal ated +G W +Ġro be +ĠBright on +ac ists +ĠSym phony +ĠDwar f +ĠPar ade +ĠLe go +Ġinex pl +Ġl ords +le af +RA G +l iber +Ġcig ars +ĠJe hovah +60 6 +WIND OWS +ĠLiber ia +eb us +He avy +Ġl ubric +ĠR W +angu ages +Ġnarrow ed +com puter +ĠE mber +Ġmurder ing +Ġdown stream +ĠT uls +ĠT ables +Top ic +ĠAcc uracy += / +l ost +ĠRe i +Ġprogress es +b ear +Ġestablish ments +Just in +ĠPe ach +ĠG omez +å ¿ +ĠTri angle +Id ent +ĠH ive +Res ources +Ġmix es +ĠAss uming +M u +Ġhyp oc +Ġs ane +ĠW an +id ious +Su ccess +Ġ io +Ang el +Ġdanger ously +ĠCreat ure +W ORK +: [ +ĠKat rina +List ener +M iller +ĠId lib +h ang +Ġcircum vent +h ref +Ġcel estial +ĠWe eks +ĠP ug +ĠDal ton +Ġsubpoen a +uk u +Ġpers isted +pe i +old ing +ĠDoc uments +ĠH ast +ĠC ENT +Ġprim er +Ġsyn onymous +Ġn ib +om bs +Ġnot ation +ĠD ish +ĠAt mosp +Ġforb id +ĠAN G +pat tern +l os +Ġproject iles +b rown +." , +ĠVen om +Ġfierce ly +ub lished +ĠU ran +ĠNic arag +4 10 +ĠC AL +OT OS +ĠMir acle +ĠEn chant +Ġguard ing +app end +Att ach +Ġlevel ed +Ġcond oms +ih ilation +64 9 +Ġnight mares +ĠTHE Y +ĠST ART +ĠK inn +Ġroomm ate +Ġhy giene +o pping +J ob +Ġl vl +ĠV ER +ĠKe eping +ab etic +Ġformat ting +eral a +Ġrev isions +Ġres urg +T el +ĠGood man +35 3 +p od +Ġind isp +ĠTrans lation +Ġg own +ĠM und +Ġc is +Ġby stand +col lect +ĠPun jab +act ively +ĠG amb +te ll +Ġimport ing +g encies +Ġloc om +ĠBr ill +H oly +ĠBer ger +Ġshow down +Ġrespond ers +IL Y +Ġt akedown +le ted +Ġmat tered +Ġpredict ive +Ġover lay +G PU +ĠV ick +Ġconvey ed +T ab +pe er +Sc an +Ġdefensive ly +v ae +Ġappro ving +Ġt iers +ĠV ia +quer ade +ĠSaud is +Ġdemol ished +ĠProp he +Ġmon o +Ġhospital ity +H AM +ĠAri el +M OD +ĠTor ah +Ġbl ah +ĠBel arus +erent ial +ĠT uc +Ġbank er +39 7 +Ġmosqu it +ĠScient ist +ĠMus ical +Ġh ust +Sh ift +Ġtor ment +Ġstand off +E duc +ĠF og +Ġampl ifier +Sh ape +Inst ance +ĠCrit ics +Ġda emon +H ouston +Ġmatt ress +ĠID F +Ġobsc ene +ĠA mer +hett i +Ġcomp iling +35 2 +vere tt +ĠRed uction +ist ration +ĠBl essed +ĠB achelor +3 16 +Ġpr ank +ĠVul can +dd ing +Ġm ourning +ĠQu int +ĠBl aster +test ing +Ġsed iment +>> > +ĠE ternity +ĠWH ERE +ĠM aze +Ġreact ing +ĠAl v +oms day +ĠC RA +Ġtransl ator +Ġbog us +at u +We bsite +oll s +Ġbapt ism +Ġs ibling +ĠAut umn +ve z +ãģ® é +gu ards +Ge org +assad ors +ĠFre ud +Ġcontin ents +ĠReg istry +Bern ie +ĸļ 士 +Ġtoler ant +ĠU W +Ġhor ribly +99 5 +ĠMID I +Ġimpat ient +oc ado +er i +ĠWor st +ĠNor ris +ĠTalk ing +Ġdef ends +ens able +Ġ20 21 +Ġanat omy +L ew +Ġdraw er +ĠCan berra +Ġpatri otic +é¾įå ĸļ士 +ĠAv g +AR M +Ġundis closed +Ġfare well +45 9 +b able +ĠAll ison +OL OG +Ġcon co +t ight +ĠAC PI +ĠM ines +l ich +ĠâĶ ľ +represent ed +200 000 +Ġenthusi ast +OT S +b il +ĠIng redients +Ġinvent or +ĠMy SQL +³³ Âł +ĠAB OUT +with in +Ġm k +B ul +ĠF ake +Ġdracon ian +W a +hel m +ĠTer ran +erv ille +Ġcommon place +SI ZE +Ġ" < +re place +ograph s +ĠSE LECT +inc ible +ĠMost ly +ĠShe ffield +ĠID E +ugg le +Ġcit ations +h urst +ĠUn ix +Ġunle ash +ĠP iper +ĠN ano +Ġsucc umb +Ġreluct ance +Ġ25 00 +ĠMer chant +Ġwire t +Ġcomb os +ĠBirth day +Ġchar coal +ĠU PS +ĠFair fax +Ġdrive way +ĠT ek +ĠP itch +ove re +Ġtechn icians +ĠAct ual +fl ation +ĠF iscal +ĠEm pty +an amo +Ġmag nesium +Ġsl ut +Ġgrow ers +Invest igators +( ): +ĠS atellite +ĠKe ynes +miss ive +l ane +Ġb orough +3 44 +ĠTE AM +ĠBet hesda +C V +h ower +ĠR AD +Ġch ant +ĠR iy +Ġcompos itions +Ġmild ly +Ġmedd ling +Ġag ility +ane ers +5 01 +Ġsyn th +ling er +29 1 +Ġex claimed +Part y +Ġcont amin +ĠMan or +ĠResp ond +Ġpra ising +Ġman ners +fle et +Sum mer +ĠLy nd +ĠDef initely +gr im +Ġbow ling +st ri +ç Ľ +y nt +Ġmand ates +D IV +Ġreconc ile +view s +ĠDam on +vet te +F lo +ĠGreat est +il on +ic ia +Ġportray al +Ġcush ion +50 4 +19 79 +oss al +App lic +sc ription +Ġmit igation +AT S +p ac +Ġer ased +Ġdefic iencies +ĠHolland e +ĠX u +Ġb red +Ġpregn ancies +f emin +Ġem ph +Ġpl anners +Ġout per +utter ing +Ġperpet rator +Ġm otto +ĠEll ison +ĠNE VER +Ġadmitted ly +AR I +ĠAzerbai jan +Ġmill isec +Ġcombust ion +ĠBott le +ĠL und +ĠP s +ĠD ress +Ġfabric ated +Ġbat tered +Ġs idel +ĠNot ting +Fore ign +ĠJer ome +0 20 +ĠAr bit +Ġkn ots +ĠR IGHT +M oving +ãģ Ļ +Ġsur geries +Ġcour thouse +Ġm astered +Ġhover ing +ĠBr an +ĠAl ison +Ġsaf est +m ilitary +Ġbull ied +Ġbar rage +Read er +ES E +ĠGe ographic +T ools +3 14 +ĠGe ek +ro th +gl ers +ĠF IN +Ï ģ +ĠA ston +al tern +48 8 +Ġveter in +G amer +Ġint el +ren ches +Sh ield +Ġam nesty +ĠB har +Ġp iled +Ġhonor able +ĠInst itutes +Ġso aked +Ġcom a +ĠE FF +34 1 +by tes +ĠG mail +le in +ĠCanad iens +m aterial +I l +Ġinstruct ors +ĠK Y +Ġconce ive +ub b +ĠP ossible +Ġeas ing +ĠChrist ina +Ġcar ic +ĠHD R +R OM +Ġsho vel +de lete +Ġp uff +ĠCh anging +Ġseam lessly +Att ribute +Ġacqu isitions +ak ery +ĠE F +Ġaut istic +ĠT akes +ĠPow der +ĠSt ir +5 10 +ĠBub ble +sett ings +ĠF owler +Ġmust ard +Ġmore over +Ġcopyright ed +ĠLED s +15 00 +æ ī +ĠH IS +en f +Ġcust od +ĠH uck +G i +Ġim g +An swer +C t +j ay +ĠInf rastructure +Ġfeder ally +L oc +Ġmicro bes +Ġover run +dd s +ot ent +adi ator +>>>> >>>> +Ġtorn ado +Ġadj ud +Ġintrig ued +Ġs i +ĠRevel ation +pro gress +Ġburgl ary +ĠSai yan +ĠK athy +Ġser pent +ĠAndre as +Ġcomp el +ess ler +ĠPl astic +ĠAd vent +ĠPos itive +ĠQ t +ĠHind us +reg istered +ular ity +Ġrighteous ness +Ġdemon ic +u itive +ĠB DS +ĠGre gg +c ia +ĠCrus ade +ĠSina i +W ARE ++ ( +Ġme ll +Ġder ail +y ards +A st +Ġnotice ably +ĠO ber +R am +Ġun noticed +Ġse q +av age +T s +Ġ6 40 +Ġconced e +Ġ] ) +F ill +Ġcapt ivity +ĠImprove ment +ĠCrus ader +ara oh +M AP +æ Ĺ +Ġstr ide +al ways +F ly +N it +Ġal gae +ĠCook ing +ĠDo ors +Mal ley +Ġpolic emen +ãģ į +Ġastron aut +access ible +49 5 +ĠR AW +cl iffe +udic rous +Ġdep ended +al ach +Ġvent ures +ra ke +Ġt its +ĠH ou +Ġcond om +ormon al +Ġind ent +Ġupload ing +Foot note +Import ant +Ġ27 1 +Ġmind ful +Ġcont ends +C ra +Ġcal ibr +ĠO ECD +plug in +F at +ĠIS S +ĠDynam ics +ans en +68 6 +' ), +Ġsp rite +Ġhand held +ĠH ipp +=~ =~ +Tr ust +Ġsem antics +ĠBund es +ĠRen o +ĠLiter ature +s ense +G ary +ĠA eg +ĠTr in +EE K +Ġcler ic +ĠSS H +Ġch rist +Ġinv ading +ib u +Ġen um +aur a +Ġal lege +ĠInc redible +B BC +Ġth ru +Ġsa iled +Ġem ulate +Ġin security +Ġc rou +Ġaccommod ations +Ġincompet ent +Ġsl ips +ĠEarth qu +s ama +IL LE +Ġi Phones +as aki +Ġby e +Ġar d +Ġext ras +Ġsl aughtered +Ġcrowd funding +res so +Ġfil ib +ĠER ROR +ĠT LS +e gg +ĠIt al +Ġen list +ĠCatal onia +ĠSc ots +Ġser geant +Ġdiss olve +N H +Ġstand ings +ri que +I Q +Ġbenef iciary +Ġaqu arium +You Tube +ĠPower Shell +Ġbright est +ĠWar rant +S old +Writ ing +Ġbegin nings +ĠRes erved +ĠLatin os +head ing +Ġ4 40 +Ġrooft op +AT ING +Ġ3 90 +VP N +G s +k ernel +turn ed +Ġprefer able +Ġturn overs +ĠH els +S a +ĠShin ji +ve h +ĠMOD ULE +V iol +Ġex iting +Ġj ab +ĠVan illa +Ġac ron +ĠG ap +ber n +A k +ĠMc Gu +Ġend lessly +ĠFar age +ĠNo el +V a +M K +Ġbr ute +ĠK ru +ĠES V +ĠOl ivia +âĢ ł +ĠK af +Ġtrust ing +Ġh ots +3 24 +Ġmal aria +Ġj son +Ġp ounding +ort ment +Count ry +Ġpostp oned +Ġunequ iv +? ), +ĠRo oney +udd ing +ĠLe ap +ur rence +sh apeshifter +ĠH AS +os ate +Ġca vern +Ġconserv atism +ĠB AD +Ġmile age +Ġarrest ing +V aults +Ġmix er +Dem ocratic +ĠB enson +Ġauth ored +8 000 +Ġpro active +ĠSpirit ual +t re +Ġincarcer ated +ĠS ort +Ġpe aked +Ġwield ing +re ciation +×Ļ × +P atch +ĠEm my +Ġex qu +tt o +ĠRat io +ĠP icks +ĠG ry +ph ant +Ġf ret +Ġeth n +Ġarch ived +% - +c ases +ĠBl aze +Ġim b +c v +y ss +im ony +Ġcount down +Ġaw akening +ĠTunis ia +ĠRe fer +ĠM J +Ġun natural +ĠCar negie +iz en +ĠN uggets +he ss +Ġev ils +64 7 +Ġintrodu ctory +l oving +ĠMcM ahon +Ġambig uity +L abel +ĠAlm ighty +Ġcolor ing +ĠCl aus +set ting +N ULL +ĠF avorite +ĠS IG +> ( +ĠSh iva +ĠMay er +Ġstorm ed +ĠCo verage +we apons +igh am +Ġun answered +Ġle ve +Ġc oy +c as +b ags +as ured +Se attle +ĠSant orum +ser ious +Ġcourage ous +ĠS oup +Ġconfisc ated +Ġ// / +Ġuncon ventional +Ġmom s +ĠRohing ya +ĠOrche stra +ĠPot ion +Ġdisc redit +ĠF IL +f ixed +ĠDe er +do i +ĠDim ension +Ġbureaucr ats +et een +Ġaction Group +oh m +Ġb umps +ĠUt ility +Ġsubmar ines +ren heit +re search +ĠShap iro +Ġsket ches +Ġde ceptive +ĠV il +es ame +ĠEss entially +Ġramp age +isk y +Ġmut tered +th ritis +Ġ23 6 +f et +b ars +Ġpup il +ĠTh ou +o S +s ong +Ġfract ured +Ġre vert +pict ure +Ġcrit erion +us her +Ġreperc ussions +ĠV intage +ĠSuper intendent +Offic ers +Ġflag ged +Ġbl ames +Ġin verse +ograp hers +Ġmakes hift +Ġdev oid +Ġfoss ils +ĠArist otle +ĠFund s +Ġde pleted +ĠFl u +ĠY uan +Ġw oes +Ġlip id +Ġsit u +requ isites +Ġfurn ish +ĠSam ar +Ġshame ful +Ġadverse ly +Ġad ept +Ġrem orse +Ġmurder ous +uck les +ĠE SL +Ġ3 14 +s ent +Ġred ef +ĠC ache +ĠP urs +ig ans +Ġ4 60 +Ġpres criptions +Ġf res +F uck +ocr ates +Tw enty +ĠWe ird +ĠT oggle +ĠC alled +itiz ens +Ġp oultry +Ġharvest ing +ãĤ¦ ãĤ¹ +Bott om +Ġcaution ed +t n +39 6 +ĠNik ki +Ġeval uations +Ġharass ing +Ġbind ings +ĠMon etary +Ġhit ters +Ġadvers ary +un ts +Ġset back +Ġenc rypt +ĠC ait +Ġl ows +eng es +ĠN orn +Ġbul bs +Ġbott led +ĠVoy ager +3 17 +Ġsp heres +p olitics +Ġsubt ract +Ġsens ations +Ġapp alling +Ġ3 16 +Ġenvironment ally +ĠST EM +Ġpub lishes +5 60 +Ġdilig ence +48 4 +Ġadv ises +Ġpet rol +Ġimag ining +Ġpatrol s +ĠInt eger +ĠAs hes +act us +ĠRad iant +ĠL T +it ability +ht aking +Set ting +Ġnu anced +ĠRe ef +ĠDevelop ers +N i +pie ces +99 0 +Lic ense +Ġlow ers +ĠOtt oman +3 27 +oo o +Ġqu itting +mark ets +Beh ind +Ġbas in +Ġdoc s +an ie +fl ash +ct l +Ġcivil ized +ĠFuk ushima +"] ," +ĠK S +ĠHonest ly +ar at +Ġconstruct s +ĠL ans +ĠD ire +ĠLI KE +ĠTrou ble +Ġwith holding +ĠOb livion +Ġsan ity +any a +Con st +Ġgro cer +ĠC elsius +Ġrecount ed +ĠW ife +B order +ate red +h appy +Ġspo iler +Ġlog ically +H all +Ġsucceed ing +Ġpoly morph +Ġax es +ĠShot gun +ĠS lim +ĠPrin ciples +ĠL eth +art a +Ġsc or +Sc reenshot +Ġrelax ation +#$ #$ +Ġdeter rent +idd y +Ġpower less +Ġles bians +Ġch ords +ĠEd ited +se lected +Ġseparat ists +000 2 +Ġair space +Ġturn around +Ġc unning +P ATH +P oly +Ġbomb ed +Ġt ion +x s +Ġwith hold +Ġw aged +ĠLiber ties +Fl ag +Ġcomfort ing +45 4 +ĠI ris +are rs +Ġr ag +Ġrel ocated +ĠGu arant +Ġstrateg ically +Ġgam ma +uber ty +ĠLock heed +g res +Ġgr illed +ĠLow e +st ats +ĠR ocks +Ġsens ing +Ġrent ing +ĠGe ological +ا Ø +ot rop +Ġse w +Ġimproper ly +48 6 +Ġâĸ ł +Ġstar ving +ĠB j +Disc ussion +3 28 +ĠCom bo +ĠFix es +N AT +Ġstri ving +th ora +Ġharvest ed +ĠP ing +Ġplay ful +Ġaven ues +Ġoccup ational +Ġw akes +ĠCou rier +Ġdrum mer +ĠBrow ser +ĠH outh +it u +Ġapp arel +p aste +Ġhun ted +ĠSecond ly +l ain +X Y +ĠP IN +ic ons +Ġcock tails +Ġs izable +Ġhurd les +est inal +ĠRecre ation +Ġe co +64 8 +ĠD ied +m int +Ġfinger prints +Ġdis pose +ĠBos nia +ts y +22 00 +Ġins pected +ĠF ou +Ġf uss +Ġamb ush +ĠR ak +Ġmanif ested +Pro secut +Ġsuff ice +ren ces +Ġcompens ated +ĠC yrus +Ġgen us +ĠWolver ine +ĠTrend s +Ġh ikes +ĠSe en +Ġen rol +C old +Ġpol itely +ĠSl av +ĠRu pert +Ġey ewitness +ĠAl to +Ġun comp +Ġposter ior +M ust +ĠHer z +Ġprogress ively +Ġ23 4 +Ġind ifference +ĠCunning ham +Ġacadem ia +Ġse wer +Ġast ounding +ĠA ES +r ather +Ġeld est +Ġclim bs +ĠAdd s +Ġout cry +Ġcont ag +ĠH ouses +Ġpe pt +ĠMel ania +interest ed +ĠU CH +ĠR oots +ĠHub bard +ĠT BD +ĠRoman ian +fil ename +St one +ĠIm pl +Ġchromos ome +C le +d x +Ġscram bled +ĠP t +Ġ24 2 +OP LE +Ġtremend ously +St reet +Ġcra ving +Ġbund led +ĠR G +p ipe +Ġinj uring +Ġarc ane +Part icip +ĠHero ic +st y +Ġto pping +ĠTemp est +rent ices +b h +Ġpar anoia +ĠUnic ode +Ġegreg ious +Ġ\ ' +ĠOsw ald +Ġgra vel +ĠSim psons +Ġbl and +ĠGuant anamo +Writ er +lin ers +ĠD ice +J C +Ġpar ity +Ġs ided +Ġ23 7 +ĠPyr rha +at ters +d k +F ine +comp an +Ġform ulated +ĠId ol +il ers +hem oth +ĠF av +Ġintr usion +Ġcar rots +ĠL ayer +ĠH acker +Ġ ---------------- +Ġmoder ation +é ģ +oc oc +Ġcharacter ize +ĠTe resa +Ġsocio economic +Ġper k +ĠParticip ation +tr aining +ĠPaul o +ph ys +Ġtrust worthy +Ġembod ied +ĠMer ch +c urrency +ĠPrior ity +Ġte asing +Ġabsor bing +Ġunf inished +ĠCompar ison +Ġdis ple +writ ers +Ġprofess ions +ĠPengu in +Ġang rily +ĠL INK +68 8 +ĠCor respond +Ġprev ailed +Ġcart el +l p +as ms +ĠRed emption +ĠIslam ists +effect s +d ose +ĠL atter +ĠHal ifax +Ġv as +ĠTop ics +ĠN amed +advert ising +zz a +IC ES +Ġret arded +ach able +ĠPupp et +ĠItem Level +Ġret ract +Ġident ifiable +A aron +ĠB uster +s ol +hel le +as semb +H ope +r anged +B a +ĠP urch +é Ģ +ĠSir i +Ġarri vals +Ġ19 12 +Ġshort ened +Ġ3 12 +Ġdiscrep ancy +ĠTem perature +ĠWal ton +Ġkind erg +p olit +Ġrem ix +Ġconnect ors +ãĥĺ ãĥ© +ĠKazakh stan +dom inated +Ġsu gars +im ble +ĠPan ic +ĠDem and +ĠCol ony +on en +ĠM ER +7 75 +ur ia +aza ar +ĠDeg ree +P ri +Ġsun shine +Ġ25 1 +Ġpsychedel ic +Ġdigit ally +ĠBra un +Ġsh immer +Ġsh ave +ĠTel esc +ĠAst ral +ĠVenezuel an +ĠO G +Ġc rawling +Int eg +ĠFe ather +Ġunfold ing +Ġappropri ation +Ġè£ı è +ĠMob ility +ĠN ey +- . +b ilt +L IN +ĠT ube +ĠCon versely +Ġkey boards +ĠC ao +Ġover th +Ġla ure +>> \ +ĠV iper +ach a +Off set +ĠR aleigh +ĠJ ae +J ordan +j p +Ġtotal itarian +Connect or +Ġobserv es +ĠSpart an +ĠIm mediately +ĠSc al +C ool +Ġt aps +Ġro ar +P ast +Ġch ars +ĠB ender +ĠShe ldon +Ġpain ter +Ġbe acon +ĠCreat ures +Ġdownt urn +Ġh inder +ĠAnd romeda +à Ľ +cc oli +ĠF itness +et rical +Ġutil izes +Ġsen ate +Ġen semble +Ġche ers +T W +Ġaff luent +k il +ry lic +ord ering +Com puter +Ġgru esome +ost ics +ĠUb isoft +ĠKel ley +Ġw rench +Ġbourgeois ie +IB LE +ĠPrest on +w orn +ar ist +reat ing +Ġst ained +ar ine +Ġsl ime +EN N +Ġche sts +Ġground water +ann ot +ĠTr ay +ĠLoc ke +ĠC TR +Ġd udes +ĠEx ternal +ĠDec oder +Ġpar amed +ĠMed line +80 9 +ĠD inner +rup al +g z +ĠG um +ĠDem o +j ee +Ġd h +ber man +arch s +Ġen qu +ĠEp stein +Ġdevast ation +Ġfriends hips +ĠAr d +Ġ23 1 +ĠRub in +ĠDist ance +Ġsp urred +Ġd ossier +Ġover looking +\\\\\\\\ \\\\\\\\ +Fore st +ĠCom es +\ ", +ĠIran ians +Ġf ixtures +L aughs +Ġcur ry +ĠKing ston +Ġsqu ash +Ġcat alogue +Ġabnormal ities +Ġdigest ive +.... ..... +Ġsubord inate +og ly +Ġ24 9 +M iddle +Ġmass ac +Ġburg ers +Ġdown stairs +Ġ19 31 +39 4 +ĠV G +Ġl asers +ĠS ikh +ĠAlex a +der ived +Ġcycl ist +ãģ® éŃĶ +onel iness +!!!! !!!! +Ġbuff s +leg ate +Ġrap ing +Ġrecomm ending +ro red +Ġmult icultural +un ique +Ġbusiness men +Ġune asy +ĠM AP +Ġdisp ersed +cipl ine +J ess +ĠK erala +å § +Ġabst raction +Sur v +U h +Ġprin ters +ij a +ow der +Ġanalog ous +ĠA SP +af er +Ġunfold ed +Ġlevel ing +Ġbre ached +ĠH earing +Ġn at +Ġtransl ating +crit ical +Ġant agonist +ĠYes terday +Ġfuzz y +w ash +m ere +Ġbe wild +ĠM ae +V irgin +ph rase +Ġsign aled +ĠH IGH +Ġprot ester +Ġgar ner +unk nown +Ġk ay +Ġabduct ed +Ġst alking +am n +Ġdes erving +ĠR iv +ĠJ orge +Ġscratch ing +ĠS aving +ip ing +Ġte ase +Ġmission ary +ĠMor row +T IME +P resent +Ġchem otherapy +tern ess +ĠH omes +ĠP urdue +Ġst aunch +ĠWhit ney +ĠTH ERE +Î ¼ +iat us +ĠErn est +ĠDe ploy +Ġcove ted +F ML +ĠDial ogue +Ġex ited +f ruit +Ġner d +":" "," +Ġv ivo +ru ly +4 60 +ĠAm en +rehens ible +Ġâ ĺ +D IR +Ġad herence +Ġche w +ĠCo ke +ĠSerge i +dig ital +ĠNe ck +g ently +enth al +/ ) +Ġwe ary +Ġgu ise +ĠConc ord +ĠOn ion +at cher +Ġb inge +ĠDirect ive +Ġman ned +ans k +Ġill usions +Ġbillion aires +38 3 +oly n +odynam ic +ĠWhe at +ĠA lic +Ġcol oured +ĠN AFTA +ab o +Ġmac ros +ind ependent +s weet +Ġsp ac +ĠK abul +Ġ Ä +em e +Ġdict ated +Ġsh outs += { +Ġr ipping +ĠSh ay +ĠCr icket +direct ed +Ġanalys ed +ĠWAR RANT +ag ons +ĠBlaz ers +Ġche ered +Ġar ithmetic +ĠTan z +37 3 +ĠFl ags +Ġ29 5 +Ġw itches +ĠIn cluded +ĠG ained +ĠBl ades +G am +ĠSam antha +ĠAtl antis +ĠPr att +Ġspo iled +ĠI B +ĠRam irez +Pro bably +re ro +ĠN g +ĠWar lock +t p +Ġover he +Ġadministr ations +Ġt int +Ġreg iment +Ġpist ols +Ġblank ets +Ġep ist +Ġbowl s +Ġhydra ulic +Ġde an +Ġj ung +Ġasc end +70 5 +ĠSant iago +à ® +Ġun avoid +ĠSh aman +re b +Ġstem ming +99 8 +ĠM G +st icks +esthes ia +ER O +Ġmor bid +ĠGr ill +ĠP oe +any l +Ġdele ting +ĠSurve illance +Ġdirect ives +Ġiter ations +ĠR ox +ĠMil ky +F ather +Ġpat ented +44 7 +Ġprec ursor +Ġm aiden +ĠP hen +ĠVe gan +ĠPat ent +K elly +Redd itor +Ġn ods +Ġvent ilation +ĠSchwar z +Ġw izards +Ġomin ous +ĠHe ads +ĠB G +Ġl umber +ĠSp iel +Ġis Enabled +Ġancest ral +ĠSh ips +Ġwrest ler +ph i +Ġy uan +ĠRebell ion +Ġice berg +Ġmag ically +Ġdivers ion +ar ro +yth m +ĠR iders +ĠRob bie +ĠK ara +ĠMain tenance +ĠHer b +Ġhar ms +p acked +ĠFe instein +Ġmarry ing +Ġbl ending +ĠR ates +Ġ18 80 +Ġwr ink +ĠUn ch +ĠTor ch +desc ribed +Ġhuman oid +ilit ating +ĠCon v +ĠFe ld +IGH TS +Ġwhistlebl ower +ort mund +ets y +arre tt +ĠMon o +ĠI ke +ĠC NBC +ĠW AY +ĠMD MA +ĠIndividual s +Ġsupplement al +Ġpower house +ĠSt ru +F ocus +aph ael +ĠCol leg +att i +Z A +Ġp erenn +ĠSign ature +ĠRod ney +Ġcub es +idd led +ĠD ante +ĠIN V +iling ual +ĠC th +Ġso fa +Ġintimid ate +ĠR oe +ĠDi plom +ĠCount ries +ays on +Ġextrad ition +Ġdis abling +ĠCard iff +Ġmemor andum +ĠTr ace +Ġ?? ? +se ctor +ĠRou hani +ĠY ates +ĠFree ze +Ġbl adder +M otor +ĠProm ise +ant asy +Ġforesee able +ĠC ologne +cont ainer +ĠTre es +ĠG ors +ĠSin clair +Ġbar ring +key e +Ġsl ashed +ĠStat istical +é ĩ +Ġâĸ º +All ows +Ġhum ility +Ġdr illed +ĠF urn +44 3 +Ġse wage +Ġhome page +Ġcour tyard +Ġv ile +Ġsubsid iaries +aj o +direct ory +Ġam mon +V ers +charg es +Ġ} } +ĠCh ains +Ġ24 6 +n ob +Ġper cept +Ġg rit +Ġfisher men +ĠIraq is +ĠDIS TR +ĠF ULL +ĠEval uation +g raph +at ial +Ġcooper ating +Ġmel an +Ġenlight ened +Ġal i +t ailed +Ġsal ute +Ġweak est +ĠBull dogs +U A +ĠAll oy +Ġsem en +oc ene +ĠWilliam son +s pr +, âĢĶ +ĠG F +itt ens +Be at +ĠJ unk +iph ate +ĠFarm ers +ĠBit coins +ig ers +d h +ĠL oyal +p ayer +Ġentert ained +Ġpenn ed +Ġcoup on +Que ue +Ġweaken ing +c arry +Ġunderest imate +Ġshoot out +Ġcharism atic +ĠProced ure +Ġprud ent +in ances +Ġric hes +Ġcort ical +Ġstr ides +Ġd rib +ĠOil ers +5 40 +ĠPer form +ĠBang kok +Ġe uth +S ER +Ġsimpl istic +t ops +camp aign +Q uality +Ġimpover ished +ĠEisen hower +Ġaug ment +ĠH arden +Ġinterven ed +Ġlist ens +ĠK ok +Ġs age +Ġrub bish +ĠD ed +Ġm ull +pe lling +Ġvide ot +Produ ction +D J +m iah +Ġadapt ations +Ġmed ically +Ġboard ed +Ġarrog ance +Ġscra pped +Ġopp ress +FORM ATION +Ġj unction +4 15 +EE EE +S kill +Ġsub du +ĠSug gest +ĠP ett +Ġle tt +ĠMan ip +ĠC af +ĠCooper ation +T her +Ġreg ained +¶ æ +ref lect +Ġth ugs +ĠShel by +Ġdict ates +ĠWe iner +ĠH ale +Ġbatt leground +s child +Ġcond ol +h unt +osit ories +Ġacc uses +Fil ename +Ġsh ri +Ġmotiv ate +Ġreflect ions +N ull +ĠL obby +¥ µ +ĠS ATA +ĠBack up +Ñ ĥ +n in +ĠCor rection +Ġju icy +ut ra +ĠP ric +Ġrest raining +ĠAir bnb +ĠAr rest +Ġappropri ations +Ġsl opes +Ġmans laughter +Ġwork ings +ĠH uss +ĠF rey +Le ave +ĠHarm ony +ĠF eder +Ġ4 30 +Ġt rench +Ġglad ly +Ġbull pen +ĠG au +b ones +Ġgro ove +Ġpre text +ã ħĭ +Ġtransm itter +ĠComp onent +Ġunder age +ĠEm pires +T ile +Ġo y +ĠMar vin +ĠC AS +Ġbl oss +Ġrepl icated +ĠMar iners +Marc us +ĠBl ocks +Ġliber ated +Ġbutter fly +Fe el +Ġfer mentation +Ġyou tube +Ġoff end +ĠTer m +res ist +Ġcess ation +Ġinsurg ency +Ġb ir +ĠRa ise +59 5 +Ġhypothes es +50 2 +Ġpl aque +ocr at +Ġjack ets +ĠHuff Post +am ong +Ġconf er +48 7 +ĠL illy +Ġadapt ing +ĠF ay +Ġsh oved +ve c +Ġref ine +Ġg on +Ġgun men +z ai +ĠShut tle +ĠI zan +Ġ19 13 +Ġple thora +· · +Ġ5 10 +Ġp uberty +Ġ24 1 +ĠWe alth +ĠAl ma +ĠM EM +ĠAd ults +C as +pr ison +R ace +Ġwater proof +Ġathlet icism +Ġcapital ize +ĠJu ice +Ġillum inated +ĠP ascal +Ġirrit ation +ĠWitness es +ad le +ĠAst ro +Ġf ax +ĠEl vis +Prim ary +ĠL ich +ĠEl ves +Ġres iding +Ġst umble +3 19 +ĠP KK +Ġadvers aries +D OS +ĠR itual +Ġsm ear +Ġar son +ident al +Ġsc ant +Ġmon archy +Ġhal ftime +Ġresid ue +Ġind ign +ĠSh aun +ĠEl m +aur i +A ff +W ATCH +ĠLy on +hel ps +36 1 +Ġlobby ist +Ġdimin ishing +Ġout breaks +Ġgo ats +f avorite +ĠN ah +son ian +ĠBo oster +Ġsand box +ĠF are +ĠMalt a +Ġatt Rot +ĠM OR +ld e +Ġnavig ating +T ouch +Ġunt rue +ĠDis aster +Ġl udicrous +Pass word +ĠJ FK +blog spot +4 16 +ĠUN DER +ern al +Ġdelay ing +T OP +Ġimpl ants +ĠAV G +ĠH uge +att r +Ġjournal istic +ĠPe yton +ĠI A +R ap +go al +ĠProgram me +Ġsm ashing +w ives +print ln +ĠPl ague +in us +EE P +Ġcru iser +ĠPar ish +umin ium +Ġoccup ants +ĠJ ihad +m op +Ġp int +Ġhe ct +ĠMe cca +direct or +ĠFund ing +ĠM ixed +Ġst ag +T ier +Ġg ust +Ġbright ly +ors i +Ġup hill +R D +Ġles ions +ĠBund y +liv ious +Ġbi ologist +ĠFac ulty +ĠAuthor ization +Ġ24 4 +All ow +ï ¸ +ĠGi ul +Ġpert inent +ot aur +es se +ĠRo of +Ġunman ned +35 1 +ĠSh ak +ĠO rient +Ġend anger +D ir +Ġrepl en +ed ient +Ġtail or +Ġgad gets +Ġaud ible +âĺ Ĩ +N ice +Ġbomb ard +ĠR ape +Ġdef iance +ĠTW O +ĠFilip ino +Ġunaff ected +erv atives +Ġso ared +ĠBol ton +Ġcomprom ising +ĠBrew ers +R AL +ĠA HL +icy cle +Ġv ampires +Ġdi pped +oy er +ĠX III +Ġsidew ays +ĠW aste +ĠD iss +ĠâĶľ âĶĢâĶĢ +$ . +Ġhabit ats +ĠBe ef +tr uth +tr ained +spl it +R us +And y +ĠB ram +RE P +p id +è£ ħ +ĠMut ant +An im +ĠMar ina +Ġfut ile +hig hest +f requency +Ġepile psy +Ġcop ing +Ġconc ise +Ġtr acing +ĠS UN +pan el +ĠSoph ie +ĠCrow ley +ĠAd olf +ĠShoot er +Ġsh aky +ĠI G +ĠL ies +ĠBar ber +p kg +Ġupt ake +Ġpred atory +UL TS +/ ** +Ġintox icated +ĠWest brook +od der +he ment +Ġbas eman +AP D +st orage +ĠFif ty +ed itor +G EN +UT ION +ir ting +Ġse wing +r ift +Ġag ony +ĠS ands +Ġ25 4 +C ash +Ġl odge +Ġp unt +N atural +ĠIde as +Ġerrone ous +ĠSens or +ĠHann ity +Ġ19 21 +Ġm ould +ĠG on +kay a +Ġanonym ously +ĠK EY +Ġsim ulator +W inter +Ġstream ed +50 7 +? ", +Ġte ased +Ġco efficient +Ġwart ime +ĠTH R +' '. +ĠBank ing +mp ire +Ġf andom +Ġl ia +G a +Ġdown hill +Ġinterpre ting +Ind ividual +N orm +Ġjealous y +bit coin +Ġple asures +ĠToy s +ĠChev rolet +ĠAd visor +IZ E +Ġrecept ions +70 6 +C ro +Ġ26 2 +Ġcit rus +ir u +Review er +ject ed +U ES +an z +19 81 +ĠWork er +Ġcompl ied +ores cent +contin ental +T on +ĠPr ism +ĠShe ep +Ġ28 8 +n ox +ĠV og +O rd +Ġreal ms +te k +Ġirrig ation +Ġbicy cles +Ġelectron ically +p oly +t all +() ); +Ġaest hetics +ĠInteg rated +Expl ore +Ġd unk +47 6 +p ain +ĠJac ques +ĠD mit +Fram es +Ġreun ited +Ġhum id +D ro +P olitical +Ġyouth ful +Ġent ails +Ġmosqu ito +36 3 +spe cies +Ġcoord inating +ĠMay hem +ĠMagn us +M ount +Impro ved +ĠST ATE +ATT LE +Ġflow ed +Ġtack led +Ġfashion ed +Ġre organ +iv ari +f inger +Ġreluct antly +et ting +ĠV and +you ng +ĠGar land +Ġpresum ption +Ġamen ities +ĠPle asant +on ential +ĠO xy +Ġmor als +ĠY ah +Read y +Sim on +En h +D emon +Ġcl ich +Mon itor +ĠD U +Ġwel comes +Ġstand out +Ġdread ful +Ġban anas +Ġball oons +h ooting +bas ic +Ġsuff ix +Ġd uly +can o +Ch ain +at os +Ġgeop olitical +Ġ( & +ĠGem ini +ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ +Ġacqu itted +L uck +prot ect +10 24 +Ġsc arcity +Ġmind fulness +ec ided +D N +pr ime +ĠPres idents +ĠVID EO +Ġ( âĪĴ +add ock +N OR +ĠP ru +p un +ĠL OL +)) )) +ĠL iqu +ĠS AS +Ġsty ling +Ġpunish ments +Ġnum b +Ġasc ertain +ĠRock ies +f lu +Th umbnail +Ġperpet rated +ĠSem i +Ġdis arm +ĠOld er +ĠEx ception +Ġexponent ially +ĠCommun ities +Ġabol ish +ĠPart ner +pt oms +Ġ7 77 +ĠFo ley +ĠC ases +Ġgre ase +ĠReb irth +G round +Ġ; ) +ĠDoct rine +ik ini +Y e +ĠBl ossom +Ġpers ists +b ill +Ġinf usion +Ġbud dies +9 11 +ĠPat ient +Ġdem os +Ġacquaint ance +ĠP aw +at ari +Ġx ml +Ġfasc ination +ĠSer ve +Ï Ĥ +br anded +Ġa z +Return s +Ġover shadow +Ġro am +Ġspeed y +n umbered +hel ial +Ġdisc iple +Ġass urances +g iven +pect ing +ĠN atalie +çĶ ° +Ġmosquit oes +rote in +Ġnumer ic +Ġindepend ents +Ġtrans itional +Ġreaction ary +ĠMech dragon +do ctor +Ġshort est +Ġsequ ential +ĠB ac +ĠAccount s +ãģ Į +ach y +ract ive +ĠReg iment +Ġbreat htaking +ffic iency +ĠB ates +Ġ3 11 +Ġward robe +ft s +ĠBer k +Sim ply +ĠRivers ide +iver ing +ident ial +lu cent +Ġen riched +ĠCon ver +ĠG iving +ãĥ Ļ +Ġlegal ize +ĠF TC +Ġfre aking +M ix +Ġter restrial +es ian +ci ents +W ing +LO AD +Ġled ge +ĠViol ent +ĠMet all +Ġ30 8 +Ġs outheastern +hett o +M eat +Ġslow down +Ġret reated +Jere my +end as +**** * +er ic +Ġre ins +opp able +ĠHuman ity +ear ances +rig an +C amera +Ġwa ivers +s oc +Ġalter ation +trans form +ĠC emetery +50 6 +Ġindef inite +Ġstim ulating +y g +60 3 +ĠS op +Ġdescript ive +Ph ase +ĠEd mund +Ġpneum onia +vent us +A mb +Ġlabor atories +ĠEx clusive +ug ar +W ere +Ġmalf unction +Ġhomosexual s +Ġ---- --- +un i +Ġturb ines +ĠEqu ity +D u +Ġmind ed +ĠR H +ĠBlack hawks +Ġfe ats +Ġ17 00 +re pl +36 2 +lad en +Ġindisp ensable +ly ss +tt i +Ġre el +Ġdiver ted +Ġlik eness +Ġsubscript ions +Ġfing ert +Ġfil thy +dest ruct +d raft +ĠBernard ino +l aunch +Ġper plex +ĠS UM +car b +Ġswe ater +ĠVent ure +ĠJ ag +ĠCele b +ĠV oters +Ġstead fast +Ġathlet ics +ĠHans on +ĠDr ac +Tr acker +Ġcomm end +ĠPres idency +ĠD ID +in formed +Ġweb page +P retty +Ġforce fully +ãĥĥ ãĤ¯ +Ġrel ocation +Ġsat ire +â ī +ĠSunder land +æ Ħ +V oice +???? ???? +Ġinform ant +Ġbow el +ĠUn iform +Ġ ..." +Ġpur ge +Ġpic nic +ĠU mb +ĠU PDATE +ĠSapp hire +ĠSt all +le arn +Ġobject ively +Ġob liter +Ġlooph ole +Ġjour neys +Ġo mission +Pro s +ĠSid ney +pl oma +Ġspray ed +Ġg uru +Ġtra itor +Ġtim et +Ġsn apping +ĠSe vent +urn al +ĠUk ip +Ġb owed +por al +l iberal +R os +Quest ions +i OS +Ġsummar ize +ST AT +Ġ18 50 +ap est +Ġl ender +ĠVari able +br inging +ĠL ORD +, ) +Ġcollaps es +x iety +ĠN ed +Y D +ĠSch a +Ġantib ody +Ġdis band +y re +ill usion +Ġro ver +s hed +ĠHiro sh +cc i +Ġcal am +ĠMort on +P interest +Ġ19 28 +ĠE uras +ord es +Ġf ences +ĠIn ventory +ĠVal encia +ĠU d +ĠT iff +Ġsqu e +Ġqu otation +Ġtroubles ome +er ker +QU EST +ĠKing doms +s outh +Ġle vy +Pr ince +ĠSt ing +Ġnick named +Ġapp e +Ġphot ographic +Ġcorp us +re ference +ĠT rog +U nt +) =( +ĠLat via +Ġactiv ating +Ġlicense e +Ġdispar ities +ĠNews letter +ãĥĥ ãĥĪ +Ġfree ing +ĠJe ep +ĠPer ception +ins k +Ġsil icone +ĠHay den +Le an +ĠSuz uki +ibr arian +66 8 +Ġsp or +Ġcorrel ations +ag hetti +Ġtu ber +ĠIP CC +il us +ĠV u +Ġwealth iest +ĠCarb uncle +an za +Ġfool ed +ĠZ ur +Ġd addy +ran o +il ian +Ġknock out +f man +requ ired +ĠWik ileaks +ĠD uffy +ON T +Ġins ol +ĠObject s +Ġb ou +ĠNord ic +ĠIns ert +sc an +Ġd ancers +Ġid iots +major ity +ĠNev ille +ĠFree BSD +Ġt art +pan ic +69 0 +Ġcoc oa +Ġsam pled +Ġlook up +Ind ust +Ġinject ions +gen re +Ġa u +Ġroad way +Ġgen itals +K ind +ĠEx aminer +ĠY az +F resh +Ġpar alysis +ĠAl uminum +Ġre ap +ok é +Ġsl oppy +ĠTun nel +pos ium +ner y +en ic +Ġher bal +ĠOut er +ĠBuild er +Ġinc ur +Ġide ologies +Ġback ups +cons uming +ĠDet ect +de ck +ĠKN OW +ĠG ret +ĠM IC +Ġtough ness +ĠEx hibit +Ġh ive +L es +ĠSCH OOL +ĠAt ari +ald e +ĠN ull +and estine +m ouse +Ġbrig ade +48 9 +Ġrev ol +ĠLaw son +ĠW ah +op oly +eb ted +ĠS aunders +Ġ3 13 +ĠW inc +Ġtab oo +ĠHel met +Ġw edge +ch ip +ĠT ina +b g +Ġinf uri +r n +Ġanomal ies +ĠSy nc +ĠEx am +ĠComm it +ĠDi ary +ĠALS O +ĠDe bor +omed ical +Ġcomprehens ion +6 55 +Ġempower ing +Ġ ire +Ġju ices +ĠE TH +ĠBox ing +=" / +Ġfacilit ated +p oke +ĠPars ons +ĠMod er +tra vel +Ġcivil izations +Ġliber tarians +Ġrun e +ĠCl arks +at hed +Ġcampaign ers +ĠDis patch +ĠFah renheit +ĠCap com +-------- -- +Ġl ace +Ġdr aining +Ġl iner +ĠArt ificial +é n +t ask +] ). +ĠGM O +ĠOper ator +ord inary +ĠInf luence +ĠU ps +Ġpot ency +uss en +osp ons +ĠSw im +ĠDead line +Un ity +Ġcul inary +Ġenlight enment +Ġwe arer +Ġmin ed +Ġp ly +Ġinc est +ĠDVD s +W alk +B TC +Tr ade +Ġdev al +ib and +ĠOvers ight +Palest inian +Ġd art +Ġm ul +L R +Ġrem ovable +ĠReal ms +ì Ŀ +Ġmisc ar +ĠV ulkan +68 5 +è re +ĠS ap +Ġmer ging +ĠCar ly +che ster +Ġbr isk +Ġlux urious +ĠGener ator +Ġbit terness +Ġed ible +Ġ24 3 +T G +Ġrect angle +With No +bel ow +J enn +Ġdark est +Ġh itch +Ġdos age +Ġsc aven +ĠK eller +ĠIllust rated +Certain ly +ĠMaver icks +Marg inal +Ġdiarr hea +Ġenorm ously +Ġ9 99 +sh r +qu art +Ġadam ant +ĠM ew +Ġren ovation +Ġcerv ical +ĠPercent age +en ers +ĠKim ber +Ġflo ats +Ġde x +ĠW itcher +ĠSwan sea +d m +Ġsal ty +y ellow +Ġca pe +ĠDr ain +ĠPaul a +ĠTol edo +les i +Mag azine +ĠW ick +ĠM n +ĠA ck +ĠR iding +AS ON +Ġhom ophobic +AR P +Ġwand ered +C PU +ood oo +ĠP ipe +Ġtight ening +ĠBut t +3 18 +Ġdesert ed +S ession +Ġfacilit ating +J ump +Ġemer gencies +OW ER +Ġexhaust ive +ĠAF TER +Ġheart beat +ĠLab el +ack y +ĠCert ified +ilt ration +Z e +ĠU tt +Ġ13 00 +Ġpres ume +ĠDis p +Ġsur ged +Ġdoll s +Col umb +Ġchim pan +ĠR azor +Ġt icks +Ġcouncill or +Ġpilgr image +ĠReb els +ĠQ C +ĠA uction +x ia +ik k +b red +Ġinsert ion +Ġco arse +d B +SE E +ĠZ ap +ĠF oo +Ġcontem por +ĠQuarter ly +ot ions +ĠAl chemist +ĠT rey +ĠDu o +S weet +80 4 +ĠGi ov +Ġfun n +N in +h off +Ġram ifications +Ġ19 22 +ĠExper ts +az es +Ġgar ments +ar ial +ĠN ab +Ġ25 7 +ĠV ed +Ġhum orous +ĠPom pe +Ġn ylon +Ġlur king +ĠSerge y +ĠMatt is +Ġmisogyn y +ĠComp onents +ĠWatch ing +ĠF olk +ract ical +B ush +Ġt aped +Ġgroup ing +Ġbe ads +Ġ20 48 +Ġcon du +quer que +Read ing +Ġgriev ances +Ult ra +Ġend point +H ig +ĠSt atic +ĠScar borough +L ua +ĠMess i +a qu +ĠPsy Net +ĠR udd +Ġa venue +v p +J er +Ġsh ady +ĠRes ist +ĠArt emis +Ġcare less +Ġbro kers +Ġtemper ament +Ġ5 20 +T ags +ĠTurn ing +Ġut tered +Ġp edd +Ġimpro vised +Ġ: ( +Ġtab l +Ġpl ains +16 00 +press ure +ĠEss ence +marg in +friend s +ĠRest oration +Ġpoll ut +ĠPok er +ĠAugust ine +ĠC IS +ĠSE AL +or ama +Ġth wart +se ek +Ġp agan + º +cp u +Ġg arn +Ġass ortment +ĠI LCS +t ower +Recomm ended +Ġun born +ĠRandom Redditor +ĠRandomRedditor WithNo +Ġparaly zed +Ġeru ption +Ġinter sect +ĠSt oke +ĠS co +B ind +å ¾ +ĠP NG +ĠNeg ative +ĠNO AA +Le on +Ġall oy +ĠL ama +ĠD iversity +5 75 +Ġunderest imated +ĠSc or +Ġm ural +Ġb usted +so on +l if +Ġnone x +Ġall ergy +ĠUnder world +ĠR ays +ĠBl asio +Ġh rs +ĠD ir +Ġ3 27 +by ter +Ġrepl acements +Ġactiv ates +ri ved +M H +Ġp ans +ĠH I +Ġlong itudinal +Ġnu isance +al er +Ġsw ell +ĠS igned +s ci +ĠIs les +ĠA GA +Ġdef iant +Ġson ic +oc on +K C +ĠA im +t ie +ah ah +Ġm L +D X +Ġb isc +ĠBill board +ĠSY STEM +NE Y +ga ard +Ġdist ressed +former ly +Al an +Ġche fs +Ġopt ics +ĠC omet +ĠAM C +Ġredes igned +irm ation +Ġsight ings +38 2 +3 11 +ĠW B +Ġcont raction +ĠT OTAL +D ual +Ġstart led +Ġunderstand ably +Ġsung lasses +ETH OD +Ġd ocker +Ġsurf ing +ĠH EL +ĠSl ack +ton es +Ġsh alt +Vis ual +49 8 +Dep artment +c ussion +Ġunrest ricted +Ġt ad +Ġre name +employ ed +Ġeduc ating +Ġgrin ned +bed room +ĠActiv ities +ĠV elvet +ĠSW AT +Ġsh uffle +ig or +Ġsatur ation +F inding +c ream +ic ter +Ġv odka +tr acking +te c +Ġfore ground +iest a +Ġve hement +ĠEC B +ĠT ie +E y +Ġt urtles +ĠRail road +ĠKat z +ĠFram es +Ġmen ace +ĠFell owship +ĠEss ential +ugg ish +Ġdri p +ch witz +ĠKy oto +s b +ĠN ina +Param eter +Ġal arms +ĠCl aud +Ġpione ering +Ġchief ly +ĠSc ream +Col lection +Ġthank fully +ĠRonald o +åŃ IJ +st rip +ĠDisney land +com mercial +See ing +S oul +Ġevac uate +Ġc iv +ĠAs he +Ġdiv ides +ĠD agger +rehens ive +Ġber ries +ĠD F +Ġs ushi +Ġplur ality +W I +Ġdisadvant aged +Ġbatt alion +ob iles +45 1 +Ġcl ing +Ġunden iable +ĠL ounge +Ġha unt +p he +Ġquant ify +Ġdiff ered +Ġ[* ] +ĠV iz +c um +sl ave +Ġvide og +Ġqu ar +Ġbund les +ĠAl onso +t ackle +Ġneur onal +Ġlandsl ide +conf irmed +ĠDep th +Ġrenew ables +B ear +ĠMaced onia +Ġjer seys +Ġb unk +ĠSp awn +ĠControl s +ĠBuch anan +Ġrobot ics +Ġemphas izing +ĠTut orial +h yp +ist on +Ġmonument al +æ ° +ĠCar ry +Ġt bsp +en ance +H ill +art hed +Ġro tten +De an +Ġtw isting +Ġgood will +Ġimm ersion +L iving +Ġbr ushes +ĠC GI +ĠAt k +tr aditional +Ġph antom +ĠSt amina +Ġexpans ions +ĠMar in +Ġembark ed +ĠE g +int estinal +ĠPE OPLE +ĠBo oth +ĠApp alach +Ġreleg ated +V T +M IT +Ġmust er +Ġwithdraw ing +Ġmicrosc ope +ĠG athering +ĠC rescent +ĠArgent ine +ĠDec re +ĠDomin ic +Ġbud s +ant age +ĠI on +Ġwid ened +ONS ORED +ĠGl oves +iann opoulos +raz en +fe el +Ġrepay ment +Ġhind sight +ĠRE ALLY +ĠPist ol +ĠBra h +Ġwat ts +Ġsurv ives +Ġfl urry +iss y +Al ert +ĠUrug uay +Ph oenix +S low +ĠG rave +ĠF ir +Ġmanage able +Ġtar iff +ĠU DP +ĠPist ons +ĠNiger ian +Ġstrike outs +Ġcos metics +whel ming +f ab +c ape +pro xy +Ġre think +Ġover coming +sim ple +Ġw oo +Ġdistract ing +ĠSt anton +ĠTuls a +ĠD ock +65 9 +Ġdisc ord +ĠEm acs +ĠV es +ĠR OB +Ġreass uring +Ġcons ortium +Muslim s +3 21 +Ġprompt s +se i +ĠH itch +imp osed +ĠF ool +Ġindisc rim +wr ong +bu querque +D avis +! ] +Ġtim eless +ĠNE ED +Ġpestic ide +Ġrally ing +ĠCal der +Ġå ¤ +Ġx p +ĠUn le +ĠEx port +lu aj +B uff +) [ +Ġsq or +S audi +Ġis tg +Ġindul ge +pro c +Ġdisg usted +Ġcomp ounded +Ġn em +Ġschool ing +ĠC ure +process ing +S ol +Ġpro verb +it ized +ĠAlv arez +Ġscar f +Ġrect angular +re ve +Ġh ormonal +ĠSt ress +itiz en +Ġ4 25 +girl s +ĠNo ir +ĠR app +Ġmar ches +ch urch +ĠUs es +Ġ40 5 +ĠBer m +Ġord inances +ĠJud gment +Charg es +ĠZ in +Ġdust y +Ġstraw berries +Ġper ce +ĠTh ur +ĠDebor ah +net flix +ĠLam bert +Ġam used +ĠGu ang +Y OU +R GB +ĠC CTV +Ġf iat +r ang +Ġf ederation +ĠM ant +ĠB ust +ĠM are +respect ive +ĠM igration +ĠB IT +59 0 +Ġpatriot ism +Ġout lining +reg ion +ĠJos é +Ġbl asting +ĠEz ra +B s +Ġundermin es +ĠSm ooth +Ġcl ashed +rad io +Ġtransition ing +ĠBucc aneers +ĠOw l +Ġplug s +Ġh iatus +ĠPin ball +Ġm ig +ĠNut r +ĠWolf e +Ġinteg ers +Ġor bits +ĠEd win +ĠDirect X +b ite +Ġbl azing +v r +Ed ge +ĠP ID +ex it +ĠCom ed +ĠPath finder +ĠGu id +ĠSign s +ĠZ er +ĠAg enda +Ġreimburse ment +M esh +i Phone +ĠMar cos +ĠS ites +h ate +en burg +Ġs ockets +p end +Bat man +v ir +ĠSH OW +Ġprovision al +con n +ĠDeath s +AT IVE +Pro file +sy m +J A +Ġnin ja +inst alled +id ates +eb ra +ĠOm aha +Ġse izing +ĠBe asts +Ġsal ts +M ission +Gener ally +ĠTr ilogy +he on +leg ates +Ġd ime +Ġf aire +par able +G raph +Ġtotal ing +Ġdiagram s +ĠYan uk +ple t +ĠMe h +Ġmyth ical +ĠStep hens +aut ical +ochem istry +Ġkil ograms +Ġel bows +anc ock +ĠB CE +ĠPr ague +Ġimpro v +ĠDev in +Ġ" \ +par alle +Ġsuprem acists +ĠB illion +Ġreg imen +inn acle +Ġrequ isite +ang an +ĠBur lington +ain ment +ĠObject ive +oms ky +G V +Ġun ilateral +Ġt c +Ġh ires +ment al +Ġinvol untary +Ġtrans pl +ĠASC II + ¨ +Ev ents +Ġdoub ted +ĠKa plan +ĠCour age +ig on +ĠMan aging +ĠT art +Ġfalse hood +ĠV iolet +Ġair s +Ġfertil izer +Brit ain +Ġaqu atic +ou f +W ords +ĠHart ford +Ġeven ings +ĠV engeance +qu ite +G all +ĠP ret +Ġp df +ĠL M +ĠSo chi +ĠInter cept +9 20 +Ġprofit ability +ĠId le +ĠMac Donald +ĠEst ablishment +um sy +Ġgather ings +ĠN aj +Charl ie +Ġas cent +ĠProt ector +Ġal gebra +Ġbi os +for ums +EL S +Introdu ced +Ġ3 35 +Ġastron omy +Cont ribut +ĠPol ic +Pl atform +Ġcontain ment +w rap +Ġcoron ary +ĠJ elly +man ager +Ġheart breaking +c air +ĠChe ro +c gi +Med ical +ĠAccount ability +! !" +oph ile +Ġpsych otic +ĠRest rict +Ġequ itable +iss ues +Ġ19 05 +ĠN ek +c ised +ĠTr acking +Ġo zone +Ġcook er +ros is +Ġre open +Ġinf inity +ĠPharm aceutical +ens ional +Att empt +ĠR ory +Mar co +Ġawa its +H OW +t reated +Ġbol st +Ġreve red +Ġp ods +opp ers +00 10 +Ġampl itude +ric an +SP ONSORED +Ġtrou sers +Ġhal ves +ĠK aine +ĠCut ler +ĠA UTH +Ġsplend id +Ġprevent ive +ĠDud ley +if acts +umin ati +ĠY in +Ġad mon +ĠV ag +Ġin verted +Ġhast ily +ĠH ague +L yn +Ġled ger +Ġastron omical +get ting +Ġcirc a +ĠC ic +ĠTenn is +Lim ited +Ġd ru +ĠBY U +Ġtrave llers +Ġp ane +ĠInt ro +Ġpatient ly +Ġa iding +Ġlo os +ĠT ough +Ġ29 3 +Ġconsum es +Source File +Ġ"" " +Ġbond ing +Ġtil ted +Ġmenstru al +ĠCel estial +UL AR +Plug in +Ġrisk ing +N az +ĠRiy adh +Ġacc redited +Ġsk irm +é Ľ +Ġexam iner +Ġmess ing +Ġnear ing +ĠC hern +ĠBeck ham +Ġsw apped +Ġgo ose +K ay +Ġlo fty +ĠWal let +Ġ[ ' +Ġap ocalypse +Ġb amboo +ĠSP ACE +ĠEl ena +Ġ30 6 +ac ons +Ġtight ened +Ġadolesc ence +Ġrain y +Ġvandal ism +ĠNew town +Ġcon ject +c akes +Ġche ated +Ġmoder ators +par ams +E FF +Ġdece it +ĠST L +ĠTanz ania +ĠR I +Ġ19 23 +ĠEx ile +the l +Ġthe olog +Ġquir ky +ĠIr vine +Ġneed y +or is +U m +K a +Ġmail box +3 22 +Ġb os +ĠPet ra +K ING +Ġenlarg ed +O ften +Ġbad ass +Ġ3 43 +ĠPl aces +ĠC AD +Ġpr istine +Ġinterven ing +d irection +Ġl az +ĠD SM +Ġproject ing +ĠF unk +ag og +pay ment +n ov +Ġch atter +AR B +Ġexam inations +ĠHouse hold +ĠG us +F ord +4 14 +B oss +Ġmy stic +Ġle aps +ĠB av +ul z +b udget +Foot ball +Ġsubsid ized +Ġfirst hand +Ġcoinc ide +oc ular +Con n +ĠColl abor +Ġfool s +am ura +ah ar +r ists +Ġsw ollen +Ġexp ended +ĠP au +s up +Ġsp ar +Ġkey note +s uff +Ġunequ al +Ġprogress ing +str ings +ĠGamer gate +Dis ney +ĠEle ven +om nia +Ġscript ed +Ġear ners +bro ther +ĠEn abled +æ ³ +Ġlar vae +ĠL OC +m ess +Wil son +ĠTem plate +success fully +Ġparam ount +Ġcamoufl age +Ġbind s +ĠQu iet +ĠSh utterstock +r ush +Ġmasc ot +fort une +ĠCol t +ĠBe yon +hab i +Ġha irc +Ġ26 7 +ĠDe us +Ġtw itch +Ġconcent rating +Ġn ipples +c ible +Ġg ir +N Z +M ath +n ih +Requ ired +Ġp onder +ĠS AN +Ġwedd ings +Ġl oneliness +N ES +ĠMah jong +69 5 +add le +ĠGar ner +ĠC OUR +Br idge +Ġsp ree +ĠCald well +Ġbri bery +Ġ���� ���� +plug ins +Ġr acket +Ġchamp agne +vers ible +V ote +Ġmod ifiers +May or +6 80 +Ġassemb lies +ĠS ultan +ĠN ing +ĠLad ies +Ġsulf ur +Ġor bs +Ġ---- - +____ ___ +ĠJournal ism +Ġes ports +Ġl ush +Ġh ue +Ġspect ral +H onest +ãĥ ı +Ġbus hes +Ġrein forcement +Ġre opened +ĠWhe els +ĠM org +rie ving +Ġaux iliary +Ġj Query +ĠB AT +tes que +Ġver tex +p ure +f rey +ãĤ º +d os +Ġty ph +Ġc ull +Ġe q +Ġdec on +Ġtoss ing +Ġdispar ate +ĠBr igham +print f +led ged +Ġsu nd +Ġco zy +Ġhepat itis +per forming +Ġav al +ĠG G +f uture +Ġpet ertodd +ĠKos ovo +Ġmagn ets +Al ready +ĠEd ison +ĠCe res +ĠRA ID +Ġbrill iance +57 6 +Ġder ives +Ġhypert ension +ĠÎ Ķ +Ġlamb da +Ġfl air +Ġmission aries +Ġrap es +ĠSt arter +ĠMon ths +Ġdef y +Ġseism ic +ĠR aphael +Ġeuro zone +65 6 +z sche +Ġscr atched +Ġb ows +ĠLenn on +ĠGa ia +Ġdri pping +f acts +A le +Ġfrog s +ĠBre ast +ogene ity +ĠProsecut or +Ġampl ified +ĠHod g +ĠF n +Th ousands +ĠNI H +ĠMonitor ing +FT WARE +ĠPri ebus +ĠG rowing +hun ter +Ġdiagn ose +ĠM ald +ĠL R +Ġcrown ed +Ġburst ing +Ġdiss olution +j avascript +Ġuseful ness +ĠExec ution +: ( +ĠIv ory +a ah +Ġpersecut ed +viol ence +ist as +ĠCr ate +Ġimpuls es +ĠSp ani +ed es +Hand le +ĠZ erg +think able +Last ly +Ġspont aneously +Ġinconven ient +Ġdismiss ing +Ġpl otted +Ġeight y +Ġ7 37 +r ish +ĠThor nton +ath am +Ġsit com +V en +Rec ipe +t el +l und +Ġcle ars +ĠSas uke +Ġ25 8 +Ġopt ing +Ġen raged +est hetic +ĠA e +uch s +Pre p +Fl ow +Ġrun off +ĠE ating +ĠG iles +ĠAct ing +res ources +ib aba +Ġr pm +Ġske wed +ĠBl anc +ĠS akuya +Ġhot ter +Ġ19 24 +op ian +ck o +Ġcr umbling +Ġcapt ains +ĠAppropri ations +le aders +dro pping +an uts +Ġrevers ing +ĠP ose +ĠS ek +Sc ot +ĠIde a +c ise +ĠSloven ia +Ġ3 17 +Do ctor +Ġcro cod +ald i +Se a +ĠFar rell +Ġmerc enaries +ĠR NC +ĠGu ess +Ġp acing +M achine +Streamer Bot +ĠChar ity +Ġ29 8 +Ġcann ons +ĠTob y +TPP StreamerBot +ĠPass ion +cf g +Th om +Ġbad ges +ĠBern stein +. âĢĵ +ĠP OP +ĠCon j +Ġinitial ization +Ġbiod iversity +D ub +Ġfeud al +Ġdisclaim er +Ġc row +Ġign ition +ar f +S HA +Ġk Hz +h azard +ĠArt ists +oe uv +67 9 +ĠRud y +N ine +ĠRam adan +å ½ +itt o +Ġadren aline +C ert +Ġsmell ed +Ġimp unity +Ġag endas +ĠRe born +ĠCon cent +ĠSe ems +Ġo mega +ĠDust in +Ġback er +ĠSau ce +ĠBoy le +W IN +Ġsp ins +Ġpa uses +u pt +Ġshred ded +Ġstra pped +ĠCor ruption +Ġscr atches +Ġn i +Ġatt ire +ĠS AF +Factory Reloaded +ĠI PS +Ġ( % +Ġsem inar +f ocus +c ivil +Ġ18 60 +int osh +Ġcontin ual +Ġabbre vi +ĠS ok +oc obo +X M +Ġfr antic +Ġunavoid able +Ġar tery +Ġannot ations +b ath +Cl imate +Ġd ors +ĠSl ide +co ord +ĠRel oad +ĠL DL +ĠLove craft +Ġunim agin +Ġresemb led +Ġbarr acks +n p +Ġsurrog ate +Ġcategor ized +ãĤ © +Ġvacc inated +Ġdrain age +Ġind ist +ĠWhats App +Ġ18 70 +oler ance +inv oke +am orph +Ġrecon nect +Ġem anc +Ġblind ness +Ġ12 80 +intern et +c ollar +Ġalt ru +Ġab yss +ĠT RI +65 7 +Ġinf used +HE AD +Ġforest ry +ĠWood y +ĠC i +w i +s am +78 4 +hol iday +Ġmog ul +ĠF ees +ĠD EN +In ternal +ur bed +f usc +at om +ĠIll usion +Ġpoll ed +Ġfl ap +Ġco ax +L GBT +An aly +ĠSect ions +ĠCalif orn +em n +Ġh ither +ĠN IGHT +Ġn ailed +ĠPip eline +39 1 +o of +ĠPr imal +vere nd +Ġsl ashing +Ġret ri +avi our +Ġdepart ing +g il +IS C +Ġmid way +Ġultras ound +Ġbeh aving +ĠT ara +class es +V irtual +ĠColon ial +Ġstri pping +Ġorchestr ated +ĠGra ves +45 2 +ĠIron ically +ĠWrit ers +Ġl ends +ĠMan z +Ġra ven +Ġoxid ative +Ġ26 6 +EL F +act ually +asc ar +D raft +Ġfavour able +Ġhumili ating +Ġf idelity +ĠH of +ĠX uan +49 6 +Ġlay ered +at is +79 0 +Ġpay check +it on +K ar +ĠVM ware +ĠFar mer +Ġserv ic +gl omer +Ġsl ump +ĠFab ric +ĠD OC +est ing +Ġreass ure +Ġph yl +v olt +it ory +R ules +Ġoxid ation +Ġpri zed +Ġmist ress +ĠDj ango +WAR N +å ij +Ġenc ode +ĠFeed back +Ġstupid ity +I an +ĠYugoslav ia +× ¨ +ac l +UT E +19 77 +Ġqual ifies +Ġpuls es +pret ty +Ġfro ze +Ġs s +Iter ator +Ġur gently +Ġm ailed +ĠCh am +Ġsust aining +Ġbas il +Ġpupp ies +il ant +ĠP LEASE +l ap +ace ous +F ear +ĠMaster y +aut omatic +ĠT AG +Ġant im +ag les +47 3 +fram es +Ġwh ispers +ĠWho ever +Ġbra very +ĠUK IP +ract ions +"" " +Ġt ame +Ġpart ed +every thing +CON T +Ġind ebted +Ġadd r +re k +IR ED +Ġem inent +cl inton +Ġo usted +Ġreview er +Ġmelt down +Ġre arr +ĠY ao +the real +aby te +Ġst umbling +Ġbat ches +Ġ25 9 +Ġcontrace ptive +Ġprost itute +ens is +De cl +ĠSt rikes +M ilitary +ĠO ath +v acc +pp ings +05 2 +Ġpart Name +amp ing +Rep orts +K I +CH R +Ġsubt ly +sw ers +Bl ake +us ual +Ġcontest ants +Ġcart ridges +ĠGRE AT +Ġbl ush +ĠâĢ º +47 2 +Ġreason ed +ãĥ ¤ +paralle led +Ġd yn +ag ate +Ġnight ly +å Ĩ +55 6 +Ġsem antic +ĠAdv oc +Ġ !! +Ġdisag rees +ĠB W +V eh +Ġharm ing +Ġembr aces +Ġstri ves +Ġin land +ĠK ard +Ġhe ats +ĠGin ny +ut an +ern aut +yl ene +ĠE lev +J D +Ġh ars +ĠStar r +Ġsk ysc +Ġcollabor ators +Us ually +Ġrev olutions +ĠSTAT S +Ġdism antle +Ġconfident ly +Ġkin etic +Al i +Ġpercent ile +Ġextract ing +ill ian +est ead +Ġphysic ists +ĠMarsh al +Ġfell owship +Ġd ashed +ĠU R +ĠSi oux +ĠComp act +am ide +P ython +ĠLe igh +ĠPharm ac +ist rates +her ical +Ġf ue +ĠE min +Ġ( { +ĠNeighbor hood +Ġdisrupt ing +ĠD up +Ġg land +ĠSe v +ĠMar ian +arg on +ĠD und +Ġ< !-- +Ġstr and +Ġstadium s +z os +Ġpsych osis +ĠR ack +Ġbrilliant ly +ï¸ ı +Ġsubmer ged +ĠInst it +ĠCh ow +Ġc ages +ĠH ats +ĠU rs +Ġdil uted +us at +ien ne +ĠMembers hip +ĠBur k +Ġ ie +Ġarche type +D rug +ult on +ĠSp ock +ĠMcK ay +ĠDep end +F eatured +S oc +19 78 +ĠB ere +Ġrelent lessly +Ġcripp ling +Ġar thritis +çĶ Ł +ĠTrop ical +ĠBul g +ĠCher yl +Ġadm irable +Ġsub title +Over ride +Ġorig inating +ĠC CP +Ġsw ore +ĠSo le +ĠDis orders +3 29 +Ġprocess ion +Ġref urb +Ġimm ersed +requ ently +Ġskept ics +Ġcer amic +m itter +en stein +b elt +ĠT IT +b idden +Ġf ir +m ist +> ] +Ġwe ave +ĠParad ox +Ġentr usted +ĠBarcl ays +Ġnovel ist +og ie +80 6 +Ġnin ety +Ġdisag reements +@@@@ @@@@ +ĠAus chwitz +c ars +ĠL ET +t ub +arant ine +P OS +Ġback story +Ġcheer ful +ĠR ag +ek a +bi ased +Ġinexper ienced +ak ra +ĠW itt +t an +Ġrap ist +Ġplate au +ch al +ĠInqu is +exp ression +Ġc ipher +Ġsh aving +add en +re ly +( \ +ism a +ĠReg ulatory +CH AR +ily n +N VIDIA +G U +Ġmur m +la us +Christ opher +Ġcontract ual +ĠPro xy +ĠJa ime +ĠMethod ist +Ġstew ards +st a +per ia +Ġphys iology +Ġbump ed +Ġf ructose +Austral ian +ĠMet allic +ĠMas querade +ar b +Ġprom ul +Ġdown fall +Ġbut cher +Ġb our +ĠIN FORMATION +ĠB is +pect s +ad ena +Ġcontempl ating +ar oo +cent ered +ĠPe aks +Us ed +Ġmod em +Ġg enders +Ġ8 000 +37 1 +Ġm aternity +ĠR az +Ġrock ing +Ġhandgun s +ĠD ACA +Aut om +ĠN ile +Ġtum ult +ĠBenef it +ĠAppro ach +works hop +ĠLe aving +G er +inst ead +Ġvibr ations +Ġrep ositories +49 7 +ĠA unt +ĠJ ub +ĠExp edition +Al pha +Ġs ans +Ġoverd ue +Ġoverc rowd +Ġlegisl atures +Ġp aternal +ĠLeon ardo +Ġexp ressive +Ġdistract ions +Ġsil enced +tr ust +Ġb iking +Ġ5 60 +Ġpropri et +Ġimp osition +Ġcon glomer +Ġ= ================================================================ +ĠTe aching +ĠY ose +int ensive +T own +Ġtroll ing +ĠGr ac +ĠAS US +Y o +Ġspecial s +ĠNep h +ĠGod zilla +Dat abase +ĠHe gel +Ġ27 2 +19 76 +ĠGl oria +Ġdis emb +ĠInvestig ations +ĠB ane +ag ements +St range +Ġtre asury +ĠPl ays +Ġundes irable +Ġwid ening +Ġverb ally +Ġinf ancy +Ġcut ter +f ml +Ġ21 00 +prot otype +f ine +Ġdec riminal +Ġdysfunction al +Ġbes ie +ĠErn st +z eb +Ġnort heastern +Ġa ust +por ate +ĠMar lins +Ġsegreg ated +ew orld +ĠMa her +Ġtra verse +Ġmon astery +ur gy +G ear +s and +Com pl +ĠE MP +Ġpl ent +ĠMer cer +Ġ27 6 +TA BLE +Config uration +H undreds +Ġpr ic +Ġcollabor ating +ĠPar amount +ĠCumm ings +Ġ( < +Ġrecord er +Ġfl ats +Ġ4 16 +wh ose +Font Size +ĠOr bit +Y R +Ġwr ists +Ġb akery +) } +ĠB ounty +ĠLanc aster +Ġend ings +acc ording +ĠSal am +e asy +75 5 +ĠBur r +ĠBarn ett +onom ous +Un ion +Ġpreced ence +ĠScholars hip +ĠU X +Ġroll out +Ġbo on +al m +ĠCan ter +æ µ +Ġround ing +Ġcl ad +Ġv ap +ĠF eatured +is ations +Ġ5 40 +pol ice +Ġunsett ling +Ġdr ifting +ĠLum ia +ĠObama Care +ĠF avor +Hy per +ĠRoth schild +ĠMil iband +an aly +ĠJul iet +H u +Ġrec alling +a head +69 6 +Ġunf avorable +Ġd ances +O x +Ġleg ality +Ġ40 3 +rom ancer +Ġinqu ire +ĠM oves +\ "> +ĠVari ant +ĠMess iah +ĠL CS +ĠBah á +75 6 +Ġeyeb row +Ġ ¥ +ĠMc F +ĠFort y +M as +Ġpan icked +Ġtransform ations +q q +Ġrev olves +ring e +ĠA i +ax e +Ġon ward +ĠC FR +ĠB are +log in +Ġliqu ids +Ġde comp +second ary +il an +ĠCon vert +ami ya +Ġprosecut ing +Ġâī ¡ +ĠYork ers +ĠByr ne +sl ow +aw ei +J ean +Ġ26 9 +ĠSky dragon +Ġ é +ĠNicarag ua +ĠHuck abee +ĠHigh ly +Ġamph ib +ĠPast or +ĠL ets +Ġbl urred +Ġvisc eral +ĠC BO +Ġcollabor ated +z ig +Leg al +Ġapart heid +Ġbr id +Ġpres et +ĠD ET +ĠAM A +× Ķ +arch ing +auc uses +build er +Ġpo etic +Ġem ulator +ĠMole cular +Ġhon oring +ise um +Ġtract or +ĠCl uster +ĠCal m +ared evil +Ġsidew alks +Ġviol in +Ġgeneral ized +ĠAle c +Ġemb argo +Ġfast ball +ĠHT TPS +ĠL ack +ĠCh ill +ri ver +C hel +ĠSw arm +ĠLev ine +ro ying +L aunch +Ġkick er +Ġadd itive +ĠDe als +W idget +cont aining +Ġescal ate +ĠOP EN +Ġtwe aked +Ġst ash +Ġsp arks +ĠEs sex +ĠE cc +Ġconv ict +Ġblog ging +I ER +ĠH L +Ġmurd erers +75 9 +ĠH ib +Ġde pl +ĠJ ord +S ac +Ġdis sect +ĠHow e +os her +Ġcustom izable +ĠFran z +Ġat ro +Ä ĩ +Ġ000 4 +Ġout post +R oss +Ġglyph osate +ĠHast ings +ĠBE FORE +Ġsh ove +o pped +ĠSc ala +Ġam ulet +an ian +Ġexacerb ated +Ġe ater +47 1 +UM E +Ġpul p +izont al +ĠZ am +ĠAT I +imm une +aby tes +Ġunnecess arily +ĠC AT +ĠAx is +Ġvisual ize +à ī +ĠRad ical +f m +Doc uments +ĠFor rest +Ġcontext ual +ĠSy mbol +Ġtent ative +ĠDO ES +ĠGood s +Ġintermitt ent +} : +medi ated +Ġridic ule +Ġathe ism +Ġpath ogens +ĠM um +Ġre introdu +Ġ30 7 +i HUD +Ġflash light +Ġsw earing +Ġp engu +B u +Ġrot ated +ĠCr ane +Ġ() ); +Ġfashion able +Ġendors ing +46 3 +) [ +Ġingest ion +Ġcook s +Ġ9 50 +ot omy +ĠIm am +Ġk a +Ġte aser +ĠGhost s +ĠãĤ µ +19 69 +Ï ĥ +ub by +Ġconver ter +zan ne +end e +ĠPre par +ĠNic kel +ĠChim era +h im +ĠTyr ann +ĠSabb ath +ĠNich ols +Ġra pt +ih ar +Ġshe lling +Ġillum inate +Ġdent ist +ut or +ĠInteg ration +Ġwh ims +ĠLiter ary +Be aut +Ġp archment +ag ara +Br and +Ġder og +â̦ ) +ĠNor se +Ġunw itting +Ġc uc +Ġborder line +Ġupset ting +Ġrec ourse +Ġd raped +ĠRad ar +Ġcold er +ĠPep si +im inary +], [ +65 8 +V i +ĠF rem +ĠP es +Ġveter inary +ĠT ED +ĠEp idem +n ova +k id +Ġdev out +o ct +j ad +M oh +ĠP AY +Ġge ometric +Ġ3 23 +Ġcircum ference +ich ick +19 75 +ĠY uri +ĠSh all +ĠH over +un in +S pr +Ġg raft +ĠHapp iness +Ġdisadvant ages +att acks +Ġhub s +ĠStar Craft +é ĸ +Ġgall eries +ĠKor ra +Ġgrocer ies +ĠGors uch +Ġrap ists +Ġfun gi +ĠTyph oon +V ector +ĠEm press +b attle +4 68 +Ġparas ite +ĠBom ber +S G +ex ist +ĠP f +Ġun se +Ġsurge ons +B irth +ĠUn sure +ĠPrint ed +ĠBehavior al +ĠA ster +Pak istan +Ġun ethical +Ġs v +ĠIo T +Ġlay outs +P ain +Ġconst ants +ĠL W +ĠB ake +Ġtow els +Ġdeterior ation +ĠBol ivia +Ġblind ed +ĠW arden +ĠMist ress +Ġon stage +Ġcl ans +ĠB EST +19 60 +Ġant ique +Ġrhet orical +ĠPer cy +ĠRw anda +, . +B ruce +Ġtra umat +ĠParliament ary +Ġfoot note +id ia +ĠLear ned +se eking +gen ic +Ġdim ensional +H ide +èĢ ħ +Ġintrig ue +in se +Ġle ases +Ġapp rentices +w ashing +Ġ19 26 +V ILLE +Ġsw oop +s cl +Ġbed rooms +on ics +ĠCr unch +comp atible +Ġincap ac +ĠYemen i +ash tra +z hou +d anger +Ġmanifest ations +ĠDem ons +AA F +Secret ary +ACT ED +L OD +Ġam y +ra per +eth nic +4 17 +Ġpos itives +Ġ27 3 +ĠRefuge es +Ġus b +ĠV ald +odd y +ĠMahm oud +As ia +Ġskull s +ĠEx odus +ĠComp et +ĠL IC +ĠM ansion +ĠA me +Ġconsolid ate +storm s +ont ent +99 6 +Ġcl en +Ġm ummy +fl at +75 8 +ĠV OL +oter ic +n en +ĠMin ute +S ov +Ġfin er +R h +ly cer +Ġreinforce ments +ĠJohann es +ĠGall agher +Ġgym n +S uddenly +Ġext ortion +k r +i ator +T a +Ġhippocamp us +N PR +ĠComput ing +Ġsquare ly +Ġmod elling +ĠFor ums +ĠL isp +ĠKrish na +Ġ3 24 +Ġr ushes +Ġens ued +Ġcre eping +on te +n ai +il ater +ĠHorn ets +Ġob livious +IN ST +55 9 +Ġjeopard y +Ġdistingu ishing +j ured +Ġbeg s +sim ilar +ph ot +5 30 +ĠPark way +Ġs inks +ĠHearth stone +ib ur +ĠBat on +Av oid +Ġd ancer +Ġmag istrate +ary n +Ġdisturb ances +ĠRom ero +Ġpar aph +Ġmis chief +âĸ ĵ +ĠSh aria +Ġur inary +r oute +iv as +f itted +Ġeject ed +ĠAl buquerque +Ġ4 70 +Ġirrit ated +ĠZ ip +ĠB iol +à į +Ġden ounce +Ġbin aries +ĠVer se +Ġopp os +ĠKend rick +ĠG PL +Ġsp ew +ĠEl ijah +ĠE as +Ġdr ifted +so far +Ġannoy ance +ĠB ET +47 4 +ĠSt rongh +it ates +ĠCogn itive +oph one +ĠIdent ification +ocr ine +connect ion +Ġbox er +ĠAS D +ĠAre as +Y ang +t ch +ull ah +Ġdece ive +Comb at +ep isode +cre te +W itness +Ġcondol ences +ht ar +Ġhe als +Ġbuck ets +ĠLA W +B lu +Ġsl ab +ĠOR DER +oc l +att on +ĠSteven son +ĠG inger +ĠFriend ly +ĠVander bilt +sp irit +ig l +ĠReg arding +ĠPR OG +Ġse aling +start ing +Ġcard inal +ĠV ec +ĠBe ir +Ġmillisec onds +we ak +per se +Ġster ile +ĠCont emporary +ĠPh ant +ĠCl o +Ġout p +Ġex iled +Ġ27 7 +Ġself ie +Ġman ic +Ġn ano +ter ms +Alex ander +Ġres olves +Ġmillenn ia +Ġexpl odes +Ġconst ellation +Ġadul tery +m otion +D OC +Ġbroad casters +Ġkinderg arten +ĠMay weather +ĠE co +ich o +Ġ28 7 +l aun +Ġm ute +Ġdisc reet +Ġpres chool +Ġpre empt +De lete +ĠFre ed +P i +H K +Ġblock er +ĠC umber +Ġw rought +d ating +Ġins urer +Ġquot as +Ġpre ached +Ġev iction +ĠReg ina +ĠP ens +Ġsevent een +ĠN ass +D ick +Ġfold s +Ġd otted +ĠA ad +Un iversal +Ġp izz +ĠG uru +Ġso ils +Ġno vice +ĠNe ander +Ġst ool +Ġdeton ated +ĠPik achu +ĠMass ive +IV ER +ĠAb del +Ġsubdu ed +Ġtall est +Ġprec arious +Ġa y +r ification +ĠOb j +c ale +Ġun question +cul osis +ad as +igr ated +D ays +Ġque ens +ĠGaz ette +ĠCol our +ĠBow man +ĠJ J +ï ve +Ġdomin ates +Stud ent +Ġm u +Ġback log +ĠElect ro +Tr uth +48 3 +Ġcond ensed +r ules +ĠCons piracy +Ġacron ym +hand led +ĠMat te +j ri +ĠImp ossible +l ude +cre ation +Ġwar med +ĠSl ave +Ġmis led +Ġfer ment +ĠK ah +ink i +ke leton +cy l +ĠKar in +Hun ter +Reg ister +ĠSur rey +Ġst ares +ĠW idth +ĠN ay +ĠSk i +Ġblack list +uck et +Ġexp ulsion +im et +Ġret weet +vant age +Fe ature +Ġtro opers +Ġhom ers +9 69 +Ġconting ency +ĠW TC +ĠBrew er +fore ign +W are +S olar +Ġund ue +RE C +ulner able +path ic +ĠBo ise +Ġ3 22 +Ġarous ed +ĠY ing +ä¸ į +uel ess +Ġp as +Ġmor p +Ġfl oral +Ex press +ud ging +k B +ĠGr anted +Ø ¯ +ĠMich a +ĠGoth ic +ĠSPEC IAL +ĠRic ardo +F ran +Ġadminister ing +6 20 +por a +Ġ ® +Ġcomprom ises +Ġb itten +Ac cept +Th irty +Ð ² +Ġmater ially +ĠTer r +ig matic +ch ains +Ġdo ve +stad t +Mar vel +FA ULT +Ġwind shield +Ġ3 36 +ad ier +Ġsw apping +Ġflaw less +ĠPred ator +ĠMiche le +Ġprop ulsion +ĠPsych ic +Ġassign ing +Ġfabric ation +Ġbar ley +l ust +Ġtow ering +Ġalter cation +ĠBent ley +Sp here +Ġtun a +ĠClass es +Fre edom +un er +L ady +v oice +Ġcool est +or r +Ġpal p +$ { +Ġhyster ia +ĠMet atron +p ants +Ġspawn ing +Exper ts +ĠInvest ors +ĠAn archy +Ġshr unk +ĠVict im +Ġ28 9 +Ġec stasy +ĠB inding +58 5 +ĠMel ody +57 8 +ot ally +ĠE tsy +lig a +Ġapplaud ed +Ġswe ating +Ġredist ributed +Ġpop corn +Ġsem inal +f ur +ĠNeuro science +R and +ĠO st +ĠMadd en +ĠIncre asing +ĠDaw kins +ĠSub way +Ġar sen +cons erv +B UR +Ġsp iked +ĠLy ft +ĠImper ium +ĠDrop box +Ġfav oured +Ġencomp asses +gh ost +Ġins pires +Ġbur geoning +ĠY oshi +ĠVert ical +ĠAud itor +Ġint ending +Ġfilib uster +Bl oom +f ac +ĠCav s +ign ing +Ġcowork ers +ĠBarb arian +rem ember +FL AG +Ġaudit ory +ason ry +Col lege +Ġmut ed +gem ony +ob in +ĠPsych o +9 68 +Ġlav ish +Ġhierarch ical +ĠDr one +ou k +Ġcripp led +ĠMax im +Sl ot +Ġqu iz +ĠV id +if ling +Ġarchae ologists +Ġabandon ment +d ial +le on +ĠF as +T ed +Ġr aspberry +Ġmaneu vers +Ġbehavi ours +Ġins ure +Ġrem od +Sw itch +h oe +Ġsp aced +Ġafford ability +ĠF ern +not ation +ĠBal anced +Ġoccup ies +en vironment +Ġneck lace +Ġsed an +F U +ĠBrav o +Ġab users +ĠAn ita +met adata +ĠG ithub +ait o +ĠF aster +ĠWass erman +ĠF lesh +Ġth orn +r arily +ĠMer ry +w ine +Ġpopul ace +ĠL ann +Ġrepair ing +Ġpsy che +Ġmod ulation +aw aru +âĢĭ âĢĭ +ari j +Ġdecor ations +Ġapolog ise +ĠG arg +app ly +Ġgive away +ĠFl an +ĠWy att +U ber +Ġauthor ised +ĠMor al +HAHA HAHA +activ ate +Ġtorped o +ĠF AR +Ġam assed +ĠA ram +ark in +ĠVict ims +st ab +Ġo m +ĠE CO +Ġopio ids +Ġpurpose ly +ĠV est +Ġer g +at an +ĠSur gery +Ġcorrect ing +ĠOrt iz +ĠBe et +Ġrev oke +Ġfre eway +ĠH iggins +F ail +ĠFar ms +ĠAT P +h ound +Ġp oking +ĠCommun ists +mon ster +iment ary +Ġunlock ing +Ġunf it +we ed +en ario +at ical +ĠEnlight enment +ĠN G +ĠComp ensation +de en +ĠWid ow +ĠCind y +ĠAfter wards +Ġ6 000 +ikh ail +ag ically +Ġrat ified +Ġcasual ty +H OME +p sey +f ee +Ġspark ling +Ġd é +Ġconcert ed +C atal +Ġcomp lying +ĠA res +ĠD ent +Sh ut +Ġsk im +ad minist +Ġhost ilities +ĠG ins +Ġ6 08 +Ġm uddy +ĠMc Int +ĠDec ay +5 25 +Ġconspic uous +ĠEx posure +Ġresc ind +Ġwear able +Ġ3 28 +our met +ah s +ĠRob ots +Ġe clips +inst ance +ĠRE PORT +ĠApp l +0 30 +ĠSk ies +01 00 +Ġfall acy +S ocket +ĠRece iver +Ġsol ves +ĠButter fly +ĠSho pping +ĠFI RE +65 4 +Med ic +Ġsing ers +ĠNeed less +'' '' +isher s +ĠD ive +58 8 +Ġselect ively +Ġcl umsy +88 9 +Ġpurch aser +ear ned +ard y +Ġbenef iting +eng lish +Ġyield ing +ĠP our +Ġspin ach +Ġdel ve +ĠC rom +6 10 +Ġexport ing +ĠMA KE +Ġ26 3 +Ġg rop +Ġenv oy +ĠInqu iry +ĠLu igi +d ry +ĠT uring +Thumbnail Image +ĠVar iety +Ġfac et +Ġfl uffy +Ġexcerpt s +Ġsh orth +ĠOl sen +CL UD +Ġrel iant +ĠUN C +T our +Ġbat hing +Comp any +Ġglobal ization +P red +ĠMalf oy +Ġh oc +j am +craft ed +ĠBond s +ĠKiss inger +Eng land +Ġorder ly +cat entry +Ġ26 1 +Ġexch anging +ĠInt ent +ĠAmend ments +D OM +Ġst out +³³³³³³³³ ³³³³³³³³ +ĠAir bus +Ġ27 8 +hy de +P oll +Item ThumbnailImage +Ġlooph oles +ĠPill ar +Ġexpl or +St retch +A part +Ġun married +Lim it +ĠTransform ers +Ġintellect ually +unct ure +18 00 +Ġd arn +B razil +Ġleft over +ber us +f red +Mine craft +3 26 +ĠForm s +Ġproof s +ĠDes igned +Ġindex es +ĠSupp ose +EM S +ĠL oving +ĠBon nie +im ating +OT US +Ġconduct or +Ġbehav ed +ĠF ren +Ġsy nerg +Ġmillenn ium +Ġcater ing +ĠL auder +W r +ĠY iannopoulos +ĠAT F +Ġensl aved +Ġawaken ed +D VD +ĠED ITION +ĠConc ert +ĠChall enger +ĠH aku +umer ic +Ġdep recated +ĠSH AR +4 12 +Ġdy stop +Ġtremb ling +Ġdread ed +ĠSp ac +p adding +Re pl +ĠG arrison +M ini +Ġun paralleled +am ar +URR ENT +w reck +c ertain +t al +ĠC LS +app ings +Ġsens ed +Ġf encing +ĠPas o +ĠDes k +Ġsc off +Ġcontem plate +ĠL iga +l iquid +75 7 +Ġapp rentice +ĠUCH IJ +5 70 +ĠTh ousand +ĠIll um +Ġchampion ed +ãĤ Į +Ġelect ors +Ġ3 98 +ĠH ancock +round ed +ĠJ OHN +Ġuns atisf +Ġqual ifier +ĠGad get +EN E +Ġdead liest +ĠPl ants +Ġ ions +Ġacc ents +Ġtwe aking +Ġsh aved +F REE +ĠCh aser +Again st +9 60 +Ġmeth amphetamine +Ġnormal ized +Ġ$ \ +ĠPre cision +ĠGu am +Ġch oked +ĠX II +ĠCast ing +Tor rent +Ġscal p +ĠJagu ar +w it +Ġsem ic +ix ie +ĠG ould +Ġconf ines +N usra +ĠL on +ĠJ ugg +y cle +ĠCod ec +E gypt +Ġrest rain +ĠAl iens +Ġch oking +ĠD unk +ĠBell a +ab c +Ġsl ang +Ġneuro trans +s av +Ġempower ment +â ĨĴ +Ġclim bers +ĠM im +ĠF ra +ros se +Cap ital +ĠCth ulhu +Inter face +Ġprof icient +ĠIN TO +Ġ3 18 +ront al +5 80 +ĠDes pair +K enn +Ġscrim mage +ĠCo at +as ions +Ġwall paper +ĠJ ol +Ġresurg ence +Ġant iv +ĠB alls +² ¾ +Ġbuff ers +Ġsub system +ĠSt ellar +ĠL ung +A IDS +Ġerad icate +Ġblat antly +Ġbehav es +ĠN un +Ġant ics +ex port +DE V +w b +Ġph p +ĠInteg rity +Ġexplore r +Ġrev olving +auth ored +g ans +Ġbas k +Ġas ynchronous +å į +TH ING +69 8 +G ene +ĠR acer +ĠN ico +iss ued +Ġser mon +p ossibly +Ġsize of +Ġentrepreneur ial +ox in +ĠMin erva +Ġpl atoon +n os +ri ks +A UT +ĠAval anche +ĠDes c +ij 士 +ĠP oc +Ġconf erred +Î » +Ġpat ched +F BI +66 2 +Ġfract ures +Ġdetect s +Ġded icate +Ġconstitu ent +Ġcos mos +W T +Ġswe ats +Ġspr ung +b ara +s olid +Ġuns us +Ġbul ky +ĠPhilipp e +ĠFen rir +Ġtherap ists +ore al +^^ ^^ +Ġtotal ed +Ġboo ze +ĠR PC +Prosecut ors +Ġdis eng +ĠSh ared +Ġmotor cycles +Ġinvent ions +Ġlett uce +ĠMer ge +ĠJ C +Ġspiritual ity +ĠWAR NING +Ġunl ucky +ĠT ess +Ġtong ues +ĠD UI +T umblr +Ġle ans +Ġinv aders +Ġcan opy +ĠHur ricanes +ĠB ret +ĠAP PLIC +id ine +ick le +Reg arding +Ġve ggies +Ġe jac +ju ven +F ish +D EM +ĠD ino +Th row +ĠCheck ing +be ard +( & +Ġj ails +Ġh r +trans fer +iv ating +Ġfle ets +ĠIm ag +ĠMc Donnell +Ġsnipp et +Is a +ĠCh att +ĠSt ain +ĠSet FontSize +ĠO y +ĠMathemat ics +49 4 +Ġelectro ly +ĠG ott +ĠBr as +B OOK +ĠF inger +d ump +Ġmut ants +Ġrent als +Ġinter tw +Ġc reek +ail a +Bro ther +ĠDisc ord +pe e +raw ler +Ġcar p +Ġ27 9 +ãĤ· ãĥ£ +rel ations +Ġcontr asts +Col umn +Ġrec onnaissance +Ġun know +Ġl ooting +Ġregul ates +Ġopt imum +ĠChero kee +ĠA ry +Lat est +Ġroad side +Ġd anced +ĠUnic orn +A cknowled +Ġuncont roll +ĠM US +at io +ch ance +ha ven +VAL UE +Ġfavour ites +Ġceremon ial +b inary +pe ed +wood s +EM P +Ġv ascular +Ġcontempl ated +Ġbar ren +ĠL IST +Y ellow +ospons ors +Ġwhisk y +ĠM amm +ĠDeV os +min imum +H ung +44 2 +P ic +ĠSnap dragon +77 6 +Ġcar ving +Ġund ecided +Ġadvantage ous +Ġpal ms +ĠA Q +Ġst arch +L oop +Ġpadd le +Ġfl aming +ĠHor izons +An imation +bo ost +Ġprob abilities +ĠM ish +Ġex odus +ĠEditor ial +Ġfung us +Ġdissent ing +ĠDel icious +rog ram +ĠD yn +d isk +t om +Ġfab rics +ĠC ove +ĠB ans +Ġsoft en +ĠCON S +Ġin eligible +Ġestim ating +ĠLex ington +pract ice +of i +Ġshe dding +ĠN ope +Ġbreat hed +ĠCorinth ians +y ne +ek i +B ull +Ġatt aching +reens hots +Ġanaly se +ĠK appa +Ġuns ustainable +Ġinter pol +ank y +he mer +Ġprot agonists +Ġform atted +ĠBry ce +ĠAch illes +ĠAb edin +sh ock +Ġb um +b os +qu a +ĠW arn +q t +ĠDi abetes +8 64 +ĠIn visible +Ġvan ish +Ġtrans mitting +Ġmur ky +ĠFe i +Ġawa ited +ĠJur assic +umm ies +Ġmen acing +g all +C ath +B uilt +ild o +ĠV otes +Ġon t +Ġmun itions +ĠFre em +ÃŃ n +Ġdec ency +lo pp +ie ved +ĠG ord +Ġun thinkable +ĠNews week +Ġ3 21 +He at +Ġpresent er +ji ang +Ġpl ank +ĠAval on +Ġben z +ĠR out +Ġslam ming +ĠD ai +ou ter +ĠCook ie +ĠAlic ia +ge y +Ġvan ity +Ġow l +á µ +t ested +ĠAw akens +Ġcan v +Ġblind ly +ĠRid ley +ĠEm ails +Requ ires +ĠSer bian +ograp hed +if rame +eter ia +Ġaltern ating +qu iet +Ġsoc iology +ĠUn lock +ĠCommun ism +Ġo ps +Ġatt ribution +Ġab duction +ĠAb ram +Ġsidel ined +ĠB OOK +Ġref ining +ĠFe eling +ĠOs lo +ĠPru itt +r ack +ang ible +Ġcaut iously +ĠM ARK +eed s +M ouse +ĠStep h +ĠP air +S ab +99 7 +ĠBa al +B ec +Ġcomm a +ĠP all +ĠG ael +Ġmisunder stand +ĠP esh +Order able +Ġdis mal +ĠSh iny +% " +Ġreal istically +Ġpat io +ĠG w +ĠVirt ue +Ġexhaust ing +wh atever +oph ys +y ip +4 18 +Ad just +ĠWa iting +ess on +ĠMaz da +ĠDo zens +Ġstream lined +Ġincompet ence +ĠM eth +Ġeth os +ON ES +Ġincent iv +Ġgr itty +ĠBut cher +Head er +Ġexp onential +Ã Ł +Ġcorrel ate +Ġcons ensual +s ounding +R ing +Orig in +Ġcon clusive +fe et +ac ly +ĠF ernandez +Buy able +Ġd ucks +aunt lets +Ġel ong +Ġ28 6 +Ġsim ul +G as +ĠK irst +Ġprot r +ĠRob o +ĠAo E +op ol +Ġpsych ologically +sp in +ilater ally +ĠCon rad +W ave +44 1 +ĠAd vertisement +ĠHarm on +ĠOri ental +is Special +Ġpresum ptive +Ġw il +ĠK ier +ne a +Ġp pm +Ġhar bour +ĠW ired +comp any +Ġcor oner +atur days +ĠP roud +ĠN EXT +ĠFl ake +val ued +ce iver +Ġfra ught +Ġc asing +Ġrun away +Ġg in +ĠLaure nt +ĠHar lem +ĠCur iosity +qu ished +Ġneuro science +ĠH ulu +Ġborrow er +Ġpetition er +ĠCo oldown +W ARD +Ġinv oking +conf idence +For ward +Ġst s +pop ulation +Delivery Date +Fil m +ĠC ov +quick Ship +quickShip Available +prim ary +isSpecial Orderable +inventory Quantity +channel Availability +BO X +ĠMulti player +ĠJen ner +77 8 +ĠM d +Ġ~ /. +M N +Ġchild ish +Ġantioxid ant +ĠChrom ebook +Ġ27 4 +Ġscreen play +Ġadvent urous +ĠRelations hip +respons ive +ming ton +Ġcorner stone +ĠF ey +F IR +Ġrook ies +ĠF eaturing +Ġorig inate +Ġelectro des +ant es +Ġscript ures +Ġgl ued +Ġdiscont ent +Ġaff licted +lay out +B rave +Ġm osa +ĠQuant ity +ĠH ik +w inner +H ours +Ġent ail +ĠCell s +olog ue +Ġv il +Ġpre acher +Ġdecor ative +d ifferent +Ġprejud ices +ĠSm oking +ĠNotting ham +so Type +Ġrhyth ms +ĠAl ph +bl ast +Ste el +ĠDaniel le +Ġstr ife +Ġrem atch +so DeliveryDate +ĠF ork +t rip +ol ulu +hes es +C G +ĠPOLIT ICO +ost a +ĠDr ift +é¾įå ¥ +é¾įå¥ ij士 +Ġvet ting +ĠJin ping +ĠRec ession +Min or +ĠF raud +enf ranch +Ġconven ed +ĠNA ACP +ĠMill ions +ĠFarm ing +ĠW oo +ĠFl are +rit o +imm igrant +Ġvac ancy +ĠHE AD +ĠV aj +eg al +ĠV igil +Stud y +Ġru ining +Ġr acks +Ġhe ater +ĠRand olph +ĠBr ush +ĠT ir +Ø ¨ +Ġc ov +% ] +Ġrecount s +ĠO PT +ĠM elt +Ġtr uce +Ġcas inos +Ġcrus ade +Ġcarn age +Ġstri pe +ĠK yl +Text ures +Ġ6 98 +Ġpro clamation +Ġgood ies +Ġ........ .. +pro claimed +P olit +Ġtop ical +Ġspecial ize +ĠA min +g m +Ġanch ored +Ġbear ings +s ample +ĠHigh land +ĠAut ism +Ġmerc enary +Ġinterview er +L ER +ĠSom ers +Ġembry o +ĠAss y +Ġ28 1 +ĠEd iting +ĠCh osen +6 60 +Ġp ci +ĠThunder bolt +BI LL +Ġchuck led +jri wal +h of +Ġearth ly +() { +ind ependence +Ġdisp ers +ĠV endor +ĠG areth +Ġp als +P enn +ĠSub mit +ic um +Th u +Ġcl andestine +Ġcann ibal +ĠCl erk +E Stream +gal itarian +âĻ ¥ +g ew +Ġhor rend +ĠL ov +ĠRe action +ocr in +Class ic +Ġecho ing +Ġdiscl osing +ĠIns ight +og un +ĠInc arn +upload s +pp erc +guy en +Ġ19 01 +ĠB ars +68 7 +Ġb ribes +ĠFres no +ur at +ĠRe ese +Ġintr usive +Ġgri pping +ĠBlue print +ĠR asm +un ia +man aged +ĠHeb do +Ġ3 45 +Ġdec oding +Ġpo ets +Ġj aws +ĠF IGHT +am eless +ĠMead ows +ĠHar baugh +Inter view +ĠH osp +ĠB RA +Ġdelet ion +m ob +W alker +ĠMoon light +ĠJ ed +ĠSoph ia +Ġus ur +Ġfortun ately +ĠPut ting +ĠF old +Ġsan itation +Ġpart isans +IS ON +B ow +ĠCON C +ĠRed uced +ĠS utton +Ġtouch screen +Ġembry os +âĢ¢âĢ¢ âĢ¢âĢ¢ +ĠK rug +com bat +ĠPet roleum +Ġam d +ĠCos mos +Ġpresc ribing +Ġconform ity +ours es +Ġplent iful +Ġdis illusion +ĠEc ology +itt al +Ġf anc +Ġassass inated +regn ancy +Ġperenn ial +ĠBul lets +Ġst ale +Ġc ached +ĠJud ith +ĠDise ases +All en +Ġl as +Ġsh ards +ĠSu arez +ĠFriend ship +inter face +ĠSupp orters +add ons +46 2 +ĠIm ran +ĠW im +Ġnew found +ĠM b +An imal +Ġd arling +and e +Ġrh y +ĠTw isted +pos al +yn ski +Var ious +× ľ +ĠK iw +uy omi +Ġwell being +ĠL au +an os +Ġunm ist +Ġmac OS +Ġrest room +ĠOl iv +ĠAir ways +Ġtimet able +9 80 +Ġrad ios +v oy +ias co +Ġcloud y +ĠDraw ing +Any thing +Sy ria +ĠH ert +st aking +Ġun checked +Ġb razen +ĠN RS +69 7 +onom ic +est ablish +Ġl eng +Ġdi agonal +ĠF ior +L air +ĠSt ard +Ġdef icient +jo ining +be am +Ġomn ip +Ġbl ender +Ġsun rise +Mo ore +ĠF ault +ĠCost ume +ĠM ub +Fl ags +an se +Ġpay out +ĠGovern ors +ĠD illon +ĠBan ana +N ar +Ġtra iled +Ġimperial ist +um ann +ats uki +4 35 +ĠRoad s +Ġsl ur +ĠIde ally +Ġt renches +C trl +Ġmir rored +ĠZ el +ĠC rest +Comp at +ĠRoll s +sc rib +ĠTra ils +omet ers +w inter +Ġimm ortality +il ated +Ġcontrad icts +un iversal +ill ions +ĠM ama +opt im +AT URE +Ġge o +et ter +ĠCar lo +4 24 +Ġcanon ical +ĠStrongh old +n ear +Ġperf ume +Ġorche stra +od iac +Ġup he +Ġreign ing +vers ive +Ġc aucuses +ĠD EM +Ġinsult ed +Ġ---- -- +ĠCr ush +Ġroot ing +ĠWra ith +Ġwh ore +Ġto fu +C md +ĠB ree +Ġ$ _ +Ġr ive +ĠAd vertising +Ġw att +ĠH O +Ġpersu asive +ĠParam eters +Ġobserv ational +ĠN CT +ĠMo j +ĠSal on +Ġtr unc +Ġexqu isite +ĠMar a +Ġpo op +ĠAN N +Ex c +ĠWonder ful +ĠT aco +Ġhome owner +ĠSmith sonian +orpor ated +mm mm +Ġlo af +ĠYam ato +ĠInd o +Ġcl inging +á s +Ġimm utable +h ub +Or ange +Ġfingert ips +ĠWood en +ĠK idd +ĠJ PM +ĠDam n +C ow +c odes +48 2 +Ġiniti ating +ĠEl k +ĠCut ting +Ġabsent ee +ĠV ance +ĠLil ith +G UI +Ġobsc ured +Ġdwar ves +ĠCh op +ĠB oko +Val ues +Ġmult imedia +Ġbrew ed +Reg ular +CRIP TION +ĠMort al +Ġa pex +Ġtravel er +Ġbo ils +Ġspray ing +Rep resent +ĠStars hip +4 28 +Ġdisappro val +Ġshadow y +Ġlament ed +ĠRe place +ĠFran ç +67 7 +d or +Ġunst oppable +Ġcoh orts +gy n +ĠClass ics +ĠAm ph +Ġsl uggish +ĠAdd iction +ĠPad res +Ġins cription +Ġin human +min us +ĠJere miah +at ars +Ter ror +ĠT os +ĠSh arma +ast a +c atch +Ġpl umbing +ĠTim bers +Sh ar +H al +ĠO sc +Ġcou pling +hum ans +Ġsp onge +Ġid ols +ĠSp a +ĠAdv ocate +ĠBe ats +lu a +Ġtick ing +Ġload er +ĠG ron +8 10 +Ġstim ulated +Ġside bar +ĠManufact urer +ore And +19 73 +Ġpra ises +ĠFl ores +dis able +ĠElect rical +ra ise +E th +Ġmigr ated +Ġlect urer +K ids +ĠCa vern +Ġk ettle +Ġgly c +ĠMand ela +ĠF ully +å§ « +FIN EST +Ġsquee zing +ĠRy der +amp oo +oreAnd Online +Inst oreAndOnline +Buyable InstoreAndOnline +Ġcommem orate +ĠRamp age +Aust in +ĠSh roud +ĠRu ins +9 15 +ĠK H +Ġwater front +ĠE SC +b aby +ĠC out +ĠEm blem +Ġequival ents +49 2 +Un ique +ĠNiet zsche +brow ser +Ġim itation +ĠWere wolf +ĠKir in +ac as +' ," +Ġà ¾ +Review ed +Ġc unt +Ġvo ic +ĠLen ovo +Ġbond ed +48 1 +Ġinhib itors +Ġendeav ors +ĠHav ana +ĠSt out +ĠJ olly +A ctor +*/ ( +Ġoccur rences +ĠT ens +Incre ased +ĠACT ION +Ġ ãĢĮ +ĠRank ings +ĠB reat +Ġ30 9 +D ou +Ġimpact ing +ĠDuc hess +pre fix +Q B +Ġsummon ing +Ġbest owed +ĠKe pler +ĠPOW ER +c ube +ĠK its +ĠG rip +Ġop ium +Ġrep utable +t oc +ich ael +ĠR ipple +Ġcaf é +ĠZ oom +ĠBur ma +Ġwa ive +Ġst alls +Ġdem eanor +inc erity +Ġfluor ide +ĠSH OULD +Par is +Ġlong ing +Ġpl at +Ġgross ly +Ġbull s +Ġshowc asing +ex pected +ĠG addafi +engine ering +Re peat +ĠK ut +Ġconce ivable +Ġtrim med +osc ope +ĠCand idate +ĠT ears +rol og +Lew is +S UP +Ġroad map +Ġsal iva +Ġtrump et +Jim my +Ġmirac ulous +Ġcolon ization +Ġam put +ĠGN OME +ate ch +D ifferent +ĠE LE +ĠGovern ments +ĠA head +ãħĭ ãħĭ +word press +L IB +ĠIn clude +ĠDor othy +0 45 +ĠColomb ian +Ġle ased +88 4 +Ġde grading +ĠDa isy +i ations +Ġbapt ized +Ġsurn ame +co x +Ġblink ed +ãĥ ¢ +Ġpoll en +Ġder mat +Ġre gex +ĠNich olson +ĠE ater +ç ľ +rad or +Ġnarrow er +Ġhur ricanes +Ġhalluc inations +r idden +ISS ION +ĠFire fly +Ġattain ment +Ġnom inate +Ġav ocado +ĠM eredith +Ġt s +Ġreve rence +Ġe uph +Ġcr ates +ĠT EXT +Ġ4 43 +Ġ3 19 +J SON +iqu ette +Ġshort stop +ic key +Ġpro pelled +Ġap i +ĠTh ieves +77 9 +Ġovers aw +Ġcol i +ĠNic ola +Ġover cl +ik awa +ĠC yr +Ġ38 4 +78 9 +ĠAll ows +10 27 +Det roit +TR Y +set up +ĠSocial ism +Sov iet +s usp +ĠAP R +ĠShut down +Ġal uminium +zb ek +ĠL over +GGGG GGGG +Ġdemocr acies +Ġ19 08 +ĠMer rill +ĠFranco is +gd ala +Ġtraff ickers +ĠT il +ĠGo at +Ġsp ed +ĠRes erv +Ġpro d +55 2 +Ġc ac +ĠUn iv +ĠSch we +Ġsw irling +ĠWild erness +ĠEgg s +Ġsadd ened +Ġarch aic +H yd +Ġexcess ively +B RE +Ġaer ospace +ĠVo ices +Cra ig +Ġign ited +In itially +ĠMc A +Ġhand set +Ġreform ing +Ġfrust rations +ĠDead pool +ĠBel ichick +ract or +ĠRagnar ok +ĠD rupal +ĠApp roximately +19 20 +ĠHub ble +arm or +ĠSar as +ĠJon as +Ġnostalg ic +Ġfeas ibility +Sah aran +Ġorb iting +Ġ9 70 +R u +Ġsh in +ĠInvestig ators +Ġinconsist encies +ĠP AN +B G +Ġgraz ing +Ġdetect ors +ĠStart up +ĠFun ny +ĠNa omi +Consider ing +Ġh og +ut f +ce mic +Ġfort ified +ĠFun ctions +Ġcod ec +nut rition +H at +" ! +micro soft +55 8 +ĠTh in +ĠA CE +Al ias +ĠO PS +p apers +P K +ãĢ İ +Ġimpro bable +N orthern +equ al +Ġlook out +Ġty res +ĠMod ified +ĠK op +Abs olutely +Ġbuild up +sil ver +Ġaud i +Ġgro tesque +ĠSab er +ĠPres byter +ON Y +Ġglac iers +ĠSho als +ĠK ass +ĠH RC +ĠNic ol +ĠL unch +ĠF oss +âĸ Ĵ +AD RA +ĠOne Plus +o ing +ground s +Ġincident al +Ġdatas ets +68 9 +ĠClarks on +Ġassemb ling +ĠCorrect ions +Ġdrink ers +Ġqual ifiers +Ġle ash +Ġunf ounded +ĠH undred +Ġkick off +T i +Ġrecon cil +ĠGr ants +ĠCompl iance +ĠDexter ity +Ġ19 06 +w arn +D allas +Max imum +n ard +av ia +be aut +ens itivity +tr ace +Ġpione ers +ĠF ract +ãĢ ı +Ġpre cept +Ġgloss y +ĠI EEE +Ac ross +Ġ6 80 +S leep +che on +Ġsatir ical +ĠMin otaur +ĠCla ude +Ġr é +ape go +Ġcar rot +ĠSem in +ino a +Ġz o +Ind ependent +Ġdiagn oses +ĠC ue +M AR +Ġrend ition +ĠK ik +Ġpath ology +Ġselect s +Link edIn +Ġass ay +ĠD res +Ġtext ual +post ed +IT AL +ĠM aul +N eal +Ġinter connected +Ġerr atic +ĠVir us +Ġ5 30 +Ġenvironmental ists +ĠP helps +Ġeng agements +ĠIN ST +Ġeconom ical +nox ious +Ġg earing +izz y +Ġfavor ably +ĠMcG ill +T erm +Ġh anged +Ġball park +ĠRe yes +Ġbe ware +ĠP sal +ĠMass acre +q i +Ġin accessible +acly sm +Ġfr ay +ill ac +Ġbitter ly +ĠCert ification +Mich igan +Ġir respective +al ore +Em pty +Ġendorse ments +Ġund et +f g +equ ipped +Ġmerc iless +ĠC ust +Ġimm ature +Ġvou cher +ĠBlack well +Ñ ı +h awk +dis ciplinary +ile e +ĠMak oto +ĠD ude +ãĥĩ ãĤ£ +Y ears +Ġin ver +Ġsh aman +ĠY ong +ip el +ell en +ĠCath y +br ids +Ġs arc +65 1 +N ear +Ġground work +Ġam az +Ġ4 15 +ĠHunting ton +hew s +ĠB ung +Ġarbit rarily +ĠW it +ĠAl berto +Ġdis qualified +best os +46 1 +Ġp c +Ġ28 4 +ro bat +Rob in +Ġh ugs +ĠTrans ition +ĠOcc asionally +Ġ3 26 +ĠWh ilst +ĠLe y +Ġspaces hip +cs v +Ġun successfully +ĠA u +le ck +ĠWing ed +ĠGrizz lies +. � +Ġne arer +ĠSorce ress +ĠInd igo +El se +8 40 +let es +Co ach +Ġup bringing +ĠK es +Ġseparat ist +Ġrac ists +Ġch ained +Ġabst inence +lear ning +Ġrein stated +Ġsymm etry +Ġremind ers +ĠChe vy +Ġm ont +Ġexempl ary +ĠT OR +Z X +Ġqual itative +ĠSt amp +ĠSav annah +ĠRoss i +Ġp aed +Ġdispens aries +ĠWall s +ĠCh ronic +Ġcompliment ary +ĠBeir ut +Ġ+ --- +igs list +Ġcrypt ographic +mas ters +ĠCap itals +Ġmax imal +Ġent ropy +Point s +Ġcombat ants +l ip +ĠGl ob +ĠB MC +ph ase +th ank +HT TP +Ġcomm uter +Ġ\( \ +.. / +ĠReg ener +ĠDO I +ĠActiv ision +Ġsl it +os al +RE M +Ġch ants +Y u +Ke ys +Bre xit +ĠFor ced +Ari zona +Ġsquad ron +IS O +ĠMal one +Ġ3 38 +Ġcontrast ing +Ġt idal +Ġlib el +Ġimpl anted +Ġupro ar +ĠC ater +Ġpropos itions +M anchester +ĠEuro s +it amin +G il +ĠEl ven +ĠSe ek +ĠB ai +Ġredevelop ment +ĠTown s +ĠL ub +! ", +al on +K rist +Ġmeas urable +Ġimagin able +Ġapost les +Y N +7 60 +Ġster oid +Ġspecific ity +ĠL ocated +ĠBeck er +ĠE du +ĠDiet ary +uts ch +ĠMar ilyn +Ġbl ister +ĠM EP +ĠK oz +ĠC MS +y ahoo +ĠCar ney +Ġbo asting +ĠC aleb +By te +read s +ad en +Pro blem +ĠWood ward +S we +S up +ĠK GB +Set up +Ġtac it +Ġret ribution +Ġd ues +ĠM ü +. ? +ä¸ Ń +p ots +Ġcame o +ĠP AL +educ ation +A my +like ly +g ling +Ġconstitution ally +ĠHam m +ĠSpe ak +Ġwid gets +br ate +Ġcra ppy +ĠI ter +Ġanticip ating +ĠB out +P ixel +ĠY ep +ĠLaur ie +Ġh ut +Ġbullet in +ĠSal vation +Ġch ats +ear able +Honest ly +AL TH +onse qu +c ult +isco very +ovy ch +Ġse lves +ĠSat oshi +S ounds +Ġconver gence +ĠRosen berg +19 74 +Ġnas al +Ġfull est +Ġfer ocious +x us +ist e +AM S +Ġlobb ied +Ġso othing +ĠGun n +t oday +0 24 +Ġinspir ational +ĠN BN +p b +g ewater +or ah +all owed +ĠCol iseum +Ġspecial izing +Ġinsane ly +ĠT ape +del ay +Ġt arn +ĠP ound +Ġmel anch +Ġdeploy ments +il and +Ġless en +Ġfur ry +ĠUE FA +Ġblood shed +ĠMe ier +ither ing +Ġhe irs +ĠJ aw +ax ter +ĠPublic ations +Ġal ters +int ention +ĠWinc hester +d etermination +ĠLif etime +th in +Mon ster +7 80 +Ġapprox imation +Ġsuper markets +ĠSecond s +or os +h uge +Ġb ribe +ĠLIM ITED +un ed +Ġmis interpret +ĠIn jury +Ġ3 67 +Ġthreshold s +ĠCarn ival +Ġgastro intestinal +Ġguid eline +Ġde ceived +f eatures +Ġpurported ly +ĠRon nie +ĠNew t +Ġsp acious +as us +Ġsuperhero es +ĠCyn thia +le gged +k amp +ch io +Ġth umbnail +ĠShir ley +ill ation +Ġshe ds +ĠZ y +E PA +Ġdam s +Ġy awn +n ah +ĠPe ggy +ĠE rie +ĠJu ventus +ĠF ountain +r x +don ald +al bum +ĠComp rehensive +Ġc aching +ĠU z +ulner ability +ĠPrinc iple +ĠJ ian +ing ers +cast s +ĠOs iris +ch art +t ile +ĠTiff any +ĠPatt on +ĠWh ip +Ġovers ized +J e +ĠCind erella +ĠB orders +ĠDa esh +M ah +Ġdog ma +Ġcommun ists +v u +Coun cil +Ġfresh water +Ġw ounding +Ġdeb acle +Ġyoung ster +Ġthread ed +ĠB ots +ĠSav ings +ãģ Ĥ +ol ing +oh o +Ġillum ination +M RI +Ġlo osen +tr ump +ag ency +ur ion +Ġmoment arily +ĠCh un +ĠBud apest +ĠAl ley +D isk +Ġaston ished +ĠCon quer +ĠAccount ing +h aving +ĠWe in +ĠAl right +Ġrev olver +Ġdel usion +Ġrelic s +Ġad herent +qu ant +Ġhand made +or io +Ġcomb ating +c oded +Ġquad ru +re th +N ik +ĠTrib al +ĠMyster ious +Ġin hal +ĠWin ning +ĠClass ification +ch anged +Ġun ab +Ġsc orn +icip ated +w l +ond uctor +Ġrein forcing +ĠChild hood +an ova +Ġadventure r +Ġdoctor al +ĠStrateg ies +Ġengulf ed +ĠEnc ounter +Ġl ashes +Crit ical +ric ular +ĠU TF +oci ation +check ing +ĠConsult ing +Run time +per iod +ĠAs gard +Ġdist illed +ĠPas adena +ĠD ying +ĠCOUN TY +Ġgran ite +Ġsm ack +Ġparach ute +ĠS UR +Virgin ia +ĠF urious +78 7 +ĠO kin +Ġcam el +ĠM bps +19 72 +ĠCh ao +ĠC yan +j oice +ef er +ĠW rap +ĠDeb ate +S eg +Ġfore arm +ĠIgn ore +Ġtim estamp +Ġprob ing +ĠNo on +ĠGra il +f en +Ġdorm ant +ĠFirst ly +ĠE ighth +ĠH UN +ĠDes ire +or as +Girl s +ĠDes mond +z ar +am ines +O AD +exec ute +Ġbo obs +ĠAT L +_ ( +Chel sea +Ġmasturb ation +ĠCo C +Ġdestroy er +ĠCh omsky +Ġsc atter +ĠAss ets +79 6 +ĠC argo +Ġrecept ive +ĠSc ope +Ġmarket ers +Ġlaun chers +Ġax le +ĠSE A +se q +ĠM off +f inding +ĠGib bs +Georg ia +extreme ly +N J +Ġlab orers +st als +Ġmed iation +ĠH edge +at own +Ġi od +des pite +v ill +J ane +ex istence +Ġcoinc ided +ĠUt ilities +ĠChe ap +Ġlog istical +Ġcul mination +ĠNic otine +p ak +F older +Ġrod ents +st uff +Ġlaw fully +Ġreper to +io ch +j j +Dial ogue +HH HH +lic tion +Look s +Ġ29 7 +Ġtur rets +ĠAb andon +Ġinc ess +ĠTraff ord +Ġcur led +Ġprefer ring +Ġprivat ization +Ġir resist +ĠP anda +ĠSh ake +ĠMc Gr +ãĥ Ħ +und ers +Ġdiscrim inated +Ġbart ender +I LE +Atl antic +Ġprop ensity +ĠW iz +ĠG im +con ference +Ġrein forces +G h +w agon +Ġe erie +F al +Ġhug ged +rac ist +R IC +F u +Ġf iller +ĠSt ub +Ġeng raved +ĠWrest le +Ġimagin ative +ĠPe er +ĠFact ors +an us +ĠDrac ula +mon itor +Ġrou ters +ib ia +ĠBoo lean +end ale +ĠSl aughter +ĠSh ack +R FC +ĠSpiel berg +S ax +ĠPH OTO +ĠCl over +ĠR ae +Dep ending +ĠMem or +ar am +Ġpier ced +Ġcur tains +v ale +ĠInqu isition +ĠP oke +Ġforecast ing +Ġcompl ains +S ense +ĠHer mes +isc overed +Ġb ible +ĠMor ph +Ġg erm +78 5 +D ON +Ġcon gen +Ġcr ane +ĠD PR +Ġrespect fully +R oom +ĠN aw +ĠDal ai +re ason +ĠAng us +Educ ation +ĠTitan ic +Ë ľ +Ġo val +un ited +Ġthird s +Ġmoist ur +ĠC PC +M iami +Ġtent acles +ĠPol aris +ex c +ex clusive +ĠPra irie +Ġcol ossal +ĠBl end +sur prisingly +ÃŃ s +Ġindo ctr +Ġbas al +ĠMP EG +und o +Spl it +Develop ment +Ġlan tern +19 71 +Ġprov ocation +Ġang uish +ĠB ind +ĠLe ia +duc ers +ipp y +conserv ancy +Ġinitial ize +ĠTw ice +ĠSu k +Ġpred ic +Ġdi ploma +Ġsoc iop +Ing redients +Ġhamm ered +ĠIr ma +Q aida +Ġglim ps +ĠB ian +Ġst acking +Ġf end +gov track +Ġun n +dem ocratic +ig ree +Ġ5 80 +Ġ29 4 +Ġstraw berry +ID ER +Ġcher ished +ĠH ots +Ġinfer red +Ġ8 08 +ĠS ocrates +O regon +ĠR oses +ĠFO IA +Ġins ensitive +Ġ40 8 +Recomm end +ĠSh ine +Ġpain staking +UG E +ĠHell er +ĠEnter prises +I OR +ad j +N RS +L G +Ġalien ated +Ġacknowled gement +ĠA UD +ĠRen eg +Ġvou chers +Ġ9 60 +Ġm oot +ĠDim ensions +Ġc abbage +B right +g at +ĠK lu +Ġlat ent +Ġz e +ĠM eng +Ġdis perse +Ġpand emonium +H Q +Ġvirt uous +ĠLoc ations +ee per +prov ided +Ġse ams +ĠW T +iz o +PR OV +Ġtit anium +Ġrecol lection +Ġcr an +Ġ7 80 +ĠN F +49 1 +64 2 +p acking +59 8 +text ure +Sp ider +fre edom +cipl ed +ĠTAM ADRA +âĻ ¦ +aut hent +ĠW ANT +r ified +Ġr ites +Ġuter us +k iss +Ġâī ¤ +Ġsk illet +Ġdis enfranch +ĠGa al +Comp an +Ġage ing +gu ide +B alt +Ġiter ator +Ġdiscretion ary +t ips +Ġprim ates +ĠTechn ique +ĠPay ments +az el +ĠR OCK +stant ial +0 60 +Ġd mg +ĠJack ets +ĠPlay off +Ġnurs ery +ĠSy mb +art on +Ġannex ation +Color ado +Ġco ils +ĠSh oes +âĦ¢ : +ĠRo z +COM PLE +ĠEve rest +ĠTri umph +J oy +G rid +à ¼ +process or +ĠPros per +ĠSever us +ĠSelect ed +r g +ĠTay yip +St ra +Ġski ing +Ġ? ) +Ġpe g +Tes la +Ġtime frame +Ġmaster mind +ĠN B +scient ific +ĠSh it +gener ic +IN TER +N UM +Ġst roll +ĠEn ix +ĠM MR +ĠE MS +m ovie +Ĥ ª +Ġminim izing +idd ling +Ġilleg itimate +Ġprot otyp +Ġpremature ly +Ġmanual s +obb ies +ĠCass idy +D EC +des ktop +Ġaer os +Ġscreen ings +Ġdeb ilitating +ĠGr ind +nature conservancy +Ġf ades +ter mination +assets adobe +F actor +Ġdefinitive ly +P oké +ap ult +ĠLaf ayette +C orn +ĠCor al +Ġstagn ant +T ue +Ġdissatisf action +G ender +Ġkid neys +ĠG ow +ĠDef eat +ĠAsh ton +Ġcart els +Ġfore closure +ĠExpl ore +stre ngth +ot in +Ġveterin arian +Ġf umble +Ġpar ap +ĠSt rait +r ils +Ġpr ick +ĠBerm uda +ĠAm munition +skin ned +Ġab ound +ĠB raz +Ġshar per +ĠAsc ension +Ġ9 78 +Ġpreview s +Ġcommun ion +ĠX Y +Ġph ony +Ġnewcom er +Ġ3 32 +." ," +Ġredist ribution +Prot ect +ĠSo f +K al +Ġlip stick +w orst +Ġtang led +Ġretrospect ive +int eger +Ġvolunte ering +Ġ19 07 +Ġ -------------------- +ic hen +Ġunve iling +Ġsen seless +Ġfisher ies +\ - +Ġh inges +Ġcalcul us +My th +Ġund efeated +Ġoptim izations +Ġdep ress +Ġbill board +ĠY ad +ĠPy ramid +Is n +I de +Ġleg ion +ĠK ramer +ent anyl +Ġpenet rating +ĠHaw th +ĠPR ODUCT +ĠGer ard +ĠP act +ĠIn cluding +ĠEl ias +ĠEl aine +vis ual +Ġhum ming +Ġcond esc +ĠF asc +ä¸ Ĭ +Ġe galitarian +Ġdev s +ĠD ahl +O ps +D H +ĠB ounce +id ated +ald o +Ġrepublic an +Ġh amb +ĠS ett +ograph ies +CH APTER +Ġtrans sexual +Ġsky rocket +ans wer +Ġmark up +Ø ª +Ġhero ine +Comp are +ĠT av +Be ast +Ġsuccess ors +Ġna ïve +ĠBuck ley +st ress +me at +Ġdownload able +Ġindex ed +Ġsc aff +ĠL ump +ĠHom o +Stud io +In sp +Ġr acked +far ious +ĠPet ty +Ex ternal +Ġ19 09 +W ars +com mit +put ers +Ġun ob +ĠEr r +ĠE G +ĠAl am +ĠSiber ia +ĠAtmosp heric +IS TER +ĠSatan ic +trans lation +ĠL oud +tra umatic +l ique +Ġreson ate +ĠWel ch +Ġspark ing +ĠT OM +t one +Ġout l +Ġhandc uffed +ĠSer ie +8 01 +Ġland marks +ĠRee ves +Ġsoft ened +Ġdazz ling +ĠW anted +month s +Mag ikarp +Ġunt reated +ĠBed ford +M i +ĠDynam o +O re +79 5 +Ġwrong ful +Ġl ured +Ġcort isol +Ġve x +d rawn +ile t +Download ha +ĠF action +Ġlab yrinth +Ġhij acked +w aters +er ick +Ġsuper iors +ĠRow ling +ĠGu inness +Ġt d +99 2 +Ġune arthed +Ġcentr if +Ġsham eless +P od +ĠF ib +Ġ icing +Ġpredict or +Ġ29 2 +fore station +con struct +C and +@ # +Ġag itated +Ġre pr +OV A +Ġkn itting +ĠLim a +Ġf odder +68 4 +ĠPerson a +k l +7 01 +Ġbreak up +á ¸ +Ġapp alled +Ġantidepress ants +ĠSus sex +Har ris +ĠTher mal +ee ee +U pload +Ġg ulf +Ġdoor step +ĠSh ank +L U +ĠM EN +ĠP ond +s orry +Ġmis fortune +n ance +Ġb ona +M ut +Ġde graded +ĠL OG +ĠN ess +an imal +Ġa version +und own +Ġsupplement ed +ĠC ups +Ġ50 4 +Ġdep rive +ĠSpark le +Å Ĥ +ĠMed itation +auth ors +ĠSab an +ĠN aked +air d +ĠMand arin +ĠScript ures +ĠPerson nel +ĠMahar ashtra +Ġ19 03 +ĠP ai +ĠMir age +omb at +Access ory +Ġfrag mented +T ogether +Ġbelie vable +ĠGl adiator +al igned +ĠSl ug +M AT +Ġconvert ible +ĠBour bon +amer on +ĠRe hab +nt ax +Ġpowd ered +pill ar +Ġsm oker +ĠMans on +ĠB F +5 11 +ĠGood ell +ĠD AR +m ud +g art +Ġob edient +ĠTrans mission +ĠDon ation +8 80 +Ġbother ing +Material s +ãĤ ± +dest roy +Ġfore going +Ġanarch ism +ĠK ry +ice ps +Ġl ittered +ĠSch iff +Ġanecd otal +un its +Ġf ian +ĠSt im +ĠS OME +ĠInv aders +Ġbehaviour al +ĠVent ures +Ġsub lime +Ġfru ition +ĠPen alty +Ġcorros ion +¶ ħ +Ġlik ened +Ġbesie ged +ween ey +ĠCre ep +Ġlinem en +mult i +ic ably +ud der +Ġvital ity +Ġshort fall +ĠP ants +ap ist +H idden +ĠDro ps +med ical +Ġpron unciation +ĠN RL +Ġinsight ful +J V +ĠBe ard +ĠCh ou +Ġchar ms +Ġb ins +Ġamb assadors +ĠS aturdays +Ġinhib itor +ĠFr anch +6 01 +', ' +ĠCon or +art ney +ĠX peria +g rave +be es +ĠProtest ants +Ġso aking +ĠM andal +Ġph ased +Ġ6 60 +Ġsc ams +Ġbuzz ing +ĠItal ians +ĠLoren zo +ĠJ A +Ġhes itated +Ġcl iffs +ĠG OT +ingu ishable +Ġk o +Ġinter ruption +Z ip +Lear ning +Ġundersc ores +ĠBl ink +K u +57 9 +ĠAut ob +I RE +Ġwater ing +Ġpast ry +8 20 +Ġvision ary +ĠTempl ar +awa ited +Ġpist on +Ġant id +current ly +Ġp ard +Ġw aging +Ġnob ility +ĠY us +Ġinject ing +f aith +ĠP ASS +å º +Ġret ake +ĠPR OC +Ġcat hedral +b ash +Ġwrest lers +Ġpartner ing +Ġn oses +Ġ3 58 +Trans form +am en +Ġb outs +ĠId eal +ĠConstant in +Ġse p +ĠMon arch +att en +ĠPe oples +mod ified +Ġmor atorium +Ġpen chant +Ġoffensive ly +Ġprox ies +ok ane +ĠTaiwan ese +ĠP oo +ĠH OME +us ional +Ġver bs +ĠO man +vis ory +Ġpersu asion +Ġmult it +Ġsc issors +G ay +ow ay +oph ysical +l us +gn u +Ġap ocalyptic +Ġabsurd ity +Ġplay book +Ġautobi ography +I UM +Ġsne aking +ĠSim ulation +pp s +ell ery +Plan et +Ġright fully +Ġn iece +ĠN EC +ĠIP O +ĠDis closure +lean or +ous y +ST ER +Ġ28 2 +Cru z +Ch all +64 3 +ĠSurv ive +ĠF atal +ĠAm id +ap o +We apons +D EN +7 70 +ĠGreen wald +Ġlin en +al os +Ġpollut ants +ĠPCI e +k at +Ġp aw +ĠK raft +C hem +ĠTermin ator +Ġre incarn +Ġ] [ +ĠSe eds +Ġsilhou ette +ĠSt ores +Ġgro oming +ĠD irection +ĠIs abel +ĠBr idges +ðŁ ij +E ED +ĠM orsi +Ġval ves +ĠRank ed +ĠPh arma +ĠOrgan izations +Ġpenet rated +ĠRod ham +ĠProt oss +Ġove rest +Ġex asper +ĠT J +Ġ 000000 +Ġtrick le +Ġbour bon +WH O +Ġw retched +Ġmicrosc opic +Ġcheck list +Ġad orned +R oyal +Ad minist +ĠRet irement +ĠHig hest +We ather +ile ge +Ġincre ments +ĠC osponsors +Ġmas se +ĠS inn +r f +Ġh ordes +as sembly +75 4 +ĠNat asha +ĠTY PE +ĠGEN ERAL +Ġarr anging +Ġ40 7 +l ator +Ġg lean +Ġdisc redited +Ġclin icians +UN E +Ġachie ves +ĠEm erson +com plex += [ +Ġprincip ally +Ġfra il +p icked +Ġthan king +Ġre cl +ĠL AST +Ġsupp ressing +il ic +Ġantidepress ant +ĠLis bon +Ġth or +Ġsp a +Ġking doms +ĠPear ce +em o +Ġpl ung +Ġdiv est +Ġ ******************************** +b is +osp els +ad r +Sp irit +hall a +P ink +end ez +Ġresurrect ed +esc ape +ĠRosen stein +Ġge ological +Ġnecess ities +Ġcarn iv +ĠE lys +ĠBar ney +Ġ29 6 +dig y +ST ON +D OWN +Ġmil estones +Ġk er +Ġdismant ling +Ġre prim +Ġcross ings +19 45 +Ġpatri archy +Ġblasp hemy +Ġ3 59 +met ry +ĠOb esity +ĠDiff erences +bl ocking +ãĥķ ãĤ¡ +ich ita +ĠSab ha +ph alt +ĠCol o +ual a +effic ients +ĠMed ina +con sole +55 7 +ĠHann ibal +ĠHab it +ĠF ever +Ġthen ce +Ġsyn agogue +Ġessential s +Ġw ink +ĠTr ader +ID A +ĠSp oiler +ĠIceland ic +ĠHay ward +Ġpe ac +Ġmal ice +Ġflash back +Ġth w +Ġlay offs +L iquid +Ġtro oper +Ġh inge +ĠRead ers +Ph ill +ĠB auer +Cre ated +Ġaud its +ac compan +Ġunsus pecting +ier a +6666 6666 +Ġbro ch +Ġapprehend ed +ĠM alk +cer ning +ĠCod ex +O VER +M arsh +ĠD eng +ĠExp ression +Ġdisrespect ful +Ġasc ending +t ests +ĠPlaint iff +ster y +ĠAl ibaba +din and +ĠDem psey +Applic ations +mor al +Ġthrough put +Ġquar rel +Ġm ills +Ġhe mor +ĠC ASE +terror ist +st im +ifest yle +ro zen +CE PT +Ar k +u ci +lect ic +Ġirrit ating +she ets +A y +Ġrede emed +Ġhorn y +ĠTe ach +ĠS ear +dem ocracy +4 65 +ĠRest ore +Ġstand by +ĠP is +iff in +Ġsleep y +Ġextr ater +Ġcompl iments +Fram eworks +Ġinstall s +Ġb anging +sur face +found land +Ġmetaph ysical +Ġ28 3 +oul s +dev ices +Ar gs +ĠSac rifice +ĠMcC orm +es on +Cons ervative +ĠM ikhail +see ing +is ively +ĠRo oms +ĠGener ic +Ġenthusi astically +Ġgri pped +Ġcomed ic +ĠElectric ity +Ġgu errilla +Ġdec oration +ĠPerspect ive +Ġconsult ations +Ġun amb +Ġplag iar +Ġmagic ian +Ġe rection +ĠTour ism +or ied +ro xy +11 00 +T am +Ī è +Î ³ +× ª +ĠPred ators +Nit rome +Ġtelesc opes +project s +Ġun protected +Ġst ocked +ĠEnt reprene +nex pected +Ġwast ewater +V ill +Ġint imately +Ġi Cloud +ĠConst able +Ġspo of +Ġne farious +Ġfin s +Ġcens or +ĠMod es +ĠEs per +ar bon +Ġinter sections +Ġlaud ed +Ġphys i +Ġgener ously +ĠThe Nitrome +ĠTheNitrome Fan +Ġar isen +ĠÙ Ī +Ġg lands +ĠPav ilion +ĠGu pta +Ġuniform ly +Ġr amps +ri et +ĠWH EN +ĠVan essa +Ġrout ed +Ġlim p +ĠC PI +p ter +int uitive +Ġv aping +Ġexperiment ed +ĠOlymp us +ĠAm on +Ġsight ing +Ġinfiltr ate +ĠGentle man +Ġsign ings +ĠMe ow +ĠNav igation +che cks +4 33 +Ġel apsed +ĠBulg arian +esp ie +ĠS OM +d uring +Ġsp ills +anc a +ĠPly mouth +M AL +Ġdomest ically +ĠWater gate +ĠF AM +k illed +ed ited +ĠYour self +Ġsynchron ization +ĠPract ices +ST EP +Ġgen omes +ĠQ R +not ice +Ġloc ating +z in +Ġ3 29 +al cohol +Ġk itten +V o +Ġr inse +Ġgrapp le +ĠSc rew +ĠD ul +A IR +Ġle asing +ĠCaf é +Ġro ses +ĠRes pect +Ġmis lead +Ġperfect ed +Ġnud ity +Ġnon partisan +ĠCons umption +Report ing +Ġnu ances +Ġdeduct ible +ĠSh ots +Ġ3 77 +Ġæ ľ +ano oga +Ben ef +ĠB am +ĠS amp +if ix +Ġgal van +ĠMed als +rad ius +Ġno bles +Ġe aves +igr ate +K T +ĠHar bour +u ers +Ġrisk ed +re q +Ġneuro t +get table +ain a +Rom ney +Ġunder pin +Ġlo ft +ĠSub committee +ĠMong ol +b iz +Ġmanif ests +ass isted +ĠG aga +Ġsy nergy +Ġreligious ly +ĠPre f +ĠG erry +T AG +ĠCho i +4 66 +beh ind +ĠO u +Gold Magikarp +Ġhemor rh +R iver +Ġtend on +Ġinj ure +ĠF iona +Ġp ag +Ġag itation +|| || +ur an +ĠE SA +Ġest eem +Ġdod ging +Ġ4 12 +r ss +Ġce ases +ex cluding +Ġint akes +Ġinsert s +Ġemb old +ĠO ral +up uncture +4 11 +ĠUn ified +ĠDe le +Ġfurn ace +ĠCoy otes +ĠBr ach +L abor +Ġhand shake +Ġbru ises +Gr ade +éĹ ĺ +ĠGram my +ile en +St ates +ĠScandinav ian +ĠKard ash +8 66 +Ġeffort lessly +ĠDI RECT +ĠTH EN +ĠMe i +ert ation +19 68 +Ġgro in +w itch +Requ irements +98 5 +Ġroof s +Ġest ates +ĠH F +Ġha ha +Ġdense ly +ĠO CT +Ġpl astics +Ġincident ally +ĠTr acks +ĠTax es +Ġch anted +Ġforce ful +ĠBie ber +ĠK ahn +K ent +ĠC ot +lic ts +F ed +Ġhide ous +ĠVer d +ĠSynd icate +ĠIl legal +J et +ĠD AV +re asonable +c rew +Ġfundamental ist +Ġtruth ful +ĠJ ing +Ġl il +Ġdown ed +Ġen chanted +ĠPolic ies +ĠMcM aster +ĠH are +ides how +Ġpar ams +en cers +gorith m +Ġallow ances +Ġturb ulent +Ġcomplex ities +ĠK T +Ġ3 37 +ĠGen etic +F UN +D oug +t ick +Ġg igs +ument hal +Ġpatriarch al +Ġcal c +, ... +Ġc out +ĠGu an +Ġpath ological +ĠR ivals +Ġunder rated +Ġflu orescent +ĠJ iu +arna ev +ĠQu an +Ġ4 29 +Ġ ਠ+M ario +Con struct +ĠC itation +ĠR acial +ĠR SA +ĠF idel +Ġ3 95 +Person ally +C ause +à » +rad ical +in en +Ġvehement ly +ĠPap a +Ġintern ship +Ġfl akes +ĠRe ck +Luck ily +B ra +20 20 +rav ings +R N +W onder +Ser iously +Ġre usable +Ġpoll uted +ĠP eng +le igh +ind le +Ġcircuit ry +ĠMad onna +ĠB ART +Res idents +att ribute +Phil adelphia +Cl ub +Ġplan ner +Ġfr antically +Ġfaith fully +ĠTerrit ories +ĠL AT +ĠAnders en +an u +ĠP ARK +ĠS ora +i age +ĠPlay offs +ĠG CC +4 27 +Ġab norm +ĠL ever +Ġdisob edience +As ync +ĠShe a +V ert +Ġsk irts +ĠSaw yer +x p +Ġwors ening +Ġsc apego +ĠAng le +oth al +Ġtro ve +ĠSt y +ĠN guyen +mar ine +ide on +Dep ths +Bl og +ĠIll uminati +Ġtract s +Ġorgan ise +Ġo str +F s +Ġlever aging +ĠD aredevil +as ar +Ġl ang +Ġex termin +urs ions +ĠRom o +ãĤ¤ ãĥĪ +Ġcont ended +Ġencounter ing +ĠTable t +ĠAltern ate +sk ill +Ġswe ets +Ġco hesive +cap acity +Ġrep ud +Ġl izard +ro o +Ġpilgr ims +ĠR uff +ĠInstr ument +ĠLog o +uit ous +E H +Ġsales man +Ġank les +L ed +ĠPat ty +ud os +Own er +Ġdiscrep ancies +k j +M U +Ġuncond itional +Dragon Magazine +i ard +O ak +ĠConvers ation +be er +ĠOs aka +D elta +us ky +Ġsecret ion +Ġpl aza +Ġm ing +Ġde pletion +ĠM ous +ĠI TS +ĠH imal +ĠFle ming +Ġcyt ok +ĠH ick +Ġbat ters +ĠInt ellectual +6 75 +é r +IS ION +ĠQu entin +ĠCh apters +ih adi +Ġco aster +WAY S +ĠL izard +ĠY or +and ering +S kin +ha ust +ab by +Ġportray ing +Ġwield ed +d ash +Ġprop onent +Ġr ipple +Ġgrap hene +Ġfly er +Ġrec urrent +Ġdev ils +Ġwater fall +æĺ ¯ +go o +Text Color +Ġtam pering +IV ES +TR UMP +ĠAb el +ĠS AL +ĠHend ricks +ĠLu cius +b ots +Ġ40 96 +IST ORY +Gu est +ĠN X +in ant +Ben z +ĠLoad ed +ĠCle ver +t reatment +Ġta vern +Ġ3 39 +ĠT NT +ific antly +Tem perature +F el +Ġunder world +ĠJud ges +Ġ< + +Ġst ump +Ġoccup ancy +Ġab er +ĠF inder +) ", +ĠN unes +res et +in et +ect omy +Ġwell ness +ĠP eb +quart ered +and an +Ġneg atives +ĠTh iel +ĠCl ip +ĠL TD +Ġbl ight +Ġreperto ire +K yle +Ġqu er +ĠC es +Ġha pl +98 9 +ĠTh ames +isc opal +Des k +ivari ate +ĠEx cellence +found ation +Ġâ ĩ +X i +Ġmyster iously +esty les +Ġper ish +ĠEng els +ĠDE AD +09 0 +}} } +ĠUn real +Ġrest less +ID ES +orth odox +ĠInter mediate +Ġdin ners +ĠTr out +ĠSe ym +ĠHall s +og ged +Ġtraged ies +Ġdid nt +67 6 +Ġail ments +Ġobserv able +ĠV ide +ad apt +ĠD usk +Ġprofessional ism +ĠPres cott +ĠInd ies +p ox +ĠMe hran +W ide +Ġend emic +ĠPar an +B ird +Ġped als +ĠI U +ĠAdam ant +ĠH urt +Ġcorrel ates +urd en +Ġspons oring +cl imate +ĠUnivers ities +ĠK not +enn es +ĠDam ian +ĠAx el +S port +Ġbar b +ĠS no +sh own +ste en +ud ence +Ġnon violent +Ġhom ophobia +Ġbiom ass +ĠDet ail +Ġsrf N +ĠT une +accompan ied +I ENCE +Al bert +ĠMong o +z x +ĠCer berus +or bit +c ens +Ġsl ay +SH ARE +H Y +Ġb rawl +ĠPro be +Ġnonex istent +ĠClare nce +ĠBlack burn +Ġport als +ĠR ita +ĠRem ain +ĠLe vant +Ġtrick ed +ĠF erry +aver ing +ĠStraw berry +ĠAn swers +Ġhorrend ous +ĠA man +Supp lement +ĠT oad +Ġpe eled +Ġman oeuv +ĠU zbek +mond s +ĠH ector +Ġ40 2 +pe es +fix es +Ġd j +Ġres umes +Ġaccount ant +Ġadvers ity +Ġham pered +ĠL arson +Ġd oping +part s +H ur +Ġbe arded +Ġy r +ĠPlug in +å¥ ³ +Ġ/ ** +rol ley +Ġwaters hed +ĠSub mission +if lower +AS C +Ġcho ir +Ġsculpt ures +m A +incre asing +ai i +Ġsne akers +Ġconfront s +ĠEle phant +ĠEl ixir +Ġrec al +ĠT TL +w idget +ĠW ax +ĠGr ayson +Ġha irst +Ġhumili ated +ĠWAR N +app iness +ĠT TC +F uel +Ġpol io +Ġcomplex es +Ġbab e +ĠX IV +P F +). [ +P arts +Ġ4 35 +M eg +ĠY ards +ĠAL P +Ġy ells +Ġprin ces +Ġbull ies +ĠCapital ism +ex empt +FA Q +ĠSp onge +ĠAl a +Ġpleas antly +Ġbu f +Ġden ote +Ġunp ublished +Ġkne eling +asc a +Ġl apse +al ien +99 4 +Ġrefere es +ĠLaw yers +S anta +Ġpuzz ling +ĠProm etheus +ĠPh araoh +ĠDel ay +Ġfacilit ates +ĠC ES +Ġjew els +Ġbook let +ond ing +Ġpolar ization +ĠMor an +ĠSal ad +ĠS OS +ĠAdv ice +PH OTOS +IC AN +iat ures +ex press +ĠWonder land +ĠC ODE +ĠCL ASS +9 75 +Ġg rep +ĠD iesel +ĠGl ac +! ?" +Ġr m +o ine +disc rimination +ĠN urse +m allow +Ġv ortex +ĠCons ortium +Ġlarge Download +stra ight +augh lin +G rad +Ġpublic ized +ĠW aves +ĠRed d +Ġfest ivities +ĠM ane +ar ov +Ġfleet ing +ĠDr unk +ug en +C ele +Ġchromos omes +ĠD OT +-+-+ -+-+ +Ġbus iest +ĠBe aver +Sy rian +ĠK yr +k as +ĠCross Ref +19 50 +76 01 +Ġrepe aling +ĠWin ners +ĠMac ro +ĠD OD +bl ance +S ort +64 1 +Ġmet re +ĠD irk +Ġgo ggles +Ġdraw backs +Ġcomplain ant +Ġauthor izing +Ġantit rust +oper ated +Ġm ah +Ġexagger ation +Am azing +ĠSer aph +Ġha ze +w ow +Ġextingu ished +Ġcan yon +ĠB osh +Ġv ents +Ġsc rape +Cor rect +4 26 +Ġav g +Dem and +ĠâĪ ¼ +Ġmicrobi ota +"} ]," +ĠSt ev +B io +ĠPlan es +Ġsuggest ive +Ġdec ipher +ĠRefuge e +ĠKe jriwal +ĠGreen peace +Ġdecl ass +ĠSound ers +Ġth o +Ġdec rypt +Ġbr ushing +ĠJane iro +ip op +S i +8 77 +ĠGeoff rey +Ġc pu +ĠHaz el +Ġview points +Ġcris py +ĠNot ification +Ġsold er +ĠMod est +ĠHem isphere +Ġcass ette +in cludes +Ġident ifiers +ĠC ALL +in cent +T odd +ĠSwe ep +Ġ3 34 +b oss +Ġsm ir +gin x +Ġtown ship +Ġg rieving +ĠMos que +Net flix +AS ED +ĠMillenn ials +oc om +19 67 +Ġbold ly +s leep +Ġes che +arij uana +Ġsw irl +ĠPen al +Ġneglig ent +ĠStephen son +K ER +ĠZ oro +ris is +Ġlocal ization +ĠSeym our +ĠAng lic +red itation +prot ection +ĠPa ige +Ġo mit +ĠR ousse +ĠT ub +Ġinv itations +t ty +Ġm oss +ph ysical +C redits +Ġan archy +Ġchild care +Ġl ull +ĠM ek +ĠL anguages +lat est +ĠSan ford +Ġus ability +Ġdiff use +ĠD ATA +Ġsp rites +ĠVeget a +ĠProm otion +ãĥ¼ ãĤ¯ +rict ing +z ee +Tur kish +ĠTD s +pro ven +57 1 +Ġsmug glers +707 10 +Ġreform ed +ĠLo is +Ġun fl +ĠWITH OUT +ĠReturn ing +ann ie +ĠTom as +Fr anc +ĠProf it +ĠSER V +ĠR umble +ik uman +es an +Ġt esters +Ġgad get +Ġbrace let +ĠF SA +comp onent +Ġparamed ics +Ġj an +ĠRem em +ĠSk inner +Ġl ov +ĠQu ake +rom a +Ġfl ask +Pr inc +Ġover power +Ġlod ging +ĠK KK +ret te +Ġabsor bs +w rote +Ġ ," +K ings +ĠH ail +ĠFall ing +xt ap +ĠHel ena +ire ns +L arry +Ġpamph let +ĠC PR +G ro +ĠHirosh ima +Ġhol istic +". [ +Ġdet achment +Ġas pire +Ġcompl icit +ĠGreen wood +Ġresp awn +ĠSt upid +ĠFin ished +f al +b ass +Ġab hor +Ġmock ery +ĠFe ast +VID EO +Ġcon sec +ĠHung ry +P ull +ĠH ust +it ance +? ãĢį +) -- +ĠPar allel +con v +4 69 +ha ar +w ant +P aper +m ins +ĠTor o +ĠTR UMP +ĠR ai +D W +ĠW icked +ĠL ep +Ġfun ky +Ġdetrim ent +ios is +ache v +Ġde grade +im ilation +Ġret ard +Ġfrag mentation +Ġcow boy +ĠY PG +ĠH AL +Parent s +ĠS ieg +ĠStra uss +ĠRub ber +× IJ +Fr ag +Ġp t +Ġoption ally +ĠZ IP +ĠTrans cript +ĠD well +88 2 +M erc +ĠM OT +ãĥ¯ ãĥ³ +Ġhun ts +Ġexec utes +In cludes +Ġacid ic +ĠRespons ibility +ĠD umb +we i +And erson +ĠJas per +ight on +abs olutely +Ad ult +Ġpl under +Mor ning +ĠT ours +ĠD ane +Î º +ĠT EST +ĠG ina +Ġcan ine +aw an +Ġsocial ists +ĠS oda +Ġimp etus +ĠSupplement ary +oli ath +ĠKinn ikuman +mitted ly +second s +Ġorganis ers +Ġdocument aries +Vari able +GRE EN +Ġres orts +Ġbr agging +Ġ3 68 +Art ist +w k +bl ers +Un common +ĠRet rieved +Ġhect ares +Ġtox in +r ank +Ġfaith s +ĠG raphic +Ġve c +ĠL IA +Af rican +Ġard ent +end iary +L ake +ĠD OS +cient ious +ĠOk awaru +ĠAll y +ĠTim eline +D ash +ĠI c +contin ue +Ġt idy +Ġinstinct ively +ĠP ossibly +ĠOut door +ĠWould n +Ġl ich +ĠBr ay +ĠA X +Ġà ī +Ġ+ # +\ ' +Direct ory +ab iding +Ġf eral +ic ative +but t +Ġper verse +S alt +Ġwar ped +Ġnin eteen +Ġcabin ets +Ġsrf Attach +ĠSl oan +Ġpower ing +reg ation +F light +se vere +Ġst ren +Ġc og +ap ache +Ġâ Ŀ +Ġcaf eteria +p aces +ĠGrim oire +uton ium +Ġr aining +Ġcir cling +Ġlineback ers +c redit +Ġrep atri +ĠCam den +lic ense +Ġly ric +Ġdescript or +Ġval leys +Ġre q +Ġback stage +ĠPro hibition +ĠK et +Op ening +S ym +æĸ ¹ +Ġserv ings +Ġoverse en +Ġaster oids +ĠMod s +ĠSpr inger +ĠCont ainer +è » +ĠM ens +Ġmult im +Ġfire fighter +pe c +Ġchlor ine +Ð ¼ +end i +Ġsp aring +Ġpolyg amy +ĠR N +ĠP ell +Ġt igers +Ġflash y +ĠMad ame +S word +Ġpref rontal +Ġpre requisite +uc a +Ġw ifi +Ġmiscon ception +Ġharsh ly +ĠStream ing +ot om +ĠGiul iani +foot ed +Ġtub ing +ind ividual +z ek +n uclear +m ol +Ġright ful +49 3 +Ġspecial ization +Ġpassion ately +ĠVel ocity +ĠAv ailability +T enn +Ġl atch +ĠSome body +Ġhel ium +cl aw +Ġdi pping +XX X +Ġinter personal +7 10 +Ġsub ter +Ġbi ologists +ĠLight ing +Ġopt ic +Ġden im +end on +ĠC orm +Ġ3 41 +ĠC oup +Ġfear less +Ġal ot +ĠCliff ord +ĠRun time +ĠProv ision +up dated +lene ck +Ġneur on +Ġgrad ing +ĠC t +sequ ence +in ia +con cept +Ġro aring +ri val +ĠCaucas ian +Ġmon og +key es +Ġappell ate +Ġlia ison +EStream Frame +ĠPl um +! . +Ġsp herical +Ġper ished +Ġbl ot +Ġben ches +Ġ4 11 +Ġpione ered +Ġhur led +Jenn ifer +ĠYose mite +Ch air +Ġreef s +Ġelect or +ĠAnt hem +65 2 +Ġun install +Ġimp ede +Ġbl inking +Ġgot o +Dec re +A ren +Ġstabil ization +ĠDis abled +ĠYanuk ovych +Ġoutlaw ed +ĠVent ura +ten ess +Ġplant ation +Ġy acht +ĠHu awei +Ġsol vent +Ġgr acious +Ġcur iously +Ġcapac itor +Ġc x +ĠRef lex +Ph ys +ĠC f +pt in +cons ervative +Ġinv ocation +c our +F N +ĠNew ly +H our +As ian +ĠLe ading +ĠAer ospace +An ne +Ġpre natal +Ġdeterior ating +H CR +ĠNorm andy +ol ini +ĠAm bro +9 10 +Ġset backs +ĠT RE +Ġs ig +ĠSc ourge +59 7 +79 8 +Game play +Ġm sec +M X +Ġprice y +ĠL LP +aker u +Ġover arching +ĠB ale +Ġworld ly +Cl ark +Ġscen ic +Ġdisl iked +ĠCont rolled +T ickets +ĠE W +ab ies +ĠPl enty +Non etheless +Ġart isan +Trans fer +ĠF amous +Ġinf ield +ble y +Ġunres olved +ĠML A +ãĤ Ĥ +Cor rection +Ġdemocr at +ĠMore no +ro cal +il ings +Ġsail or +Ġr ife +h ung +Ġtrop es +Ġsn atched +ĠL IN +ĠB ib +ES A +ĠPre v +ĠCam el +run time +Ġob noxious +4 37 +Ġsum mers +Ġunexpl ained +ĠWal ters +cal iber +Ġg ull +ĠEnd urance +ä½ ľ +Ġ3 47 +Ir ish +Ġaer obic +Ġcr amped +ĠHon olulu +à © +us erc +ec ast +AC Y +ĠQu ery +ãĤ¹ ãĥĪ +Bet a +Ġsuscept ibility +ĠSh iv +ĠLim baugh +Ġà ĸ +ĠN XT +ĠM uss +ĠBrit ons +ES CO +EG IN +Ġ% % +Ġsec ession +ĠPat ron +ĠLu a +n aires +ĠJPM organ +us b +ocy te +Ġcouncill ors +ĠLi ang +f arm +Ġnerv ously +Ġattract iveness +ĠK ov +j ump +Pl ot +Ġst ains +ĠStat ue +ĠApost les +he ter +ĠSUP PORT +Ġoverwhel m +Y ES +Ġ29 1 +d ensity +Ġtra pping +M it +Ġf ide +ĠPam ela +atl antic +Dam n +Ġp ts +OP A +Ġserv icing +Ġoverfl owing +ul o +ĠE rit +t icket +light ing +ĠH mm +ãĥ¼ ãĥ« +im oto +Ġchuck le +4 23 +ãģ ķ +sh ape +Ġque ues +Ġanch ors +ãĤ¼ ãĤ¦ãĤ¹ +F er +Ġaw oke +Ġ6 66 +h ands +Ġdiver gence +Ġ50 5 +T ips +Ġdep ot +Ġske w +ĠDel iver +op ot +Ġdiv ul +ĠE B +uns igned +ĠUn i +X box +Ġfor ks +Ġ7 02 +å ¯ +Ġpromot ers +ĠV apor +Ġlev ied +sl ot +Ġpig ment +Ġcyl inders +C RE +Ġsn atch +Ġperpet ually +Ġl icking +ĠFe et +ĠKra ken +ĠHold en +ĠCLS ID +m r +Ġproject or +Ġden otes +Ġchap el +ĠTor rent +b ler +R oute +ĠDef endant +ĠPublisher s +ĠM ales +ĠInn ov +ĠAg ility +rit er +ty mology +st ores +L ind +Ġf olly +ĠZur ich +B le +Ġnurt ure +Ġcoast line +uch in +D omin +Ġfri vol +ĠCons olid +res ults +M J +Ġphyl ogen +Ġha uled +ĠW iley +ĠJess ie +ĠPrep are +ĠE ps +Ġtreasure r +I AS +Ġcolon ists +Ġin und +ĠWW F +ĠCon verted +6 000 +out side +ĠApp earance +ĠRel ic +ĠM ister +s aw +Ġresult ant +Ġadject ive +ĠLaure l +ĠHind i +b da +Pe ace +Ġreb irth +Ġmembr anes +Ġforward ing +Ġcoll ided +ĠCar olyn +K ansas +5 99 +ĠSolid GoldMagikarp +Be ck +Ġstress ing +ĠGo o +ĠCooper ative +Ġf s +ĠAr chie +L iter +ĠK lopp +J erry +Ġfoot wear +War ren +Ġsc ree +h are +Under standing +P ed +Ġanth ology +ĠAnn ounce +M ega +Ġflu ent +Ġbond age +ĠDisc ount +il ial +C art +ĠNight mares +Sh am +ĠB oll +uss ie +H ttp +Atl anta +Ġun recogn +ĠB id +Ġunder grad +Ġforg iving +ĠGl over +AAAA AAAA +4 45 +V G +pa io +kill ers +Ġrespons ibly +Ġmobil ize +Ġeffect ed +ĠL umin +Ġk ale +Ġinfring ing +ann ounced +Ġf itt +b atch +ĠT ackle +ĠL ime +ĠAP P +uke mia +Ġrub y +Ġex oner +ĠCas ual +0 70 +Ġpel vic +Ġautom ate +ĠK ear +ĠCoast al +Ġcre ed +Ġbored om +ĠSt un +ri ott +Ĥ İ +Ġregener ate +Ġcomed ians +ĠOP ER +Sp ons +id ium +on is +L ocated +05 7 +Ġsusp ense +ĠD ating +C ass +Ġneoc ons +ĠShin zo +Ġaw oken +ch rist +ĠMess ages +att led +ĠSpr ay +ĠSp ice +C W +Ġshield ing +ĠG aul +Am id +Ġparam ilitary +Ġmult if +ĠTan ner +il k +Ġgodd amn +g ements +Ġbe friend +m obi +Ġ3 88 +fold er +acc a +Ġins in +g ap +N ev +fif th +Ġpsychiat ry +b anks +TH IS +Ġhar b +ac qu +Ġfac ade +ĠPower Point +80 3 +Ġbl uff +Sh ares +Ġfavor ing +El izabeth +Ãį Ãį +Ġr anger +77 2 +ĠAr che +h ak +ĠGen etics +ĠF EMA +Ġev olves +Ġest e +ĠP ets +ĠM é +ĠInterest ing +ĠCanter bury +ch apter +ĠStar fleet +Sp anish +Ġdraw back +ĠNor wich +9 70 +n orth +ag anda +Ġtransform ative +ram ids +bi ology +ad ay +Ġpropag ation +ĠGam ma +ĠDen ise +ĠCalcul ator +ent imes +ĠB ett +Ġapp endix +ĠHD D +AK ING +Ġst igmat +Ġhol ster +Ġord inarily +Ch ance +ĠCont rary +Ġad hesive +Ġgather s +6 12 +re au +ony ms +ew ays +Ġindu ces +Ġinterchange able +se m +Wh it +Ġtr ance +Ġincorpor ation +ĠExt ras +Fin ancial +Ġawkward ly +ĠStur geon +ĠH Y +Norm ally +ĠEnd ing +ĠAss ist +enc rypted +Ġsub jug +Ġn os +Ġfan atic +C ub +C U +?" . +Ġirre versible +å Ĥ +03 1 +ĠH AR +sp read +ul ia += $ +Sc ope +L ots +Ġlif estyles +ol on +Ġf eds +Ġcongrat ulate +web kit +Ġindist inguishable +ĠSw ing +Ġcommand ments +qu ila +ab ella +m ethyl +ann abin +Ġo vere +Ġlob ster +ĠQU EST +ĠCONT IN +bern atorial +:::: :::: +ĠTra ve +ĠSam oa +AN I +75 2 +Ð ´ +userc ontent +ĠMod erate +y eah +ĠK itt +Ġwe e +Ġstuff ing +ĠInter vention +ĠD ign +Ġware houses +ĠF iji +Ġpel lets +Ġtake away +ĠT ABLE +ĠClass ical +col lection +Ġland fall +ĠMus cle +Ġsett les +ĠAD V +Ġ3 44 +L aura +Ġf ared +ĠPart ial +4 36 +oss ibility +ĠD aly +ĠT arant +ĠFu ji +am l +c ence +55 1 +ĠProced ures +ĠO CD +ĠU D +t in +Q UI +ach o +4 38 +Ġgl itches +Ġenchant ment +Ġcalcul ates +IR O +ĠH ua +alys es +ĠL ift +um o +Ġle apt +Ġhypothes ized +ĠGust av +it ans +VERS ION +æ ł +Rog er +Ġr and +ĠAd apter +Ġ3 31 +ĠPet ition +k ies +M ars +Ġunder cut +ze es +ĠLy ons +ĠDH CP +Miss ing +Ġretire es +Ġins idious +el i +> ) +. ãĢį +Ġfinal ists +ĠA ure +Ġacc user +Ġwas tes +ĠY s +ĠL ori +Ġconstitu encies +Ġsupp er +Ġmay hem +or ange +Ġmis placed +Ġmanager ial +Ġex ce +ĠCL I +Ġprim al +ĠL ent +Cry stal +h over +ĠN TS +end um +Ġd w +ĠAl c +n ostic +Ġpres erves +ĠTs arnaev +Ġtri pled +rel ative +Arc ade +k illing +ĠW EEK +ĠH anna +D ust +Com pleted +ģ « +Ġappro ves +ĠSur f +ĠLuther an +ven ants +Ġrobber ies +we ights +soft ware +at ana +ug al +Ġgrav y +ĠC ance +OLOG Y +ly ak +Ton ight +Ġunve il +Ġ19 04 +ĠMin ion +ent ious +st ice +pack ages +ĠG EAR +Ġg ol +ĠHutch inson +ĠProf ession +ĠG UN +ĠDiff erence +ĠTsuk uyomi +ĠLes bian +6 70 +Ġfug itive +ĠPlan etary +-------------------------------- ------------------------ +Ġacc rued +Ġch icks +Ġsto pp +Ġblock ers +C od +Ġcomment ers +ĠSomew here +ĠPhot ographer +the me +Ġmay oral +w u +Ġanten nas +Ġrev amped +ĠSubject s +it é +im ura +Ġentr ances +liter ally +Ġten ets +ĠO MG +ĠMP H +ĠDon key +ĠOff ense +Ġ" + +Sn ap +ĠAF B +Ġan imate +ĠS od +His panic +Ġinconsist ency +D b +F Y +Ex port +Ġa pe +Ġpear l +ib el +ĠPAC s +Ġ{ \ +Ġact u +ĠHS BC +camp us +Ġpay off +Ġde ities +ĠN ato +ou ple +Ġcens ored +ĠCl ojure +Ġconf ounding +en i +Ġreck on +op he +Ġspot ting +Ġsign ifies +Ġprop el +Ġfest ive +S uggest +Ġpled ging +ĠB erman +Ġrebell ious +Ġovershadow ed +Ġinfiltr ated +j obs +67 2 +Ġscal able +Ġdomin ion +ĠNew foundland +ĠMead ow +Ġpart itions +AM I +Ġsupplement ary +str ument +Ġhair y +Ġperpet uate +Ġnuts hell +ĠPot ato +ĠHob bit +Ġcur ses +Flo at +Ġquiet er +Ġfuel ing +Ġcaps ules +ĠL ust +ĠH aunted +Exec utive +Ġchild birth +G re +Ġrad iant +å İ +Ġm alls +Ġin ept +ĠWarrant y +Ġspect ator +E h +t hens +Ġculmin ating +æ © +ary a +ãĤ ® +ilit arian +ĠOR IG +ĠSp ending +pt ives +ĠS iren +ĠRec ording +ay ne +Ġv im +Ġspr ang +T ang +ĠM FT +mor ning +ĠWe ed +m peg +cess ion +ĠCh ung +7 30 +w arning +56 2 +handed ly +P oor +P olitics +: # +Ġp ian +Ġfec es +ĠDocument ation +Ġban ished +Ġ3 99 +ĠAR C +Ġhe inous +J ake +ĠAm ir +way ne +v re +os henko +Ġnotebook s +Ġfound ational +Ġmarvel ous +ixt ape +Ġwithdraw als +Ġh orde +ĠD habi +is able +ĠK D +Ġcontag ious +ĠD ip +ĠAr rows +Ġpronoun s +Ġmorph ine +ĠB US +68 2 +Ġk osher +fin ished +ĠInstr uments +Ġf used +yd en +ĠSal mon +F ab +aff ected +K EN +C ENT +Dom ain +Ġpoke mon +ĠDr inking +G rowing +ĠInvestig ative +ĠA ether +em i +Ġtabl oid +Ġrep ro +ĠNot withstanding +ĠBers erker +Ġdram as +Ġclich é +Ġb ung +ĠU RI +ĠD os +0 44 +Ġpast ors +Ġl s +Ġac rylic +aun ts +Ed ward +Ġmajor ities +B ang +Ġfield ing +ĠRepl acement +ĠAl chemy +pp ard +ĠRome o +ĠSan ct +ĠLav rov +ib ble +Inst ruct +Ġimp ractical +ĠPlay boy +ce phal +Ġsw aps +Ġk an +ĠThe o +Ġillust rating +Ġdismant led +ĠTrans gender +ĠG uth +UG H +Ġtriumph ant +Ġencomp ass +Ġbook mark +udd in +j er +Ġpred icate +ES H +Ġwhen ce +ĠAB E +Ġnon profits +Se qu +Ġdi abetic +Ġp end +Ġheart felt +sh i +Ġinter acts +ĠTele com +Ġbombard ment +dep ending +ĠLow ry +ĠAd mission +ĠBl ooming +ust ration +ene gger +B rew +Ġmol ten +ĠNer d +P IN +âĸ Ģ +ave ment +Ġtou red +Ġco efficients +ĠTray von +ans son +Ġsand y +t old +fl ows +Ġpop ulous +ĠT inder +ĠBl iss +R achel +Min imum +Ġcontest ant +ĠRed uce +ĠMor se +ĠGrass ley +ĠClick er +Ġexp r +Ġs incerity +Ġmar qu +Ġelic it +ĠPro position +ĠDemon ic +Ġtac os +G reek +Ġpost war +Ġin sofar +ĠP ork +Ġ35 2 +doctor al +walk ing +Ġmid term +ĠSam my +sight ed +ĠTR ANS +ic i +AL D +ĠUS L +ĠF ISA +ĠAm pl +ĠAlex andra +ine lli +Tr ain +Ġsign ify +ĠVers us +Ġob fusc +Ġk h +Ġagg ro +ĠRen ault +Ġ3 48 +5 18 +ox icity +0 22 +ĠTw ist +Ġgoof y +D ynamic +Ġbrief ings +m ight +8 99 +Ġderog atory +T ro +Ġfor ging +ĠKor an +ĠMar ried +ĠBuc s +Ġpal ate +ĠCon version +m able +4 13 +Ġ( _ +Ġs iph +ĠN EO +col lege +Ġmarg inally +Ġfl irt +ĠTra ps +ĠP ace +é »Ĵ +Ġgoalt ender +Ġforb ids +Ġcler ks +ĠT ant +ĠRobb ins +ĠPrint ing +Ġpremie red +Ġmagn ification +ĠT G +ĠR ouse +ĠM ock +odynam ics +Ġpre clude +ism o +ĠPul itzer +Ġaval anche +ĠK odi +rib une +ĠL ena +Elect ric +Ġref inery +Ġend owed +Ġcounsel ors +Ġd olphin +ĠM ith +Ġarm oured +hib ited +Beg in +ĠP W +O il +ĠV or +ĠShar if +ĠFraz ier +est ate +Ġj ams +Pro xy +Ġband its +ĠPresbyter ian +ĠPrem iere +t iny +ĠCru el +Test ing +Ġhom er +ĠV ERS +ĠPro l +ĠDep osit +ĠCoff in +Ġsemin ars +Ġs ql +ĠDef endants +Altern atively +ĠR ats +ç « +ethy st +' > +Ġiss uer +58 9 +Ġch aired +ĠAccess ories +man ent +Ġmar row +ĠPrim ordial +C N +Ġlimit less +ĠCarn age +Ġund rafted +q v +IN ESS +on ew +Ġco hesion +98 7 +Ġne cks +Ġfootball er +ĠG ER +Ġdetect able +ĠSupport ing +ĠCS V +oc ally +k Hz +Ġund e +Ġsh one +Ġbud ding +tra k +Stand ing +ĠStar craft +ĠKem p +Ben ch +Ġthw arted +ĠGround s +ath i +L isa +Dial og +ĠS X +V ision +Ġingen ious +Ù IJ +Ġfost ering +ĠZ a +ĠIn gram +Ġ" @ +N aturally +6 16 +0 35 +ĠF AC +H mm +55 4 +Ġacceler ator +ĠV end +Ġsun screen +Ġtuber culosis +rav iolet +ĠFunction al +ĠEr rors +ed ar +19 66 +ĠSpect re +ĠRec ipes +88 5 +ĠM ankind +L iverpool +Ġ| -- +Ġsubst itutes +ĠX T +w ired +Ġinc o +ĠAf gh +E va +ic c +S ong +K night +Ġdilig ently +ĠBroad cast +A id +Ġaf ar +ĠH MS +aton in +ĠGr ateful +Ġfire place +ĠOm ni +e uro +ĠF RE +ĠSh ib +ĠDig est +t oggle +Ġheads ets +Ġdiff usion +ĠSqu irrel +ĠF N +Ġdark ened +out her +Ġsleep s +ĠX er +gun s +Ġset ups +Ġpars ed +Ġmamm oth +ĠCur ious +g ob +ĠFitz patrick +ĠEm il +im ov +........ ..... +ĠB enny +Second ly +Ġheart y +Ġcons on +st ained +Ġgal actic +cl ave +Ġplummet ed +Ġp ests +Ġsw at +Ġrefer rals +ĠLion el +h oly +Ġunder dog +ĠSl ater +ĠProv ide +ĠAm ar +ress or +å Į +ong a +Ġtim id +Ġp iety +ĠD ek +Ġsur ging +az o +Ġ6 10 +Ġdes ks +ĠSp okane +ĠAn field +Ġwars hips +ĠCob ra +Ġar ming +clus ively +ĠBad ge +ag ascar +ĠPR ESS +ĠMcK enzie +ĠFer dinand +burn ing +Af ee +Ġtyr ann +ĠI w +ĠBo one +100 7 +ĠRe pt +Ċ Âł +Ġcar avan +ĠD ill +ĠBundes liga +Ch uck +Ġheal er +ãĥ¼ãĥ Ĩ +ĠH obby +Ġneg ate +Ġcrit iques +section al +mop olitan +Ġd x +Ġouts ourcing +ĠC ipher +t ap +Sh arp +Ġup beat +Ġhang ar +Ġcru ising +ĠNi agara +Ġ3 42 +ill us +ĠS v +Ġsubt itles +Ġsqu ared +Ġbook store +Ġrevolution aries +ĠCarl ton +ab al +Ut ah +Ġdesp ise +ĠU M +cons ider +aid o +Ġc arts +ĠT urtles +Tr aining +Ġhonor ary + ¢ +Ġtri angles +4 22 +Ġreprint ed +Ġgrace ful +ĠMong olia +Ġdisrupt ions +ĠB oh +Ġ3 49 +Ġdr ains +Ġcons ulate +Ġb ends +Ġm afia +ur on +ĠF ulton +m isc +Ġren al +Ġin action +ck ing +Ġphot ons +Ġbru ised +ĠC odes +og i +Ġn ests +ĠLove ly +ĠLib re +ĠD aryl +Ġ# ## +S ys +. ," +Ġfree zes +est ablishment +and owski +Ġcum bers +ĠSt arg +ĠBom bs +Ġleg ions +Ġhand writing +Ġgr un +ĠC ah +sequ ent +Ġm oth +ĠMS M +Ins ert +F if +Ġmot el +Ġdex ter +ĠB ild +hearted ly +Ġpro pe +ĠText ure +ĠJ unction +ynt hesis +oc ard +ĠVer a +ĠBar th +Ġμ g +Ġl ashed +Ġ35 1 +ĠZ amb +ĠSt aples +ĠCort ex +ĠCork er +Ġcontinu um +ĠWR ITE +unt a +rid or +Ġde ems +0 33 +ĠG OLD +p as +Ġrep ressive +ãĥĨ ãĤ£ +Ġbaff led +Sc ar +Ġc rave +Ġ ______ +Ġentrepreneurs hip +ĠDirector ate +Ġ' [ +Ġv ines +Ġasc ended +ĠGR OUP +ĠGood bye +Ġdo gged +ãĥ´ ãĤ¡ +Man ufact +Ġunimagin able +ri ots +ier rez +Ġrel ativity +ĠCraft ing +ra ught +ud en +c ookie +Ġassass ins +Ġdissatisf ied +ac ci +Ġcondu it +Sp read +ĠR ican +n ice +izz le +Ġsc ares +ĠWH Y +ph ans +5 35 +Ġprot racted +ĠKrist en +5 36 +ĠSc rib +ĠNe h +Ġtwent ies +Ġpredic ament +Ġhandc uffs +Ġfruit ful +ĠU L +ĠLud wig +Ġatt est +ĠBre aker +Ġbi ologically +ĠDeal er +Ġrenov ations +f w +ess en +Al ice +ĠHen ri +Ġun ilaterally +ĠS idd +h ai +ĠSt retch +S ales +Ġcumbers ome +ĠJ avier +Ġtrend y +Ġrot ting +ĠChall enges +Ġscra ps +Ġfac ets +ĠVer onica +ĠVer ge +ĠS ana +Al ien +ĠR ih +Ġrad ial +ect ar +Ġ6 30 +cl i +Mar ie +Ġwild fire +ĠCat o +h ander +Ġwait ress +Ġch ops +ĠS ECTION +Ġblunt ly +ĠCat alog +n ian +stud y +Ġpat rolling +ĠT enth +nex us +ĠN ON +op sy +Ġsc athing +s ie +Ġdeterior ated +V B +Naz is +Ġdep ictions +Ġauthent icated +ĠCon ce +k rit +Ġpromul g +ĠL ONG +U FC +ĠVis itors +ĠRec all +Ġrehab ilit +ĠSL I +Ġglac ier +ĠB ite +Ġ50 3 +Ġvom it +Ġfer mented +ĠKh alid +Ġgrad ed +ĠMag icka +ĠIch igo +power ful +ic ators +75 3 +Ġsh rew +Ġ35 6 +Ġlegal izing +Ġall otted +ĠArch demon +ith ing +igg urat +V OL +Le od +Ġo ily +Ġindu cing +Ġamy gdala +Ġadm ins +ĠAcqu isition +C AN +Ġsche matic +Ġmo an +ĠCamer oon +Ġt ink +Ġmer ry +Ġbutter flies +ĠGo ff +Ġworks pace +ĠCor ona +Ġj avascript +ĠD olphin +ĠCant or +4 64 +to e +AP S +ĠAg ing +Ġpadd ed +ĠZ heng +ĠHe ld +Ġest ranged +Ġ7 70 +. } +ĠDun ham +Ġsm okes +Ġcap itals +und ai +Sh in +ĠFound ing +Ġent itle +Ġcenter piece +D iscover +Ġthere to +al ert +ĠN ou +ĠAnaly st +l c +F H +FI ELD +ĠP OV +gr ay +Ġar cs +ĠH OT +Ġr s +Ġoblig atory +ĠArchitect s +ĠS ven +ĠF EC +0 200 +Christ mas +ĠAlban ia +rat om +58 7 +Ġhard ships +Ġaut os +ĠCharg es +Ġap es +Ġ3 76 +wal let +Ġintox ication +Ġgobl in +Ġ5 70 +++++++++ ++++++++ +ĠYel p +ĠMag netic +ĠBr iggs +R ail +Ġspawn s +ĠW iggins +Ġshowc ased +Ġres orted +ub en +Ġwh ipping +Ġim itate +Ġdigest ion +ĠUS PS +ĠG est +Ġye a +ĠT ight +ind al +ic as +` . +C AST +'' ; +ĠF et +opath ic +In valid +Ġregrett ed +Ġbro ccoli +ĠSc ores +e ve +Ġpost ings +Ġaccum ulating +Ġneed less +elf th +Ġmay ors +Ġsc rib +Ġanecd otes +Ġbot ched +ĠRib bon +ĠConstant ine +i uses +ess es +Ġdev ise +Comp ared +Ġp udding +Ġg arg +Ġev oke +79 7 +Ġdet ox +9 09 +ĠPie ces +ĠMcC artney +Ġmet ast +ĠK rypt +P OR +Ġt ending +ĠMerch ants +Pro of +ĠV arg +ĠPort able +ãĥ¼ãĥĨ ãĤ£ +B rain +25 00 +Ġfol iage +Ø ¹ +Ġment ors +ĠA ires +Ġminimal ist +Ġing ested +ĠTro jan +ĠQ ian +inv olved +0 27 +Ġer oded +RA FT +Ġbl urry +M ob +Ġbuff et +ĠFn atic +ae a +KN OWN +ĠIn it +s afety +en um +ACT ION +ĠCrus her +ĠD ates +Ġ ................ +c alling +ak ov +Ġvent ured +Ġ5 55 +au ga +H art +ĠA ero +M AC +Ġthin ly +Ġar ra +ST ATE +ild e +ĠJac qu +ĠFem ales +Ġthe orem +Ġ3 46 +Ġsmart est +ĠPU BLIC +ĠK ron +ĠB its +ĠV essel +ĠTele phone +Ġdec ap +Ġadj unct +ĠS EN +mer ga +Ġred acted +Ġpre historic +Ġexplan atory +ĠRun s +ĠUtt ar +ĠM anny +ĠAUTH OR +ĠUnle ashed +ĠBow ling +be ans +79 3 +Ġunivers es +Ġsens it +ĠK ung +re peat +ctr l +Ġp aced +Ġfull er +Cl ock +Ġrec omb +ĠF aul +ĠB unker +Ġpool ed +Ġan a +ĠM outh +LL OW +hum ane +Ġbull do +ĠMicha els +f am +Ġwreck ed +Ġport rays +ĠWh ale +ĠH es +Ġguess es +ĠBrow se +ĠL APD +Ġconsequ ential +ĠInn ocent +ĠD RAG +Ġtrans gress +ĠO aks +Ġtri via +ĠRes on +ĠA DS +-- + +ĠT oll +Ġgrasp ing +ĠTHE M +ĠT ags +ĠCon clusion +Ġpract icable +Ġho op +Ġunintention ally +Ġign ite +ĠM ov +ur ized +le hem +Ter min +Ġcolour ful +ĠLin ear +ĠEll ie +G y +Ġman power +Ġj s +Ġem oji +ĠSHAR ES +_ . +0000 7 +Ġsophistic ation +Ġunders core +Ġpract ise +Ġbl ob +op ens +Uk raine +Ke eping +Y C +J R +ult imate +Cl aim +Ġautom obiles +99 3 +ste el +Ġpart ing +ĠL ank +... ? +Ġ38 5 +Ġremem brance +Ġe ased +Ġcov ari +ĠS ind +Effect ive +Ġdisse mination +ĠMo ose +ĠCl apper +br ates +App ly +Ġinv is +Ġwors ened +âĢĶ - +Ġlegisl ator +ĠL ol +ĠRow e +Ġdealers hip +um ar +id ences +Ġinvestig ates +Ġc ascade +Ġbid der +ĠB EN +Iron ically +Ġpres iding +Ġd ing +Ġcontrad icted +Ġshut s +ĠF IX +Ġ3 66 +Dist rict +Ġsin ful +ĠChar isma +o ops +Ġtot ality +Ġrest itution +ĠOpt imus +ĠD ah +Ġcl ueless +urn ed +Ġnut rit +Ġland owners +Ġfl ushed +Ġbroad en +m ie +Ġprint ln +Ġn ig +ĠCorp us +J en +Ġprot o +ĠWik imedia +ĠPal o +C OR +Ġstory lines +Ġevangel icals +ĠDar rell +Ġrot or +ĠH W +sk illed +ery l +Ġbe gg +ĠBl umenthal +Ġwe aving +Ġdown wards +ĠJack et +ĠANG EL +Te chnology +Ġes oteric +alde hyde +Ġfur iously +Ġforeign er +We ak +CH O +ĠH ound +Exper ience +ĠPlay station +ĠM IA +ĠU ng +cl oth +ag all +Ġcal ming +iz ens +St ruct +ĠW itches +ĠCeleb ration +Ġ........ ...... +pt roller +ĠTC U +Ġb unny +ãĥ į +ut orial +Ġup scale +ĠSt a +ĠCol ossus +Ġchlor ide +ĠZ ac +ĠRe asons +ĠBrook ings +ĠWH ITE +][ / +ĠL ose +9 05 +Ġunders ide +ern els +Ġv ape +do zen +upp et +ĠST OP +mat ical +ĠStat ements +hed dar +P AC +Custom er +Ġmem os +ĠP J +end ars +ĠLim its +l augh +Ġstabil ized +ĠALE C +Y A +Up grade +al am +Ġtechn o +Ġan ew +fore seen +Ġcolleg iate +ĠPy ro +ĠD ism +Ġfront line +Ġammon ia +I U +Qu ite +John ny +ass in +G OP +ĠSt yles +ĠSovere ign +acter ial +5 49 +ĠR IP +ĠL ists +Ġ3 64 +ĠRece p +s ocket +ĠByr d +ĠCand le +An cient +Ġappell ant +en forcement +ace a +ans ki +Ġold s +88 6 +Ġsl urs +Ġem pires +Ġbuck le +Ġalien ation +ĠAber deen +Ġunic orn +Ġoverr iding +ĠL X +pp a +Ġdesp ised +ĠB ugs +ĠB ST +S outhern +5 33 +Ġhall mark +ĠPost er +Ġstem med +Ġprincip als +ĠT ECH +ĠSand wich +It aly +Ġche esy +ĠSet TextColor +ĠProt ective +ĠC ohn +J O +apt op +Re ason +Lead er +ĠUnder stand +ĠFr idays +ĠContin uous +Ġcl ipping +ĠR ye +Ġber th +tim er +ann is +re act +Ġbuff alo +ĠPar as +Ġ6 55 +Ġpres ided +ĠSun rise +Ġve ts +Ġcl oves +ĠMcC ull +Stre ngth +G AN +Ġill iter +ĠPric ing +l é +Ġresist or +Ġbr un +ĠSuff olk +Ñ ĭ +ĠL iver +Re leased +Ġwhat s +8 60 +ĠMe asures +Ġden ouncing +ĠRy zen +Ġsou ven +Ġcareg ivers +ch ini +ĠScar lett +Ġt rough +Cong ratulations +Ġtax is +ĠTrad ition +j it +Ġtable top +Ġhither to +Ġdis information +off ensive +h ra +ĠDISTR ICT +Ġcompl icate +chen ko +ĠRecon struction +Ġpalp able +Ġa usp +Ġ4 28 +Ġshowc ases +ĠPublic ation +know ledge +inn on +4 19 +Ġretri eval +and ers +Ġref ute +Ġinqu ired +g ur +Ġneg ativity +Ġcons erve +Ġafter life +Ġpres upp +ĠGill espie +Ġm t +ĠD N +T ap +Ġper pend +ĠS my +does n +Ġsp illing +Ġhyp ers +K ate +® , +ke pt +ĠP owered +Ġj a +ĠK lux +ard e +ab an +Ġ4 44 +Ġflatt ened +ĠImprove ments +urg a +ĠK und +Ġins cribed +Ġfac ult +Ġunpre pared +ĠCons umers +Ġsatisf ies +Ġpul monary +Ġinf iltration +Ġex ternally +Ġcongrat ulations +ag han +Ġair liner +Ġfl ung +Ġfly ers +G D +Ġsnipp ets +Ġrec ursive +Ġmaster ing +L ex +Ġovert ly +v g +Ġluck ily +Ġenc ro +ĠLanc et +ĠAbyss al +function al +Ġs ow +Ġsqu id +Ġnar ration +Ġn aughty +ĠHon our +ĠSpart ans +Ġsh atter +ĠTac oma +ĠCal ories +ĠR aces +Sub mit +Ġpurpose fully +w av +ĠY ok +F est +ĠG err +Met ro +Ġit iner +f amous +Ġ" { +in line +was her +Iss ue +ĠCL IENT +oz o +Vers ions +7 25 +ĠGl ock +Ġshield ed +ĠPC R +ENC Y +ĠWe ld +ĠSim pl +Ġredirect ed +ĠK ham +Ġ( > +Ġlab ou +Ġdi apers +ss l +Ġcell ar +organ isms +ore sc +ĠBer ks +did n +Sh ipping +C hest +Ġund one +Ġmillion aire +Ġc ords +ĠYoung er +appropri ately +Ġsequ els +u ve +ant icipated +Ġle wd +ĠSh irt +ĠDmit ry +V eter +Ġsl aying +ĠY ar +Ġcompl ication +I owa +ĠEric a +ĠBL M +g irlfriend +b odied +6 26 +19 63 +Ġintermedi ary +Ġcons olation +M ask +ĠSi em +ow an +Beg inning +Ġfix me +Ġculmin ated +Ġcon duc +ĠVolunte er +Ġpos itional +Ġgre ets +ĠDefin itions +Ġthink er +Ġingen uity +Ġfresh men +ĠMom ents +Ġ35 7 +ate urs +ĠFed Ex +s g +69 4 +Ġdwind ling +ĠBO X +sel age +Ġt mp +Ġst en +ĠS ut +Ġneighbourhood s +Ġclass mate +f ledged +Ġleft ists +Ġclim ates +ATH ER +ĠScy the +ul iffe +Ġs ag +Ġho pped +ĠF t +ĠE ck +ĠC K +ĠDo omsday +k ids +Ġgas ped +Ġmon iker +ĠL od +ĠC FL +t ions +r ums +fol ios +Ġm d +Ġunc anny +Ġtrans ports +ĠLab rador +Ġrail ways +Ġappl iance +ĠCTR L +æ Ģ +Pop ulation +ĠConfeder acy +Ġunb earable +Ġdors al +ĠIn form +op ted +ĠK ILL +Mar x +Ġhypoc ritical +q us +ĠN umerous +ĠGeorg ian +ĠAmbro se +ĠL och +Ġgu bernatorial +ĠX eon +ĠSupp orts +ens er +ee ly +ĠAven ger +19 65 +Ar my +Ġju xtap +Ġcho pping +ĠSpl ash +ĠS ustainable +ĠFin ch +Ġ18 61 +ict ive +at meal +ĠG ohan +Ġlights aber +ĠG PA +ug u +ĠRE PL +vari able +Ġher pes +Ġdesert s +ac iously +Ġsitu ational +week ly +ob l +Ġtext ile +ĠCorn wall +Ġcontrace ptives +ĠA ke +] - +ä¹ ĭ +: , +ĠW em +ĠB ihar +Ġ' . +Ġbe re +Ġanal ogue +ĠCook ies +Ġtake off +Whe el +Ġmaj estic +Ġcomm uting +0 23 +ĠCor pse +ass ment +min i +Ġgor illa +ĠAl as +ere e +Ġacquaint ances +ĠAd vantage +Ġspirit ually +Ġey ed +pm wiki +ĠE nder +Ġtrans lucent +Ġnight time +ĠIM AGES +5 45 +ĠK amp +ĠFre ak +Ġ ig +Port land +4 32 +ĠM ata +Ġmar ines +Ġh ors +ater asu +ĠAtt ribution +Ġ-------- - +Ġk ins +ĠBEL OW +++ + +Ġre eling +ol ed +Ġcl utter +ĠRel ative +Ġ4 27 +B US +Ġa vert +ĠChe ong +ĠA ble +ĠPry or +Develop er +Ġen cyclopedia +ĠUSA F +ĠG arry +Sp ain +Bl ocks +Ġexp osition +ĠGamer Gate +W OR +Ġstockp ile +Ġclot hed +ĠT one +ĠR ue +t umblr +Ġtreacher ous +Ġf rying +Ñ Į +ĠS ph +Ġrest raints +Ġemb odies +ĠG es +S afety +Ġnegoti ators +min ing +ĠAppalach ian +L OS +ĠJenn a +Ġpass ers +ç ĭ +sn ap +Ġshort en +creat or +Ġinn umerable +uther land +67 4 +ĠW OM +ĠAs cend +ĠArm ory +ĠTrans action +K ick +Ġsuit case +day Name +Ġwaste ful +mar riage +ĠMcC abe +ite ch +ĠO ss +Cl osure +ĠTreasure r +Ġindec ent +ĠD ull +Ġresid ences +19 59 +ĠS ettlement +Ham ilton +Ġself ies +ĠRank ing +ĠBark ley +ĠB ore +ĠW CS +ĠMar itime +ĠH uh +ĠForest ry +Ġcultiv ating +ĠBall ard +Ġg arrison +ĠSD L +9 30 +Ġnas cent +Ġirresist ible +Ġaw fully +\/ \/ +Ġequ ate +Ġanthrop ology +ĠSylv ia +Ġintest ine +Ġinnoc uous +cess ive +ag ra +ĠMet roid +G rant +8 55 +ģ ĸ +Ġ" _ +ãĥĥ ãĥī +Ġappra isal +ĠFred dy +04 6 +Ġ40 6 +Ġ18 30 +Ġd ocking +St atic +Ġp ont +ĠVolt age +ĠSt ead +ĠMort gage +ĠJon ah +Y L +CLASS IFIED +Ġas bestos +nik ov +Ġcoll agen +ĠOrb ital +P ocket +7 99 +Ġhy brids +inc hes +Ġinv oice +und y +Ġinequ alities +T rend +w ashed +B ALL +Ġluc id +ĠComment ary +Ġw itty +Br andon +Ġbru ising +Ġ6 20 +es cent +box ing +P OL +Ġ3 78 +R ect +Ġlic ences +ĠMcG ee +p ressed +D anny +Ġj ammed +ord inate +Ġle th +Ġdistingu ishes +ĠYam aha +IL S +ĠH ume +ĠC ategories +Rober ts +Ch art +Ġbeet le +ĠGra veyard +Ġ($ ) +o ÄŁ +Ġtw ilight +are lla +á ½ +Ġbooth s +ĠH HS +ĠFeld man +Ġexcav ation +Ġphilosoph ies +at ography +ĠGar age +te chnology +Ġunfor gettable +Ġver ifying +Ġsubord inates +E ls +Ġne b +G aming +EN A +ĠAchieve ment +it ters +ĠG abe +Ġd umps +for cer +Ġpo ignant +ĠM BA +ĠHe idi +ime i +Ġm ages +Ġliber ate +Ġcircum cised +ĠMer maid +ĠMat th +t ogether +ĠW ichita +Ġstore front +ĠAd in +V II +Four th +Ġexplore rs +W ER +Not able +Bro ok +m ens +F aith +-------- - +ĠJ ou +¬ ¼ +Ġpine apple +Ġam alg +el n +ark able +ĠãĤµ ãĥ¼ãĥĨãĤ£ +ĠãĤµãĥ¼ãĥĨãĤ£ ãĥ¯ãĥ³ +Ġov arian +ĠE choes +Ġhairc ut +Ġp av +Ġch illed +anas ia +Ġsty led +Ġd ab +ni per +Ġminister ial +ĠD UP +T an +Ġsul ph +ĠD eter +ĠBo hem +od an +Ġeduc ator +â ĵĺ +sp ir +Ch icken +ĠE leanor +Ġqu i +Ġheav iest +Ġgrasp ed +U RA +Ġcro oked +Jess ica +pro blem +Ġpred etermined +Ġman iac +Ġbreath s +ĠLauder dale +Ġh obbies +y z +Cr ime +Ġcharism a +d L +Ġle aping +Ġk ittens +Ang elo +ĠJ ACK +ĠSu zanne +Ġhal ting +ENT ION +Ġswall owing +ĠEarthqu ake +Ġeight eenth +ĠN IC +ĠIN F +ĠCons cious +Ġparticular s +circ le +7 40 +Ġbene volent +Ġ7 47 +Ġ4 90 +Ġr undown +ĠVal erie +ĠB UR +Ġcivil isation +ĠS chn +W B +ot ide +intern ational +Ġj ohn +Ġ19 02 +Ġpe anuts +Ġflav ored +k us +Ġro ared +Ġcut off +é £ +Ġorn ament +Ġarchitect ures +Ġ3 69 +ol or +ĠWild e +ĠC RC +ĠAdjust ed +Ġprov oking +land ish +Ġrational ity +Ġjust ifies +Ġdisp el +Ġa meric +ĠPol es +Ø © +Ġen vis +ĠD oodle +ä½ ¿ +igs aw +auld ron +Techn ical +T een +up hem +ĠX iang +Ġdetract ors +ĠZ i +ĠJournal ists +Ġconduc ive +ĠVolunte ers +Ġs d +Know ing +Ġtrans missions +ĠPL AN +ĠL IB +Ġall uded +Ġob e +Ġd ope +ĠGold stein +Ġwavelength s +ĠDest ination +nd a +ug i +Ġattent ive +ĠLe an +ral tar +Ġman g +mb uds +ak ings +b ender +Ġacc ol +Ġcraw led +N OW +Min nesota +Ġflour ished +ĠZ up +ĠSuper visor +ĠOliv ier +Ex cellent +Ġwid en +D one +Ġw ig +Ġmiscon ceptions +Cor p +W an +Ġvener able +ĠNot ably +ĠKling on +an imate +Bo ost +ĠS AY +miss ing +ibli ography +mel on +Ġpay day +Ø ³ +bo le +Ġve iled +ĠAl phabet +It alian +Ġever lasting +ĠR IS +ĠC ree +rom pt +Ġh ating +Ġgrin ning +Ġge ographically +OS H +Ġwe eping +ĠÂłĠÂłĠÂłĠÂł ĠÂłĠÂłĠÂłĠÂł +Ġimpe cc +Let ter +Ġblo ated +PL A +ĠFe in +Ġper sever +Th under +Ġa ur +ĠR L +Ġpit falls +âĸ º +Ġpredomin ant +Ġ5 25 +7 18 +AP E +7 14 +Ġfarm land +ĠQ iao +Ġv iolet +ĠBah amas +Ġinflic ting +ĠE fficiency +Ġhome brew +Ġundert ook +Ġcur ly +ĠHard ing +man ia +59 6 +Ġtem pered +Ġhar rowing +ĠP ledge +ĠFranken stein +è ª +M otion +Ġpredict ably +ĠExpl osion +oc using +er d +col o +FF ER +Ġback field +ĠV IDE +ue bl +N arr +ĠArg ument +Ġgen omic +Ġbout ique +Ġbatt ed +ĠB inary +Ġg amb +ĠRh ythm +67 3 +Ġa float +ĠOlymp ia +Y ING +Ġend if +is in +Ġwin ters +Ġsc attering +I v +D istance +Ġtr u +ĠCom fort +Ġne xus +Ġair flow +ĠByz antine +p ayers +con i +ĠB etsy +D eal +ĠN ug +ĠContin ent +red ibly +Ġoptim izing +al beit +Ġec static +ĠPro to +ç · +iv ot +âĸ Ħ +em p +rou nder +Ġcl out +ĠI ST +66 3 +ĠDoll ars +ĠD AC +Ġsubsc ribed +Ġrehears al +Ġam ps +ĠSh ang +es m +Ġspr inkle +Ġassail ant +ĠO o +ĠCoin base +T act +Ġret ina +Ġn uns +R ON +att o +Ġj ug +ĠSV G +Ġb ikini +ĠFI LE +ĠFound ers +ep ort +ĠK P +Ġrest ores +ĠTh ick +Ġash ore +Ġappro vals +R ender +M AG +G raham +ĠCort ana +ãĥ³ ãĤ¸ +ss h +or ians +ars ity +ĠInsp ired +u pper +Ġsign alling +Ġreb uke +Ġfl ares +Ġdownt ime +Stud ies +Ġstagn ation +ĠSequ ence +Ġgr unt +Ġass ures +ĠPL A +59 2 +Ġintra ven +d epend +Sus an +ĠManz iel +Man ia +Cont ract +Ġsl ams +Ġcult ured +Ġcred itor +L IST +ĠH UM +ĠChatt anooga +serv ed +Ġclo aked +ĠF TP +p owder +ĠSt ella +uct ive +Ġcheap ly +ĠMU CH +ĠGalile o +Ġsu ites +spe ech +Ġdeliber ations +ĠCh ips +« ĺ +Bal ance +ĠWyn ne +ĠAk ron +Ass et +Ġhon oured +Ġed ged +Like wise +anim ous +ĠW age +ĠEz ek +ad vertisement +ĠRT X +ĠM AD +Ġmigr ating +ĠS QU +Ġ4 75 +Ed ited +Ġshorth and +ĠBas ics +Ġcro tch +ĠEV EN +Ġv m +effic iency +Ġcal ves +ĠF rie +ĠBrill iant +Ġstri kers +Ġrepent ance +Ġarter ies +r l +B ed +h ap +Ġcrypt ography +ĠSab res +Ġ4 14 +vi ks +ih ara +aps es +T alking +Ġintertw ined +Ġdoc ks +Ġalle le +ĠArt ifact +ĠH IM +t orn +ç ķ +Ġop acity +ĠE ly +os uke +Ġn ipple +Ġhand written +ĠV K +ĠChamber lain +ĠLa os +ig raph +g row +Ġtr illions +Ġdescend ant +ĠSail or +as uring +Ġce ilings +ĠWare house +f lying +ĠGl ow +Ġn ont +Ġmiscar riage +Ġrig s +Ġmin istries +Ġelabor ated +Ġdel usional +ĠHum ane +Ġ3 79 +n ets +Ġblack out +add ers +Ġn p +ĠT ire +ro sc +Ġsub div +Ġlink age +Ġchron ological +ĠHER O +Ġres ettlement +ĠVin yl +Ġpast oral +ĠMob il +ĠBar bar +Co oldown +ĠF ritz +c riminal +re pe +Ġbell ig +ĠBre ed +Ġ4 18 +Ġsem blance +ij k +Ġcur tail +Ġclin ch +cont ained +ĠProm pt +ast on +Ġw i +Ġpursu its +5 15 +ĠGl oss +Ġfl ips +Ġcoup ons +Ġcl oning +ĠLike ly +Rem oved +ĠQu artz +r ices +ĠSpe ars +Ġp ious +Ġdep reciation +ĠD are +oun ces +am az +O nt +Ġp innacle +d ocker +0 26 +ĠW yr +ĠPro per +Ë Ī +n il +By tes +Ġseek er +t rial +Ġunf olds +ĠMar se +Ġextravag ant +ĠSurviv ors +RED ACTED +ĠSpeed way +ĠCra igslist +sub mit +ĠGener ations +Ġup holding +Ġblood stream +ĠMiss ions +ĠL awn +Ġlim bo +ene i +H uh +ĠWild cats +pre p +ĠMark us +ĠFor bidden +rit ic +IN O +Ġexhib iting +requ ent +ch uk +Ġhabit ual +ĠComp atibility +Dr ag +RIP T +uj ah +GR OUND +Ġdelinqu ent +Ġburn er +Ġcontempor aries +Ġgimm ick +load s +Ġno zzle +p odcast +ĠW ak +ĠStat en +ĠK uh +ãģ ĵ +inter rupted +Ġinv incible +ĠBurn ett +cig arette +ĠPeb ble +ĠTem porary +ĠMar ino +58 2 +Ġwast eland +ident ly +T x +Ġr ite +ĠPan asonic +ĠM iddles +ĠHort on +ae us +Ġc uring +Ġm ats +Ġadj ourn +Ġfears ome +pe z +bo ats +Ġpro pell +Ġconflic ted +ĠAng er +Ġinsurg ent +K arl +Ġco ales +Ġsouth western +Ġdis su +ĠO vert +******** **** +Ġbox ed +ĠBr une +aa a +Ġgard ening +ĠEng el +tr acks +Ġpur ified +Ġplace holder +ĠL ikes +Ġd an +G ab +Ġe ct +ĠF aw +ĠEl iot +Ġ' , +otrop ic +ĠRu in +hed on +Ġca ul +Ġa ft +ĠCad illac +gh a +ass ian +ud eb +ĠT ick +Ġadjust s +AR GET +5 37 +isc he +ant y +ĠFried rich +ĠBl izz +ĠA OL +Camp aign +Ġmamm al +ĠVe il +ĠK ev +ĠMaur it +ĠDam ien +N ation +E astern +Ġ{ : +Ġ= ================================ +Ġstereotyp ical +Ġatt ic +ĠCy borg +requ ire +Ġaward ing +ĠPap ua +bt n +b ent +B oo +Ġ( = +ĠX ander +ĠSomers et +Ġcatch y +Ġcert ify +STR UCT +Ġit al +Ġt ides +ĠBr ands +G ray +comp etitive +Ġcur ator +ĠD G +omin ium +ĠGM Os +ci ating +ĠCarm en +ow ard +Balt imore +Ġr gb +C u +Ġwip es +spe ll +IT NESS +Ġsummar izes +ĠRe vis +Ġwhistlebl owers +ĠBre ach +Ġcro chet +k os +ews ki +Ġrep et +Ġcrim son +ĠKar achi +read able +dim ension +ĠI gor +ild ed +ĠZ ed +ĠKe ane +ĠCos metic +DE P +Ġretreat ing +ĠU A +ens ical +Ġd usk +ĠDick ens +Ġaren as +ĠPass age +level s +Ġcur v +P ope +Ġch ores +ĠEl ise +ĠComp ass +b ub +Ġmamm alian +ĠSans krit +ĠAN C +ĠCr ack +Q ual +L aun +amp unk +Ġlearn ers +Ġglam orous +Ġfur the +erm ott +c and +Gener ic +Ġnarr ated +Ġdisorder ly +ĠTrans actions +ĠDet ention +ĠR oku +Ä į +Ġunder statement +ĠS aur +ĠRodrig o +ĠAS AP +S in +Ġre joice +Method s +Ġelectro de +Ġworsh ipped +Ġid i +ĠPhys icians +Ġpop up +Ġde ft +ĠRem oval +ĠBu enos +ver bs +Ġfun k +ush a +rict ion +ore a +ĠBang alore +ĠKen obi +zz i +Ġnorm ative +Ġgobl ins +Ġcaf es +ĠUN CLASSIFIED +ĠF ired +S IGN +Ġs clerosis +ĠV oter +ĠSon ny +ĠExt end +ĠEV s +Ar senal +Ġp si +Ġwid est +ĠT us +Ġlo oms +Ġjust ifying +ĠGr anger +è ¯ +Ref er +58 3 +Ġflour ishing +ab re +Ġr ave +ĠCont ra +Ġ18 98 +Add s +Ġf ul +ĠCo oke +some one += # +67 1 +Ġy ak +Ġar te +ĠMis cellaneous +ĠDet ection +ĠCl ancy +â ģ +ass ies +Ġval iant +ĠFemin ist +cor ruption +V el +P ear +Ġsucc inct +Ġquick est +k w +Ġsp itting +ĠL ibraries +åħ ī +ant z +D ad +ĠSpec ifications +rup ulous +and r +RES ULTS +Ġsnow ball +Ġpred is +ĠB axter +ĠNurs ing +ĠCh aff +s we +Ġout age +Ġnest ing +Ġnotor iety +tr igger +on ite +j on +Ġf ou +ook ed +ĠCelebr ity +re ality +Ġfat ig +Ġhug ging +Ġbother s +ĠPan zer +ĠCh andra +fig ured +Ġvol ts +ĠCloud s +Ġfee ble +ĠCur ve +ĠAs us +78 6 +abs or +ĠV ICE +ĠH ess +Ġmanufact ures +Ġgri zz +ĠPower ful +ac id +Ġsub sections +ĠKrug man +ĠAl ps +is u +Ġsequ est +ĠUlt ron +ĠT inker +ĠGo ose +Ġmism atch +Att orney +Ġmorph ology +ĠSix ers +ut tered +ĠE LECT +gr an +Rus sell +ĠG SL +Ġfort night +Ġ. ) +Ġapost le +pr one +el ist +Unt itled +ĠIm plementation +ist ors +Ġtank er +Ġpl ush +Ġattend ants +ĠT ik +ĠGreen wich +ĠY on +ĠSP L +cell s +unt led +S olution +ĠQu é +Ġvac ated +Ġupt ick +ĠMer idian +æ ĥ +ĠDr ill +9 25 +58 4 +Ġrenov ated +ĠKub rick +zy k +Ġl ousy +pp el +ohyd rate +ĠI zzy +lesi astical +CC C +ĠAj ax +Ġad apters +ĠPetra eus +Ġaffirm ation +ĠST OR +le ms +ad oes +ĠConstantin ople +Ġp onies +Ġl ighthouse +Ġadherent s +ĠBre es +omorph ic +Fight ing +Ġpl aster +ĠP VC +ĠOb st +Ġdear ly +ĠTo oth +icks on +Ġsh aming +P lex +A gg +Ġâ̦ " +Ġsub reddits +Ġpige on +ĠResident ial +ĠPass ing +Ġl um +ĠP ension +Ġpessim istic +Ġ4 32 +z inski +c ade +0 75 +Ġapolog ised +iy ah +Put ting +Ġgloom y +ĠLy me +=-=-=-=- =-=-=-=- +ĠT ome +ĠPsych iatric +ĠH IT +c ms +ap olog +Ġbreak er +Ġdeep en +Ġtheor ist +ĠHigh lands +Ġb aker +Ġst aples +Ġinterf ered +ĠAb ortion +jo ined +ch u +Ġform ulate +Ġvacc inations +Ġban ter +phe us +Ġoutfield er +ĠM eter +Ġ# #### +Ġ18 95 +Ġnarrow ing +ĠST ORY +f p +ĠC ST +ign ore +Ġproclaim ing +ĠR U +ĠB ALL +yn a +65 3 +Ġpos it +P RE +59 4 +ĠRegist rar +ĠPil grim +ic io +Ġpre tt +Ġlif eless +Ġ__ _ +Ne igh +ĠCh urches +orn o +Ġor cs +Ġkind red +ĠAud it +Ġmillenn ial +ĠPers ia +g ravity +ĠDis ability +ĠD ARK +W s +od on +Ġgrand daughter +ĠBro oke +ĠA DA +ER A +Ġpick ups +ĠWil kinson +ĠSh ards +ĠN K +Ġexp el +ĠKis lyak +Ġj argon +Ġpolar ized +ian e +Pub lisher +Ġreb utt +Ġapprehens ion +ĠK essler +Ġpr ism +F UL +19 64 +ĠL oll +ä ¿ +le thal +Å Ł +Ġg hetto +Ġb oulder +ĠSlow ly +ĠOsc ars +ĠInst ruction +ĠUl tr +ĠM oe +N ich +ĠP ATH +( * +ĠRE LEASE +un ing +rou se +en eg +Ġre imb +ĠDet ected +Do S +Ġster ling +Ġaggreg ation +ĠLone ly +ĠAtt end +hig her +Ġairst rike +ks on +SE LECT +Ġdef lation +ĠHer rera +C ole +rit ch +Ġadvis able +F ax +Ġwork around +Ġp id +mort em +ers en +Ġtyp o +Ġal um +78 2 +ĠJam al +script s +Ġcapt ives +ĠPres ence +ĠLie berman +angel o +Ġalcohol ism +ass i +Ġrec ite +Ġgap ing +Ġbask ets +ĠG ou +Brow ser +ne au +Ġcorrect ive +und a +sc oring +ĠX D +Ġfil ament +Ġdeep ening +ĠStain less +Int eger +Ġbu ggy +Ġten ancy +ĠMub arak +Ġt uple +ĠD roid +ĠS itting +Ġforfe it +ĠRasm ussen +ixt ies +es i +ĠKim mel +Ġmetic ulously +Ġap opt +ĠS eller +08 8 +ec ake +hem atically +T N +Ġmind less +Ġdig s +ĠAcc ord +ons ense +em ing +br ace +Ġe Book +ĠDist ribut +ĠInvest ments +w t +] ), +beh avior +56 3 +Ġbl inding +ĠPro testers +top ia +Ġreb orn +ĠKel vin +ĠDo ver +ĠD airy +ĠOut s +Ġ[ / +Ï Ģ +b p +ĠVan ity +ĠRec ap +ĠHOU SE +ĠF ACE +Ġ4 22 +69 2 +ĠAnt ioch +cook ed +Ġcoll ide +Ġa pr +Ġsle eper +ĠJar vis +Ġalternative ly +ĠLe aves +ĠM aw +Ġantiqu ity +ĠAdin ida +Ġab user +Poké mon +Ġass orted +ĠRev ision +ĠP iano +ĠG ideon +O cean +Ġsal on +Ġbust ling +ogn itive +ĠRah man +Ġwa iter +Ġpres ets +ĠO sh +ĠG HC +oper ator +Ġrept iles +Ġ4 13 +ĠG arr +ĠCh ak +Ġhas hes +Ġfail ings +Ġfolk lore +Ġab l +ĠC ena +ĠMac Arthur +ĠCOUR T +Ġperipher y +app ers +Ġreck oned +ĠInf lu +ĠC ET +Ġ3 72 +ĠDefin itive +ass ault +4 21 +Ġreservoir s +Ġd ives +ĠCo il +DA Q +Ġvivid ly +ĠR J +ĠBel lev +Ġec lectic +ĠShow down +ĠK M +ip ed +reet ings +ĠAs uka +L iberal +ĠÏ Ħ +Ġbystand ers +ĠGood win +uk ong +S it +ĠT rem +Ġcrim inally +ĠCirc us +ch rome +88 7 +Ġnan op +ĠOb i +ĠL OW +o gh +ĠAuth ors +ob yl +Ur ban +Ġt i +ĠWe ir +t rap +ag y +Ġparent heses +Ġout numbered +Ġcounter productive +ĠTob ias +ub is +P arser +ST AR +Ġsyn aptic +ĠG ears +Ġh iber +Ġdebunk ed +Ġex alted +aw atts +H OU +Ch urch +ĠPix ie +ĠU ri +ĠForm ation +ĠPred iction +C EO +Ġthro tt +ĠBrit ann +ĠMad agascar +ë ĭ +Ġbill boards +ĠRPG s +ĠBe es +complete ly +F IL +Ġdoes nt +ĠGreen berg +re ys +Ġsl ing +Ġempt ied +ĠPix ar +ĠDh arma +l uck +ingu ished +Ġend ot +Ġbab ys +05 9 +che st +r ats +Ġr idden +Ġbeet les +Ġillum inating +Ġfict itious +ĠProv incial +Ġ7 68 +Ġshe pherd +ĠR ender +Ġ18 96 +C rew +Ġmold ed +ĠXia omi +ĠSp iral +Ġdel im +Ġorgan ising +Ġho ops +ĠBe i +z hen +Ġfuck in +Ġdec ad +Ġun biased +am my +sw ing +Ġsmugg led +Ġk ios +ĠP ERSON +ĠInquis itor +Ġsnow y +Ġscrap ing +ĠBurg ess +P tr +ag ame +R W +Ġdro id +ĠL ys +ĠCass andra +Jac ob +Ġ35 4 +Ġpast ure +Ġfr anc +ĠScot ch +ĠEnd s +ĠI GF +def inition +Ġhyster ical +ĠBrown e +77 1 +Ġmobil ization +æ ķ +iqu eness +Th or +Ġspear headed +Ġembro iled +Ġconject ure +jud icial +Ch oice +Ġpaper back +P ir +Ġrec overs +ĠSur ge +ĠSh ogun +ĠPed iatrics +ãģ ł +Ġsweep s +ĠLabor atories +ĠP acks +al us +add in +Ġhead lights +g ra +Ev idence +COL OR +Ad min +Ĭ ± +Ġconco ct +s ufficient +Ġun marked +Ġrich ness +Ġdiss ertation +Ġseason ing +Ġg ib +ĠM ages +un ctions +ĠN id +che at +ĠTM Z +c itizens +ĠCatholic ism +n b +Ġdisemb ark +ĠPROG RAM +a ques +Ty ler +Or g +ĠSl ay +ĠN ero +ĠTown send +IN TON +te le +Ġmes mer +9 01 +Ġfire ball +ev idence +aff iliated +ĠFrench man +ĠAugust a +0 21 +Ġs led +Ġre used +ĠImmun ity +Ġwrest le +assemb led +Mar ia +Ġgun shots +ĠBarb ie +Ġcannabin oids +ĠTo ast +ĠK inder +IR D +Ġre juven +Ġg ore +Ġrupt ure +Ġbre aching +ĠCart oon +Ġ4 55 +ĠPale o +6 14 +Ġspe ars +ĠAm es +ab us +Mad ison +GR OUP +Ġab orted +y ah +Ġfel on +Ġcaus ation +Ġprep aid +Ġp itted +op lan +ĠShel ley +ĠRus so +ĠP agan +Ġwill fully +ĠCan aver +und rum +ĠSal ary +ĠAr paio +read er +ĠR ational +ĠOver se +ĠCa uses +Ġ* . +Ġw ob +Ke ith +ĠCons ent +man ac +77 3 +6 23 +Ġfate ful +et imes +Ġspir ited +ĠD ys +Ġhe gemony +Ġboy cot +ĠEn rique +em outh +Ġtim elines +ĠSah ara +ĠRel ax +ĠQuin cy +ĠLess ons +ĠE QU +SE A +N K +ĠCost co +Incre ase +Ġmotiv ating +ĠCh ong +am aru +ĠDiv ide +Ġped igree +ĠTasman ia +ĠPrel ude +L as +9 40 +57 4 +Ġch au +ĠSp iegel +un ic +-- > +ĠPhil ips +ĠKaf ka +Ġuphe aval +Ġsent imental +Ġsa x +ĠAk ira +ser ial +Mat rix +Ġelect ing +Ġcomment er +ĠNeb ula +ple ts +ĠNad u +ĠAd ren +Ġen shr +ĠR AND +fin ancial +ĠCly de +uther ford +Ġsign age +Ġde line +Ġphosph ate +rovers ial +f ascist +ĠV all +ĠBeth lehem +Ġfor s +Ġeng lish +S olid +N ature +Ġv a +ĠGu ests +Ġtant al +Ġauto immune +;;;;;;;; ;;;; +ĠTot ally +ĠO v +Ġdef ences +ĠCoc onut +Ġtranqu il +Ġpl oy +Ġflav ours +ĠFl ask +ãĤ¨ ãĥ« +ĠWest on +ĠVol vo +8 70 +Ġmicro phones +ver bal +R PG +Ġi ii +; } +0 28 +Ġhead lined +Ġprim ed +Ġho ard +ĠSh ad +ĠEN TER +Ġtri angular +Ġcap it +l ik +ĠAn cients +Ġl ash +Ġconv ol +Ġcolon el +en emy +G ra +Ġpub s +ut ters +Ġassign s +ĠPen et +ĠMon strous +ĠBow en +il ver +H aunted +ĠD ing +start ed +pl in +Ġcontamin ants +ĠDO E +ff en +ĠTechn ician +R y +Ġrob bers +Ġhot line +ĠGuard iola +ĠKau fman +row er +ĠDres den +ĠAl pine +E lf +Ġf mt +ĠS ard +urs es +g pu +Un ix +Ġunequiv ocally +ĠCitizens hip +qu ad +m ire +ĠS weeney +B attery +6 15 +Ġpanc akes +Ġo ats +M aps +ĠCont rast +mbuds man +ĠE PS +Ġsub committee +Ġsour cing +Ġs izing +ĠBuff er +ĠMand atory +Ġmoder ates +ĠPattern s +ĠCh ocobo +ĠZ an +ĠSTAT ES +ĠJud ging +ĠIn her +* : +Ġb il +ĠY en +Ġexh ilar +oll ower +z ers +Ġsn ug +max imum +Ġdesp icable +ĠP ACK +ĠAn nex +Ġsarcast ic +Ġlate x +Ġt amp +ĠS ao +b ah +ĠRe verend +ĠChin atown +ĠA UT +d ocumented +ĠGA BA +ĠCan aan +ĠÙ ħ +Ġgovern s +pre v +E sc +ĠEst imates +OS P +Ġendeav our +ĠCl osing +omet ime +every one +Ġwor sen +Ġsc anners +Ġdev iations +ĠRobot ics +ĠCom pton +Ġsorce rer +Ġend ogenous +Ġem ulation +ĠPier cing +ĠA ph +ĠS ocket +Ġb ould +ĠO U +ĠBorder lands +Ġ18 63 +G ordon +ĠW TO +Ġrestrict s +Ġmosa ic +Ġmel odies +ç Ħ +T ar +Ġdis son +ĠProv ides +Ġ ...... +b ek +F IX +Ġbro om +ans hip +Do ctors +Ġner ds +ĠReg ions +na issance +Ġmet e +Ġcre pt +pl ings +Ġgirlfriend s +kn it +ig ent +ow e +Ġus hered +ĠB az +M obil +4 34 +ĠPres ents +orig in +Ġins omnia +ĠA ux +4 39 +ĠCh ili +irs ch +G AME +Ġgest ation +alg ia +rom ising +$ , +c row +ĠIn spection +at omic +Rel ations +J OHN +rom an +ĠClock work +ĠBak r +m one +M ET +Ġthirst y +Ġb c +Ġfacult ies +R um +Ġnu ance +ĠD arius +ple ting +fter s +etch up +Reg istration +ĠK E +R ah +Ġpref erential +ĠL ash +ĠH H +Val id +ĠN AV +Ġstar ve +ĠG ong +z ynski +ĠAct ress +Ġw ik +Ġun accompanied +lv l +Br ide +AD S +ĠCommand o +ĠVaugh n +Wal let +Ġho pping +ĠV ie +Ġcave ats +Ġal as +if led +ab use +66 1 +Ġib n +Ġg ul +Ġrob bing +t il +IL A +Ġmit igating +Ġapt ly +Ġty rant +Ġmid day +ĠGil more +ĠDe cker +Ġ§ § +part ial +Ex actly +Ġphen otype +Ġ[+ ] +ĠP lex +ĠI ps +vers ions +Ġe book +Ġch ic +g ross +":" "},{" +ĠSur prisingly +M organ +Ġresid ues +ĠConf ederation +in feld +Ġl yr +mod erate +Ġperpend icular +V K +Ġsynchron ized +Ġrefres hed +Ġad ore +ĠTor ment +ol ina +Ġ26 00 +Item Tracker +Ġp ies +ĠF AT +ĠR HP +0 48 +ĠRES P +ĠB J +all ows +P and +Ġunw elcome +ĠV oc +ĠBast ard +ĠO W +ĠL AR +ĠHeal er +Environment al +ĠKen yan +ĠTr ance +ĠP ats +Ġali ases +ĠGar field +Ġcampaign er +Ġadvance ments +ĠOkin awa +ĠC oh +ows ky +Ġstar ved +Ġsize able +Ġ: -) +Ġm RNA +Ġsusp ensions +ist ar +Scot land +Pr in +-------------------------------- ---------------- +Ġ50 2 +Ġteasp oons +Ġ10 50 +Ġcoerc ive +ĠMason ic +edd ed +ĠPass enger +Ġl att +Ġbr aces +ĠSt eal +ĠNY T +ĠK ats +ĠCel est +ae z +T u +ĠCoul ter +ðŁ ĺ +Fl ickr +ĠWil mington +ith s +++ ; +Ġv ending +Ġneg ro +ĠPh i +ĠYellow stone +Call back +Ġsh ampoo +ĠSh ades +w at +Ġsuper human +Ġridic uled +Ġhol iest +om bo +Ġintern s +Ġh one +ĠPar agu +UR I +Ġd angling +ãĤ » +so v +ict ional +av ailability +Ġrev ocation +Ġd ow +in ic +ĠTHE IR +Ġis o +Ġout ings +ĠLeth al +Ġ) )) +Ġinacc ur +Ġout landish +Ġan us +let ico +id on +l ol +Ġun regulated +Ġsuccumb ed +Ġc uff +ĠWast eland +let al +Ġsub str +Ġcoff ers +Ġautom akers +ov i +ĠX ue +ĠDayton a +Ġjar ring +Ġf umes +Ġdisband ed +z ik +itt on +Ġstriking ly +Ġsp ores +Ad apter +.) : +ĠLynd on +ival ry +Ġor ally +Ġtumult uous +Ġdisple asure +Ġcon es +or rect +Ġappe ase +Ġder by +ĠTrip oli +ĠAl ess +Ġp oked +ĠGu ilty +v P +En ough +Ġorig inals +6 99 +Ġrabb i +Ġproverb ial +Ġpostp one +el ope +ĠMist y +Ġstaff ed +ĠUn employment +redit ary +Ġdilig ent +re comm +me asures +as in +8 25 +Ġpond s +Ġmm ol +ĠS AR +ĠC ARE +Ġ3 71 +Ġclen ched +ĠCors air +Ġcaric ature +z n +att ach +ĠSch ro +spe ak +p ainted +ĠS uc +ĠE NT +Ġcell ul +ĠP aid +di agn +WH ERE +Ġtext ed +B arn +Ġret racted +ĠRe ferred +S av +Ġup keep +Ġwork places +ĠTok ens +Ġampl ify +cl inical +Ġmult ic +mber g +Ġconvol uted +Reg ion +5 65 +ĠTop ic +Ġsn ail +Ġsal ine +Ġins urrection +ĠPet r +f orts +B AT +ĠNav ajo +Ġrud imentary +ĠLak sh +OND ON +Me asure +Ġtransform er +ĠGodd ard +Ġcoinc ides +ir in +R ex +ĠB ok +qu it +Ġshotgun s +Ġprolet arian +Ġsc orp +ĠAd a +5 14 +Ġsl ander +record ed +Ġemb ell +ris ome +Ġapolog izing +ĠMul cair +ĠGib raltar +Cl a +Ġall ot +ĠAtt ention +Ġ4 33 +le ave +Ġwh ine +ĠIss a +ĠFa ust +ĠBar ron +hen y +Ġvictim ized +J ews +Ġnurt uring +ett el +W inged +ĠSub tle +Ġflavor ful +ĠRep s +eng ed +call back +Ġdirection al +Ġcl asp +ĠDirect ions +plan et +icult ure +Hel per +ic ion +ac ia +Ġç ¥ŀ +Ġsur ges +Ġcan oe +ĠPrem iership +be en +Ġdef ied +ĠTro oper +Ġtrip od +Ġgas p +ĠE uph +ĠAd s +vern ight +high ly +R ole +Ġent angled +ĠZe it +6 18 +ĠRust y +Ġhaven s +ĠVaugh an +HA EL +ĠSER VICE +/ , +Ġstr icken +Ġdel usions +Ġb is +ĠH af +Ġgrat ification +Ġent icing +UN CH +Ad ams +ĠOL ED +ĠBeet le +Ġ18 99 +ĠSO FTWARE +ateg or +V L +ĠTot em +ĠG ators +AT URES +Ġimped ance +Reg istered +ĠC ary +ĠAer ial +on ne +en ium +Ġd red +ĠBe g +Ġconcurrent ly +Ġsuper power +ĠX an +j ew +imes ter +ĠDick inson +âĶ ģ +F la +Ġp ree +ĠRoll ins +© ¶æ +Ġden omination +ĠL ana +5 16 +Ġinc iting +sc ribed +j uries +ĠWond ers +app roximately +Ġsusp ending +Ġmountain ous +ĠL augh +oid al +N s +Det ect +) = +ĠL uthor +ĠSchwarz enegger +ĠMull er +ĠDev i +ec ycle +J ar +6 13 +ĠL ongh +B ah +ĠSP ORTS +n w +Ġref inement +Ġwater ways +Ġd iner +Bl ade +68 3 +F ac +Ġinitial s +Ġro g +Ġparan ormal +B UT +Ġ[ ( +ĠSw anson +ĠM esh +âĸ ¬ +Impro ve +ĠRad iation +ĠEst her +ĠE sk +ĠA ly +ik y +Ġir rad +ĠBuck ingham +Ġref ill +Ġ. _ +Re pe +CON CLUS +Ġdifferent iated +Ġchi rop +ĠAt kins +Pat tern +Ġexc ise +Ġcab al +N SA +ĠST A +ĠS IL +ĠPar aly +Ġr ye +ĠHow ell +ĠCount down +ness es +alys ed +Ġres ize +ãĤ ½ +Ġbudget ary +ĠStr as +w ang +Ġap iece +Ġprecinct s +Ġpe ach +Ġsky line +Ġ35 3 +pop ular +App earances +ĠMechan ics +ĠDev Online +S ullivan +Z en +Ġp u +op olis +5 44 +Ġde form +Ġcounter act +ĠL ange +Ġ4 17 +Con sole +77 4 +Ġnodd ing +Ġpopul ism +Ġhe p +Ġcoun selling +compl iance +U FF +Ġunden iably +Ġrail ing +ĠHor owitz +ĠSim one +ĠBung ie +Ġa k +ĠTal ks +x ff +fl ake +Cr ash +Ġsweat y +Ġban quet +ĠOFF IC +Ġinvent ive +Ġastron omer +ĠStam ford +ĠSc are +ĠGRE EN +olic ited +Ġr usher +Ġcent rist +ight ing +Ġsub class +Ġdis av +Ġdef und +ĠN anto +oci ate +m ast +Ġpac if +Ġm end +e ers +imm igration +ESS ION +Ġnumber ing +Ġlaugh able +ĠEnd ed +v iation +em ark +P itt +Ġmetic ulous +ĠL F +Ġcongrat ulated +ĠBir ch +Ġsway ed +Ġsemif inals +Ġhum ankind +m atter +ĠEqu ip +opa usal +S aid +ĠLay out +Ġvo icing +Ġth ug +Ġporn ographic +I PS +Ġmo aning +Ġgriev ance +Ġconf essions +esc al +TEXT URE +Aut hent +os aurus +P urchase +Ġreleg ation +al ter +ĠÂł Âł +Ġr iddled +Ġo gre +ĠLow ell +Occ up +E at +ĠHy der +ĠAdvis er +Com merce +H unt +ĠOr th +ĠComp etitive +ĠCL A +CD C +Ġsal ads +F le +Ġindustrial ized +` , +ĠO WN +Ġbec k +ĠPart icularly +oub t +Ġm M +ĠHuss ain +ĠChen nai +Ġ9 20 +Ġappoint ing +ĠCull en +,,,, ,,,, +Ġp ores +ver ified +Ġbi ochemical +em ate +Ġcoward ly +ĠHels inki +ĠEthiop ian +S OURCE +ER C +est ro +Ġbi otech +ĠS our +Ġbrew er +Bloom berg +Ġintens ify +Gl ass +an co +ĠF DR +gre SQL +ĠF ires +©¶æ ¥µ +ec o +100 1 +ĠHom eless +Ġinstant aneous +ĠH aste +ig el +D iamond +Ġp aving +Ġland fill +Ġd ads +h oun +: ] +Ġinc endiary +ĠLiving ston +ĠHil bert +ĠChe cks +st yles +in ators +ĠCl ive +ph rine +Ġchimpan zees +Ġp all +ĠJ M +ĠAad haar +ð Ŀ +Ġachie vable +dis abled +P ET +OOOO OOOO +M ot +Ġint angible +Ġbal let +ĠWe bs +ĠEst imated +Effect s +Ġb ailed +Josh ua +Ġturb ulence +Ġoccup ant +ĠDay light +Ġ36 1 +me et +Ġstat ically +Ġon look +Ġk i +il legal +Ġvel vet +Ġdehyd ration +Ġacqu ies +ĠRe z +ak ura +ĠU pton +at ro +Ġincomp rehensible +Ġback door +ĠRh ino +7 27 +Ġmath s +) + +Ġhe resy +Ġd f +ĠRoc he +ĠL ydia +Ġpanc reat +re ply +arre ll +Ġsolicit ation +Ġcirc adian +BI P +Ġfor ay +Ġcrypt ic +iz u +ime o +ĠTom ato +ĠH oms +ex amination +Ġqu arry +ĠVal iant +ĠJer icho +ĠIN CLUD +Ġ18 40 +5 19 +Ġres ists +Ġsnap shots +ĠSp ur +ĠAnt iqu +Log in +Ġbest selling +Ġant ic +ĠS utherland +ãĤ¢ ãĥ« +Ġ~ / +ĠP arm +è ĥ +P ages +int ensity +Ġimm obil +Ġ18 65 +zz o +Ġn ifty +Ġf entanyl +ĠPres ervation +op hen +Ġd arts +ĠD inosaur +po inters +ĠR ite +s uggest +aware ness +ĠSher idan +Ġst ances +Ġsor cery +Ġper jury +ĠNik ola +ie ver +Ġf iance +ĠJordan ian +ĠBall oon +Ġn ab +Ġk b +Ġhuman ities +ĠTan aka +hill ary +Ġconsult ancy +ĠZ ub +Ġrem ission +Ġconf id +CH Q +ĠF ug +Ġimpro vis +Y ep +/ _ +Ġunwilling ness +Ġport folios +05 5 +ĠInstruct or +aim an +Ġclaim ants +M bps +ĠBy e +re ceived +T weet +Ġind emn +ri z +am ara +N at +Ġeval uates +ĠL ur +ep ad +FO X +ĠTh ro +Ġrust y +Ġbed rock +ĠOp rah +J B +Ġmanip ulative +Ġwill ful +Ġrel apse +Ġext ant +The me +S ensor +ĠSt ability +go vern +Ġpo ppy +Ġkn ack +Ġins ulated +ĠT ile +ĠExt rem +Ġunt old +Ġconver ge +Ġref uel +ig roup +Ġdistort ions +Ġrav aged +Ġmechan ically +ĠRe illy +ĠN ose +ĠIncarn ation +ĠBeck y +abb ling +Ġt aco +Ġr ake +Ġmelanch oly +Ġillust rious +ĠDart mouth +Gu ide +ĠR azer +ĠBen z +Ult imate +ĠSur prise +Ġpage ant +off er +Who ever +Ġw iser +Ġchem ist +ĠHE LL +ĠBul k +Ġpl utonium +ĠCO VER +Ö ¼ +f ailed +Ġtire lessly +Ġinf ertility +ĠTr ident +ĠShow time +ĠC iv +V ice +requ ires +itt ance +Ġun controlled +interest ing +56 1 +Ġinnov ate +ateg ic +L ie +ĠS elling +U l +Ġsav ior +ĠT osh +Ġsw ast +P ASS +Ġr ink +Ġcard io +ĠI ro +ud i +Ġv antage +Ġv ans +ĠNi ño ++ = +Ġpropag ate +< ? +Ġmethod ological +204 39 +Ġtrig lycer +Ġing rained +ĠAn notations +arr anted +6 17 +ĠS odium +ĠA AC +techn ical +mult ipl +Ġ3 73 +å ĭ +Ġdec isively +Ġboost ers +Ġdessert s +ĠGren ade +Ġtest ifying +ĠSc ully +ID s +Ġlock down +ĠSc her +ĠR é +ĠWhit man +ĠRams ay +rem ote +Ġh ikers +ĠHy undai +Ġcons cientious +Ġcler ics +ĠSiber ian +ut i +is bury +Ġrel ayed +Ġqu artz +ĠC BI +seek ers +ull a +Ġweld ing +ĠSh al +ble acher +T ai +ĠSam son +Ġt umble +ĠInvest or +Ġsub contract +ĠShin ra +ow icz +j andro +d ad +Ġtermin ating +ĠNe ural +ä» £ +Ġleak age +ĠMid lands +ĠCaucas us +í ķ +c it +ll an +iv ably +ĠAlb ion +Ġ4 57 +Ġregist rations +Ġcomr ade +Ġclip board +0 47 +Ġdiscour aging +ĠO ops +Ad apt +Ġem path +n v +ĠPR OT +ĠDon n +ĠP ax +ĠB ayer +t is +Squ are +Ġfoot prints +part icip +ĠChile an +B rend +ind ucing +M agn +Ġclub house +ĠMagn um +Ġenc amp +ĠEth nic +uch a +ere y +Ġw atered +ĠCal ais +Ġcomplex ion +Ġsect s +Ġren ters +Ġbr as +oÄŁ an +Time out +Man agement +Ġinf ographic +P okemon +Cl ar +Ġloc ality +Ġfl ora +as el +P ont +Ġpop ulate +ĠO ng +Ġsubs istence +Ġa uctions +ĠMcA uliffe +ĠL OOK +br inger +Ġtit an +Ġmanif old +ĠâĹ ı +Ġcalibr ated +Ġcal iphate +ĠSH E +ĠCommission ers +ce ivable +j c +W inner +5 24 +Ġcond one +Other wise +Ġp iling +Ġem body +ĠCrime an +ut ics +ĠEx hibition +Ġ4 26 +e ering +Ġv ying +ĠH UGE +* =- +Ġprin cipled +à ¦ +Ġquir ks +ĠEdit ors +put ing +G ES +ĠF TA +ठ¾ +add on +ĠH AM +ĠFrie za +W oman +. $ +Ġc rib +ĠHer od +Ġtim ers +ĠSp aces +ĠMac intosh +at aka +Ġgl ide +Ġsmell ing +ĠB AL +Ġun su +Ġcond os +Ġbicy cl +ĠRev ival +55 3 +Ġjugg ling +H ug +ĠKardash ian +ĠBalk ans +mult iple +Ġnutrit ious +oc ry +19 00 +Ġinteg rates +Ġad joining +ĠF older +roll ment +ven ient +Ġu ber +y i +Ġwh iff +ĠJu ven +ĠB orough +net te +Ġb ilingual +ĠSp arks +ph thal +man ufact +Ġt outing +ĠPH I +Ke efe +Rew ard +Ġinf all +ĠTem per +typ ically +ĠNik ol +Ġregular s +Ġpseud onym +Ġexhib itions +Ġbl aster +Ġ40 9 +w arming +Ġrever ber +Ġrecip rocal +Ġ6 70 +ip ient +b ett +ĠBe gins +Ġit ching +ĠPh ar +Ass uming +Ġem itting +ĠML G +Ġbirth place +Ġt aunt +ĠL uffy +ĠAm it +Ġcir cled +ĠN ost +enn ett +Ġde forestation +ĠHist orically +ĠEvery day +Ġovert ake +79 2 +Ġn un +ĠLuc ia +Ġaccompan ies +ĠSe eking +ĠTr ash +an ism +R ogue +Ġnorth western +ĠSupplement al +ĠNY U +ĠF RI +ĠSat isf +x es +5 17 +Ġreass ured +Ġspor adic +Ġ7 01 +Ġmed ial +Ġcannabin oid +Ġbarbar ic +Ġep is +ĠExplos ive +ĠD ough +Ġuns olved +Support ed +Ġacknowled gment +sp awn +Ġkit chens +Ġ- = +talk ing +ic ist +ĠPeg asus +ĠPS U +Ġphot on +ĠAuthent ication +R G +@# & +76 2 +ĠCl air +Ġdi aper +Ġbr ist +ĠProsecut ors +ĠJ em +6 28 +ĠEvery where +ĠJean ne +equ ality +ãĥ© ãĥ³ +object s +ĠPel icans +Ġ39 2 +Ġbl u +b ys +ĠA go +Ġinstruction al +Ġdiscrim inating +ĠTR AN +ĠCorn el +ag os +Ġty re +Ġas piration +ĠBrid gewater +": - +! ". +ĠEn s +ĠCoc o +P ie +Ġdet ach +ĠC ouch +Ġphys ique +ĠOccup ations +osc opic +en ough +B uzz +App earance +Y P +Ġrac er +Ġcompl icity +r pm +T oy +Ġinterrupt s +ĠCat alyst +Ġut ilitarian +imp act +Ġsp aghetti +Ġp orous +Ġeste emed +Ġinc iner +ĠI OC +7 48 +Ġesp resso +ĠSm ile +abil ia +6 35 +Ġmathematic ian +Ġ4 24 +ĠK L +ĠH IP +Ġover heard +ĠT ud +ĠT ec +Ġqu izz +Ġfl attering +Ġcon n +âĢ İ +Ġatt aches +ĠR OS +ĠAC S +Ġt cp +ĠSh ame +sk ip +res pected +ĠTrin idad +gr ain +Ġfooth old +ĠUnch arted +ĠJul io +z l +av ored +ĠAn xiety +er rors +ĠCent auri +its ch +D addy +Ġclutch ing +ĠIm plement +ĠGut ierrez +Ġ7 60 +Ġtele portation +end ra +Ġrevers ible +st ros +Ad venture +08 3 +Ġliber ating +Ġas phalt +ĠSp end +AR DS +im sy +PR ES +ĠEmer ging +Ġwild fires +Ġtechn ologically +Ġem its +ĠART ICLE +Ġirregular ities +Ġcher ish +çī Ī +Ġst ink +ĠR ost +Econom ic +Ġcough ing +ĠMcC ann +pro perties +ilant ro +Ġreneg oti +Trans lation +Ġin quest +ĠGra pe +oot ers +gu i +ĠSwords man +ace ae +h itting +Ġr c +Ġexert ed +ĠS AP +it ent +Ġperil ous +Ġobsc urity +Ġassass inate +Ġab original +Ġresc uing +ĠSh attered +lock ing +all ion +Ch anging +ĠHar rington +ĠB ord +ĠAfgh ans +Jam ie +aret z +ĠAugust us +Ġ38 6 +8 30 +Ġj og +ok ingly +Tr igger +ĠH OR +Stat istics +Ġviewers hip +Ġadd itives +h ur +Ġmaxim izing +ĠR ove +ĠLou ie +ĠBuck et +ĠCHR IST +ou sel +Ġstre aks +ir ted +Ġt ert +Ġcolonial ism +Ġbur ying +y k +Cond ition +ĠDPR K +By Id +75 1 +âĹ ¼ +Ġwor risome +Ġvoc ational +sl ice +Ġsa ils +ĠCorrection al +95 4 +Ġt ul +K id +l uster +Ġfam ilial +ĠSp it +ĠEp iscopal +Specific ally +ĠVol cano +run s +q s +Ġve tted +Ġcram med +t rop +here r +Thank fully +Ġper cussion +Ġor anges +Ġround up +Ġ4 99 +x ious +Char acters +ĠZion ism +ĠR ao +ÃĽ ÃĽ +W F +Ġunintention al +ONE Y +Gr ab +Com mercial +Ġglut amate +ĠMcK enna +ru ciating +ning ton +ih u +Ch an +ĠSw ap +Ġleaf lets +Ġfunction ally +er ous +F arm +Ġcal oric +ĠLiter ally +con cert +Ġshe nan +Ġrep aid +ey es +Ġbas hing +ĠG orge +Ġcollabor ations +Ġun account +itch ie +Ġteam work +pp elin +Ġpip ing +Ġmin ced +Ġd iam +ri eg +Ġmasc ara +Ġsuck er +ĠMo ons +App s +ĠPe ck +Ġper v +ĠFl oat +o ley +ĠN ish +im ize +Ġarom atic +u in +end ish +! / +ĠB icycle +ĠAS IC +ile ged +ĠQuad ro +ios yn +Ġlock out +ĠW ink +SP EC +Attempt s +Ġseed ed +red o +ias is +Ġsn ag +ãĥķ ãĤ© +ãĤ ¶ +Ġground ing +Ġrelie ver +Ġfrivol ous +ĠG ifts +ĠF aces +Es pecially +Ġmicrobi ome +im ag +ĠSch l +ĠP les +ĠBle ach +ĠIr win +ĠE aton +ĠDisc iple +Ġmultipl ication +Ġcoer ced +Ġ4 19 +st h +E vil +B omb +Ġex orc +Ġstag gered +L ESS +Ġinert ia +ĠED IT +Ġgo b +Tr aditional +Ġclass y +Lear y +ĠP AGE +yr s +Ġtrans porter +Ġmat ured +Ġhij ab +Ġbi ome +Where as +Ġex termination +ĠT ues +ĠT akeru +ĠAud rey +er ial +ĠAd en +aff les +Ġnarciss istic +ĠB aird +UT F +I re +ĠCon nie +Ch amp +Ġwhis pering +ĠH att +D K +Ġdis infect +Ġdeduct ed +Ġpart ake +Ġdown grade +ĠEs ports +ĠContin uing +Ġdemocr atically +icro bial +itt a +Ġlim estone +Ġexempt ed +ĠFren zy +H erm +7 28 +Ġfled gling +Met a +765 61 +69 3 +% : +w ake +5 26 +ĠDis cipline +Ġvirgin ity +ĠLeg ions +ĠFrank ie +int ent +Ġrest rooms +ĠRou ter +da q +Ġobjection able +âĨ ij +w ark +ĠRah ul +g ain +activ ation +abs olute +ĠAccess ed +Ġ24 00 +ogg les +Ġsecond ly +ĠDEF ENSE +Ġpost age +wra pper +sh arp +7 29 +Ġcommun icates +Ġadd on +ĠMil itia +H ong +Ġsl umped +ĠJP EG +ĠI car +ad ish +68 1 +Ġmaj esty +ĠWolf gang +ĠEl astic +u per +Ġv iz +Ġunconscious ly +ĠST D +ĠS ass +Ġflower ing +ĠHel ic +ĠDra per +ĠAm ateur +Ġman ure +Ġdis ingen +ĠLe i +br ing +9 49 +Ġinhib ited +Ġhead quartered +Ġen igmatic +�� � +Ġred ress +R H +Ġratt led +Ġd iction +l io +ĠT BA +ĠSN AP +C alling +Ġfasc ists +ĠD ove +iew icz +0 36 +Ġco asts +ĠR ect +Ġ) ] +L ot +6 29 +ĠS EM +ĠPeters en +ĠExpl ain +ĠBo ards +ĠBe zos +ĠJ ournals +Ġ20 24 +p arser +Ġmist rust +Ġgr ate +ĠL ocked +bo a +S aint +g aming +Ġvow el +in ately +bl ow +All ah +Ġun matched +Ġb ordering +ĠExp end +n r +Or acle +rou ch +Ġcont iguous +ac us +Ġdist raught +58 1 +Ġanat omical +O X +ap ixel +8 33 +ĠPL US +Ġres usc +Ġab iding +57 3 +Ġvac ancies +Em ily +Ġhyp othal +ĠWer ner +ĠWe e +ĠDJ s +5 13 +Ġwitch craft +Ġac upuncture +ent ary +benef it +Product s +ĠP SP +ĠMP G +ĠJ inn +ĠJ arrett +Ġ4 45 +ĠIm aging +ĠP yth +Fin ish +Ġte x +Ġjuven iles +Ġhero ism +Ġdoubt less +ĠA ki +ĠT end +ĠPatri arch +Ġbit ters +ĠTele communications +it atively +ag na +Ġr g +ĠS OLD +Ġcomp ulsion +ĠN asa +ĠKath ryn +Ġmillion aires +Ġintrins ically +Ġbolst ered +time out +fl o +Ġtut or +p our +Stat ement +Ġ{ * +ĠRud olph +ĠKimber ly +rog ens +adi q +] + +Ġindign ation +Ġfract uring +ĠRe leases +ĠGr ain +pro tein +L ago +Ġvac ations +Ġboot ed +ĠTH REE +ĠH G +oresc ence +Ġt f +Ġso ar +iosyn cr +Ġgl ances +ĠSp oon +ĠJ ury +ĠCow boy +Ġcreat ively +Hig her +Ġsolic itor +Ġhaw k +ac io +89 6 +Ġsuperf lu +Ġbombs hell +ct ure +Ġbroker age +Ġraid ing +Ġf rench +Ġang led +Trans action +ĠGen ocide +u pe +ĠHait ian +57 2 +! : +Ġunwitting ly +iter ator +sc roll +Ġtall ied +Ġbi omedical +ĠC ARD +Ġe uphem +Ġbrain storm +a quin +K o +Mic helle +ĠR unes +ĠBall istic +ud ers +Ġmod esty +ĠiP ads +ĠEzek iel +Y E +Ġstars hip +Ġpower fully +Ġper l +ĠSh ade +ĠQu art +ĠE EG +Ġfisher man +OS ED +ĠTyp ical +df x +Ġmes hes +Ġet ched +worth iness +Ġtopp led +Ġ3 96 +or ius +We iss +Ġmy sql +ĠVal halla +Ù Ĵ +le asing +Ġrec omp +rap nel +S el +04 3 +Ġder ailed +ĠGu ides +IR T +Ġde human +ĠBritt any +" )) +Ġex claim +Ġb alk +Ġ8 40 +CLA IM +int el +L AB +Ġpe gged +Ġast roph +sm oking +Ġrig ging +Ġfix ation +Ġcat apult +ins ide +ĠC ascade +ĠBolshe vik +G aza +Dep th +Ġloud spe +Ġalmond s +me yer +l eness +j en +f resh +Ġunbeat en +ĠSqu id +ĠPres umably +Tim er +B W +Ġro sters +Ġell ipt +ĠHar riet +dat abase +ĠMut ual +ĠComm odore +uk ed +kn ife +ĠCOMM UN +h ya +Ġmel ts +arch ives +Ġrat ification +Ġmultip lying +Ġinter oper +Ġasc ert +w ings +ver ting +ĠScorp ion +ay e +ĠPorts mouth +ĠM TA +n it +iaz ep +Ġqu arantine +Ġslides how +Ġcent imeters +Ġsyn opsis +Ġsp ate +th irst +Ġnom inating +ĠMel vin +Pre view +Ġthro b +Ġgener ational +ĠRad ius +rest ling +put able +aw ar +N ECT +Ġunlaw fully +ĠRevel ations +Wik ipedia +sur v +Ġeye ing +ij n +ĠF W +Ġbr unt +Ġinter stellar +Ġcl itor +ĠCroat ian +ĠCh ic +ev a +ĠDis app +ĠA kin +iner ies +d ust +Interest ed +Ġgen esis +ĠE ucl +ö n +p icking +Ġmut ated +Ġdisappro ve +ĠHD L +Ġ6 25 +Ì ¶ +c ancer +Ġsqu ats +Ġle vers +Disc uss += ] +D ex +ĠVIDE OS +A UD +Ġtrans act +ĠKin ect +ĠK uala +ĠC yp +7 47 +Ġsh attering +Ġarsen ic +ĠInt ake +ĠAngel o +ĠQu it +ĠK he +Ġ18 93 +M aker +0 29 +ĠPain ting +Dis able +9 16 +Ġanal ges +Ġtact ile +Ġprop hes +Ġd iced +ĠTravel s +ĠHe ader +ĠClub s +Ass istant +Ġinc rim +Ġd ips +Ġcruc ifix +ĠShan ahan +ĠInter pret +Ġ40 90 +al ogy +abb a +Ġsimul ac +hus band +S IM +Ġrecy cle +uc er +ed ged +Ġre naissance +ĠBomb ay +Cath olic +ĠL INE +ĠCl othing +re ports +Ġpl aus +Ġd ag +ĠM ace +Z I +Ġintr uder +ĠVeter inary +g ru +Ġsne aky +ĠS ie +ĠC innamon +P OSE +Ġcou rier +ĠC NS +Ġemanc ipation +s it +Ġplay through +ĠFac ilities +v irt +ĠG auntlet +Thom pson +Ġunbeliev ably +Param eters +Ġst itching +ign e +ĠTH ESE +Priv acy +Ġshenan igans +Ġvit ri +ĠVal id +59 1 +Ń · +ĠProt otype +ink a +SC P +ĠT id +è Ī +old ed +Ġindividual ity +Ġbark ing +Ġm ars +ĠW D +Ġ8 20 +Ġt ir +Ġsl apping +Ġdisgr untled +ĠAng ola +ri us +ĠTorn ado +ĠTh urs +Ġcapt cha +Ġang st +ĠP og +ĠAssass ins +ĠAd idas +Ġjoy ful +Ġwh ining +Emer gency +Ġphosph orus +Ġatt rition +oph on +ĠTimber wolves +ĠJ ah +ĠBr inging +ĠW ad +ĠEn sure +oh l +ĠX ie +omm el +c mp +Ġz ipper +Ġrel at +ĠCor ridor +m ilo +T ING +Av g +Ġcro pped +] } +Ġr aged +ĠLump ur +ĠGuer rero +our ke +N ut +Ġoff sets +og lu +dr m +Ġmort als +lat able +Ġdismiss ive +ä¸ ī +Ġthro ats +Ġchips et +ĠSpot light +Catal og +art ist +G b +Ġch illy +Ġst oked +Ġ3 74 +W ard +L atin +Ġf iasco +Ġble ach +Ġb rav +Enh anced +Ġin oc +ĠFior ina +_ > +Ġle ukemia +Ġel uc +Ġannoun cer +ĠLith uan +ĠArm ageddon +å ĩ +Len in +ĠR uk +Ġpe pp +ĠRom antic +ĠP IT +ĠInter stellar +ĠAt kinson +R aid +J s +Go al +C ourse +Ġvan ishing +es ley +ĠR ounds +Els a +59 3 +Ġredund ancy +ĠST AND +Ġprop hetic +Ġhabit able +ry u +Ġfaint ly +M ODE +Ġfl anked +IR C +Aw esome +Ġsp urious +ĠZ ah +ĠMS G +Ġsh ading +Ġmotiv ational +ĠSant ana +ĠS PR +Ġexc ruciating +om ial +ĠM iko +ĠLe opard +A byss +Ġ[ | +d irty +Ġbath s +Ġdem oral +and re +P B +Ġun ification +Ġsac rament +Ġ[ & +Ġpric eless +Ġgel atin +Ġeman ating +ĠAll aah +98 6 +Ġout burst +Ġer as +ĠX VI +ĠSP I +O tt +ĠLaz arus +PL IED +F lying +blog s +W isconsin +R aven +Ġreb ate +Ġcreep s +ĠSp an +ĠPain ter +ĠKir a +ĠAm os +ĠCor vette +Cons umer +ĠRec over +ck i +Ġpes ky +ĠIn vention +Compan ies +Ġchalleng ers +ad emic +ĠUkrain ians +ĠNeuro log +ĠFors aken +Ġent rants +Ġemb attled +Ġdef unct +ĠGlac ier +Ġpo isons +ĠH orses +m akes +ĠD irt +Ġ4 23 +hh h +ĠTrans formation +QUI RE +................ .. +Ġtrave ller +ĠSe xy +ĠK ern +ip olar +Ġransom ware +oooooooo oooooooo +E c +rub y +Prof essional +ĠOut break +arg ument +G rey +ĠFif a +ĠCH O +ĠFOR M +ĠAm trak +- [ +Ġcr adle +Ġantioxid ants +ãģ®å ® +7 36 +ĠNAS L +ĠContribut ions +Ind iana +ĠST EP +C SS +Ġsal ient +Ġall ocations +yr ights +Ġm ashed +ĠCut ter +Sex ual +Ġp ounded +Ġfan base +Ġc asc +ĠTrans parency +Ġanaly tic +ĠSummon er +× ŀ +ĠAD C +det ail +Ġvan quished +Ġcr abs +ar ie +Dest roy +ĠS ack +Ġtrans istor +Al abama +ĠK oen +ĠFisher ies +c one +Ġannex ed +ĠM GM +es a +Ġf aked +ĠCong ratulations +Ġhind ered +Ġcorrection al +ĠI TV +lee ve +Ġin appropriately +lic ks +Ġtresp ass +Ġp aws +Ġnegoti ator +ĠChrist ensen +lim its +ĠDian ne +Ġeleg ance +ĠContract s +an ke +Ob j +Ġvigil ance +Ġcast les +ĠN AD +ĠHol o +Ġemph atically +ĠTit us +ĠServ ing +ĠRich ie +ĠP igs +5 68 +Ġanim osity +ĠAtt ributes +ĠU riel +M Q +my ra +ĠApplic ant +Ġpsychiat rists +ĠV ij +ĠAb by +ag ree +P ush +Ġk Wh +hib a +Ġinc ite +ĠWe asley +ĠTax i +minist ic +hy per +ĠF arn +Ġ6 01 +ĠNation wide +F ake +95 2 +Ġma ize +Ġinteract ed +Ġtransition ed +Ġparas itic +Ġharm onic +Ġdec aying +Ġbas eless +ns ics +Ġtrans pired +Ġabund antly +ĠFore nsic +Ġtread mill +ĠJ av +ab and +Ġssh d +Ġfront man +ĠJak arta +oll er +dro ps +ĠSERV ICES +rompt u +oph ical +h ospital +bled on +6 45 +Ġmid range +ĠEV ENT +cul ated +raw led +Ġper ched +Ġover board +ĠPe el +ĠP wr +ĠCar th +ĠCOM PLE +co e +sh all +Ġdeter rence +M ETHOD +ĠAbs ent +M EN +Ġs ill +ĠLE VEL +Y ork +Ġsin ners +ĠOP EC +ĠN ur +ĠDesign s +se lection +Ġunw orthy +CH A +Ġstreng thens +88 3 +ed ly +Ġslic ing +Ġmal nutrition +Ġfilm making +ĠPol k +ur ated +Ġ4 21 +bre akers +!' " +Ġwet lands +ĠDisc rimination +Ġallow able +Ġste ered +ĠSic ily +S AM +Ġmust ache +Ġm ids +Ġcl ipped +Ġcirc ulate +Ġbr ittle +ĠBuild ings +ra ised +ĠRound up +Ġwealth ier +Ġoverw rite +Ġover powered +ĠGerr ard +s ites +PD ATED +Ġacute ly +ĠGam ble +Ġp im +ĠK us +Typ ically +De ploy +ĠMoroc can +p otion +com be +Ġvigil ante +Ġ36 3 +St ew +ĠB agg +Ġres ided +ĠSp o +Ġrem nant +Ġempt iness +br ainer +Ġout patient +pri ority +Ġle ptin +ĠPay ton +ĠGle aming +ĠS hed +ĠPol o +ĠMormon ism +rest ricted +arl ane +w x +Ġcreat ine +ĠAn on +ĠST UD +ĠJ UL +ĠT ee +5 28 +08 9 +Ġhat ched +Dis patch +ĠCompos ite +Ġ45 1 +p uff +ĠX COM +ĠOr n +ĠTH ANK +END ED +ĠAshe ville +Ġà ľ +Ġman go +ĠS lightly +world ly +ĠW ander +ĠExp and +ĠCh r +M ist +Ġorthodox y +ĠUN ESCO +reg ate +Else where +k ie +ir led +Ġtopp le +Ġadopt ive +ĠLeg s +d ress +ĠS agan +b are +ĠGl ou +Cr unch +Ġhelp ers +Ġchron ically +ĠH uma +1 0000 +Ġaccommod ating +äº Ķ +Ġwrink les +Ġdod ged +four th +Ġpre con +Ġcompress or +ĠK are +Ġev ict +ĠWar wick +im ar +Ġmodern ization +Ġband wagon +Ġref uted +Ġnet ted +ĠNa ples +ĠGen ie +per ors +Ġfield ed +Ġde re +ĠPar ables +le es +Ġtr out +asp ers +Ġn ihil +Ġhapp iest +Ġflo ppy +ĠLo ft +ĠHe ard +Ġun ison +Ġl ug +ĠRed mond +class ic +Supp orters +SH IP +G MT +Ġfue lled +ç IJ +Ġd d +ĠEmin em +Ġ18 97 +NY SE +Ġsecret aries +ĠF IA +ĠCanaver al +F avorite +Ġp omp +Ġdetain ee +ers hip +aim on +i our +ĠA pex +Ġplant ations +am ia +ac ion +R ust +Ġtow ed +ĠTru ly +5 77 +Ġshel tered +r ider +W o +Ġl air +ĠInt elligent +impro ve +m atically +Ġet iquette +ad ra +all o +ĠJun o +any thing +ĠStru ggle +ĠPred ict +ĠGr imes +ĠAMER ICA +ct x +ĠSit uation +W OOD +Ġsol uble +me ier +Ġintoler able +ang ering +Ġun interrupted +Ġtool tip +Ġinterrog ated +Ġgun ned +ĠSne ak +æŃ ¦ +Ġt ether +Ġcr umble +L ens +Ġclust ered +ĠSy l +ĠHas an +Ġdystop ian +w ana +Ġjoy stick +ĠTh ib +amm u +Tom orrow +5 46 +Ġoverc ame +Ġminim ized +cept or +Run ner +ENG TH +ĠBrend a +ĠAchieve ments +Ġtor ches +Ġrapp ort +ĠInvestig ator +ĠHand ling +rel ation +g rey +8 15 +Ġk cal +ĠComm ands +d q +Ġcur ls +Ġbe arer +Ġcyn icism +it ri +ĠUse ful +B ee +D CS +Ġab ras +P ract +BIL ITIES +7 12 +Ġdebug ger +Ġdebt or +ĠL ia +ĠK ers +Ġexacerb ate +ĠSt acy +ĠB land +ĠSc enes +Ġbranch ing +âĸĪâĸĪâĸĪâĸĪ âĸĪâĸĪâĸĪâĸĪ +ape ake +Ġs alsa +Ġmish and +ĠKon ami +ĠN ib +Ġanecd ote +Ġagree able +Ï ī +ĠNath aniel +ĠHe isman +ĠB eware +Ġ18 86 +spect ive +69 1 +5 22 +Ġinhib its +Ġhas hing +Ġ18 89 +å° Ĩ +v ich +P ure +Ġsolid ly +Ġaspir in +im aru +Ġstreet car +ĠU CS +ĠJ udd +Ġflash backs +p ins +Ġ14 40 +ĠUN HCR +ĠSym ptoms +T IT +5 38 +F ra +% ); +Ġo oz +Ġcur few +Ġcal med +Ġparticip ates +Te X +Ġnons ensical +Ġfull back +ĠDe L +mon key +h ari +Ġmetabol ites +Ġloot ed +ĠAL WAYS +ĠB CC +L t +oc het +B one +Ġveto ed +Ġg cc +ĠCL ICK +Ġ18 88 +s af +Ġstiff ness +Ġlow ly +ĠGe h +vers on +ors et +Ġun foreseen +Ġan esthesia +ĠOpt ical +Ġrecon structed +ĠT up +sh ows +NEW S +ĠNewsp aper +ĠA SA +ter a +N umbers +Ġinexpl icable +× ij +Ġhard ness +unt arily +ĠA cer +grad ient +ARD IS +Ġwood land +Ġmetaph ors +ĠWem bley +ĠPa vel +phil is +Ġre writing +Ġpercept ual +Ġ10 70 +worm s +ĠDown s +Ġunsur prisingly +Ġtag ging +fl ame +Ġlit res +Ġboun ces +ĠB abe +sh ut +Ġoverd oses +ĠShe ila +ĠCh au +ĠBl ess +Capt ure +ĠSign ificant +ĠSc ion +Ġ38 9 +ĠMc H +ĠTitan ium +ĠMe al +amed a +ag ents +agg ressive +B illy +76 3 +ĠS aying +DER R +it one +Coll ins +B ound +Ġbol ted +ĠDM CA +95 3 +Ġun iqueness +Ġep igen +un ci +ant am +Ġreck oning +ch airs +OG R +ĠSen egal +Ġ18 62 +re levant +Ġ ¯ +Ġpharm acies +ĠG eral +v ier +Y an +OR PG +Ġrab id +b ending +ĠUN ITED +Ġ4 65 +As sembly +Ġwe ep +Ġbe hest +ĠMother s +ĠJ ace +h id +Ġwh irlwind +ĠUN IVERS +Ġut opian +Ġkidn ap +Ph ilipp +K in +89 3 +Ġlivest ream +ĠM ISS +Ġsub versive +ĠTechn iques +ĠJUST ICE +ĠB ASE +Ġ38 7 +Ġassail ants +ĠHard core +Ġsprink led +ĠP se +é ļ +print ed +ĠH au +OR GE +ĠT OUR +Ġl aced +Ġit ch +G iving +Ġport ed +78 1 +//////////////// //////////////// +bre eding +Ġlog ger +ĠH OL +inn ie +First ly +Ġembry onic +Ġdeleg ated +p ai +O IL +Ġcentr ally +ĠR x +ĠSc outing +D utch +Ġhe reditary +ĠCru iser +s at +5 29 +ĠMar riott +other mal +Ġprohib itions +E arn +ĠSt ab +ĠColleg es +ĠBel ief +st retched +ĠL H +ĠEntity Item +C IA +Ġun rem +Ġlaure ate +Ġdenomin ations +sum mary +h ler +S pect +ĠK laus +ĠBe ans +Ġins ur +ĠPA X +Ġfield er +ĠV et +ĠSp arrow +z ie +ĠS Q +ĠMond ays +ĠOff line +ĠLer ner +ĠExt ensions +Ire land +Ġpatron age +Ġcontrast ed +ĠMan ia +h irt +Mos cow +Ġcondem ns +ĠAn ge +Ġcomp osing +ĠPe pe +ĠP addock +Ġheter ogeneity +Ġide ologically +Ġf ishes +Ġcur sing +ĠR utherford +ĠFlo ating +ĠAm elia +Te a +Syn opsis +Ġstun ts +Ġbe ad +Ġstock ing +ĠM ILL +ob ook +mass ive +\ < +Ġh ump +ĠPref erences +Engine Debug +ge ist +ĠNiet o +ome ver +ish y +eval uate +col onial +Altern ative +ĠGo Pro +ĠV ortex +ĠNET WORK +ans ky +Sec ure +ĠTh rust +Sn ake +Ġparcel s +Ġsam urai +Ġactress es +N ap +M F +ifer ation +Be er +5 23 +ĠI ly +oint ment +P ing +Ġstri ped +ĠMell on +oss ession +Ġneut ron +end ium +Ġa ph +ĠFlav oring +Ġ38 3 +Ġrespons iveness +ĠJ indal +ĠHitch cock +Den ver +ĠDRAG ON +sm anship +ĠDu pl +Ġs ly +Ġweb cam +ĠTw ain +ĠDar ling +ili ate +cons umer +D IT +Ġnames ake +Ġun orthodox +Ġfun er +ĠPL oS +ĠCONTR OL +ozy g +ogl obin +F ACE +ER G +ĠD ia +ĠF iesta +ce le +0 34 +Ġencl ave +âĸ¬ âĸ¬ +on ement +al ist +M and +Ġhome grown +ĠF ancy +Ġconcept ions +ĠCont ains +ure en +Ġreiter ate +Ġme ager +Ġinstall ments +Sp awn +6 27 +Ġphot oc +ĠCab rera +ĠRos enthal +ĠLans ing +is ner +Ġinvest s +ĠUFO s +EX P +Hard ware +Ġtr agically +Ġconced es +ie ft +ch am +bor gh +ĠSch r +ĠMel anie +ĠH oy +Ġvisit ation +Ġid iosyncr +Ġfract ions +Ġfore skin +ob os +Ġpo aching +ĠVI EW +Ġstimul ates +ĠG ork +can on +M IC +ĠNem esis +ĠInd ra +ĠDM V +Ġ5 29 +Ġinspect ing +Ġgrand ma +ĠW hedon +ĠSh ant +ĠP urg +ik an +ĠT eg +ĠCL R +z ac +Vict oria +ĠVer ify +ion ics +Ġpart ying +ĠM ou +col our +Ġtestim onies +l ations +Ġpress uring +hi ro +ac ers +Ġf id +ang ler +ĠCS I +Ġhere after +Ġdiss idents +report ing +iph any +che v +Ġsol itude +Ġl obe +Ġind is +Ġcred ential +re cent +ad ult +ĠNir vana +ĠFranch ise +L ayer +H yp +ĠBerks hire +Ġwill s +t if +Ġtot em +ĠJud ah +rep air +Inst ant +5 48 +Ġemb assies +Ġbott leneck +Ġb ount +Ġtyp ew +ĠAl vin +j ing +im ilar +R ush +Ġbr im +ĠHEL P +A im +] ' +Ġpass ively +Ġbound ed +ĠR ated +Ġcriminal ity +Ġbiom ark +Ġdisp atcher +ĠTow ards +Ġ+ ++ +right eous +f rog +ĠP anc +C arter +0 32 +æ© Ł +Ġult raviolet +ĠLic ensed +ĠT ata +ĠBl essing +ĠG AM +Ġchem ically +ĠSe af +ĠRE LE +ĠMerc enary +capital ist +Ġform ulations +Ġann ihilation +ĠVer b +ĠAr gon +Ġun loaded +Ġmorp hed +Ġconqu ering +back er +I ELD +Ġtheft s +Ġfront runner +ĠRoy ale +ĠFund amental +el ight +C hip +necess ary +ay n +ĠSl ip +Ġ4 48 +cern ed +P ause +Ġshock ingly +ĠAB V +Ġcomp osure +7 33 +ĠMotors port +ah ime +Mur ray +M ach +Ġgr ids +Ġdeb ian +Ġfurther more +Ġdexter ity +ĠCollect ions +os lov +il age +b j +ĠMont eneg +Ġstrut Connector +Ġmassac res +Ġbrief s +fet ched +uv ian +ol ition +Fail ure +emon ic +Ġfl ared +Ġclaim ant +Ġc ures +Ġgive aways +ĠSubst ance +al ions +Ġcr inge +ĠK ul +Ġarist ocracy +ĠUl ster +ol ated +h ousing +ĠM IS +Ġgl ared +ĠWil helm +ne eds +lam bda +build ers +ĠV IS +Ġradi ator +ĠGhost busters +Ġ4 36 +act ual +Ġher ds +ç a +watch ing +Ġcounter ing +Ch arge +Ġchar red +Ġwar heads +Ġiod ine +ĠM acy +04 1 +Ġdepart ures +ĠS ins +Ġdy ed +ĠConcept s +g ado +7 13 +Ġquot ations +Ġg ist +ĠChrist y +Ġant igen +ĠHem p +ĠD rawn +ĠB arg +ez vous +Ġp aternity +Ġar du +ĠAnch orage +ĠR ik +Ġover loaded +ĠUs ername +ĠTam my +ĠN au +ĠCell ular +Ġw aning +Ġrod ent +ĠWor cester +il ts +ĠT ad +Ġdwell ings +Ġbull ish +4 31 +Ġretali ate +Ġmig raine +ĠChev ron +CH ECK +Ġdon key +c rim +SP A +ĠAn alog +Ġmarqu ee +ĠHa as +B ir +ĠGD DR +ĠDownload s +Ġwill power +ĠFor th +ĠRecord ed +Ġimp ossibility +ĠLog ged +ĠFr anks +ĠR att +in itions +Ġclean ers +Ġsore ly +Ġflick ering +ĠEx amination +c atching +allow een +Ms g +Ġdun no +F a +Ġdys ph +c razy +.' '. +Ġmain line +Ġc s +Ġp tr +ĠW ally +ig un +95 1 +ĠBig foot +f ights +Ġretrie ving +J r +Ġdupl ication +ĠExpl an +Ġrel ational +Ġqu aint +Ġbisc uits +Ġad o +Ġsh udder +Ġantid ote +blood ed +ks h +Ġsa uces +Ġrein vest +Ġdispens ary +ĠD iver +Ġ9 000 +stud ent +Ġin separ +esc ap +Ġtodd lers +ĠGP IO +ĠAss ignment +head ers +Ġlack luster +Ġab ack +95 6 +Ġtool bar +7 45 +Ġo ust +Ġcontempl ation +ĠPRES IDENT +Ġ4 58 +==== == +Ġguarantee ing +ĠHe ist +ĠCann es +Ļ ½ +Ġcollabor ator +ĠAm p +Ġg ou +ĠSH ALL +st ories +78 3 +Ġmobil ized +Ġbro od +ĠL U +ĠðŁ ij +Ġref in +ĠAnthrop ology +v ind +ill i +Ġwarrant ies +ĠB abel +Ġsw ath +Ġc aches +Ġantagon ists +art ifacts +Ġhot ly +ĠSt arts +ĠG ö +z ag +!! !!! +Ġsc ourge +Ġcons piring +ru its +re verse +ĠShe en +ĠJes uit +ĠGiov anni +ad ies +Ġbutt ocks +ear cher +ac an +Ġvolley ball +Ġshroud ed +Ġscore board +b ats +ĠI PM +Ġass es +Ġde regulation +ĠTe legram +ĠReb oot +Ġ7 000 +ĠCan ary +Ġk ernels +ĠFranç ois +ĠD uff +ĠP on +ĠLe ica +ĠGar min +Ġor phans +ĠClaud ia +Ġcal endars +ĠLe ilan +ent o +R ocket +Ġbr unch +ĠHaw king +ain ers +Ġsens ibilities +Ġk W +ĠK and +Ġre claimed +Ġinteresting ly +× © +rom y +J M +ĠEnhance ment +b ush +Sk ip +Ġrapp ers +Ġg azing +p edia +ath lon +Rev olution +Ġsn ipers +Ġre verted +Ġconglomer ate +T erry +79 4 +Ġhars her +Ġdes olate +ĠHit man +Comm ission +Ġ( / +â̦ ." +Com par +Ġampl ification +om inated +Ġreg ress +ĠColl ider +Ġinform ants +Ġg azed diff --git a/pipeline.py b/pipeline.py new file mode 100644 index 0000000..cd5543e --- /dev/null +++ b/pipeline.py @@ -0,0 +1,48 @@ +import os +from typing import Dict, List, Any +from PIL import Image +import jax +from transformers import ViTFeatureExtractor, AutoTokenizer, FlaxVisionEncoderDecoderModel + + +class PreTrainedPipeline(): + + def __init__(self, path=""): + + model_dir = os.path.join(path, "ckpt_epoch_3_step_6900") + + self.model = FlaxVisionEncoderDecoderModel.from_pretrained(model_dir) + self.feature_extractor = ViTFeatureExtractor.from_pretrained(model_dir) + self.tokenizer = AutoTokenizer.from_pretrained(model_dir) + + max_length = 16 + num_beams = 4 + self.gen_kwargs = {"max_length": max_length, "num_beams": num_beams} + + @jax.jit + def _generate(pixel_values): + + output_ids = self.model.generate(pixel_values, **self.gen_kwargs).sequences + return output_ids + + self.generate = _generate + + # compile the model + image_path = os.path.join(path, 'val_000000039769.jpg') + image = Image.open(image_path) + self(image) + image.close() + + def __call__(self, inputs: "Image.Image") -> List[str]: + """ + Args: + Return: + """ + + pixel_values = self.feature_extractor(images=inputs, return_tensors="np").pixel_values + + output_ids = self.generate(pixel_values) + preds = self.tokenizer.batch_decode(output_ids, skip_special_tokens=True) + preds = [pred.strip() for pred in preds] + + return preds \ No newline at end of file diff --git a/preprocessor_config.json b/preprocessor_config.json new file mode 100644 index 0000000..70fbc14 --- /dev/null +++ b/preprocessor_config.json @@ -0,0 +1,15 @@ +{ + "do_normalize": true, + "do_resize": true, + "image_mean": [ + 0.5, + 0.5, + 0.5 + ], + "image_std": [ + 0.5, + 0.5, + 0.5 + ], + "size": 224 +} diff --git a/report.txt b/report.txt new file mode 100644 index 0000000..2cd3013 --- /dev/null +++ b/report.txt @@ -0,0 +1,1239 @@ +Epoch... (1/30 | Step: 10 | Loss: 3.4405534267425537, Learning Rate: 2.999609750986565e-05) +Epoch... (1/30 | Step: 20 | Loss: 3.218325614929199, Learning Rate: 2.9991762858117e-05) +Epoch... (1/30 | Step: 30 | Loss: 3.1018149852752686, Learning Rate: 2.998742820636835e-05) +Epoch... (1/30 | Step: 40 | Loss: 3.022020101547241, Learning Rate: 2.99830935546197e-05) +Epoch... (1/30 | Step: 50 | Loss: 2.981201648712158, Learning Rate: 2.997875890287105e-05) +Epoch... (1/30 | Step: 60 | Loss: 2.8424253463745117, Learning Rate: 2.9974426070111804e-05) +Epoch... (1/30 | Step: 70 | Loss: 2.907778263092041, Learning Rate: 2.9970091418363154e-05) +Epoch... (1/30 | Step: 80 | Loss: 2.7866015434265137, Learning Rate: 2.9965756766614504e-05) +Epoch... (1/30 | Step: 90 | Loss: 2.8242785930633545, Learning Rate: 2.996142029587645e-05) +Epoch... (1/30 | Step: 100 | Loss: 2.706552028656006, Learning Rate: 2.99570856441278e-05) +Epoch... (1/30 | Step: 110 | Loss: 2.611888885498047, Learning Rate: 2.995275099237915e-05) +Epoch... (1/30 | Step: 120 | Loss: 2.595040798187256, Learning Rate: 2.99484163406305e-05) +Epoch... (1/30 | Step: 130 | Loss: 2.6346092224121094, Learning Rate: 2.9944081688881852e-05) +Epoch... (1/30 | Step: 140 | Loss: 2.608229160308838, Learning Rate: 2.9939747037133202e-05) +Epoch... (1/30 | Step: 150 | Loss: 2.628932476043701, Learning Rate: 2.9935414204373956e-05) +Epoch... (1/30 | Step: 160 | Loss: 2.4869046211242676, Learning Rate: 2.9931079552625306e-05) +Epoch... (1/30 | Step: 170 | Loss: 2.5518672466278076, Learning Rate: 2.9926744900876656e-05) +Epoch... (1/30 | Step: 180 | Loss: 2.475501298904419, Learning Rate: 2.9922410249128006e-05) +Epoch... (1/30 | Step: 190 | Loss: 2.7231974601745605, Learning Rate: 2.9918073778389953e-05) +Epoch... (1/30 | Step: 200 | Loss: 2.500187873840332, Learning Rate: 2.9913739126641303e-05) +Epoch... (1/30 | Step: 210 | Loss: 2.5470097064971924, Learning Rate: 2.9909404474892654e-05) +Epoch... (1/30 | Step: 220 | Loss: 2.3819117546081543, Learning Rate: 2.9905069823144004e-05) +Epoch... (1/30 | Step: 230 | Loss: 2.5723557472229004, Learning Rate: 2.9900735171395354e-05) +Epoch... (1/30 | Step: 240 | Loss: 2.440537929534912, Learning Rate: 2.9896402338636108e-05) +Epoch... (1/30 | Step: 250 | Loss: 2.559695243835449, Learning Rate: 2.9892067686887458e-05) +Epoch... (1/30 | Step: 260 | Loss: 2.5182833671569824, Learning Rate: 2.9887733035138808e-05) +Epoch... (1/30 | Step: 270 | Loss: 2.405858039855957, Learning Rate: 2.988339838339016e-05) +Epoch... (1/30 | Step: 280 | Loss: 2.4234917163848877, Learning Rate: 2.987906373164151e-05) +Epoch... (1/30 | Step: 290 | Loss: 2.36462140083313, Learning Rate: 2.9874727260903455e-05) +Epoch... (1/30 | Step: 300 | Loss: 2.4654769897460938, Learning Rate: 2.9870392609154806e-05) +Epoch... (1/30 | Step: 300 | Loss: 2.4654769897460938, Learning Rate: 2.9870392609154806e-05) +Epoch... (1/30 | Step: 300 | Eval Loss: 2.3369832038879395 | Eval rouge1: 36.6481 | Eval rouge2: 12.0172 | Eval rougeL: 33.4031 | Eval rougeLsum: 33.4031 | Eval gen_len: 10.6758 |) +Epoch... (1/30 | Step: 310 | Loss: 2.2441658973693848, Learning Rate: 2.9866057957406156e-05) +Epoch... (1/30 | Step: 320 | Loss: 2.381657361984253, Learning Rate: 2.986172512464691e-05) +Epoch... (1/30 | Step: 330 | Loss: 2.39951753616333, Learning Rate: 2.985739047289826e-05) +Epoch... (1/30 | Step: 340 | Loss: 2.4004015922546387, Learning Rate: 2.985305582114961e-05) +Epoch... (1/30 | Step: 350 | Loss: 2.3319690227508545, Learning Rate: 2.984872116940096e-05) +Epoch... (1/30 | Step: 360 | Loss: 2.3237192630767822, Learning Rate: 2.984438651765231e-05) +Epoch... (1/30 | Step: 370 | Loss: 2.381218671798706, Learning Rate: 2.984005186590366e-05) +Epoch... (1/30 | Step: 380 | Loss: 2.309722900390625, Learning Rate: 2.9835715395165607e-05) +Epoch... (1/30 | Step: 390 | Loss: 2.3941807746887207, Learning Rate: 2.9831380743416958e-05) +Epoch... (1/30 | Step: 400 | Loss: 2.3451006412506104, Learning Rate: 2.9827046091668308e-05) +Epoch... (1/30 | Step: 410 | Loss: 2.278620719909668, Learning Rate: 2.982271325890906e-05) +Epoch... (1/30 | Step: 420 | Loss: 2.258894920349121, Learning Rate: 2.9818378607160412e-05) +Epoch... (1/30 | Step: 430 | Loss: 2.334801197052002, Learning Rate: 2.9814043955411762e-05) +Epoch... (1/30 | Step: 440 | Loss: 2.358175754547119, Learning Rate: 2.9809709303663112e-05) +Epoch... (1/30 | Step: 450 | Loss: 2.342679977416992, Learning Rate: 2.9805374651914462e-05) +Epoch... (1/30 | Step: 460 | Loss: 2.3427581787109375, Learning Rate: 2.9801040000165813e-05) +Epoch... (1/30 | Step: 470 | Loss: 2.2662670612335205, Learning Rate: 2.9796705348417163e-05) +Epoch... (1/30 | Step: 480 | Loss: 2.3363449573516846, Learning Rate: 2.979236887767911e-05) +Epoch... (1/30 | Step: 490 | Loss: 2.3524205684661865, Learning Rate: 2.978803422593046e-05) +Epoch... (1/30 | Step: 500 | Loss: 2.33699369430542, Learning Rate: 2.9783701393171214e-05) +Epoch... (1/30 | Step: 510 | Loss: 2.254800319671631, Learning Rate: 2.9779366741422564e-05) +Epoch... (1/30 | Step: 520 | Loss: 2.2564821243286133, Learning Rate: 2.9775032089673914e-05) +Epoch... (1/30 | Step: 530 | Loss: 2.312403678894043, Learning Rate: 2.9770697437925264e-05) +Epoch... (1/30 | Step: 540 | Loss: 2.361353874206543, Learning Rate: 2.9766362786176614e-05) +Epoch... (1/30 | Step: 550 | Loss: 2.231563091278076, Learning Rate: 2.9762028134427965e-05) +Epoch... (1/30 | Step: 560 | Loss: 2.23984956741333, Learning Rate: 2.9757693482679315e-05) +Epoch... (1/30 | Step: 570 | Loss: 2.294980049133301, Learning Rate: 2.9753358830930665e-05) +Epoch... (1/30 | Step: 580 | Loss: 2.234550952911377, Learning Rate: 2.9749022360192612e-05) +Epoch... (1/30 | Step: 590 | Loss: 2.2543816566467285, Learning Rate: 2.9744689527433366e-05) +Epoch... (1/30 | Step: 600 | Loss: 2.249704360961914, Learning Rate: 2.9740354875684716e-05) +Epoch... (1/30 | Step: 600 | Loss: 2.249704360961914, Learning Rate: 2.9740354875684716e-05) +Epoch... (1/30 | Step: 600 | Eval Loss: 2.2133584022521973 | Eval rouge1: 38.2794 | Eval rouge2: 13.1501 | Eval rougeL: 34.8961 | Eval rougeLsum: 34.8948 | Eval gen_len: 11.0128 |) +Epoch... (1/30 | Step: 610 | Loss: 2.2616004943847656, Learning Rate: 2.9736020223936066e-05) +Epoch... (1/30 | Step: 620 | Loss: 2.280752658843994, Learning Rate: 2.9731685572187416e-05) +Epoch... (1/30 | Step: 630 | Loss: 2.1695902347564697, Learning Rate: 2.9727350920438766e-05) +Epoch... (1/30 | Step: 640 | Loss: 2.3159074783325195, Learning Rate: 2.9723016268690117e-05) +Epoch... (1/30 | Step: 650 | Loss: 2.2354726791381836, Learning Rate: 2.9718681616941467e-05) +Epoch... (1/30 | Step: 660 | Loss: 2.2967095375061035, Learning Rate: 2.9714346965192817e-05) +Epoch... (1/30 | Step: 670 | Loss: 2.3010551929473877, Learning Rate: 2.9710012313444167e-05) +Epoch... (1/30 | Step: 680 | Loss: 2.292668342590332, Learning Rate: 2.9705677661695518e-05) +Epoch... (1/30 | Step: 690 | Loss: 2.195081949234009, Learning Rate: 2.9701343009946868e-05) +Epoch... (1/30 | Step: 700 | Loss: 2.296633720397949, Learning Rate: 2.9697008358198218e-05) +Epoch... (1/30 | Step: 710 | Loss: 2.149764060974121, Learning Rate: 2.9692673706449568e-05) +Epoch... (1/30 | Step: 720 | Loss: 2.2461729049682617, Learning Rate: 2.968833905470092e-05) +Epoch... (1/30 | Step: 730 | Loss: 2.2976291179656982, Learning Rate: 2.968400440295227e-05) +Epoch... (1/30 | Step: 740 | Loss: 2.2700982093811035, Learning Rate: 2.967966975120362e-05) +Epoch... (1/30 | Step: 750 | Loss: 2.2898383140563965, Learning Rate: 2.967533509945497e-05) +Epoch... (1/30 | Step: 760 | Loss: 2.2785892486572266, Learning Rate: 2.967100044770632e-05) +Epoch... (1/30 | Step: 770 | Loss: 2.1977713108062744, Learning Rate: 2.966666579595767e-05) +Epoch... (1/30 | Step: 780 | Loss: 2.214864730834961, Learning Rate: 2.966233114420902e-05) +Epoch... (1/30 | Step: 790 | Loss: 2.2334184646606445, Learning Rate: 2.965799649246037e-05) +Epoch... (1/30 | Step: 800 | Loss: 2.2037973403930664, Learning Rate: 2.965366184071172e-05) +Epoch... (1/30 | Step: 810 | Loss: 2.174184560775757, Learning Rate: 2.964932718896307e-05) +Epoch... (1/30 | Step: 820 | Loss: 2.2716355323791504, Learning Rate: 2.964499253721442e-05) +Epoch... (1/30 | Step: 830 | Loss: 2.193842887878418, Learning Rate: 2.964065788546577e-05) +Epoch... (1/30 | Step: 840 | Loss: 2.249634265899658, Learning Rate: 2.963632323371712e-05) +Epoch... (1/30 | Step: 850 | Loss: 2.237217426300049, Learning Rate: 2.963198858196847e-05) +Epoch... (1/30 | Step: 860 | Loss: 2.172455310821533, Learning Rate: 2.9627655749209225e-05) +Epoch... (1/30 | Step: 870 | Loss: 2.05983829498291, Learning Rate: 2.9623319278471172e-05) +Epoch... (1/30 | Step: 880 | Loss: 2.3632073402404785, Learning Rate: 2.9618984626722522e-05) +Epoch... (1/30 | Step: 890 | Loss: 2.254265785217285, Learning Rate: 2.9614649974973872e-05) +Epoch... (1/30 | Step: 900 | Loss: 2.2401223182678223, Learning Rate: 2.9610315323225223e-05) +Epoch... (1/30 | Step: 900 | Loss: 2.2401223182678223, Learning Rate: 2.9610315323225223e-05) +Epoch... (1/30 | Step: 900 | Eval Loss: 2.152062177658081 | Eval rouge1: 39.5335 | Eval rouge2: 14.3557 | Eval rougeL: 35.8974 | Eval rougeLsum: 35.9057 | Eval gen_len: 10.8698 |) +Epoch... (1/30 | Step: 910 | Loss: 2.145946979522705, Learning Rate: 2.9605980671476573e-05) +Epoch... (1/30 | Step: 920 | Loss: 2.0916032791137695, Learning Rate: 2.9601646019727923e-05) +Epoch... (1/30 | Step: 930 | Loss: 2.1092920303344727, Learning Rate: 2.9597311367979273e-05) +Epoch... (1/30 | Step: 940 | Loss: 2.2093448638916016, Learning Rate: 2.9592976716230623e-05) +Epoch... (1/30 | Step: 950 | Loss: 2.1340670585632324, Learning Rate: 2.9588643883471377e-05) +Epoch... (1/30 | Step: 960 | Loss: 2.104341506958008, Learning Rate: 2.9584309231722727e-05) +Epoch... (1/30 | Step: 970 | Loss: 2.1689233779907227, Learning Rate: 2.9579972760984674e-05) +Epoch... (1/30 | Step: 980 | Loss: 2.1623427867889404, Learning Rate: 2.9575638109236024e-05) +Epoch... (1/30 | Step: 990 | Loss: 2.050921678543091, Learning Rate: 2.9571303457487375e-05) +Epoch... (1/30 | Step: 1000 | Loss: 2.2413523197174072, Learning Rate: 2.9566968805738725e-05) +Epoch... (1/30 | Step: 1010 | Loss: 2.143608570098877, Learning Rate: 2.9562634153990075e-05) +Epoch... (1/30 | Step: 1020 | Loss: 2.1761255264282227, Learning Rate: 2.9558299502241425e-05) +Epoch... (1/30 | Step: 1030 | Loss: 2.2119503021240234, Learning Rate: 2.955396666948218e-05) +Epoch... (1/30 | Step: 1040 | Loss: 2.071683645248413, Learning Rate: 2.954963201773353e-05) +Epoch... (1/30 | Step: 1050 | Loss: 2.2042810916900635, Learning Rate: 2.954529736598488e-05) +Epoch... (1/30 | Step: 1060 | Loss: 2.1775331497192383, Learning Rate: 2.954096271423623e-05) +Epoch... (1/30 | Step: 1070 | Loss: 2.0984702110290527, Learning Rate: 2.9536626243498176e-05) +Epoch... (1/30 | Step: 1080 | Loss: 2.1763856410980225, Learning Rate: 2.9532291591749527e-05) +Epoch... (1/30 | Step: 1090 | Loss: 2.2860050201416016, Learning Rate: 2.9527956940000877e-05) +Epoch... (1/30 | Step: 1100 | Loss: 2.125678062438965, Learning Rate: 2.9523622288252227e-05) +Epoch... (1/30 | Step: 1110 | Loss: 2.127748727798462, Learning Rate: 2.9519287636503577e-05) +Epoch... (1/30 | Step: 1120 | Loss: 2.092984199523926, Learning Rate: 2.951495480374433e-05) +Epoch... (1/30 | Step: 1130 | Loss: 2.1310806274414062, Learning Rate: 2.951062015199568e-05) +Epoch... (1/30 | Step: 1140 | Loss: 2.1979918479919434, Learning Rate: 2.950628550024703e-05) +Epoch... (1/30 | Step: 1150 | Loss: 2.229048013687134, Learning Rate: 2.950195084849838e-05) +Epoch... (1/30 | Step: 1160 | Loss: 2.143617630004883, Learning Rate: 2.949761437776033e-05) +Epoch... (1/30 | Step: 1170 | Loss: 2.162456750869751, Learning Rate: 2.949327972601168e-05) +Epoch... (1/30 | Step: 1180 | Loss: 2.1484286785125732, Learning Rate: 2.948894507426303e-05) +Epoch... (1/30 | Step: 1190 | Loss: 2.19675350189209, Learning Rate: 2.948461042251438e-05) +Epoch... (1/30 | Step: 1200 | Loss: 2.069185972213745, Learning Rate: 2.948027577076573e-05) +Epoch... (1/30 | Step: 1200 | Loss: 2.069185972213745, Learning Rate: 2.948027577076573e-05) +Epoch... (1/30 | Step: 1200 | Eval Loss: 2.118244171142578 | Eval rouge1: 39.626 | Eval rouge2: 14.2226 | Eval rougeL: 36.0901 | Eval rougeLsum: 36.0902 | Eval gen_len: 10.9209 |) +Epoch... (1/30 | Step: 1210 | Loss: 2.143256664276123, Learning Rate: 2.9475942938006483e-05) +Epoch... (1/30 | Step: 1220 | Loss: 2.1436400413513184, Learning Rate: 2.9471608286257833e-05) +Epoch... (1/30 | Step: 1230 | Loss: 2.2154154777526855, Learning Rate: 2.9467273634509183e-05) +Epoch... (1/30 | Step: 1240 | Loss: 2.1441659927368164, Learning Rate: 2.9462938982760534e-05) +Epoch... (1/30 | Step: 1250 | Loss: 2.174199104309082, Learning Rate: 2.9458604331011884e-05) +Epoch... (1/30 | Step: 1260 | Loss: 2.1268279552459717, Learning Rate: 2.945426786027383e-05) +Epoch... (1/30 | Step: 1270 | Loss: 2.126941204071045, Learning Rate: 2.944993320852518e-05) +Epoch... (1/30 | Step: 1280 | Loss: 2.119166612625122, Learning Rate: 2.944559855677653e-05) +Epoch... (1/30 | Step: 1290 | Loss: 2.2846920490264893, Learning Rate: 2.944126390502788e-05) +Epoch... (1/30 | Step: 1300 | Loss: 2.1685166358947754, Learning Rate: 2.9436931072268635e-05) +Epoch... (1/30 | Step: 1310 | Loss: 2.151987314224243, Learning Rate: 2.9432596420519985e-05) +Epoch... (1/30 | Step: 1320 | Loss: 2.103717565536499, Learning Rate: 2.9428261768771335e-05) +Epoch... (1/30 | Step: 1330 | Loss: 2.155966281890869, Learning Rate: 2.9423927117022686e-05) +Epoch... (1/30 | Step: 1340 | Loss: 2.1677801609039307, Learning Rate: 2.9419592465274036e-05) +Epoch... (1/30 | Step: 1350 | Loss: 2.143979549407959, Learning Rate: 2.9415255994535983e-05) +Epoch... (1/30 | Step: 1360 | Loss: 2.229569911956787, Learning Rate: 2.9410921342787333e-05) +Epoch... (1/30 | Step: 1370 | Loss: 2.0859322547912598, Learning Rate: 2.9406586691038683e-05) +Epoch... (1/30 | Step: 1380 | Loss: 2.2380738258361816, Learning Rate: 2.9402252039290033e-05) +Epoch... (1/30 | Step: 1390 | Loss: 2.10669207572937, Learning Rate: 2.9397919206530787e-05) +Epoch... (1/30 | Step: 1400 | Loss: 2.1286675930023193, Learning Rate: 2.9393584554782137e-05) +Epoch... (1/30 | Step: 1410 | Loss: 2.140237331390381, Learning Rate: 2.9389249903033487e-05) +Epoch... (1/30 | Step: 1420 | Loss: 2.081178665161133, Learning Rate: 2.9384915251284838e-05) +Epoch... (1/30 | Step: 1430 | Loss: 2.0578155517578125, Learning Rate: 2.9380580599536188e-05) +Epoch... (1/30 | Step: 1440 | Loss: 2.082831859588623, Learning Rate: 2.9376245947787538e-05) +Epoch... (1/30 | Step: 1450 | Loss: 2.1357812881469727, Learning Rate: 2.937191129603889e-05) +Epoch... (1/30 | Step: 1460 | Loss: 2.164750576019287, Learning Rate: 2.9367574825300835e-05) +Epoch... (1/30 | Step: 1470 | Loss: 2.0534393787384033, Learning Rate: 2.9363240173552185e-05) +Epoch... (1/30 | Step: 1480 | Loss: 2.1811447143554688, Learning Rate: 2.935890734079294e-05) +Epoch... (1/30 | Step: 1490 | Loss: 2.1194841861724854, Learning Rate: 2.935457268904429e-05) +Epoch... (1/30 | Step: 1500 | Loss: 2.0982208251953125, Learning Rate: 2.935023803729564e-05) +Epoch... (1/30 | Step: 1500 | Loss: 2.0982208251953125, Learning Rate: 2.935023803729564e-05) +Epoch... (1/30 | Step: 1500 | Eval Loss: 2.087283134460449 | Eval rouge1: 39.7247 | Eval rouge2: 14.3773 | Eval rougeL: 36.2126 | Eval rougeLsum: 36.2124 | Eval gen_len: 10.922 |) +Epoch... (1/30 | Step: 1510 | Loss: 2.0628573894500732, Learning Rate: 2.934590338554699e-05) +Epoch... (1/30 | Step: 1520 | Loss: 2.0424842834472656, Learning Rate: 2.934156873379834e-05) +Epoch... (1/30 | Step: 1530 | Loss: 2.157275676727295, Learning Rate: 2.933723408204969e-05) +Epoch... (1/30 | Step: 1540 | Loss: 2.1352427005767822, Learning Rate: 2.933289943030104e-05) +Epoch... (1/30 | Step: 1550 | Loss: 2.1653575897216797, Learning Rate: 2.9328562959562987e-05) +Epoch... (1/30 | Step: 1560 | Loss: 2.0672290325164795, Learning Rate: 2.9324228307814337e-05) +Epoch... (1/30 | Step: 1570 | Loss: 2.097109794616699, Learning Rate: 2.931989547505509e-05) +Epoch... (1/30 | Step: 1580 | Loss: 2.087357997894287, Learning Rate: 2.931556082330644e-05) +Epoch... (1/30 | Step: 1590 | Loss: 2.1381149291992188, Learning Rate: 2.931122617155779e-05) +Epoch... (1/30 | Step: 1600 | Loss: 2.1855034828186035, Learning Rate: 2.9306891519809142e-05) +Epoch... (1/30 | Step: 1610 | Loss: 2.183502674102783, Learning Rate: 2.9302556868060492e-05) +Epoch... (1/30 | Step: 1620 | Loss: 2.1278882026672363, Learning Rate: 2.9298222216311842e-05) +Epoch... (1/30 | Step: 1630 | Loss: 2.086331605911255, Learning Rate: 2.9293887564563192e-05) +Epoch... (1/30 | Step: 1640 | Loss: 2.0485429763793945, Learning Rate: 2.9289552912814543e-05) +Epoch... (1/30 | Step: 1650 | Loss: 2.0960192680358887, Learning Rate: 2.9285218261065893e-05) +Epoch... (1/30 | Step: 1660 | Loss: 2.078531265258789, Learning Rate: 2.9280883609317243e-05) +Epoch... (1/30 | Step: 1670 | Loss: 2.1528992652893066, Learning Rate: 2.9276548957568593e-05) +Epoch... (1/30 | Step: 1680 | Loss: 2.044875144958496, Learning Rate: 2.9272214305819944e-05) +Epoch... (1/30 | Step: 1690 | Loss: 2.1002728939056396, Learning Rate: 2.9267879654071294e-05) +Epoch... (1/30 | Step: 1700 | Loss: 2.0666818618774414, Learning Rate: 2.9263545002322644e-05) +Epoch... (1/30 | Step: 1710 | Loss: 2.076720714569092, Learning Rate: 2.9259210350573994e-05) +Epoch... (1/30 | Step: 1720 | Loss: 2.0573716163635254, Learning Rate: 2.9254875698825344e-05) +Epoch... (1/30 | Step: 1730 | Loss: 2.0897603034973145, Learning Rate: 2.9250541047076695e-05) +Epoch... (1/30 | Step: 1740 | Loss: 2.141058921813965, Learning Rate: 2.9246206395328045e-05) +Epoch... (1/30 | Step: 1750 | Loss: 2.1023364067077637, Learning Rate: 2.9241871743579395e-05) +Epoch... (1/30 | Step: 1760 | Loss: 2.1418118476867676, Learning Rate: 2.9237537091830745e-05) +Epoch... (1/30 | Step: 1770 | Loss: 2.246041774749756, Learning Rate: 2.9233202440082096e-05) +Epoch... (1/30 | Step: 1780 | Loss: 2.1305742263793945, Learning Rate: 2.9228867788333446e-05) +Epoch... (1/30 | Step: 1790 | Loss: 2.1510705947875977, Learning Rate: 2.9224533136584796e-05) +Epoch... (1/30 | Step: 1800 | Loss: 2.2788705825805664, Learning Rate: 2.9220198484836146e-05) +Epoch... (1/30 | Step: 1800 | Loss: 2.2788705825805664, Learning Rate: 2.9220198484836146e-05) +Epoch... (1/30 | Step: 1800 | Eval Loss: 2.0597662925720215 | Eval rouge1: 40.5653 | Eval rouge2: 15.0792 | Eval rougeL: 36.9261 | Eval rougeLsum: 36.9178 | Eval gen_len: 10.8504 |) +Epoch... (1/30 | Step: 1810 | Loss: 2.1530094146728516, Learning Rate: 2.9215863833087496e-05) +Epoch... (1/30 | Step: 1820 | Loss: 2.216090679168701, Learning Rate: 2.9211529181338847e-05) +Epoch... (1/30 | Step: 1830 | Loss: 2.138352155685425, Learning Rate: 2.92071963485796e-05) +Epoch... (1/30 | Step: 1840 | Loss: 2.0977377891540527, Learning Rate: 2.9202859877841547e-05) +Epoch... (1/30 | Step: 1850 | Loss: 2.1130166053771973, Learning Rate: 2.9198525226092897e-05) +Epoch... (1/30 | Step: 1860 | Loss: 1.9936583042144775, Learning Rate: 2.9194190574344248e-05) +Epoch... (1/30 | Step: 1870 | Loss: 2.0906026363372803, Learning Rate: 2.9189855922595598e-05) +Epoch... (1/30 | Step: 1880 | Loss: 2.1219160556793213, Learning Rate: 2.9185521270846948e-05) +Epoch... (1/30 | Step: 1890 | Loss: 2.136955738067627, Learning Rate: 2.9181186619098298e-05) +Epoch... (1/30 | Step: 1900 | Loss: 2.098308563232422, Learning Rate: 2.917685196734965e-05) +Epoch... (1/30 | Step: 1910 | Loss: 2.095719337463379, Learning Rate: 2.9172517315601e-05) +Epoch... (1/30 | Step: 1920 | Loss: 2.089087724685669, Learning Rate: 2.9168184482841752e-05) +Epoch... (1/30 | Step: 1930 | Loss: 2.167004346847534, Learning Rate: 2.9163849831093103e-05) +Epoch... (1/30 | Step: 1940 | Loss: 1.9983344078063965, Learning Rate: 2.915951336035505e-05) +Epoch... (1/30 | Step: 1950 | Loss: 2.1173758506774902, Learning Rate: 2.91551787086064e-05) +Epoch... (1/30 | Step: 1960 | Loss: 2.0237390995025635, Learning Rate: 2.915084405685775e-05) +Epoch... (1/30 | Step: 1970 | Loss: 2.0724878311157227, Learning Rate: 2.91465094051091e-05) +Epoch... (1/30 | Step: 1980 | Loss: 2.0563502311706543, Learning Rate: 2.914217475336045e-05) +Epoch... (1/30 | Step: 1990 | Loss: 2.088345527648926, Learning Rate: 2.91378401016118e-05) +Epoch... (1/30 | Step: 2000 | Loss: 2.14585542678833, Learning Rate: 2.913350544986315e-05) +Epoch... (1/30 | Step: 2010 | Loss: 2.0599942207336426, Learning Rate: 2.9129172617103904e-05) +Epoch... (1/30 | Step: 2020 | Loss: 2.049421787261963, Learning Rate: 2.9124837965355255e-05) +Epoch... (1/30 | Step: 2030 | Loss: 2.032505989074707, Learning Rate: 2.9120503313606605e-05) +Epoch... (1/30 | Step: 2040 | Loss: 2.1009111404418945, Learning Rate: 2.911616684286855e-05) +Epoch... (1/30 | Step: 2050 | Loss: 2.0961179733276367, Learning Rate: 2.9111832191119902e-05) +Epoch... (1/30 | Step: 2060 | Loss: 2.0474748611450195, Learning Rate: 2.9107497539371252e-05) +Epoch... (1/30 | Step: 2070 | Loss: 2.1285176277160645, Learning Rate: 2.9103162887622602e-05) +Epoch... (1/30 | Step: 2080 | Loss: 2.0173821449279785, Learning Rate: 2.9098828235873953e-05) +Epoch... (1/30 | Step: 2090 | Loss: 2.1344692707061768, Learning Rate: 2.9094493584125303e-05) +Epoch... (1/30 | Step: 2100 | Loss: 2.0788259506225586, Learning Rate: 2.9090160751366057e-05) +Epoch... (1/30 | Step: 2100 | Loss: 2.0788259506225586, Learning Rate: 2.9090160751366057e-05) +Epoch... (1/30 | Step: 2100 | Eval Loss: 2.037459373474121 | Eval rouge1: 40.5198 | Eval rouge2: 15.162 | Eval rougeL: 36.9107 | Eval rougeLsum: 36.9123 | Eval gen_len: 10.8398 |) +Epoch... (1/30 | Step: 2110 | Loss: 2.0843522548675537, Learning Rate: 2.9085826099617407e-05) +Epoch... (1/30 | Step: 2120 | Loss: 2.0523273944854736, Learning Rate: 2.9081491447868757e-05) +Epoch... (1/30 | Step: 2130 | Loss: 2.0692148208618164, Learning Rate: 2.9077154977130704e-05) +Epoch... (1/30 | Step: 2140 | Loss: 2.0720198154449463, Learning Rate: 2.9072820325382054e-05) +Epoch... (1/30 | Step: 2150 | Loss: 2.018003463745117, Learning Rate: 2.9068485673633404e-05) +Epoch... (1/30 | Step: 2160 | Loss: 2.0908870697021484, Learning Rate: 2.9064151021884754e-05) +Epoch... (1/30 | Step: 2170 | Loss: 1.9835797548294067, Learning Rate: 2.9059816370136105e-05) +Epoch... (1/30 | Step: 2180 | Loss: 2.033381462097168, Learning Rate: 2.9055481718387455e-05) +Epoch... (1/30 | Step: 2190 | Loss: 2.0725207328796387, Learning Rate: 2.905114888562821e-05) +Epoch... (1/30 | Step: 2200 | Loss: 2.0173754692077637, Learning Rate: 2.904681423387956e-05) +Epoch... (1/30 | Step: 2210 | Loss: 2.1233925819396973, Learning Rate: 2.904247958213091e-05) +Epoch... (1/30 | Step: 2220 | Loss: 2.0552401542663574, Learning Rate: 2.903814493038226e-05) +Epoch... (1/30 | Step: 2230 | Loss: 2.046525001525879, Learning Rate: 2.9033808459644206e-05) +Epoch... (1/30 | Step: 2240 | Loss: 2.064979076385498, Learning Rate: 2.9029473807895556e-05) +Epoch... (1/30 | Step: 2250 | Loss: 2.0798213481903076, Learning Rate: 2.9025139156146906e-05) +Epoch... (1/30 | Step: 2260 | Loss: 2.0388433933258057, Learning Rate: 2.9020804504398257e-05) +Epoch... (1/30 | Step: 2270 | Loss: 2.0377979278564453, Learning Rate: 2.901647167163901e-05) +Epoch... (1/30 | Step: 2280 | Loss: 2.0889925956726074, Learning Rate: 2.901213701989036e-05) +Epoch... (1/30 | Step: 2290 | Loss: 2.05222749710083, Learning Rate: 2.900780236814171e-05) +Epoch... (1/30 | Step: 2300 | Loss: 2.033143997192383, Learning Rate: 2.900346771639306e-05) +Epoch... (1/30 | Step: 2307 | Loss: 2.164933443069458, Learning Rate: 2.9000433642067946e-05) +Epoch... (1/30 | Step: 2307 | Eval Loss: 2.0284838676452637 | Eval rouge1: 40.5299 | Eval rouge2: 15.057 | Eval rougeL: 36.9003 | Eval rougeLsum: 36.8978 | Eval gen_len: 10.9925 |) +Epoch... (2/30 | Step: 2310 | Loss: 1.9816746711730957, Learning Rate: 2.899913306464441e-05) +Epoch... (2/30 | Step: 2320 | Loss: 1.9637086391448975, Learning Rate: 2.8994796593906358e-05) +Epoch... (2/30 | Step: 2330 | Loss: 1.9946067333221436, Learning Rate: 2.8990461942157708e-05) +Epoch... (2/30 | Step: 2340 | Loss: 1.9579181671142578, Learning Rate: 2.898612729040906e-05) +Epoch... (2/30 | Step: 2350 | Loss: 2.0120954513549805, Learning Rate: 2.898179263866041e-05) +Epoch... (2/30 | Step: 2360 | Loss: 1.933640480041504, Learning Rate: 2.8977459805901162e-05) +Epoch... (2/30 | Step: 2370 | Loss: 2.001372814178467, Learning Rate: 2.8973125154152513e-05) +Epoch... (2/30 | Step: 2380 | Loss: 1.9272139072418213, Learning Rate: 2.8968790502403863e-05) +Epoch... (2/30 | Step: 2390 | Loss: 2.0162031650543213, Learning Rate: 2.8964455850655213e-05) +Epoch... (2/30 | Step: 2400 | Loss: 1.9704089164733887, Learning Rate: 2.8960121198906563e-05) +Epoch... (2/30 | Step: 2400 | Loss: 1.9704089164733887, Learning Rate: 2.8960121198906563e-05) +Epoch... (2/30 | Step: 2400 | Eval Loss: 2.024594306945801 | Eval rouge1: 40.4764 | Eval rouge2: 14.9051 | Eval rougeL: 36.8785 | Eval rougeLsum: 36.8769 | Eval gen_len: 10.8998 |) +Epoch... (2/30 | Step: 2410 | Loss: 1.992959976196289, Learning Rate: 2.8955786547157913e-05) +Epoch... (2/30 | Step: 2420 | Loss: 1.9835933446884155, Learning Rate: 2.8951451895409264e-05) +Epoch... (2/30 | Step: 2430 | Loss: 2.101801872253418, Learning Rate: 2.894711542467121e-05) +Epoch... (2/30 | Step: 2440 | Loss: 2.038966178894043, Learning Rate: 2.894278077292256e-05) +Epoch... (2/30 | Step: 2450 | Loss: 1.9256877899169922, Learning Rate: 2.8938447940163314e-05) +Epoch... (2/30 | Step: 2460 | Loss: 1.9768502712249756, Learning Rate: 2.8934113288414665e-05) +Epoch... (2/30 | Step: 2470 | Loss: 1.9429033994674683, Learning Rate: 2.8929778636666015e-05) +Epoch... (2/30 | Step: 2480 | Loss: 2.0289816856384277, Learning Rate: 2.8925443984917365e-05) +Epoch... (2/30 | Step: 2490 | Loss: 1.983972191810608, Learning Rate: 2.8921109333168715e-05) +Epoch... (2/30 | Step: 2500 | Loss: 2.0486741065979004, Learning Rate: 2.8916774681420065e-05) +Epoch... (2/30 | Step: 2510 | Loss: 1.9563899040222168, Learning Rate: 2.8912440029671416e-05) +Epoch... (2/30 | Step: 2520 | Loss: 2.0897140502929688, Learning Rate: 2.8908103558933362e-05) +Epoch... (2/30 | Step: 2530 | Loss: 2.080152988433838, Learning Rate: 2.8903768907184713e-05) +Epoch... (2/30 | Step: 2540 | Loss: 1.9517621994018555, Learning Rate: 2.8899436074425466e-05) +Epoch... (2/30 | Step: 2550 | Loss: 2.0202088356018066, Learning Rate: 2.8895101422676817e-05) +Epoch... (2/30 | Step: 2560 | Loss: 1.9686460494995117, Learning Rate: 2.8890766770928167e-05) +Epoch... (2/30 | Step: 2570 | Loss: 1.897174596786499, Learning Rate: 2.8886432119179517e-05) +Epoch... (2/30 | Step: 2580 | Loss: 1.9737465381622314, Learning Rate: 2.8882097467430867e-05) +Epoch... (2/30 | Step: 2590 | Loss: 2.0247108936309814, Learning Rate: 2.8877762815682217e-05) +Epoch... (2/30 | Step: 2600 | Loss: 2.019479990005493, Learning Rate: 2.8873428163933568e-05) +Epoch... (2/30 | Step: 2610 | Loss: 1.921512246131897, Learning Rate: 2.8869093512184918e-05) +Epoch... (2/30 | Step: 2620 | Loss: 2.002574920654297, Learning Rate: 2.8864757041446865e-05) +Epoch... (2/30 | Step: 2630 | Loss: 1.9710190296173096, Learning Rate: 2.886042420868762e-05) +Epoch... (2/30 | Step: 2640 | Loss: 2.0847268104553223, Learning Rate: 2.885608955693897e-05) +Epoch... (2/30 | Step: 2650 | Loss: 1.9489305019378662, Learning Rate: 2.885175490519032e-05) +Epoch... (2/30 | Step: 2660 | Loss: 1.9855422973632812, Learning Rate: 2.884742025344167e-05) +Epoch... (2/30 | Step: 2670 | Loss: 2.001290798187256, Learning Rate: 2.884308560169302e-05) +Epoch... (2/30 | Step: 2680 | Loss: 1.9203612804412842, Learning Rate: 2.883875094994437e-05) +Epoch... (2/30 | Step: 2690 | Loss: 1.928293228149414, Learning Rate: 2.883441629819572e-05) +Epoch... (2/30 | Step: 2700 | Loss: 2.0274925231933594, Learning Rate: 2.883008164644707e-05) +Epoch... (2/30 | Step: 2700 | Loss: 2.0274925231933594, Learning Rate: 2.883008164644707e-05) +Epoch... (2/30 | Step: 2700 | Eval Loss: 2.009991407394409 | Eval rouge1: 40.5888 | Eval rouge2: 15.0982 | Eval rougeL: 36.9127 | Eval rougeLsum: 36.9165 | Eval gen_len: 10.6976 |) +Epoch... (2/30 | Step: 2710 | Loss: 1.939640760421753, Learning Rate: 2.8825745175709017e-05) +Epoch... (2/30 | Step: 2720 | Loss: 1.9807898998260498, Learning Rate: 2.882141234294977e-05) +Epoch... (2/30 | Step: 2730 | Loss: 1.9780454635620117, Learning Rate: 2.881707769120112e-05) +Epoch... (2/30 | Step: 2740 | Loss: 1.9607644081115723, Learning Rate: 2.881274303945247e-05) +Epoch... (2/30 | Step: 2750 | Loss: 1.9642720222473145, Learning Rate: 2.880840838770382e-05) +Epoch... (2/30 | Step: 2760 | Loss: 2.0490057468414307, Learning Rate: 2.880407373595517e-05) +Epoch... (2/30 | Step: 2770 | Loss: 1.982258915901184, Learning Rate: 2.879973908420652e-05) +Epoch... (2/30 | Step: 2780 | Loss: 1.9002817869186401, Learning Rate: 2.8795404432457872e-05) +Epoch... (2/30 | Step: 2790 | Loss: 1.9543405771255493, Learning Rate: 2.8791069780709222e-05) +Epoch... (2/30 | Step: 2800 | Loss: 1.924607753753662, Learning Rate: 2.8786735128960572e-05) +Epoch... (2/30 | Step: 2810 | Loss: 1.9794992208480835, Learning Rate: 2.8782402296201326e-05) +Epoch... (2/30 | Step: 2820 | Loss: 1.9884564876556396, Learning Rate: 2.8778065825463273e-05) +Epoch... (2/30 | Step: 2830 | Loss: 2.0604281425476074, Learning Rate: 2.8773731173714623e-05) +Epoch... (2/30 | Step: 2840 | Loss: 1.9901032447814941, Learning Rate: 2.8769396521965973e-05) +Epoch... (2/30 | Step: 2850 | Loss: 1.9847352504730225, Learning Rate: 2.8765061870217323e-05) +Epoch... (2/30 | Step: 2860 | Loss: 1.9160382747650146, Learning Rate: 2.8760727218468674e-05) +Epoch... (2/30 | Step: 2870 | Loss: 2.013071060180664, Learning Rate: 2.8756392566720024e-05) +Epoch... (2/30 | Step: 2880 | Loss: 2.004521369934082, Learning Rate: 2.8752057914971374e-05) +Epoch... (2/30 | Step: 2890 | Loss: 1.962958812713623, Learning Rate: 2.8747723263222724e-05) +Epoch... (2/30 | Step: 2900 | Loss: 2.002131223678589, Learning Rate: 2.8743390430463478e-05) +Epoch... (2/30 | Step: 2910 | Loss: 1.8968100547790527, Learning Rate: 2.8739053959725425e-05) +Epoch... (2/30 | Step: 2920 | Loss: 1.9270609617233276, Learning Rate: 2.8734719307976775e-05) +Epoch... (2/30 | Step: 2930 | Loss: 1.918048620223999, Learning Rate: 2.8730384656228125e-05) +Epoch... (2/30 | Step: 2940 | Loss: 2.055185317993164, Learning Rate: 2.8726050004479475e-05) +Epoch... (2/30 | Step: 2950 | Loss: 1.998548984527588, Learning Rate: 2.8721715352730826e-05) +Epoch... (2/30 | Step: 2960 | Loss: 1.9728754758834839, Learning Rate: 2.8717380700982176e-05) +Epoch... (2/30 | Step: 2970 | Loss: 2.0119190216064453, Learning Rate: 2.8713046049233526e-05) +Epoch... (2/30 | Step: 2980 | Loss: 1.9915521144866943, Learning Rate: 2.870871321647428e-05) +Epoch... (2/30 | Step: 2990 | Loss: 2.039159059524536, Learning Rate: 2.870437856472563e-05) +Epoch... (2/30 | Step: 3000 | Loss: 1.9609485864639282, Learning Rate: 2.870004391297698e-05) +Epoch... (2/30 | Step: 3000 | Loss: 1.9609485864639282, Learning Rate: 2.870004391297698e-05) +Epoch... (2/30 | Step: 3000 | Eval Loss: 1.9941604137420654 | Eval rouge1: 40.6226 | Eval rouge2: 15.1062 | Eval rougeL: 36.9129 | Eval rougeLsum: 36.9145 | Eval gen_len: 11.0414 |) +Epoch... (2/30 | Step: 3010 | Loss: 1.9202957153320312, Learning Rate: 2.8695707442238927e-05) +Epoch... (2/30 | Step: 3020 | Loss: 1.959960699081421, Learning Rate: 2.8691372790490277e-05) +Epoch... (2/30 | Step: 3030 | Loss: 2.0083134174346924, Learning Rate: 2.8687038138741627e-05) +Epoch... (2/30 | Step: 3040 | Loss: 1.9896552562713623, Learning Rate: 2.8682703486992978e-05) +Epoch... (2/30 | Step: 3050 | Loss: 2.0054593086242676, Learning Rate: 2.8678368835244328e-05) +Epoch... (2/30 | Step: 3060 | Loss: 1.9596562385559082, Learning Rate: 2.8674034183495678e-05) +Epoch... (2/30 | Step: 3070 | Loss: 1.9955945014953613, Learning Rate: 2.8669701350736432e-05) +Epoch... (2/30 | Step: 3080 | Loss: 1.9095125198364258, Learning Rate: 2.8665366698987782e-05) +Epoch... (2/30 | Step: 3090 | Loss: 1.9675850868225098, Learning Rate: 2.8661032047239132e-05) +Epoch... (2/30 | Step: 3100 | Loss: 1.9429959058761597, Learning Rate: 2.865669557650108e-05) +Epoch... (2/30 | Step: 3110 | Loss: 1.9753589630126953, Learning Rate: 2.865236092475243e-05) +Epoch... (2/30 | Step: 3120 | Loss: 1.9604036808013916, Learning Rate: 2.864802627300378e-05) +Epoch... (2/30 | Step: 3130 | Loss: 1.9368562698364258, Learning Rate: 2.864369162125513e-05) +Epoch... (2/30 | Step: 3140 | Loss: 1.9978103637695312, Learning Rate: 2.863935696950648e-05) +Epoch... (2/30 | Step: 3150 | Loss: 2.0798728466033936, Learning Rate: 2.863502231775783e-05) +Epoch... (2/30 | Step: 3160 | Loss: 1.9111906290054321, Learning Rate: 2.8630689484998584e-05) +Epoch... (2/30 | Step: 3170 | Loss: 2.041853427886963, Learning Rate: 2.8626354833249934e-05) +Epoch... (2/30 | Step: 3180 | Loss: 2.0397024154663086, Learning Rate: 2.8622020181501284e-05) +Epoch... (2/30 | Step: 3190 | Loss: 1.8796460628509521, Learning Rate: 2.8617685529752634e-05) +Epoch... (2/30 | Step: 3200 | Loss: 2.0037131309509277, Learning Rate: 2.8613350878003985e-05) +Epoch... (2/30 | Step: 3210 | Loss: 1.9178547859191895, Learning Rate: 2.860901440726593e-05) +Epoch... (2/30 | Step: 3220 | Loss: 1.958061933517456, Learning Rate: 2.860467975551728e-05) +Epoch... (2/30 | Step: 3230 | Loss: 1.9921672344207764, Learning Rate: 2.8600345103768632e-05) +Epoch... (2/30 | Step: 3240 | Loss: 1.9145488739013672, Learning Rate: 2.8596010452019982e-05) +Epoch... (2/30 | Step: 3250 | Loss: 1.974982738494873, Learning Rate: 2.8591677619260736e-05) +Epoch... (2/30 | Step: 3260 | Loss: 1.9515241384506226, Learning Rate: 2.8587342967512086e-05) +Epoch... (2/30 | Step: 3270 | Loss: 1.94496488571167, Learning Rate: 2.8583008315763436e-05) +Epoch... (2/30 | Step: 3280 | Loss: 1.9740091562271118, Learning Rate: 2.8578673664014786e-05) +Epoch... (2/30 | Step: 3290 | Loss: 2.032979726791382, Learning Rate: 2.8574339012266137e-05) +Epoch... (2/30 | Step: 3300 | Loss: 1.9422719478607178, Learning Rate: 2.8570002541528083e-05) +Epoch... (2/30 | Step: 3300 | Loss: 1.9422719478607178, Learning Rate: 2.8570002541528083e-05) +Epoch... (2/30 | Step: 3300 | Eval Loss: 1.9856388568878174 | Eval rouge1: 40.961 | Eval rouge2: 15.427 | Eval rougeL: 37.1983 | Eval rougeLsum: 37.1916 | Eval gen_len: 10.9743 |) +Epoch... (2/30 | Step: 3310 | Loss: 2.0264008045196533, Learning Rate: 2.8565667889779434e-05) +Epoch... (2/30 | Step: 3320 | Loss: 1.9982149600982666, Learning Rate: 2.8561333238030784e-05) +Epoch... (2/30 | Step: 3330 | Loss: 2.0131986141204834, Learning Rate: 2.8556998586282134e-05) +Epoch... (2/30 | Step: 3340 | Loss: 1.9476488828659058, Learning Rate: 2.8552665753522888e-05) +Epoch... (2/30 | Step: 3350 | Loss: 1.9951847791671753, Learning Rate: 2.8548331101774238e-05) +Epoch... (2/30 | Step: 3360 | Loss: 1.931056022644043, Learning Rate: 2.8543996450025588e-05) +Epoch... (2/30 | Step: 3370 | Loss: 1.9832549095153809, Learning Rate: 2.853966179827694e-05) +Epoch... (2/30 | Step: 3380 | Loss: 1.9744317531585693, Learning Rate: 2.853532714652829e-05) +Epoch... (2/30 | Step: 3390 | Loss: 1.9657011032104492, Learning Rate: 2.853099249477964e-05) +Epoch... (2/30 | Step: 3400 | Loss: 1.9546856880187988, Learning Rate: 2.8526656024041586e-05) +Epoch... (2/30 | Step: 3410 | Loss: 1.9754679203033447, Learning Rate: 2.8522321372292936e-05) +Epoch... (2/30 | Step: 3420 | Loss: 1.9381368160247803, Learning Rate: 2.8517986720544286e-05) +Epoch... (2/30 | Step: 3430 | Loss: 1.948155164718628, Learning Rate: 2.851365388778504e-05) +Epoch... (2/30 | Step: 3440 | Loss: 1.971888542175293, Learning Rate: 2.850931923603639e-05) +Epoch... (2/30 | Step: 3450 | Loss: 1.9459969997406006, Learning Rate: 2.850498458428774e-05) +Epoch... (2/30 | Step: 3460 | Loss: 1.9678940773010254, Learning Rate: 2.850064993253909e-05) +Epoch... (2/30 | Step: 3470 | Loss: 1.9595050811767578, Learning Rate: 2.849631528079044e-05) +Epoch... (2/30 | Step: 3480 | Loss: 1.9060301780700684, Learning Rate: 2.849198062904179e-05) +Epoch... (2/30 | Step: 3490 | Loss: 1.9561471939086914, Learning Rate: 2.8487644158303738e-05) +Epoch... (2/30 | Step: 3500 | Loss: 1.9952422380447388, Learning Rate: 2.8483309506555088e-05) +Epoch... (2/30 | Step: 3510 | Loss: 1.9526166915893555, Learning Rate: 2.847897667379584e-05) +Epoch... (2/30 | Step: 3520 | Loss: 1.977981448173523, Learning Rate: 2.8474642022047192e-05) +Epoch... (2/30 | Step: 3530 | Loss: 1.9111697673797607, Learning Rate: 2.8470307370298542e-05) +Epoch... (2/30 | Step: 3540 | Loss: 1.948063850402832, Learning Rate: 2.8465972718549892e-05) +Epoch... (2/30 | Step: 3550 | Loss: 1.9008160829544067, Learning Rate: 2.8461638066801243e-05) +Epoch... (2/30 | Step: 3560 | Loss: 1.9312282800674438, Learning Rate: 2.8457303415052593e-05) +Epoch... (2/30 | Step: 3570 | Loss: 1.957169771194458, Learning Rate: 2.8452968763303943e-05) +Epoch... (2/30 | Step: 3580 | Loss: 1.8317185640335083, Learning Rate: 2.8448634111555293e-05) +Epoch... (2/30 | Step: 3590 | Loss: 2.0506675243377686, Learning Rate: 2.844429764081724e-05) +Epoch... (2/30 | Step: 3600 | Loss: 1.9117717742919922, Learning Rate: 2.8439964808057994e-05) +Epoch... (2/30 | Step: 3600 | Loss: 1.9117717742919922, Learning Rate: 2.8439964808057994e-05) +Epoch... (2/30 | Step: 3600 | Eval Loss: 1.9778660535812378 | Eval rouge1: 40.6615 | Eval rouge2: 15.2172 | Eval rougeL: 36.9778 | Eval rougeLsum: 36.9785 | Eval gen_len: 10.9873 |) +Epoch... (2/30 | Step: 3610 | Loss: 1.9407380819320679, Learning Rate: 2.8435630156309344e-05) +Epoch... (2/30 | Step: 3620 | Loss: 1.8952865600585938, Learning Rate: 2.8431295504560694e-05) +Epoch... (2/30 | Step: 3630 | Loss: 1.8948352336883545, Learning Rate: 2.8426960852812044e-05) +Epoch... (2/30 | Step: 3640 | Loss: 2.03857421875, Learning Rate: 2.8422626201063395e-05) +Epoch... (2/30 | Step: 3650 | Loss: 1.9013903141021729, Learning Rate: 2.8418291549314745e-05) +Epoch... (2/30 | Step: 3660 | Loss: 1.845206618309021, Learning Rate: 2.8413956897566095e-05) +Epoch... (2/30 | Step: 3670 | Loss: 1.7374927997589111, Learning Rate: 2.8409622245817445e-05) +Epoch... (2/30 | Step: 3680 | Loss: 1.9721872806549072, Learning Rate: 2.8405285775079392e-05) +Epoch... (2/30 | Step: 3690 | Loss: 1.9401315450668335, Learning Rate: 2.8400952942320146e-05) +Epoch... (2/30 | Step: 3700 | Loss: 1.960228443145752, Learning Rate: 2.8396618290571496e-05) +Epoch... (2/30 | Step: 3710 | Loss: 2.104597806930542, Learning Rate: 2.8392283638822846e-05) +Epoch... (2/30 | Step: 3720 | Loss: 1.9455502033233643, Learning Rate: 2.8387948987074196e-05) +Epoch... (2/30 | Step: 3730 | Loss: 2.000375747680664, Learning Rate: 2.8383614335325547e-05) +Epoch... (2/30 | Step: 3740 | Loss: 2.044059991836548, Learning Rate: 2.8379279683576897e-05) +Epoch... (2/30 | Step: 3750 | Loss: 1.90779447555542, Learning Rate: 2.8374945031828247e-05) +Epoch... (2/30 | Step: 3760 | Loss: 1.958655595779419, Learning Rate: 2.8370610380079597e-05) +Epoch... (2/30 | Step: 3770 | Loss: 1.943934440612793, Learning Rate: 2.8366275728330947e-05) +Epoch... (2/30 | Step: 3780 | Loss: 1.9462363719940186, Learning Rate: 2.83619428955717e-05) +Epoch... (2/30 | Step: 3790 | Loss: 2.00119686126709, Learning Rate: 2.8357606424833648e-05) +Epoch... (2/30 | Step: 3800 | Loss: 1.8953402042388916, Learning Rate: 2.8353271773084998e-05) +Epoch... (2/30 | Step: 3810 | Loss: 1.9074665307998657, Learning Rate: 2.834893712133635e-05) +Epoch... (2/30 | Step: 3820 | Loss: 1.9436546564102173, Learning Rate: 2.83446024695877e-05) +Epoch... (2/30 | Step: 3830 | Loss: 1.9025335311889648, Learning Rate: 2.834026781783905e-05) +Epoch... (2/30 | Step: 3840 | Loss: 1.9439079761505127, Learning Rate: 2.83359331660904e-05) +Epoch... (2/30 | Step: 3850 | Loss: 1.9517011642456055, Learning Rate: 2.833159851434175e-05) +Epoch... (2/30 | Step: 3860 | Loss: 1.9390623569488525, Learning Rate: 2.83272638625931e-05) +Epoch... (2/30 | Step: 3870 | Loss: 1.8799810409545898, Learning Rate: 2.8322931029833853e-05) +Epoch... (2/30 | Step: 3880 | Loss: 1.9533662796020508, Learning Rate: 2.83185945590958e-05) +Epoch... (2/30 | Step: 3890 | Loss: 2.0305581092834473, Learning Rate: 2.831425990734715e-05) +Epoch... (2/30 | Step: 3900 | Loss: 1.985913872718811, Learning Rate: 2.83099252555985e-05) +Epoch... (2/30 | Step: 3900 | Loss: 1.985913872718811, Learning Rate: 2.83099252555985e-05) +Epoch... (2/30 | Step: 3900 | Eval Loss: 1.9652690887451172 | Eval rouge1: 41.1961 | Eval rouge2: 15.6232 | Eval rougeL: 37.4628 | Eval rougeLsum: 37.4635 | Eval gen_len: 10.8986 |) +Epoch... (2/30 | Step: 3910 | Loss: 1.9935262203216553, Learning Rate: 2.830559060384985e-05) +Epoch... (2/30 | Step: 3920 | Loss: 1.9875662326812744, Learning Rate: 2.83012559521012e-05) +Epoch... (2/30 | Step: 3930 | Loss: 1.9753940105438232, Learning Rate: 2.829692130035255e-05) +Epoch... (2/30 | Step: 3940 | Loss: 1.9695476293563843, Learning Rate: 2.82925866486039e-05) +Epoch... (2/30 | Step: 3950 | Loss: 1.9616758823394775, Learning Rate: 2.828825199685525e-05) +Epoch... (2/30 | Step: 3960 | Loss: 2.000000476837158, Learning Rate: 2.8283919164096005e-05) +Epoch... (2/30 | Step: 3970 | Loss: 1.941230297088623, Learning Rate: 2.8279584512347355e-05) +Epoch... (2/30 | Step: 3980 | Loss: 1.913987159729004, Learning Rate: 2.8275248041609302e-05) +Epoch... (2/30 | Step: 3990 | Loss: 2.0030932426452637, Learning Rate: 2.8270913389860652e-05) +Epoch... (2/30 | Step: 4000 | Loss: 1.9450314044952393, Learning Rate: 2.8266578738112003e-05) +Epoch... (2/30 | Step: 4010 | Loss: 2.0085952281951904, Learning Rate: 2.8262244086363353e-05) +Epoch... (2/30 | Step: 4020 | Loss: 1.9368841648101807, Learning Rate: 2.8257909434614703e-05) +Epoch... (2/30 | Step: 4030 | Loss: 1.9371402263641357, Learning Rate: 2.8253574782866053e-05) +Epoch... (2/30 | Step: 4040 | Loss: 1.8853888511657715, Learning Rate: 2.8249240131117404e-05) +Epoch... (2/30 | Step: 4050 | Loss: 1.949146032333374, Learning Rate: 2.8244907298358157e-05) +Epoch... (2/30 | Step: 4060 | Loss: 1.930593490600586, Learning Rate: 2.8240572646609508e-05) +Epoch... (2/30 | Step: 4070 | Loss: 1.9453805685043335, Learning Rate: 2.8236236175871454e-05) +Epoch... (2/30 | Step: 4080 | Loss: 2.0240161418914795, Learning Rate: 2.8231901524122804e-05) +Epoch... (2/30 | Step: 4090 | Loss: 1.8439011573791504, Learning Rate: 2.8227566872374155e-05) +Epoch... (2/30 | Step: 4100 | Loss: 1.9838228225708008, Learning Rate: 2.8223232220625505e-05) +Epoch... (2/30 | Step: 4110 | Loss: 1.9583349227905273, Learning Rate: 2.8218897568876855e-05) +Epoch... (2/30 | Step: 4120 | Loss: 1.9604921340942383, Learning Rate: 2.8214562917128205e-05) +Epoch... (2/30 | Step: 4130 | Loss: 1.9949344396591187, Learning Rate: 2.8210228265379556e-05) +Epoch... (2/30 | Step: 4140 | Loss: 1.9361615180969238, Learning Rate: 2.820589543262031e-05) +Epoch... (2/30 | Step: 4150 | Loss: 1.8858580589294434, Learning Rate: 2.820156078087166e-05) +Epoch... (2/30 | Step: 4160 | Loss: 1.939874529838562, Learning Rate: 2.819722612912301e-05) +Epoch... (2/30 | Step: 4170 | Loss: 1.8935625553131104, Learning Rate: 2.819289147737436e-05) +Epoch... (2/30 | Step: 4180 | Loss: 1.8785367012023926, Learning Rate: 2.8188555006636307e-05) +Epoch... (2/30 | Step: 4190 | Loss: 1.893964171409607, Learning Rate: 2.8184220354887657e-05) +Epoch... (2/30 | Step: 4200 | Loss: 1.8666478395462036, Learning Rate: 2.8179885703139007e-05) +Epoch... (2/30 | Step: 4200 | Loss: 1.8666478395462036, Learning Rate: 2.8179885703139007e-05) +Epoch... (2/30 | Step: 4200 | Eval Loss: 1.9555346965789795 | Eval rouge1: 40.9762 | Eval rouge2: 15.5911 | Eval rougeL: 37.3749 | Eval rougeLsum: 37.3706 | Eval gen_len: 10.9797 |) +Epoch... (2/30 | Step: 4210 | Loss: 1.9187740087509155, Learning Rate: 2.8175551051390357e-05) +Epoch... (2/30 | Step: 4220 | Loss: 1.9928175210952759, Learning Rate: 2.817121821863111e-05) +Epoch... (2/30 | Step: 4230 | Loss: 1.9062347412109375, Learning Rate: 2.816688356688246e-05) +Epoch... (2/30 | Step: 4240 | Loss: 1.9475587606430054, Learning Rate: 2.816254891513381e-05) +Epoch... (2/30 | Step: 4250 | Loss: 1.9387705326080322, Learning Rate: 2.8158214263385162e-05) +Epoch... (2/30 | Step: 4260 | Loss: 1.930619239807129, Learning Rate: 2.8153879611636512e-05) +Epoch... (2/30 | Step: 4270 | Loss: 1.9640536308288574, Learning Rate: 2.814954314089846e-05) +Epoch... (2/30 | Step: 4280 | Loss: 1.9580998420715332, Learning Rate: 2.814520848914981e-05) +Epoch... (2/30 | Step: 4290 | Loss: 1.9430346488952637, Learning Rate: 2.814087383740116e-05) +Epoch... (2/30 | Step: 4300 | Loss: 1.9957571029663086, Learning Rate: 2.813653918565251e-05) +Epoch... (2/30 | Step: 4310 | Loss: 1.9378894567489624, Learning Rate: 2.8132206352893263e-05) +Epoch... (2/30 | Step: 4320 | Loss: 1.9086257219314575, Learning Rate: 2.8127871701144613e-05) +Epoch... (2/30 | Step: 4330 | Loss: 1.9071044921875, Learning Rate: 2.8123537049395964e-05) +Epoch... (2/30 | Step: 4340 | Loss: 1.9538824558258057, Learning Rate: 2.8119202397647314e-05) +Epoch... (2/30 | Step: 4350 | Loss: 1.8882595300674438, Learning Rate: 2.8114867745898664e-05) +Epoch... (2/30 | Step: 4360 | Loss: 1.939955472946167, Learning Rate: 2.8110533094150014e-05) +Epoch... (2/30 | Step: 4370 | Loss: 1.9267652034759521, Learning Rate: 2.810619662341196e-05) +Epoch... (2/30 | Step: 4380 | Loss: 1.8608458042144775, Learning Rate: 2.810186197166331e-05) +Epoch... (2/30 | Step: 4390 | Loss: 1.9454424381256104, Learning Rate: 2.809752731991466e-05) +Epoch... (2/30 | Step: 4400 | Loss: 1.9094369411468506, Learning Rate: 2.8093194487155415e-05) +Epoch... (2/30 | Step: 4410 | Loss: 1.8965256214141846, Learning Rate: 2.8088859835406765e-05) +Epoch... (2/30 | Step: 4420 | Loss: 1.980330467224121, Learning Rate: 2.8084525183658116e-05) +Epoch... (2/30 | Step: 4430 | Loss: 1.9047348499298096, Learning Rate: 2.8080190531909466e-05) +Epoch... (2/30 | Step: 4440 | Loss: 1.856551170349121, Learning Rate: 2.8075855880160816e-05) +Epoch... (2/30 | Step: 4450 | Loss: 1.9115313291549683, Learning Rate: 2.8071521228412166e-05) +Epoch... (2/30 | Step: 4460 | Loss: 1.8422142267227173, Learning Rate: 2.8067184757674113e-05) +Epoch... (2/30 | Step: 4470 | Loss: 1.9501553773880005, Learning Rate: 2.8062850105925463e-05) +Epoch... (2/30 | Step: 4480 | Loss: 1.99320650100708, Learning Rate: 2.8058515454176813e-05) +Epoch... (2/30 | Step: 4490 | Loss: 1.8857262134552002, Learning Rate: 2.8054182621417567e-05) +Epoch... (2/30 | Step: 4500 | Loss: 1.8706979751586914, Learning Rate: 2.8049847969668917e-05) +Epoch... (2/30 | Step: 4500 | Loss: 1.8706979751586914, Learning Rate: 2.8049847969668917e-05) +Epoch... (2/30 | Step: 4500 | Eval Loss: 1.9466681480407715 | Eval rouge1: 40.7165 | Eval rouge2: 15.3635 | Eval rougeL: 37.0299 | Eval rougeLsum: 37.031 | Eval gen_len: 11.2565 |) +Epoch... (2/30 | Step: 4510 | Loss: 1.9182460308074951, Learning Rate: 2.8045513317920268e-05) +Epoch... (2/30 | Step: 4520 | Loss: 1.937203288078308, Learning Rate: 2.8041178666171618e-05) +Epoch... (2/30 | Step: 4530 | Loss: 1.91261625289917, Learning Rate: 2.8036844014422968e-05) +Epoch... (2/30 | Step: 4540 | Loss: 1.9567575454711914, Learning Rate: 2.8032509362674318e-05) +Epoch... (2/30 | Step: 4550 | Loss: 1.9147999286651611, Learning Rate: 2.802817471092567e-05) +Epoch... (2/30 | Step: 4560 | Loss: 1.9001394510269165, Learning Rate: 2.802384005917702e-05) +Epoch... (2/30 | Step: 4570 | Loss: 1.9326331615447998, Learning Rate: 2.8019503588438965e-05) +Epoch... (2/30 | Step: 4580 | Loss: 1.9304759502410889, Learning Rate: 2.801517075567972e-05) +Epoch... (2/30 | Step: 4590 | Loss: 1.8214722871780396, Learning Rate: 2.801083610393107e-05) +Epoch... (2/30 | Step: 4600 | Loss: 1.8623323440551758, Learning Rate: 2.800650145218242e-05) +Epoch... (2/30 | Step: 4610 | Loss: 1.8202744722366333, Learning Rate: 2.800216680043377e-05) +Epoch... (2/30 | Step: 4614 | Loss: 1.9217591285705566, Learning Rate: 2.8000431484542787e-05) +Epoch... (2/30 | Step: 4614 | Eval Loss: 1.9446606636047363 | Eval rouge1: 41.3801 | Eval rouge2: 15.8404 | Eval rougeL: 37.7066 | Eval rougeLsum: 37.6976 | Eval gen_len: 11.1192 |) +Epoch... (3/30 | Step: 4620 | Loss: 1.9006057977676392, Learning Rate: 2.799783214868512e-05) +Epoch... (3/30 | Step: 4630 | Loss: 1.9258897304534912, Learning Rate: 2.799349749693647e-05) +Epoch... (3/30 | Step: 4640 | Loss: 1.8611785173416138, Learning Rate: 2.798916284518782e-05) +Epoch... (3/30 | Step: 4650 | Loss: 1.7929704189300537, Learning Rate: 2.7984826374449767e-05) +Epoch... (3/30 | Step: 4660 | Loss: 1.888678789138794, Learning Rate: 2.7980491722701117e-05) +Epoch... (3/30 | Step: 4670 | Loss: 1.8310635089874268, Learning Rate: 2.797615888994187e-05) +Epoch... (3/30 | Step: 4680 | Loss: 1.7876863479614258, Learning Rate: 2.797182423819322e-05) +Epoch... (3/30 | Step: 4690 | Loss: 1.8022078275680542, Learning Rate: 2.796748958644457e-05) +Epoch... (3/30 | Step: 4700 | Loss: 1.8882899284362793, Learning Rate: 2.7963154934695922e-05) +Epoch... (3/30 | Step: 4710 | Loss: 1.8650214672088623, Learning Rate: 2.7958820282947272e-05) +Epoch... (3/30 | Step: 4720 | Loss: 1.8108880519866943, Learning Rate: 2.7954485631198622e-05) +Epoch... (3/30 | Step: 4730 | Loss: 1.8337535858154297, Learning Rate: 2.7950150979449973e-05) +Epoch... (3/30 | Step: 4740 | Loss: 1.8705109357833862, Learning Rate: 2.7945816327701323e-05) +Epoch... (3/30 | Step: 4750 | Loss: 1.8093873262405396, Learning Rate: 2.7941481675952673e-05) +Epoch... (3/30 | Step: 4760 | Loss: 1.8352653980255127, Learning Rate: 2.7937147024204023e-05) +Epoch... (3/30 | Step: 4770 | Loss: 1.8993232250213623, Learning Rate: 2.7932812372455373e-05) +Epoch... (3/30 | Step: 4780 | Loss: 1.866384506225586, Learning Rate: 2.7928477720706724e-05) +Epoch... (3/30 | Step: 4790 | Loss: 1.8843146562576294, Learning Rate: 2.7924143068958074e-05) +Epoch... (3/30 | Step: 4800 | Loss: 1.8721106052398682, Learning Rate: 2.7919808417209424e-05) +Epoch... (3/30 | Step: 4800 | Loss: 1.8721106052398682, Learning Rate: 2.7919808417209424e-05) +Epoch... (3/30 | Step: 4800 | Eval Loss: 1.945229411125183 | Eval rouge1: 41.4206 | Eval rouge2: 15.7017 | Eval rougeL: 37.6112 | Eval rougeLsum: 37.6064 | Eval gen_len: 11.2409 |) +Epoch... (3/30 | Step: 4810 | Loss: 1.8651959896087646, Learning Rate: 2.7915473765460774e-05) +Epoch... (3/30 | Step: 4820 | Loss: 1.7777526378631592, Learning Rate: 2.7911139113712125e-05) +Epoch... (3/30 | Step: 4830 | Loss: 1.7878971099853516, Learning Rate: 2.7906804461963475e-05) +Epoch... (3/30 | Step: 4840 | Loss: 1.9086028337478638, Learning Rate: 2.7902469810214825e-05) +Epoch... (3/30 | Step: 4850 | Loss: 1.85693359375, Learning Rate: 2.7898135158466175e-05) +Epoch... (3/30 | Step: 4860 | Loss: 1.829287052154541, Learning Rate: 2.7893800506717525e-05) +Epoch... (3/30 | Step: 4870 | Loss: 1.8359487056732178, Learning Rate: 2.7889465854968876e-05) +Epoch... (3/30 | Step: 4880 | Loss: 1.8283047676086426, Learning Rate: 2.7885131203220226e-05) +Epoch... (3/30 | Step: 4890 | Loss: 1.8907103538513184, Learning Rate: 2.7880796551471576e-05) +Epoch... (3/30 | Step: 4900 | Loss: 1.900670051574707, Learning Rate: 2.7876461899722926e-05) +Epoch... (3/30 | Step: 4910 | Loss: 1.8678079843521118, Learning Rate: 2.7872127247974277e-05) +Epoch... (3/30 | Step: 4920 | Loss: 1.8865406513214111, Learning Rate: 2.7867792596225627e-05) +Epoch... (3/30 | Step: 4930 | Loss: 1.8659296035766602, Learning Rate: 2.786345976346638e-05) +Epoch... (3/30 | Step: 4940 | Loss: 1.8259683847427368, Learning Rate: 2.785912511171773e-05) +Epoch... (3/30 | Step: 4950 | Loss: 1.9121265411376953, Learning Rate: 2.785479045996908e-05) +Epoch... (3/30 | Step: 4960 | Loss: 1.7606853246688843, Learning Rate: 2.7850453989231028e-05) +Epoch... (3/30 | Step: 4970 | Loss: 1.9108521938323975, Learning Rate: 2.7846119337482378e-05) +Epoch... (3/30 | Step: 4980 | Loss: 1.7965797185897827, Learning Rate: 2.7841784685733728e-05) +Epoch... (3/30 | Step: 4990 | Loss: 1.8254327774047852, Learning Rate: 2.783745003398508e-05) +Epoch... (3/30 | Step: 5000 | Loss: 1.8682160377502441, Learning Rate: 2.783311538223643e-05) +Epoch... (3/30 | Step: 5010 | Loss: 1.887736439704895, Learning Rate: 2.782878073048778e-05) +Epoch... (3/30 | Step: 5020 | Loss: 1.9222376346588135, Learning Rate: 2.7824447897728533e-05) +Epoch... (3/30 | Step: 5030 | Loss: 1.8068890571594238, Learning Rate: 2.7820113245979883e-05) +Epoch... (3/30 | Step: 5040 | Loss: 1.877018928527832, Learning Rate: 2.781577677524183e-05) +Epoch... (3/30 | Step: 5050 | Loss: 1.818298578262329, Learning Rate: 2.781144212349318e-05) +Epoch... (3/30 | Step: 5060 | Loss: 1.7829349040985107, Learning Rate: 2.780710747174453e-05) +Epoch... (3/30 | Step: 5070 | Loss: 1.859926462173462, Learning Rate: 2.780277281999588e-05) +Epoch... (3/30 | Step: 5080 | Loss: 1.8778877258300781, Learning Rate: 2.779843816824723e-05) +Epoch... (3/30 | Step: 5090 | Loss: 1.8129793405532837, Learning Rate: 2.779410351649858e-05) +Epoch... (3/30 | Step: 5100 | Loss: 1.9016380310058594, Learning Rate: 2.778976886474993e-05) +Epoch... (3/30 | Step: 5100 | Loss: 1.9016380310058594, Learning Rate: 2.778976886474993e-05) +Epoch... (3/30 | Step: 5100 | Eval Loss: 1.9427725076675415 | Eval rouge1: 41.2198 | Eval rouge2: 15.6318 | Eval rougeL: 37.4398 | Eval rougeLsum: 37.4436 | Eval gen_len: 11.1195 |) +Epoch... (3/30 | Step: 5110 | Loss: 1.8517467975616455, Learning Rate: 2.7785436031990685e-05) +Epoch... (3/30 | Step: 5120 | Loss: 1.8552989959716797, Learning Rate: 2.7781101380242035e-05) +Epoch... (3/30 | Step: 5130 | Loss: 1.8470796346664429, Learning Rate: 2.7776766728493385e-05) +Epoch... (3/30 | Step: 5140 | Loss: 1.9408626556396484, Learning Rate: 2.7772432076744735e-05) +Epoch... (3/30 | Step: 5150 | Loss: 1.9104987382888794, Learning Rate: 2.7768095606006682e-05) +Epoch... (3/30 | Step: 5160 | Loss: 1.8002305030822754, Learning Rate: 2.7763760954258032e-05) +Epoch... (3/30 | Step: 5170 | Loss: 1.7606427669525146, Learning Rate: 2.7759426302509382e-05) +Epoch... (3/30 | Step: 5180 | Loss: 1.8362019062042236, Learning Rate: 2.7755091650760733e-05) +Epoch... (3/30 | Step: 5190 | Loss: 1.8140841722488403, Learning Rate: 2.7750756999012083e-05) +Epoch... (3/30 | Step: 5200 | Loss: 1.8190215826034546, Learning Rate: 2.7746424166252837e-05) +Epoch... (3/30 | Step: 5210 | Loss: 1.8725632429122925, Learning Rate: 2.7742089514504187e-05) +Epoch... (3/30 | Step: 5220 | Loss: 1.871530532836914, Learning Rate: 2.7737754862755537e-05) +Epoch... (3/30 | Step: 5230 | Loss: 1.8738446235656738, Learning Rate: 2.7733420211006887e-05) +Epoch... (3/30 | Step: 5240 | Loss: 1.726067304611206, Learning Rate: 2.7729083740268834e-05) +Epoch... (3/30 | Step: 5250 | Loss: 1.7526288032531738, Learning Rate: 2.7724749088520184e-05) +Epoch... (3/30 | Step: 5260 | Loss: 1.7957985401153564, Learning Rate: 2.7720414436771534e-05) +Epoch... (3/30 | Step: 5270 | Loss: 1.8102589845657349, Learning Rate: 2.7716079785022885e-05) +Epoch... (3/30 | Step: 5280 | Loss: 1.9033677577972412, Learning Rate: 2.7711745133274235e-05) +Epoch... (3/30 | Step: 5290 | Loss: 1.87894868850708, Learning Rate: 2.770741230051499e-05) +Epoch... (3/30 | Step: 5300 | Loss: 1.8765783309936523, Learning Rate: 2.770307764876634e-05) +Epoch... (3/30 | Step: 5310 | Loss: 1.9336323738098145, Learning Rate: 2.769874299701769e-05) +Epoch... (3/30 | Step: 5320 | Loss: 1.883346676826477, Learning Rate: 2.769440834526904e-05) +Epoch... (3/30 | Step: 5330 | Loss: 1.8765766620635986, Learning Rate: 2.769007369352039e-05) +Epoch... (3/30 | Step: 5340 | Loss: 1.8111586570739746, Learning Rate: 2.768573904177174e-05) +Epoch... (3/30 | Step: 5350 | Loss: 1.8051023483276367, Learning Rate: 2.7681402571033686e-05) +Epoch... (3/30 | Step: 5360 | Loss: 1.7918339967727661, Learning Rate: 2.7677067919285037e-05) +Epoch... (3/30 | Step: 5370 | Loss: 1.8722422122955322, Learning Rate: 2.7672733267536387e-05) +Epoch... (3/30 | Step: 5380 | Loss: 1.848788857460022, Learning Rate: 2.766840043477714e-05) +Epoch... (3/30 | Step: 5390 | Loss: 1.830802321434021, Learning Rate: 2.766406578302849e-05) +Epoch... (3/30 | Step: 5400 | Loss: 1.8050287961959839, Learning Rate: 2.765973113127984e-05) +Epoch... (3/30 | Step: 5400 | Loss: 1.8050287961959839, Learning Rate: 2.765973113127984e-05) +Epoch... (3/30 | Step: 5400 | Eval Loss: 1.9341686964035034 | Eval rouge1: 40.9793 | Eval rouge2: 15.5931 | Eval rougeL: 37.2943 | Eval rougeLsum: 37.2958 | Eval gen_len: 11.0549 |) +Epoch... (3/30 | Step: 5410 | Loss: 1.8422832489013672, Learning Rate: 2.765539647953119e-05) +Epoch... (3/30 | Step: 5420 | Loss: 1.8012787103652954, Learning Rate: 2.765106182778254e-05) +Epoch... (3/30 | Step: 5430 | Loss: 1.8209984302520752, Learning Rate: 2.7646725357044488e-05) +Epoch... (3/30 | Step: 5440 | Loss: 1.8918828964233398, Learning Rate: 2.764239070529584e-05) +Epoch... (3/30 | Step: 5450 | Loss: 1.79241943359375, Learning Rate: 2.763805605354719e-05) +Epoch... (3/30 | Step: 5460 | Loss: 1.8523470163345337, Learning Rate: 2.7633723220787942e-05) +Epoch... (3/30 | Step: 5470 | Loss: 1.8394627571105957, Learning Rate: 2.7629388569039293e-05) +Epoch... (3/30 | Step: 5480 | Loss: 1.8407964706420898, Learning Rate: 2.7625053917290643e-05) +Epoch... (3/30 | Step: 5490 | Loss: 1.7460325956344604, Learning Rate: 2.7620719265541993e-05) +Epoch... (3/30 | Step: 5500 | Loss: 1.8261981010437012, Learning Rate: 2.7616384613793343e-05) +Epoch... (3/30 | Step: 5510 | Loss: 1.8237570524215698, Learning Rate: 2.7612049962044694e-05) +Epoch... (3/30 | Step: 5520 | Loss: 1.8155288696289062, Learning Rate: 2.7607715310296044e-05) +Epoch... (3/30 | Step: 5530 | Loss: 1.8218441009521484, Learning Rate: 2.7603380658547394e-05) +Epoch... (3/30 | Step: 5540 | Loss: 1.8485835790634155, Learning Rate: 2.759904418780934e-05) +Epoch... (3/30 | Step: 5550 | Loss: 1.8281173706054688, Learning Rate: 2.7594711355050094e-05) +Epoch... (3/30 | Step: 5560 | Loss: 1.9323103427886963, Learning Rate: 2.7590376703301445e-05) +Epoch... (3/30 | Step: 5570 | Loss: 1.8508933782577515, Learning Rate: 2.7586042051552795e-05) +Epoch... (3/30 | Step: 5580 | Loss: 1.8664108514785767, Learning Rate: 2.7581707399804145e-05) +Epoch... (3/30 | Step: 5590 | Loss: 1.8382173776626587, Learning Rate: 2.7577372748055495e-05) +Epoch... (3/30 | Step: 5600 | Loss: 1.8153660297393799, Learning Rate: 2.7573038096306846e-05) +Epoch... (3/30 | Step: 5610 | Loss: 1.879223346710205, Learning Rate: 2.7568703444558196e-05) +Epoch... (3/30 | Step: 5620 | Loss: 1.9132184982299805, Learning Rate: 2.7564366973820142e-05) +Epoch... (3/30 | Step: 5630 | Loss: 1.8372087478637695, Learning Rate: 2.7560032322071493e-05) +Epoch... (3/30 | Step: 5640 | Loss: 1.9148569107055664, Learning Rate: 2.7555699489312246e-05) +Epoch... (3/30 | Step: 5650 | Loss: 1.8752307891845703, Learning Rate: 2.7551364837563597e-05) +Epoch... (3/30 | Step: 5660 | Loss: 1.8080058097839355, Learning Rate: 2.7547030185814947e-05) +Epoch... (3/30 | Step: 5670 | Loss: 1.8897976875305176, Learning Rate: 2.7542695534066297e-05) +Epoch... (3/30 | Step: 5680 | Loss: 1.879408359527588, Learning Rate: 2.7538360882317647e-05) +Epoch... (3/30 | Step: 5690 | Loss: 1.84775710105896, Learning Rate: 2.7534026230568998e-05) +Epoch... (3/30 | Step: 5700 | Loss: 1.8937106132507324, Learning Rate: 2.7529691578820348e-05) +Epoch... (3/30 | Step: 5700 | Loss: 1.8937106132507324, Learning Rate: 2.7529691578820348e-05) +Epoch... (3/30 | Step: 5700 | Eval Loss: 1.9317536354064941 | Eval rouge1: 41.2629 | Eval rouge2: 15.689 | Eval rougeL: 37.4603 | Eval rougeLsum: 37.46 | Eval gen_len: 11.1765 |) +Epoch... (3/30 | Step: 5710 | Loss: 1.8048105239868164, Learning Rate: 2.7525356927071698e-05) +Epoch... (3/30 | Step: 5720 | Loss: 1.8522942066192627, Learning Rate: 2.7521022275323048e-05) +Epoch... (3/30 | Step: 5730 | Loss: 1.8378591537475586, Learning Rate: 2.75166876235744e-05) +Epoch... (3/30 | Step: 5740 | Loss: 1.9069128036499023, Learning Rate: 2.751235297182575e-05) +Epoch... (3/30 | Step: 5750 | Loss: 1.7947864532470703, Learning Rate: 2.75080183200771e-05) +Epoch... (3/30 | Step: 5760 | Loss: 1.8484649658203125, Learning Rate: 2.750368366832845e-05) +Epoch... (3/30 | Step: 5770 | Loss: 1.8341162204742432, Learning Rate: 2.74993490165798e-05) +Epoch... (3/30 | Step: 5780 | Loss: 1.814949631690979, Learning Rate: 2.749501436483115e-05) +Epoch... (3/30 | Step: 5790 | Loss: 1.869789958000183, Learning Rate: 2.74906797130825e-05) +Epoch... (3/30 | Step: 5800 | Loss: 1.925891637802124, Learning Rate: 2.748634506133385e-05) +Epoch... (3/30 | Step: 5810 | Loss: 1.845622181892395, Learning Rate: 2.74820104095852e-05) +Epoch... (3/30 | Step: 5820 | Loss: 1.9024274349212646, Learning Rate: 2.747767575783655e-05) +Epoch... (3/30 | Step: 5830 | Loss: 1.734498381614685, Learning Rate: 2.74733411060879e-05) +Epoch... (3/30 | Step: 5840 | Loss: 1.8688403367996216, Learning Rate: 2.746900645433925e-05) +Epoch... (3/30 | Step: 5850 | Loss: 1.858962059020996, Learning Rate: 2.74646718025906e-05) +Epoch... (3/30 | Step: 5860 | Loss: 1.7663443088531494, Learning Rate: 2.746033715084195e-05) +Epoch... (3/30 | Step: 5870 | Loss: 1.741565465927124, Learning Rate: 2.74560024990933e-05) +Epoch... (3/30 | Step: 5880 | Loss: 1.8864623308181763, Learning Rate: 2.7451667847344652e-05) +Epoch... (3/30 | Step: 5890 | Loss: 1.7897045612335205, Learning Rate: 2.7447333195596002e-05) +Epoch... (3/30 | Step: 5900 | Loss: 1.794191837310791, Learning Rate: 2.7442998543847352e-05) +Epoch... (3/30 | Step: 5910 | Loss: 1.9371439218521118, Learning Rate: 2.7438665711088106e-05) +Epoch... (3/30 | Step: 5920 | Loss: 1.8133981227874756, Learning Rate: 2.7434331059339456e-05) +Epoch... (3/30 | Step: 5930 | Loss: 1.9133797883987427, Learning Rate: 2.7429994588601403e-05) +Epoch... (3/30 | Step: 5940 | Loss: 1.874544382095337, Learning Rate: 2.7425659936852753e-05) +Epoch... (3/30 | Step: 5950 | Loss: 1.7396442890167236, Learning Rate: 2.7421325285104103e-05) +Epoch... (3/30 | Step: 5960 | Loss: 1.8002548217773438, Learning Rate: 2.7416990633355454e-05) +Epoch... (3/30 | Step: 5970 | Loss: 1.8371654748916626, Learning Rate: 2.7412655981606804e-05) +Epoch... (3/30 | Step: 5980 | Loss: 1.7982285022735596, Learning Rate: 2.7408321329858154e-05) +Epoch... (3/30 | Step: 5990 | Loss: 1.862635612487793, Learning Rate: 2.7403986678109504e-05) +Epoch... (3/30 | Step: 6000 | Loss: 1.9368724822998047, Learning Rate: 2.7399653845350258e-05) +Epoch... (3/30 | Step: 6000 | Loss: 1.9368724822998047, Learning Rate: 2.7399653845350258e-05) +Epoch... (3/30 | Step: 6000 | Eval Loss: 1.9258944988250732 | Eval rouge1: 41.086 | Eval rouge2: 15.536 | Eval rougeL: 37.351 | Eval rougeLsum: 37.3528 | Eval gen_len: 11.2105 |) +Epoch... (3/30 | Step: 6010 | Loss: 1.9061357975006104, Learning Rate: 2.7395317374612205e-05) +Epoch... (3/30 | Step: 6020 | Loss: 1.8703413009643555, Learning Rate: 2.7390982722863555e-05) +Epoch... (3/30 | Step: 6030 | Loss: 1.9126508235931396, Learning Rate: 2.7386648071114905e-05) +Epoch... (3/30 | Step: 6040 | Loss: 1.8640691041946411, Learning Rate: 2.7382313419366255e-05) +Epoch... (3/30 | Step: 6050 | Loss: 1.8807706832885742, Learning Rate: 2.7377978767617606e-05) +Epoch... (3/30 | Step: 6060 | Loss: 1.9057433605194092, Learning Rate: 2.7373644115868956e-05) +Epoch... (3/30 | Step: 6070 | Loss: 1.8330992460250854, Learning Rate: 2.7369309464120306e-05) +Epoch... (3/30 | Step: 6080 | Loss: 1.9661799669265747, Learning Rate: 2.7364974812371656e-05) +Epoch... (3/30 | Step: 6090 | Loss: 1.7911491394042969, Learning Rate: 2.736064197961241e-05) +Epoch... (3/30 | Step: 6100 | Loss: 1.7153382301330566, Learning Rate: 2.735630732786376e-05) +Epoch... (3/30 | Step: 6110 | Loss: 1.8614788055419922, Learning Rate: 2.735197267611511e-05) +Epoch... (3/30 | Step: 6120 | Loss: 1.7746303081512451, Learning Rate: 2.7347636205377057e-05) +Epoch... (3/30 | Step: 6130 | Loss: 1.8193302154541016, Learning Rate: 2.7343301553628407e-05) +Epoch... (3/30 | Step: 6140 | Loss: 1.8340637683868408, Learning Rate: 2.7338966901879758e-05) +Epoch... (3/30 | Step: 6150 | Loss: 1.8399102687835693, Learning Rate: 2.7334632250131108e-05) +Epoch... (3/30 | Step: 6160 | Loss: 1.8006336688995361, Learning Rate: 2.7330297598382458e-05) +Epoch... (3/30 | Step: 6170 | Loss: 1.7936418056488037, Learning Rate: 2.7325964765623212e-05) +Epoch... (3/30 | Step: 6180 | Loss: 1.7291109561920166, Learning Rate: 2.7321630113874562e-05) +Epoch... (3/30 | Step: 6190 | Loss: 1.9827232360839844, Learning Rate: 2.7317295462125912e-05) +Epoch... (3/30 | Step: 6200 | Loss: 1.862128496170044, Learning Rate: 2.7312960810377263e-05) +Epoch... (3/30 | Step: 6210 | Loss: 1.775388240814209, Learning Rate: 2.730862433963921e-05) +Epoch... (3/30 | Step: 6220 | Loss: 1.7971916198730469, Learning Rate: 2.730428968789056e-05) +Epoch... (3/30 | Step: 6230 | Loss: 1.8290495872497559, Learning Rate: 2.729995503614191e-05) +Epoch... (3/30 | Step: 6240 | Loss: 1.844942331314087, Learning Rate: 2.729562038439326e-05) +Epoch... (3/30 | Step: 6250 | Loss: 1.816731333732605, Learning Rate: 2.729128573264461e-05) +Epoch... (3/30 | Step: 6260 | Loss: 1.8273515701293945, Learning Rate: 2.7286952899885364e-05) +Epoch... (3/30 | Step: 6270 | Loss: 1.8184173107147217, Learning Rate: 2.7282618248136714e-05) +Epoch... (3/30 | Step: 6280 | Loss: 1.796694040298462, Learning Rate: 2.7278283596388064e-05) +Epoch... (3/30 | Step: 6290 | Loss: 1.821446180343628, Learning Rate: 2.7273948944639415e-05) +Epoch... (3/30 | Step: 6300 | Loss: 1.8445713520050049, Learning Rate: 2.7269614292890765e-05) +Epoch... (3/30 | Step: 6300 | Loss: 1.8445713520050049, Learning Rate: 2.7269614292890765e-05) +Epoch... (3/30 | Step: 6300 | Eval Loss: 1.9208292961120605 | Eval rouge1: 41.3445 | Eval rouge2: 15.639 | Eval rougeL: 37.5483 | Eval rougeLsum: 37.5456 | Eval gen_len: 11.2487 |) +Epoch... (3/30 | Step: 6310 | Loss: 1.8458572626113892, Learning Rate: 2.7265279641142115e-05) +Epoch... (3/30 | Step: 6320 | Loss: 1.7985508441925049, Learning Rate: 2.726094317040406e-05) +Epoch... (3/30 | Step: 6330 | Loss: 1.751726508140564, Learning Rate: 2.7256608518655412e-05) +Epoch... (3/30 | Step: 6340 | Loss: 1.8094416856765747, Learning Rate: 2.7252273866906762e-05) +Epoch... (3/30 | Step: 6350 | Loss: 1.853166937828064, Learning Rate: 2.7247941034147516e-05) +Epoch... (3/30 | Step: 6360 | Loss: 1.8393105268478394, Learning Rate: 2.7243606382398866e-05) +Epoch... (3/30 | Step: 6370 | Loss: 1.8263094425201416, Learning Rate: 2.7239271730650216e-05) +Epoch... (3/30 | Step: 6380 | Loss: 1.804229974746704, Learning Rate: 2.7234937078901567e-05) +Epoch... (3/30 | Step: 6390 | Loss: 1.820934772491455, Learning Rate: 2.7230602427152917e-05) +Epoch... (3/30 | Step: 6400 | Loss: 1.9347383975982666, Learning Rate: 2.7226265956414863e-05) +Epoch... (3/30 | Step: 6410 | Loss: 1.873093605041504, Learning Rate: 2.7221931304666214e-05) +Epoch... (3/30 | Step: 6420 | Loss: 1.8458762168884277, Learning Rate: 2.7217596652917564e-05) +Epoch... (3/30 | Step: 6430 | Loss: 1.8492844104766846, Learning Rate: 2.7213262001168914e-05) +Epoch... (3/30 | Step: 6440 | Loss: 1.794797420501709, Learning Rate: 2.7208929168409668e-05) +Epoch... (3/30 | Step: 6450 | Loss: 1.7921502590179443, Learning Rate: 2.7204594516661018e-05) +Epoch... (3/30 | Step: 6460 | Loss: 1.7883315086364746, Learning Rate: 2.720025986491237e-05) +Epoch... (3/30 | Step: 6470 | Loss: 1.8689000606536865, Learning Rate: 2.719592521316372e-05) +Epoch... (3/30 | Step: 6480 | Loss: 1.8820496797561646, Learning Rate: 2.719159056141507e-05) +Epoch... (3/30 | Step: 6490 | Loss: 1.8595609664916992, Learning Rate: 2.718725590966642e-05) +Epoch... (3/30 | Step: 6500 | Loss: 1.7791099548339844, Learning Rate: 2.718292125791777e-05) +Epoch... (3/30 | Step: 6510 | Loss: 1.7369716167449951, Learning Rate: 2.7178584787179716e-05) +Epoch... (3/30 | Step: 6520 | Loss: 1.907957673072815, Learning Rate: 2.7174250135431066e-05) +Epoch... (3/30 | Step: 6530 | Loss: 1.8726749420166016, Learning Rate: 2.716991730267182e-05) +Epoch... (3/30 | Step: 6540 | Loss: 1.8146827220916748, Learning Rate: 2.716558265092317e-05) +Epoch... (3/30 | Step: 6550 | Loss: 1.8158860206604004, Learning Rate: 2.716124799917452e-05) +Epoch... (3/30 | Step: 6560 | Loss: 1.8074976205825806, Learning Rate: 2.715691334742587e-05) +Epoch... (3/30 | Step: 6570 | Loss: 1.8178911209106445, Learning Rate: 2.715257869567722e-05) +Epoch... (3/30 | Step: 6580 | Loss: 1.8084090948104858, Learning Rate: 2.714824404392857e-05) +Epoch... (3/30 | Step: 6590 | Loss: 1.836090326309204, Learning Rate: 2.714390939217992e-05) +Epoch... (3/30 | Step: 6600 | Loss: 1.8392951488494873, Learning Rate: 2.7139572921441868e-05) +Epoch... (3/30 | Step: 6600 | Loss: 1.8392951488494873, Learning Rate: 2.7139572921441868e-05) +Epoch... (3/30 | Step: 6600 | Eval Loss: 1.9147193431854248 | Eval rouge1: 41.1766 | Eval rouge2: 15.6082 | Eval rougeL: 37.5075 | Eval rougeLsum: 37.5043 | Eval gen_len: 11.1454 |) +Epoch... (3/30 | Step: 6610 | Loss: 1.8817616701126099, Learning Rate: 2.7135238269693218e-05) +Epoch... (3/30 | Step: 6620 | Loss: 1.8995423316955566, Learning Rate: 2.7130905436933972e-05) +Epoch... (3/30 | Step: 6630 | Loss: 1.7520475387573242, Learning Rate: 2.7126570785185322e-05) +Epoch... (3/30 | Step: 6640 | Loss: 1.841223955154419, Learning Rate: 2.7122236133436672e-05) +Epoch... (3/30 | Step: 6650 | Loss: 1.7794084548950195, Learning Rate: 2.7117901481688023e-05) +Epoch... (3/30 | Step: 6660 | Loss: 1.8177577257156372, Learning Rate: 2.7113566829939373e-05) +Epoch... (3/30 | Step: 6670 | Loss: 1.844765543937683, Learning Rate: 2.7109232178190723e-05) +Epoch... (3/30 | Step: 6680 | Loss: 1.87111496925354, Learning Rate: 2.7104897526442073e-05) +Epoch... (3/30 | Step: 6690 | Loss: 1.8403642177581787, Learning Rate: 2.7100562874693424e-05) +Epoch... (3/30 | Step: 6700 | Loss: 1.819663643836975, Learning Rate: 2.7096228222944774e-05) +Epoch... (3/30 | Step: 6710 | Loss: 1.8723413944244385, Learning Rate: 2.7091893571196124e-05) +Epoch... (3/30 | Step: 6720 | Loss: 1.789346694946289, Learning Rate: 2.7087558919447474e-05) +Epoch... (3/30 | Step: 6730 | Loss: 1.864307165145874, Learning Rate: 2.7083224267698824e-05) +Epoch... (3/30 | Step: 6740 | Loss: 1.8256621360778809, Learning Rate: 2.7078889615950175e-05) +Epoch... (3/30 | Step: 6750 | Loss: 1.8974370956420898, Learning Rate: 2.7074554964201525e-05) +Epoch... (3/30 | Step: 6760 | Loss: 1.7825756072998047, Learning Rate: 2.7070220312452875e-05) +Epoch... (3/30 | Step: 6770 | Loss: 1.768592357635498, Learning Rate: 2.7065885660704225e-05) +Epoch... (3/30 | Step: 6780 | Loss: 1.8202202320098877, Learning Rate: 2.7061551008955576e-05) +Epoch... (3/30 | Step: 6790 | Loss: 1.8324875831604004, Learning Rate: 2.7057216357206926e-05) +Epoch... (3/30 | Step: 6800 | Loss: 1.862152099609375, Learning Rate: 2.7052881705458276e-05) +Epoch... (3/30 | Step: 6810 | Loss: 1.855210781097412, Learning Rate: 2.7048547053709626e-05) +Epoch... (3/30 | Step: 6820 | Loss: 1.8279563188552856, Learning Rate: 2.7044212401960976e-05) +Epoch... (3/30 | Step: 6830 | Loss: 1.7613282203674316, Learning Rate: 2.7039877750212327e-05) +Epoch... (3/30 | Step: 6840 | Loss: 1.8263907432556152, Learning Rate: 2.7035543098463677e-05) +Epoch... (3/30 | Step: 6850 | Loss: 1.8450121879577637, Learning Rate: 2.7031208446715027e-05) +Epoch... (3/30 | Step: 6860 | Loss: 1.8444921970367432, Learning Rate: 2.7026873794966377e-05) +Epoch... (3/30 | Step: 6870 | Loss: 1.7890636920928955, Learning Rate: 2.7022539143217728e-05) +Epoch... (3/30 | Step: 6880 | Loss: 1.8365561962127686, Learning Rate: 2.701820631045848e-05) +Epoch... (3/30 | Step: 6890 | Loss: 1.871873378753662, Learning Rate: 2.701387165870983e-05) +Epoch... (3/30 | Step: 6900 | Loss: 1.7828240394592285, Learning Rate: 2.7009535187971778e-05) +Epoch... (3/30 | Step: 6900 | Loss: 1.7828240394592285, Learning Rate: 2.7009535187971778e-05) +Epoch... (3/30 | Step: 6900 | Eval Loss: 1.9094223976135254 | Eval rouge1: 41.6785 | Eval rouge2: 15.9564 | Eval rougeL: 37.9578 | Eval rougeLsum: 37.96 | Eval gen_len: 11.0899 |) +Epoch... (3/30 | Step: 6910 | Loss: 1.823469877243042, Learning Rate: 2.700520053622313e-05) +Epoch... (3/30 | Step: 6920 | Loss: 1.7423064708709717, Learning Rate: 2.700086588447448e-05) +Epoch... (3/30 | Step: 6921 | Loss: 1.853652000427246, Learning Rate: 2.7000432964996435e-05) +Epoch... (3/30 | Step: 6921 | Eval Loss: 1.9094812870025635 | Eval rouge1: 41.5037 | Eval rouge2: 15.8267 | Eval rougeL: 37.7187 | Eval rougeLsum: 37.7205 | Eval gen_len: 11.1947 |) +Epoch... (4/30 | Step: 6930 | Loss: 1.8121541738510132, Learning Rate: 2.699653123272583e-05) +Epoch... (4/30 | Step: 6940 | Loss: 1.7851512432098389, Learning Rate: 2.699219658097718e-05) +Epoch... (4/30 | Step: 6950 | Loss: 1.7677934169769287, Learning Rate: 2.698786192922853e-05) +Epoch... (4/30 | Step: 6960 | Loss: 1.926886796951294, Learning Rate: 2.698352727747988e-05) +Epoch... (4/30 | Step: 6970 | Loss: 1.8334335088729858, Learning Rate: 2.6979194444720633e-05) +Epoch... (4/30 | Step: 6980 | Loss: 1.7968392372131348, Learning Rate: 2.697485797398258e-05) +Epoch... (4/30 | Step: 6990 | Loss: 1.782883882522583, Learning Rate: 2.697052332223393e-05) +Epoch... (4/30 | Step: 7000 | Loss: 1.779791235923767, Learning Rate: 2.696618867048528e-05) +Epoch... (4/30 | Step: 7010 | Loss: 1.737504243850708, Learning Rate: 2.696185401873663e-05) +Epoch... (4/30 | Step: 7020 | Loss: 1.802125096321106, Learning Rate: 2.695751936698798e-05) +Epoch... (4/30 | Step: 7030 | Loss: 1.718970537185669, Learning Rate: 2.695318471523933e-05) +Epoch... (4/30 | Step: 7040 | Loss: 1.7862560749053955, Learning Rate: 2.694885006349068e-05) +Epoch... (4/30 | Step: 7050 | Loss: 1.7417529821395874, Learning Rate: 2.694451541174203e-05) +Epoch... (4/30 | Step: 7060 | Loss: 1.7511889934539795, Learning Rate: 2.6940182578982785e-05) +Epoch... (4/30 | Step: 7070 | Loss: 1.7609820365905762, Learning Rate: 2.6935847927234136e-05) +Epoch... (4/30 | Step: 7080 | Loss: 1.7393269538879395, Learning Rate: 2.6931513275485486e-05) +Epoch... (4/30 | Step: 7090 | Loss: 1.775388240814209, Learning Rate: 2.6927176804747432e-05) +Epoch... (4/30 | Step: 7100 | Loss: 1.701842188835144, Learning Rate: 2.6922842152998783e-05) +Epoch... (4/30 | Step: 7110 | Loss: 1.7280645370483398, Learning Rate: 2.6918507501250133e-05) +Epoch... (4/30 | Step: 7120 | Loss: 1.8140801191329956, Learning Rate: 2.6914172849501483e-05) +Epoch... (4/30 | Step: 7130 | Loss: 1.7440757751464844, Learning Rate: 2.6909838197752833e-05) +Epoch... (4/30 | Step: 7140 | Loss: 1.7221659421920776, Learning Rate: 2.6905503546004184e-05) +Epoch... (4/30 | Step: 7150 | Loss: 1.8911354541778564, Learning Rate: 2.6901170713244937e-05) +Epoch... (4/30 | Step: 7160 | Loss: 1.8129518032073975, Learning Rate: 2.6896836061496288e-05) +Epoch... (4/30 | Step: 7170 | Loss: 1.6905957460403442, Learning Rate: 2.6892501409747638e-05) +Epoch... (4/30 | Step: 7180 | Loss: 1.8244552612304688, Learning Rate: 2.6888164939009584e-05) +Epoch... (4/30 | Step: 7190 | Loss: 1.6994915008544922, Learning Rate: 2.6883830287260935e-05) +Epoch... (4/30 | Step: 7200 | Loss: 1.7174403667449951, Learning Rate: 2.6879495635512285e-05) +Epoch... (4/30 | Step: 7200 | Loss: 1.7174403667449951, Learning Rate: 2.6879495635512285e-05) +Epoch... (4/30 | Step: 7200 | Eval Loss: 1.9161072969436646 | Eval rouge1: 41.0556 | Eval rouge2: 15.4661 | Eval rougeL: 37.362 | Eval rougeLsum: 37.3581 | Eval gen_len: 11.3905 |) +Epoch... (4/30 | Step: 7210 | Loss: 1.781970500946045, Learning Rate: 2.6875160983763635e-05) +Epoch... (4/30 | Step: 7220 | Loss: 1.7213644981384277, Learning Rate: 2.6870826332014985e-05) +Epoch... (4/30 | Step: 7230 | Loss: 1.6683077812194824, Learning Rate: 2.6866491680266336e-05) +Epoch... (4/30 | Step: 7240 | Loss: 1.7758700847625732, Learning Rate: 2.686215884750709e-05) +Epoch... (4/30 | Step: 7250 | Loss: 1.7611781358718872, Learning Rate: 2.685782419575844e-05) +Epoch... (4/30 | Step: 7260 | Loss: 1.7398707866668701, Learning Rate: 2.685348954400979e-05) +Epoch... (4/30 | Step: 7270 | Loss: 1.7000929117202759, Learning Rate: 2.684915489226114e-05) +Epoch... (4/30 | Step: 7280 | Loss: 1.7761434316635132, Learning Rate: 2.684482024051249e-05) +Epoch... (4/30 | Step: 7290 | Loss: 1.822617769241333, Learning Rate: 2.6840483769774437e-05) +Epoch... (4/30 | Step: 7300 | Loss: 1.8452212810516357, Learning Rate: 2.6836149118025787e-05) +Epoch... (4/30 | Step: 7310 | Loss: 1.7856470346450806, Learning Rate: 2.6831814466277137e-05) +Epoch... (4/30 | Step: 7320 | Loss: 1.740665316581726, Learning Rate: 2.6827479814528488e-05) +Epoch... (4/30 | Step: 7330 | Loss: 1.7300089597702026, Learning Rate: 2.682314698176924e-05) +Epoch... (4/30 | Step: 7340 | Loss: 1.662231206893921, Learning Rate: 2.681881233002059e-05) +Epoch... (4/30 | Step: 7350 | Loss: 1.7182507514953613, Learning Rate: 2.6814477678271942e-05) +Epoch... (4/30 | Step: 7360 | Loss: 1.7806085348129272, Learning Rate: 2.6810143026523292e-05) +Epoch... (4/30 | Step: 7370 | Loss: 1.8154025077819824, Learning Rate: 2.680580655578524e-05) +Epoch... (4/30 | Step: 7380 | Loss: 1.9305576086044312, Learning Rate: 2.680147190403659e-05) +Epoch... (4/30 | Step: 7390 | Loss: 1.7797048091888428, Learning Rate: 2.679713725228794e-05) +Epoch... (4/30 | Step: 7400 | Loss: 1.7162652015686035, Learning Rate: 2.679280260053929e-05) +Epoch... (4/30 | Step: 7410 | Loss: 1.676433801651001, Learning Rate: 2.6788469767780043e-05) +Epoch... (4/30 | Step: 7420 | Loss: 1.7661570310592651, Learning Rate: 2.6784135116031393e-05) +Epoch... (4/30 | Step: 7430 | Loss: 1.669618844985962, Learning Rate: 2.6779800464282744e-05) +Epoch... (4/30 | Step: 7440 | Loss: 1.7874550819396973, Learning Rate: 2.6775465812534094e-05) +Epoch... (4/30 | Step: 7450 | Loss: 1.6076762676239014, Learning Rate: 2.6771131160785444e-05) +Epoch... (4/30 | Step: 7460 | Loss: 1.7008966207504272, Learning Rate: 2.6766796509036794e-05) +Epoch... (4/30 | Step: 7470 | Loss: 1.770169973373413, Learning Rate: 2.6762461857288145e-05) +Epoch... (4/30 | Step: 7480 | Loss: 1.8133633136749268, Learning Rate: 2.675812538655009e-05) +Epoch... (4/30 | Step: 7490 | Loss: 1.799612283706665, Learning Rate: 2.675379073480144e-05) +Epoch... (4/30 | Step: 7500 | Loss: 1.8033530712127686, Learning Rate: 2.6749457902042195e-05) +Epoch... (4/30 | Step: 7500 | Loss: 1.8033530712127686, Learning Rate: 2.6749457902042195e-05) +Epoch... (4/30 | Step: 7500 | Eval Loss: 1.9142653942108154 | Eval rouge1: 41.2043 | Eval rouge2: 15.5504 | Eval rougeL: 37.4412 | Eval rougeLsum: 37.4419 | Eval gen_len: 11.239 |) +Epoch... (4/30 | Step: 7510 | Loss: 1.843985915184021, Learning Rate: 2.6745123250293545e-05) +Epoch... (4/30 | Step: 7520 | Loss: 1.7345409393310547, Learning Rate: 2.6740788598544896e-05) +Epoch... (4/30 | Step: 7530 | Loss: 1.7642332315444946, Learning Rate: 2.6736453946796246e-05) +Epoch... (4/30 | Step: 7540 | Loss: 1.7493267059326172, Learning Rate: 2.6732119295047596e-05) +Epoch... (4/30 | Step: 7550 | Loss: 1.8050358295440674, Learning Rate: 2.6727784643298946e-05) +Epoch... (4/30 | Step: 7560 | Loss: 1.714761734008789, Learning Rate: 2.6723449991550297e-05) +Epoch... (4/30 | Step: 7570 | Loss: 1.7845580577850342, Learning Rate: 2.6719113520812243e-05) +Epoch... (4/30 | Step: 7580 | Loss: 1.7691221237182617, Learning Rate: 2.6714778869063593e-05) +Epoch... (4/30 | Step: 7590 | Loss: 1.7299931049346924, Learning Rate: 2.6710446036304347e-05) +Epoch... (4/30 | Step: 7600 | Loss: 1.7709275484085083, Learning Rate: 2.6706111384555697e-05) +Epoch... (4/30 | Step: 7610 | Loss: 1.7494062185287476, Learning Rate: 2.6701776732807048e-05) +Epoch... (4/30 | Step: 7620 | Loss: 1.825223445892334, Learning Rate: 2.6697442081058398e-05) +Epoch... (4/30 | Step: 7630 | Loss: 1.7665493488311768, Learning Rate: 2.6693107429309748e-05) +Epoch... (4/30 | Step: 7640 | Loss: 1.7820301055908203, Learning Rate: 2.66887727775611e-05) +Epoch... (4/30 | Step: 7650 | Loss: 1.7157957553863525, Learning Rate: 2.668443812581245e-05) +Epoch... (4/30 | Step: 7660 | Loss: 1.7743289470672607, Learning Rate: 2.66801034740638e-05) +Epoch... (4/30 | Step: 7670 | Loss: 1.8115360736846924, Learning Rate: 2.667576882231515e-05) +Epoch... (4/30 | Step: 7680 | Loss: 1.761516809463501, Learning Rate: 2.66714341705665e-05) +Epoch... (4/30 | Step: 7690 | Loss: 1.8202887773513794, Learning Rate: 2.666709951881785e-05) +Epoch... (4/30 | Step: 7700 | Loss: 1.754068374633789, Learning Rate: 2.66627648670692e-05) +Epoch... (4/30 | Step: 7710 | Loss: 1.8063127994537354, Learning Rate: 2.665843021532055e-05) +Epoch... (4/30 | Step: 7720 | Loss: 1.757204294204712, Learning Rate: 2.66540955635719e-05) +Epoch... (4/30 | Step: 7730 | Loss: 1.8072246313095093, Learning Rate: 2.664976091182325e-05) +Epoch... (4/30 | Step: 7740 | Loss: 1.7353928089141846, Learning Rate: 2.66454262600746e-05) +Epoch... (4/30 | Step: 7750 | Loss: 1.7102036476135254, Learning Rate: 2.664109160832595e-05) +Epoch... (4/30 | Step: 7760 | Loss: 1.7107794284820557, Learning Rate: 2.6636755137587897e-05) +Epoch... (4/30 | Step: 7770 | Loss: 1.8361232280731201, Learning Rate: 2.663242230482865e-05) +Epoch... (4/30 | Step: 7780 | Loss: 1.748347282409668, Learning Rate: 2.662808765308e-05) +Epoch... (4/30 | Step: 7790 | Loss: 1.7465569972991943, Learning Rate: 2.6623753001331352e-05) +Epoch... (4/30 | Step: 7800 | Loss: 1.8418853282928467, Learning Rate: 2.6619418349582702e-05) +Epoch... (4/30 | Step: 7800 | Loss: 1.8418853282928467, Learning Rate: 2.6619418349582702e-05) +Epoch... (4/30 | Step: 7800 | Eval Loss: 1.9070324897766113 | Eval rouge1: 41.41 | Eval rouge2: 15.682 | Eval rougeL: 37.6374 | Eval rougeLsum: 37.6387 | Eval gen_len: 11.2008 |) +Epoch... (4/30 | Step: 7810 | Loss: 1.7401766777038574, Learning Rate: 2.6615083697834052e-05) +Epoch... (4/30 | Step: 7820 | Loss: 1.7659077644348145, Learning Rate: 2.6610749046085402e-05) +Epoch... (4/30 | Step: 7830 | Loss: 1.785407304763794, Learning Rate: 2.6606414394336753e-05) +Epoch... (4/30 | Step: 7840 | Loss: 1.694793701171875, Learning Rate: 2.6602079742588103e-05) +Epoch... (4/30 | Step: 7850 | Loss: 1.7194499969482422, Learning Rate: 2.6597745090839453e-05) +Epoch... (4/30 | Step: 7860 | Loss: 1.8482565879821777, Learning Rate: 2.6593412258080207e-05) +Epoch... (4/30 | Step: 7870 | Loss: 1.7854790687561035, Learning Rate: 2.6589075787342153e-05) +Epoch... (4/30 | Step: 7880 | Loss: 1.798073410987854, Learning Rate: 2.6584741135593504e-05) +Epoch... (4/30 | Step: 7890 | Loss: 1.810644268989563, Learning Rate: 2.6580406483844854e-05) +Epoch... (4/30 | Step: 7900 | Loss: 1.7087976932525635, Learning Rate: 2.6576071832096204e-05) +Epoch... (4/30 | Step: 7910 | Loss: 1.7547457218170166, Learning Rate: 2.6571737180347554e-05) +Epoch... (4/30 | Step: 7920 | Loss: 1.807554006576538, Learning Rate: 2.6567402528598905e-05) +Epoch... (4/30 | Step: 7930 | Loss: 1.718229055404663, Learning Rate: 2.6563067876850255e-05) +Epoch... (4/30 | Step: 7940 | Loss: 1.7432351112365723, Learning Rate: 2.6558733225101605e-05) +Epoch... (4/30 | Step: 7950 | Loss: 1.671558141708374, Learning Rate: 2.655440039234236e-05) +Epoch... (4/30 | Step: 7960 | Loss: 1.6801819801330566, Learning Rate: 2.6550063921604306e-05) +Epoch... (4/30 | Step: 7970 | Loss: 1.7564802169799805, Learning Rate: 2.6545729269855656e-05) +Epoch... (4/30 | Step: 7980 | Loss: 1.721316933631897, Learning Rate: 2.6541394618107006e-05) +Epoch... (4/30 | Step: 7990 | Loss: 1.7472686767578125, Learning Rate: 2.6537059966358356e-05) +Epoch... (4/30 | Step: 8000 | Loss: 1.737652063369751, Learning Rate: 2.6532725314609706e-05) +Epoch... (4/30 | Step: 8010 | Loss: 1.7413718700408936, Learning Rate: 2.6528390662861057e-05) +Epoch... (4/30 | Step: 8020 | Loss: 1.7877088785171509, Learning Rate: 2.6524056011112407e-05) +Epoch... (4/30 | Step: 8030 | Loss: 1.8353303670883179, Learning Rate: 2.6519721359363757e-05) +Epoch... (4/30 | Step: 8040 | Loss: 1.7794848680496216, Learning Rate: 2.651538852660451e-05) +Epoch... (4/30 | Step: 8050 | Loss: 1.8192745447158813, Learning Rate: 2.651105387485586e-05) +Epoch... (4/30 | Step: 8060 | Loss: 1.7712657451629639, Learning Rate: 2.650671922310721e-05) +Epoch... (4/30 | Step: 8070 | Loss: 1.67633855342865, Learning Rate: 2.6502382752369158e-05) +Epoch... (4/30 | Step: 8080 | Loss: 1.7522064447402954, Learning Rate: 2.6498048100620508e-05) +Epoch... (4/30 | Step: 8090 | Loss: 1.736276626586914, Learning Rate: 2.649371344887186e-05) +Epoch... (4/30 | Step: 8100 | Loss: 1.7609823942184448, Learning Rate: 2.648937879712321e-05) +Epoch... (4/30 | Step: 8100 | Loss: 1.7609823942184448, Learning Rate: 2.648937879712321e-05) +Epoch... (4/30 | Step: 8100 | Eval Loss: 1.9074890613555908 | Eval rouge1: 41.3555 | Eval rouge2: 15.7164 | Eval rougeL: 37.6243 | Eval rougeLsum: 37.6188 | Eval gen_len: 11.1658 |) +Epoch... (4/30 | Step: 8110 | Loss: 1.7898554801940918, Learning Rate: 2.648504414537456e-05) +Epoch... (4/30 | Step: 8120 | Loss: 1.901104211807251, Learning Rate: 2.6480711312615313e-05) +Epoch... (4/30 | Step: 8130 | Loss: 1.707322359085083, Learning Rate: 2.6476376660866663e-05) +Epoch... (4/30 | Step: 8140 | Loss: 1.9236220121383667, Learning Rate: 2.6472042009118013e-05) +Epoch... (4/30 | Step: 8150 | Loss: 1.7018535137176514, Learning Rate: 2.646770553837996e-05) +Epoch... (4/30 | Step: 8160 | Loss: 1.811523675918579, Learning Rate: 2.646337088663131e-05) +Epoch... (4/30 | Step: 8170 | Loss: 1.7439903020858765, Learning Rate: 2.645903623488266e-05) +Epoch... (4/30 | Step: 8180 | Loss: 1.7460384368896484, Learning Rate: 2.645470158313401e-05) +Epoch... (4/30 | Step: 8190 | Loss: 1.6671082973480225, Learning Rate: 2.645036693138536e-05) +Epoch... (4/30 | Step: 8200 | Loss: 1.8321022987365723, Learning Rate: 2.644603227963671e-05) +Epoch... (4/30 | Step: 8210 | Loss: 1.721744418144226, Learning Rate: 2.6441699446877465e-05) +Epoch... (4/30 | Step: 8220 | Loss: 1.7297766208648682, Learning Rate: 2.6437364795128815e-05) +Epoch... (4/30 | Step: 8230 | Loss: 1.7734706401824951, Learning Rate: 2.6433030143380165e-05) +Epoch... (4/30 | Step: 8240 | Loss: 1.7746353149414062, Learning Rate: 2.6428695491631515e-05) +Epoch... (4/30 | Step: 8250 | Loss: 1.7374098300933838, Learning Rate: 2.6424360839882866e-05) +Epoch... (4/30 | Step: 8260 | Loss: 1.7754874229431152, Learning Rate: 2.6420024369144812e-05) +Epoch... (4/30 | Step: 8270 | Loss: 1.8101651668548584, Learning Rate: 2.6415689717396162e-05) +Epoch... (4/30 | Step: 8280 | Loss: 1.7362170219421387, Learning Rate: 2.6411355065647513e-05) +Epoch... (4/30 | Step: 8290 | Loss: 1.7455593347549438, Learning Rate: 2.6407020413898863e-05) +Epoch... (4/30 | Step: 8300 | Loss: 1.7678217887878418, Learning Rate: 2.6402687581139617e-05) +Epoch... (4/30 | Step: 8310 | Loss: 1.7820069789886475, Learning Rate: 2.6398352929390967e-05) +Epoch... (4/30 | Step: 8320 | Loss: 1.7654781341552734, Learning Rate: 2.6394018277642317e-05) +Epoch... (4/30 | Step: 8330 | Loss: 1.7164040803909302, Learning Rate: 2.6389683625893667e-05) +Epoch... (4/30 | Step: 8340 | Loss: 1.778324842453003, Learning Rate: 2.6385347155155614e-05) +Epoch... (4/30 | Step: 8350 | Loss: 1.7316615581512451, Learning Rate: 2.6381012503406964e-05) +Epoch... (4/30 | Step: 8360 | Loss: 1.6872611045837402, Learning Rate: 2.6376677851658314e-05) +Epoch... (4/30 | Step: 8370 | Loss: 1.7629599571228027, Learning Rate: 2.6372343199909665e-05) +Epoch... (4/30 | Step: 8380 | Loss: 1.6997967958450317, Learning Rate: 2.6368008548161015e-05) +Epoch... (4/30 | Step: 8390 | Loss: 1.7176601886749268, Learning Rate: 2.636367571540177e-05) +Epoch... (4/30 | Step: 8400 | Loss: 1.7720857858657837, Learning Rate: 2.635934106365312e-05) +Epoch... (4/30 | Step: 8400 | Loss: 1.7720857858657837, Learning Rate: 2.635934106365312e-05) +Epoch... (4/30 | Step: 8400 | Eval Loss: 1.899088978767395 | Eval rouge1: 41.3427 | Eval rouge2: 15.713 | Eval rougeL: 37.6044 | Eval rougeLsum: 37.602 | Eval gen_len: 11.2508 |) +Epoch... (4/30 | Step: 8410 | Loss: 1.7903679609298706, Learning Rate: 2.635500641190447e-05) +Epoch... (4/30 | Step: 8420 | Loss: 1.7643471956253052, Learning Rate: 2.635067176015582e-05) +Epoch... (4/30 | Step: 8430 | Loss: 1.7884368896484375, Learning Rate: 2.634633710840717e-05) +Epoch... (4/30 | Step: 8440 | Loss: 1.7901930809020996, Learning Rate: 2.634200245665852e-05) +Epoch... (4/30 | Step: 8450 | Loss: 1.8174161911010742, Learning Rate: 2.6337665985920466e-05) +Epoch... (4/30 | Step: 8460 | Loss: 1.7797125577926636, Learning Rate: 2.6333331334171817e-05) +Epoch... (4/30 | Step: 8470 | Loss: 1.743789553642273, Learning Rate: 2.6328996682423167e-05) +Epoch... (4/30 | Step: 8480 | Loss: 1.7208518981933594, Learning Rate: 2.632466384966392e-05) +Epoch... (4/30 | Step: 8490 | Loss: 1.7644871473312378, Learning Rate: 2.632032919791527e-05) +Epoch... (4/30 | Step: 8500 | Loss: 1.8212189674377441, Learning Rate: 2.631599454616662e-05) +Epoch... (4/30 | Step: 8510 | Loss: 1.7835339307785034, Learning Rate: 2.631165989441797e-05) +Epoch... (4/30 | Step: 8520 | Loss: 1.768432378768921, Learning Rate: 2.630732524266932e-05) +Epoch... (4/30 | Step: 8530 | Loss: 1.7398850917816162, Learning Rate: 2.6302990590920672e-05) +Epoch... (4/30 | Step: 8540 | Loss: 1.7920219898223877, Learning Rate: 2.629865412018262e-05) +Epoch... (4/30 | Step: 8550 | Loss: 1.8058758974075317, Learning Rate: 2.629431946843397e-05) +Epoch... (4/30 | Step: 8560 | Loss: 1.8054993152618408, Learning Rate: 2.628998481668532e-05) +Epoch... (4/30 | Step: 8570 | Loss: 1.7596275806427002, Learning Rate: 2.6285651983926073e-05) +Epoch... (4/30 | Step: 8580 | Loss: 1.7128454446792603, Learning Rate: 2.6281317332177423e-05) +Epoch... (4/30 | Step: 8590 | Loss: 1.8160572052001953, Learning Rate: 2.6276982680428773e-05) +Epoch... (4/30 | Step: 8600 | Loss: 1.7876338958740234, Learning Rate: 2.6272648028680123e-05) +Epoch... (4/30 | Step: 8610 | Loss: 1.7162377834320068, Learning Rate: 2.6268313376931474e-05) +Epoch... (4/30 | Step: 8620 | Loss: 1.7962429523468018, Learning Rate: 2.6263978725182824e-05) +Epoch... (4/30 | Step: 8630 | Loss: 1.7868194580078125, Learning Rate: 2.6259644073434174e-05) +Epoch... (4/30 | Step: 8640 | Loss: 1.778346061706543, Learning Rate: 2.6255309421685524e-05) +Epoch... (4/30 | Step: 8650 | Loss: 1.7848930358886719, Learning Rate: 2.6250974769936875e-05) +Epoch... (4/30 | Step: 8660 | Loss: 1.7496588230133057, Learning Rate: 2.6246640118188225e-05) +Epoch... (4/30 | Step: 8670 | Loss: 1.7488641738891602, Learning Rate: 2.6242305466439575e-05) +Epoch... (4/30 | Step: 8680 | Loss: 1.7910881042480469, Learning Rate: 2.6237970814690925e-05) +Epoch... (4/30 | Step: 8690 | Loss: 1.7799428701400757, Learning Rate: 2.6233636162942275e-05) +Epoch... (4/30 | Step: 8700 | Loss: 1.7098944187164307, Learning Rate: 2.6229301511193626e-05) +Epoch... (4/30 | Step: 8700 | Loss: 1.7098944187164307, Learning Rate: 2.6229301511193626e-05) +Epoch... (4/30 | Step: 8700 | Eval Loss: 1.9023772478103638 | Eval rouge1: 41.0716 | Eval rouge2: 15.5551 | Eval rougeL: 37.3622 | Eval rougeLsum: 37.3627 | Eval gen_len: 11.3028 |) +Epoch... (4/30 | Step: 8710 | Loss: 1.7892546653747559, Learning Rate: 2.6224966859444976e-05) +Epoch... (4/30 | Step: 8720 | Loss: 1.82383131980896, Learning Rate: 2.6220632207696326e-05) +Epoch... (4/30 | Step: 8730 | Loss: 1.7643616199493408, Learning Rate: 2.6216295736958273e-05) +Epoch... (4/30 | Step: 8740 | Loss: 1.715694546699524, Learning Rate: 2.6211962904199027e-05) +Epoch... (4/30 | Step: 8750 | Loss: 1.7043194770812988, Learning Rate: 2.6207628252450377e-05) +Epoch... (4/30 | Step: 8760 | Loss: 1.7660789489746094, Learning Rate: 2.6203293600701727e-05) +Epoch... (4/30 | Step: 8770 | Loss: 1.820483684539795, Learning Rate: 2.6198958948953077e-05) +Epoch... (4/30 | Step: 8780 | Loss: 1.7926051616668701, Learning Rate: 2.6194624297204427e-05) +Epoch... (4/30 | Step: 8790 | Loss: 1.743436336517334, Learning Rate: 2.6190289645455778e-05) +Epoch... (4/30 | Step: 8800 | Loss: 1.7975858449935913, Learning Rate: 2.6185954993707128e-05) +Epoch... (4/30 | Step: 8810 | Loss: 1.7968688011169434, Learning Rate: 2.6181620341958478e-05) +Epoch... (4/30 | Step: 8820 | Loss: 1.7715320587158203, Learning Rate: 2.617728569020983e-05) +Epoch... (4/30 | Step: 8830 | Loss: 1.7700495719909668, Learning Rate: 2.6172952857450582e-05) +Epoch... (4/30 | Step: 8840 | Loss: 1.7371662855148315, Learning Rate: 2.6168618205701932e-05) +Epoch... (4/30 | Step: 8850 | Loss: 1.6575849056243896, Learning Rate: 2.616428173496388e-05) +Epoch... (4/30 | Step: 8860 | Loss: 1.7197023630142212, Learning Rate: 2.615994708321523e-05) +Epoch... (4/30 | Step: 8870 | Loss: 1.7932194471359253, Learning Rate: 2.615561243146658e-05) +Epoch... (4/30 | Step: 8880 | Loss: 1.7538230419158936, Learning Rate: 2.615127777971793e-05) +Epoch... (4/30 | Step: 8890 | Loss: 1.8080253601074219, Learning Rate: 2.614694312796928e-05) +Epoch... (4/30 | Step: 8900 | Loss: 1.7145426273345947, Learning Rate: 2.614260847622063e-05) +Epoch... (4/30 | Step: 8910 | Loss: 1.7602368593215942, Learning Rate: 2.613827382447198e-05) +Epoch... (4/30 | Step: 8920 | Loss: 1.7841060161590576, Learning Rate: 2.613393917272333e-05) +Epoch... (4/30 | Step: 8930 | Loss: 1.7612416744232178, Learning Rate: 2.612960452097468e-05) +Epoch... (4/30 | Step: 8940 | Loss: 1.7373647689819336, Learning Rate: 2.612526986922603e-05) +Epoch... (4/30 | Step: 8950 | Loss: 1.8240079879760742, Learning Rate: 2.612093521747738e-05) +Epoch... (4/30 | Step: 8960 | Loss: 1.81781005859375, Learning Rate: 2.611660056572873e-05) +Epoch... (4/30 | Step: 8970 | Loss: 1.6823644638061523, Learning Rate: 2.611226591398008e-05) +Epoch... (4/30 | Step: 8980 | Loss: 1.7390031814575195, Learning Rate: 2.6107931262231432e-05) +Epoch... (4/30 | Step: 8990 | Loss: 1.7301363945007324, Learning Rate: 2.6103596610482782e-05) +Epoch... (4/30 | Step: 9000 | Loss: 1.743155837059021, Learning Rate: 2.6099261958734132e-05) +Epoch... (4/30 | Step: 9000 | Loss: 1.743155837059021, Learning Rate: 2.6099261958734132e-05) +Epoch... (4/30 | Step: 9000 | Eval Loss: 1.8965791463851929 | Eval rouge1: 41.5249 | Eval rouge2: 15.9328 | Eval rougeL: 37.7734 | Eval rougeLsum: 37.7601 | Eval gen_len: 11.0642 |) +Epoch... (4/30 | Step: 9010 | Loss: 1.757112741470337, Learning Rate: 2.6094929125974886e-05) +Epoch... (4/30 | Step: 9020 | Loss: 1.6790308952331543, Learning Rate: 2.6090594474226236e-05) +Epoch... (4/30 | Step: 9030 | Loss: 1.809779167175293, Learning Rate: 2.6086259822477587e-05) +Epoch... (4/30 | Step: 9040 | Loss: 1.7617172002792358, Learning Rate: 2.6081923351739533e-05) +Epoch... (4/30 | Step: 9050 | Loss: 1.7789397239685059, Learning Rate: 2.6077588699990883e-05) +Epoch... (4/30 | Step: 9060 | Loss: 1.8057465553283691, Learning Rate: 2.6073254048242234e-05) +Epoch... (4/30 | Step: 9070 | Loss: 1.8141238689422607, Learning Rate: 2.6068919396493584e-05) +Epoch... (4/30 | Step: 9080 | Loss: 1.8108280897140503, Learning Rate: 2.6064584744744934e-05) +Epoch... (4/30 | Step: 9090 | Loss: 1.8593292236328125, Learning Rate: 2.6060250092996284e-05) +Epoch... (4/30 | Step: 9100 | Loss: 1.7626819610595703, Learning Rate: 2.6055917260237038e-05) +Epoch... (4/30 | Step: 9110 | Loss: 1.741670846939087, Learning Rate: 2.605158260848839e-05) +Epoch... (4/30 | Step: 9120 | Loss: 1.8072537183761597, Learning Rate: 2.6047246137750335e-05) +Epoch... (4/30 | Step: 9130 | Loss: 1.7297160625457764, Learning Rate: 2.6042911486001685e-05) +Epoch... (4/30 | Step: 9140 | Loss: 1.7664251327514648, Learning Rate: 2.6038576834253035e-05) +Epoch... (4/30 | Step: 9150 | Loss: 1.753387689590454, Learning Rate: 2.6034242182504386e-05) +Epoch... (4/30 | Step: 9160 | Loss: 1.8218653202056885, Learning Rate: 2.6029907530755736e-05) +Epoch... (4/30 | Step: 9170 | Loss: 1.7087664604187012, Learning Rate: 2.6025572879007086e-05) +Epoch... (4/30 | Step: 9180 | Loss: 1.7308189868927002, Learning Rate: 2.6021238227258436e-05) +Epoch... (4/30 | Step: 9190 | Loss: 1.707600474357605, Learning Rate: 2.601690539449919e-05) +Epoch... (4/30 | Step: 9200 | Loss: 1.7880096435546875, Learning Rate: 2.601257074275054e-05) +Epoch... (4/30 | Step: 9210 | Loss: 1.7144484519958496, Learning Rate: 2.600823609100189e-05) +Epoch... (4/30 | Step: 9220 | Loss: 1.7841001749038696, Learning Rate: 2.600390143925324e-05) +Epoch... (4/30 | Step: 9228 | Loss: 1.7486577033996582, Learning Rate: 2.600043262646068e-05) +Epoch... (4/30 | Step: 9228 | Eval Loss: 1.8944240808486938 | Eval rouge1: 41.2514 | Eval rouge2: 15.6625 | Eval rougeL: 37.5594 | Eval rougeLsum: 37.5542 | Eval gen_len: 11.2178 |) +Epoch... (5/30 | Step: 9230 | Loss: 1.7192625999450684, Learning Rate: 2.599956678750459e-05) +Epoch... (5/30 | Step: 9240 | Loss: 1.7719476222991943, Learning Rate: 2.5995230316766538e-05) +Epoch... (5/30 | Step: 9250 | Loss: 1.705801010131836, Learning Rate: 2.5990895665017888e-05) +Epoch... (5/30 | Step: 9260 | Loss: 1.6560087203979492, Learning Rate: 2.5986561013269238e-05) +Epoch... (5/30 | Step: 9270 | Loss: 1.6383693218231201, Learning Rate: 2.598222636152059e-05) +Epoch... (5/30 | Step: 9280 | Loss: 1.7475590705871582, Learning Rate: 2.5977893528761342e-05) +Epoch... (5/30 | Step: 9290 | Loss: 1.7971712350845337, Learning Rate: 2.5973558877012692e-05) +Epoch... (5/30 | Step: 9300 | Loss: 1.7362866401672363, Learning Rate: 2.5969224225264043e-05) +Epoch... (5/30 | Step: 9300 | Loss: 1.7362866401672363, Learning Rate: 2.5969224225264043e-05) +Epoch... (5/30 | Step: 9300 | Eval Loss: 1.9050613641738892 | Eval rouge1: 41.174 | Eval rouge2: 15.5959 | Eval rougeL: 37.4791 | Eval rougeLsum: 37.4701 | Eval gen_len: 11.1599 |) +Epoch... (5/30 | Step: 9310 | Loss: 1.7014645338058472, Learning Rate: 2.596488775452599e-05) +Epoch... (5/30 | Step: 9320 | Loss: 1.6662569046020508, Learning Rate: 2.596055310277734e-05) +Epoch... (5/30 | Step: 9330 | Loss: 1.7198238372802734, Learning Rate: 2.595621845102869e-05) +Epoch... (5/30 | Step: 9340 | Loss: 1.6777033805847168, Learning Rate: 2.595188379928004e-05) +Epoch... (5/30 | Step: 9350 | Loss: 1.68599534034729, Learning Rate: 2.594754914753139e-05) +Epoch... (5/30 | Step: 9360 | Loss: 1.647711157798767, Learning Rate: 2.5943216314772144e-05) +Epoch... (5/30 | Step: 9370 | Loss: 1.6508907079696655, Learning Rate: 2.5938881663023494e-05) +Epoch... (5/30 | Step: 9380 | Loss: 1.704373836517334, Learning Rate: 2.5934547011274844e-05) +Epoch... (5/30 | Step: 9390 | Loss: 1.830909013748169, Learning Rate: 2.5930212359526195e-05) +Epoch... (5/30 | Step: 9400 | Loss: 1.6895291805267334, Learning Rate: 2.5925877707777545e-05) +Epoch... (5/30 | Step: 9410 | Loss: 1.747701644897461, Learning Rate: 2.5921543056028895e-05) +Epoch... (5/30 | Step: 9420 | Loss: 1.7578905820846558, Learning Rate: 2.5917208404280245e-05) +Epoch... (5/30 | Step: 9430 | Loss: 1.6315282583236694, Learning Rate: 2.5912871933542192e-05) +Epoch... (5/30 | Step: 9440 | Loss: 1.7632570266723633, Learning Rate: 2.5908537281793542e-05) +Epoch... (5/30 | Step: 9450 | Loss: 1.7346413135528564, Learning Rate: 2.5904204449034296e-05) +Epoch... (5/30 | Step: 9460 | Loss: 1.682507038116455, Learning Rate: 2.5899869797285646e-05) +Epoch... (5/30 | Step: 9470 | Loss: 1.6957499980926514, Learning Rate: 2.5895535145536996e-05) +Epoch... (5/30 | Step: 9480 | Loss: 1.680698275566101, Learning Rate: 2.5891200493788347e-05) +Epoch... (5/30 | Step: 9490 | Loss: 1.664878010749817, Learning Rate: 2.5886865842039697e-05) +Epoch... (5/30 | Step: 9500 | Loss: 1.8113476037979126, Learning Rate: 2.5882529371301644e-05) +Epoch... (5/30 | Step: 9510 | Loss: 1.6645169258117676, Learning Rate: 2.5878194719552994e-05) +Epoch... (5/30 | Step: 9520 | Loss: 1.694843053817749, Learning Rate: 2.5873860067804344e-05) +Epoch... (5/30 | Step: 9530 | Loss: 1.6828746795654297, Learning Rate: 2.5869525416055694e-05) +Epoch... (5/30 | Step: 9540 | Loss: 1.7312896251678467, Learning Rate: 2.5865192583296448e-05) +Epoch... (5/30 | Step: 9550 | Loss: 1.662423014640808, Learning Rate: 2.5860857931547798e-05) +Epoch... (5/30 | Step: 9560 | Loss: 1.7525756359100342, Learning Rate: 2.585652327979915e-05) +Epoch... (5/30 | Step: 9570 | Loss: 1.6728711128234863, Learning Rate: 2.58521886280505e-05) +Epoch... (5/30 | Step: 9580 | Loss: 1.7294485569000244, Learning Rate: 2.584785397630185e-05) +Epoch... (5/30 | Step: 9590 | Loss: 1.7620255947113037, Learning Rate: 2.58435193245532e-05) +Epoch... (5/30 | Step: 9600 | Loss: 1.6920902729034424, Learning Rate: 2.583918467280455e-05) +Epoch... (5/30 | Step: 9600 | Loss: 1.6920902729034424, Learning Rate: 2.583918467280455e-05) +Epoch... (5/30 | Step: 9600 | Eval Loss: 1.9057726860046387 | Eval rouge1: 41.2741 | Eval rouge2: 15.6549 | Eval rougeL: 37.5375 | Eval rougeLsum: 37.532 | Eval gen_len: 11.1091 |) +Epoch... (5/30 | Step: 9610 | Loss: 1.6601548194885254, Learning Rate: 2.58348500210559e-05) +Epoch... (5/30 | Step: 9620 | Loss: 1.7098666429519653, Learning Rate: 2.583051536930725e-05) +Epoch... (5/30 | Step: 9630 | Loss: 1.7010070085525513, Learning Rate: 2.58261807175586e-05) +Epoch... (5/30 | Step: 9640 | Loss: 1.6576883792877197, Learning Rate: 2.582184606580995e-05) +Epoch... (5/30 | Step: 9650 | Loss: 1.7301459312438965, Learning Rate: 2.58175114140613e-05) +Epoch... (5/30 | Step: 9660 | Loss: 1.7436121702194214, Learning Rate: 2.581317676231265e-05) +Epoch... (5/30 | Step: 9670 | Loss: 1.6648035049438477, Learning Rate: 2.5808842110564e-05) +Epoch... (5/30 | Step: 9680 | Loss: 1.7438665628433228, Learning Rate: 2.580450745881535e-05) +Epoch... (5/30 | Step: 9690 | Loss: 1.75654137134552, Learning Rate: 2.58001728070667e-05) +Epoch... (5/30 | Step: 9700 | Loss: 1.683147668838501, Learning Rate: 2.5795836336328648e-05) +Epoch... (5/30 | Step: 9710 | Loss: 1.7194781303405762, Learning Rate: 2.5791501684579998e-05) +Epoch... (5/30 | Step: 9720 | Loss: 1.6344068050384521, Learning Rate: 2.5787168851820752e-05) +Epoch... (5/30 | Step: 9730 | Loss: 1.7670934200286865, Learning Rate: 2.5782834200072102e-05) +Epoch... (5/30 | Step: 9740 | Loss: 1.6978838443756104, Learning Rate: 2.5778499548323452e-05) +Epoch... (5/30 | Step: 9750 | Loss: 1.7312850952148438, Learning Rate: 2.5774164896574803e-05) +Epoch... (5/30 | Step: 9760 | Loss: 1.7457375526428223, Learning Rate: 2.5769830244826153e-05) +Epoch... (5/30 | Step: 9770 | Loss: 1.7089920043945312, Learning Rate: 2.5765495593077503e-05) +Epoch... (5/30 | Step: 9780 | Loss: 1.63335120677948, Learning Rate: 2.5761160941328853e-05) +Epoch... (5/30 | Step: 9790 | Loss: 1.6670801639556885, Learning Rate: 2.5756826289580204e-05) +Epoch... (5/30 | Step: 9800 | Loss: 1.7053790092468262, Learning Rate: 2.5752491637831554e-05) +Epoch... (5/30 | Step: 9810 | Loss: 1.6865639686584473, Learning Rate: 2.5748158805072308e-05) +Epoch... (5/30 | Step: 9820 | Loss: 1.713914155960083, Learning Rate: 2.5743822334334254e-05) +Epoch... (5/30 | Step: 9830 | Loss: 1.7460925579071045, Learning Rate: 2.5739487682585604e-05) +Epoch... (5/30 | Step: 9840 | Loss: 1.6545546054840088, Learning Rate: 2.5735153030836955e-05) +Epoch... (5/30 | Step: 9850 | Loss: 1.6956062316894531, Learning Rate: 2.5730818379088305e-05) +Epoch... (5/30 | Step: 9860 | Loss: 1.7374149560928345, Learning Rate: 2.5726483727339655e-05) +Epoch... (5/30 | Step: 9870 | Loss: 1.7367851734161377, Learning Rate: 2.5722149075591005e-05) +Epoch... (5/30 | Step: 9880 | Loss: 1.634256362915039, Learning Rate: 2.5717814423842356e-05) +Epoch... (5/30 | Step: 9890 | Loss: 1.7566869258880615, Learning Rate: 2.5713479772093706e-05) +Epoch... (5/30 | Step: 9900 | Loss: 1.6606078147888184, Learning Rate: 2.5709145120345056e-05) +Epoch... (5/30 | Step: 9900 | Loss: 1.6606078147888184, Learning Rate: 2.5709145120345056e-05) +Epoch... (5/30 | Step: 9900 | Eval Loss: 1.900822401046753 | Eval rouge1: 41.2639 | Eval rouge2: 15.6396 | Eval rougeL: 37.5531 | Eval rougeLsum: 37.5453 | Eval gen_len: 11.1403 |) +Epoch... (5/30 | Step: 9910 | Loss: 1.763317584991455, Learning Rate: 2.5704810468596406e-05) +Epoch... (5/30 | Step: 9920 | Loss: 1.7916454076766968, Learning Rate: 2.5700475816847757e-05) +Epoch... (5/30 | Step: 9930 | Loss: 1.7470204830169678, Learning Rate: 2.5696141165099107e-05) +Epoch... (5/30 | Step: 9940 | Loss: 1.6913050413131714, Learning Rate: 2.5691806513350457e-05) +Epoch... (5/30 | Step: 9950 | Loss: 1.6591116189956665, Learning Rate: 2.5687471861601807e-05) +Epoch... (5/30 | Step: 9960 | Loss: 1.7698009014129639, Learning Rate: 2.5683137209853157e-05) +Epoch... (5/30 | Step: 9970 | Loss: 1.787100076675415, Learning Rate: 2.5678802558104508e-05) +Epoch... (5/30 | Step: 9980 | Loss: 1.7612371444702148, Learning Rate: 2.567446972534526e-05) +Epoch... (5/30 | Step: 9990 | Loss: 1.7001487016677856, Learning Rate: 2.567013507359661e-05) +Epoch... (5/30 | Step: 10000 | Loss: 1.681807518005371, Learning Rate: 2.5665800421847962e-05) +Epoch... (5/30 | Step: 10010 | Loss: 1.722537636756897, Learning Rate: 2.566146395110991e-05) +Epoch... (5/30 | Step: 10020 | Loss: 1.7603206634521484, Learning Rate: 2.565712929936126e-05) +Epoch... (5/30 | Step: 10030 | Loss: 1.7670152187347412, Learning Rate: 2.565279464761261e-05) +Epoch... (5/30 | Step: 10040 | Loss: 1.6780672073364258, Learning Rate: 2.564845999586396e-05) +Epoch... (5/30 | Step: 10050 | Loss: 1.7077338695526123, Learning Rate: 2.564412534411531e-05) +Epoch... (5/30 | Step: 10060 | Loss: 1.6066914796829224, Learning Rate: 2.563979069236666e-05) +Epoch... (5/30 | Step: 10070 | Loss: 1.7849183082580566, Learning Rate: 2.5635457859607413e-05) +Epoch... (5/30 | Step: 10080 | Loss: 1.6922332048416138, Learning Rate: 2.5631123207858764e-05) +Epoch... (5/30 | Step: 10090 | Loss: 1.6807152032852173, Learning Rate: 2.562678673712071e-05) +Epoch... (5/30 | Step: 10100 | Loss: 1.7501544952392578, Learning Rate: 2.562245208537206e-05) +Epoch... (5/30 | Step: 10110 | Loss: 1.609708309173584, Learning Rate: 2.561811743362341e-05) +Epoch... (5/30 | Step: 10120 | Loss: 1.7310266494750977, Learning Rate: 2.561378278187476e-05) +Epoch... (5/30 | Step: 10130 | Loss: 1.7887279987335205, Learning Rate: 2.560944813012611e-05) +Epoch... (5/30 | Step: 10140 | Loss: 1.7055822610855103, Learning Rate: 2.560511347837746e-05) +Epoch... (5/30 | Step: 10150 | Loss: 1.7199126482009888, Learning Rate: 2.560077882662881e-05) +Epoch... (5/30 | Step: 10160 | Loss: 1.6786653995513916, Learning Rate: 2.5596445993869565e-05) +Epoch... (5/30 | Step: 10170 | Loss: 1.7205628156661987, Learning Rate: 2.5592111342120916e-05) +Epoch... (5/30 | Step: 10180 | Loss: 1.6984577178955078, Learning Rate: 2.5587776690372266e-05) +Epoch... (5/30 | Step: 10190 | Loss: 1.683748722076416, Learning Rate: 2.5583442038623616e-05) +Epoch... (5/30 | Step: 10200 | Loss: 1.7239928245544434, Learning Rate: 2.5579107386874966e-05) +Epoch... (5/30 | Step: 10200 | Loss: 1.7239928245544434, Learning Rate: 2.5579107386874966e-05) +Epoch... (5/30 | Step: 10200 | Eval Loss: 1.9000166654586792 | Eval rouge1: 41.1061 | Eval rouge2: 15.5697 | Eval rougeL: 37.3807 | Eval rougeLsum: 37.3711 | Eval gen_len: 11.2875 |) +Epoch... (5/30 | Step: 10210 | Loss: 1.736351728439331, Learning Rate: 2.5574770916136913e-05) +Epoch... (5/30 | Step: 10220 | Loss: 1.8017604351043701, Learning Rate: 2.5570436264388263e-05) +Epoch... (5/30 | Step: 10230 | Loss: 1.728968858718872, Learning Rate: 2.5566101612639613e-05) +Epoch... (5/30 | Step: 10240 | Loss: 1.6958348751068115, Learning Rate: 2.5561766960890964e-05) +Epoch... (5/30 | Step: 10250 | Loss: 1.756436824798584, Learning Rate: 2.5557434128131717e-05) +Epoch... (5/30 | Step: 10260 | Loss: 1.7174365520477295, Learning Rate: 2.5553099476383068e-05) +Epoch... (5/30 | Step: 10270 | Loss: 1.7484798431396484, Learning Rate: 2.5548764824634418e-05) +Epoch... (5/30 | Step: 10280 | Loss: 1.7174749374389648, Learning Rate: 2.5544428353896365e-05) +Epoch... (5/30 | Step: 10290 | Loss: 1.7376658916473389, Learning Rate: 2.5540093702147715e-05) +Epoch... (5/30 | Step: 10300 | Loss: 1.6888067722320557, Learning Rate: 2.5535759050399065e-05) +Epoch... (5/30 | Step: 10310 | Loss: 1.798421859741211, Learning Rate: 2.5531424398650415e-05) +Epoch... (5/30 | Step: 10320 | Loss: 1.7474887371063232, Learning Rate: 2.5527089746901765e-05) +Epoch... (5/30 | Step: 10330 | Loss: 1.6072237491607666, Learning Rate: 2.5522755095153116e-05) +Epoch... (5/30 | Step: 10340 | Loss: 1.7262811660766602, Learning Rate: 2.551842226239387e-05) +Epoch... (5/30 | Step: 10350 | Loss: 1.7574151754379272, Learning Rate: 2.551408761064522e-05) +Epoch... (5/30 | Step: 10360 | Loss: 1.6579294204711914, Learning Rate: 2.550975295889657e-05) +Epoch... (5/30 | Step: 10370 | Loss: 1.648320198059082, Learning Rate: 2.550541830714792e-05) +Epoch... (5/30 | Step: 10380 | Loss: 1.6719105243682861, Learning Rate: 2.550108365539927e-05) +Epoch... (5/30 | Step: 10390 | Loss: 1.670508623123169, Learning Rate: 2.549674900365062e-05) +Epoch... (5/30 | Step: 10400 | Loss: 1.714751124382019, Learning Rate: 2.5492412532912567e-05) +Epoch... (5/30 | Step: 10410 | Loss: 1.757665753364563, Learning Rate: 2.5488077881163917e-05) +Epoch... (5/30 | Step: 10420 | Loss: 1.6976799964904785, Learning Rate: 2.5483743229415268e-05) +Epoch... (5/30 | Step: 10430 | Loss: 1.692623257637024, Learning Rate: 2.547941039665602e-05) +Epoch... (5/30 | Step: 10440 | Loss: 1.737560749053955, Learning Rate: 2.5475075744907372e-05) +Epoch... (5/30 | Step: 10450 | Loss: 1.7558751106262207, Learning Rate: 2.5470741093158722e-05) +Epoch... (5/30 | Step: 10460 | Loss: 1.7576009035110474, Learning Rate: 2.5466406441410072e-05) +Epoch... (5/30 | Step: 10470 | Loss: 1.7191178798675537, Learning Rate: 2.5462071789661422e-05) +Epoch... (5/30 | Step: 10480 | Loss: 1.7180984020233154, Learning Rate: 2.545773531892337e-05) +Epoch... (5/30 | Step: 10490 | Loss: 1.6861305236816406, Learning Rate: 2.545340066717472e-05) +Epoch... (5/30 | Step: 10500 | Loss: 1.6550886631011963, Learning Rate: 2.544906601542607e-05) +Epoch... (5/30 | Step: 10500 | Loss: 1.6550886631011963, Learning Rate: 2.544906601542607e-05) +Epoch... (5/30 | Step: 10500 | Eval Loss: 1.8986282348632812 | Eval rouge1: 41.38 | Eval rouge2: 15.7211 | Eval rougeL: 37.5574 | Eval rougeLsum: 37.5556 | Eval gen_len: 11.2757 |) +Epoch... (5/30 | Step: 10510 | Loss: 1.772264003753662, Learning Rate: 2.544473136367742e-05) +Epoch... (5/30 | Step: 10520 | Loss: 1.696347951889038, Learning Rate: 2.5440398530918173e-05) +Epoch... (5/30 | Step: 10530 | Loss: 1.712968349456787, Learning Rate: 2.5436063879169524e-05) +Epoch... (5/30 | Step: 10540 | Loss: 1.6989858150482178, Learning Rate: 2.5431729227420874e-05) +Epoch... (5/30 | Step: 10550 | Loss: 1.726325511932373, Learning Rate: 2.5427394575672224e-05) +Epoch... (5/30 | Step: 10560 | Loss: 1.681656837463379, Learning Rate: 2.5423059923923574e-05) +Epoch... (5/30 | Step: 10570 | Loss: 1.6602842807769775, Learning Rate: 2.5418725272174925e-05) +Epoch... (5/30 | Step: 10580 | Loss: 1.688462257385254, Learning Rate: 2.5414390620426275e-05) +Epoch... (5/30 | Step: 10590 | Loss: 1.671088457107544, Learning Rate: 2.5410055968677625e-05) +Epoch... (5/30 | Step: 10600 | Loss: 1.6897716522216797, Learning Rate: 2.5405721316928975e-05) +Epoch... (5/30 | Step: 10610 | Loss: 1.716177225112915, Learning Rate: 2.5401386665180326e-05) +Epoch... (5/30 | Step: 10620 | Loss: 1.6960926055908203, Learning Rate: 2.5397052013431676e-05) +Epoch... (5/30 | Step: 10630 | Loss: 1.685577630996704, Learning Rate: 2.5392717361683026e-05) +Epoch... (5/30 | Step: 10640 | Loss: 1.6824755668640137, Learning Rate: 2.5388382709934376e-05) +Epoch... (5/30 | Step: 10650 | Loss: 1.7249414920806885, Learning Rate: 2.5384048058185726e-05) +Epoch... (5/30 | Step: 10660 | Loss: 1.7318110466003418, Learning Rate: 2.5379713406437077e-05) +Epoch... (5/30 | Step: 10670 | Loss: 1.6819431781768799, Learning Rate: 2.5375376935699023e-05) +Epoch... (5/30 | Step: 10680 | Loss: 1.7803961038589478, Learning Rate: 2.5371042283950374e-05) +Epoch... (5/30 | Step: 10690 | Loss: 1.6900227069854736, Learning Rate: 2.5366709451191127e-05) +Epoch... (5/30 | Step: 10700 | Loss: 1.6809141635894775, Learning Rate: 2.5362374799442478e-05) +Epoch... (5/30 | Step: 10710 | Loss: 1.662299394607544, Learning Rate: 2.5358040147693828e-05) +Epoch... (5/30 | Step: 10720 | Loss: 1.7934256792068481, Learning Rate: 2.5353705495945178e-05) +Epoch... (5/30 | Step: 10730 | Loss: 1.6979867219924927, Learning Rate: 2.5349370844196528e-05) +Epoch... (5/30 | Step: 10740 | Loss: 1.7907545566558838, Learning Rate: 2.534503619244788e-05) +Epoch... (5/30 | Step: 10750 | Loss: 1.6850509643554688, Learning Rate: 2.534070154069923e-05) +Epoch... (5/30 | Step: 10760 | Loss: 1.7147433757781982, Learning Rate: 2.533636688895058e-05) +Epoch... (5/30 | Step: 10770 | Loss: 1.718595027923584, Learning Rate: 2.533203223720193e-05) +Epoch... (5/30 | Step: 10780 | Loss: 1.6869840621948242, Learning Rate: 2.5327699404442683e-05) +Epoch... (5/30 | Step: 10790 | Loss: 1.65782630443573, Learning Rate: 2.532336293370463e-05) +Epoch... (5/30 | Step: 10800 | Loss: 1.7210845947265625, Learning Rate: 2.531902828195598e-05) +Epoch... (5/30 | Step: 10800 | Loss: 1.7210845947265625, Learning Rate: 2.531902828195598e-05) +Epoch... (5/30 | Step: 10800 | Eval Loss: 1.894136667251587 | Eval rouge1: 41.2674 | Eval rouge2: 15.6716 | Eval rougeL: 37.5011 | Eval rougeLsum: 37.5014 | Eval gen_len: 11.2203 |) +Epoch... (5/30 | Step: 10810 | Loss: 1.6865174770355225, Learning Rate: 2.531469363020733e-05) +Epoch... (5/30 | Step: 10820 | Loss: 1.70220947265625, Learning Rate: 2.531035897845868e-05) +Epoch... (5/30 | Step: 10830 | Loss: 1.790607213973999, Learning Rate: 2.530602432671003e-05) +Epoch... (5/30 | Step: 10840 | Loss: 1.6193631887435913, Learning Rate: 2.530168967496138e-05) +Epoch... (5/30 | Step: 10850 | Loss: 1.7254817485809326, Learning Rate: 2.529735502321273e-05) +Epoch... (5/30 | Step: 10860 | Loss: 1.6897661685943604, Learning Rate: 2.5293018552474678e-05) +Epoch... (5/30 | Step: 10870 | Loss: 1.7071723937988281, Learning Rate: 2.528868571971543e-05) +Epoch... (5/30 | Step: 10880 | Loss: 1.6435966491699219, Learning Rate: 2.528435106796678e-05) +Epoch... (5/30 | Step: 10890 | Loss: 1.757246732711792, Learning Rate: 2.5280016416218132e-05) +Epoch... (5/30 | Step: 10900 | Loss: 1.717782974243164, Learning Rate: 2.5275681764469482e-05) +Epoch... (5/30 | Step: 10910 | Loss: 1.7664761543273926, Learning Rate: 2.5271347112720832e-05) +Epoch... (5/30 | Step: 10920 | Loss: 1.6530128717422485, Learning Rate: 2.5267012460972182e-05) +Epoch... (5/30 | Step: 10930 | Loss: 1.65060555934906, Learning Rate: 2.5262677809223533e-05) +Epoch... (5/30 | Step: 10940 | Loss: 1.7633353471755981, Learning Rate: 2.5258343157474883e-05) +Epoch... (5/30 | Step: 10950 | Loss: 1.6183371543884277, Learning Rate: 2.5254008505726233e-05) +Epoch... (5/30 | Step: 10960 | Loss: 1.786888837814331, Learning Rate: 2.5249675672966987e-05) +Epoch... (5/30 | Step: 10970 | Loss: 1.725521206855774, Learning Rate: 2.5245341021218337e-05) +Epoch... (5/30 | Step: 10980 | Loss: 1.6737229824066162, Learning Rate: 2.5241006369469687e-05) +Epoch... (5/30 | Step: 10990 | Loss: 1.7204532623291016, Learning Rate: 2.5236669898731634e-05) +Epoch... (5/30 | Step: 11000 | Loss: 1.7317719459533691, Learning Rate: 2.5232335246982984e-05) +Epoch... (5/30 | Step: 11010 | Loss: 1.7631335258483887, Learning Rate: 2.5228000595234334e-05) +Epoch... (5/30 | Step: 11020 | Loss: 1.761322021484375, Learning Rate: 2.5223665943485685e-05) +Epoch... (5/30 | Step: 11030 | Loss: 1.701811671257019, Learning Rate: 2.5219331291737035e-05) +Epoch... (5/30 | Step: 11040 | Loss: 1.7256975173950195, Learning Rate: 2.5214996639988385e-05) +Epoch... (5/30 | Step: 11050 | Loss: 1.661893606185913, Learning Rate: 2.521066380722914e-05) +Epoch... (5/30 | Step: 11060 | Loss: 1.6519527435302734, Learning Rate: 2.5206327336491086e-05) +Epoch... (5/30 | Step: 11070 | Loss: 1.632246732711792, Learning Rate: 2.5201992684742436e-05) +Epoch... (5/30 | Step: 11080 | Loss: 1.7355514764785767, Learning Rate: 2.5197658032993786e-05) +Epoch... (5/30 | Step: 11090 | Loss: 1.6137720346450806, Learning Rate: 2.5193323381245136e-05) +Epoch... (5/30 | Step: 11100 | Loss: 1.6390674114227295, Learning Rate: 2.5188988729496486e-05) +Epoch... (5/30 | Step: 11100 | Loss: 1.6390674114227295, Learning Rate: 2.5188988729496486e-05) +Epoch... (5/30 | Step: 11100 | Eval Loss: 1.8910801410675049 | Eval rouge1: 41.3667 | Eval rouge2: 15.8648 | Eval rougeL: 37.6418 | Eval rougeLsum: 37.64 | Eval gen_len: 11.2866 |) +Epoch... (5/30 | Step: 11110 | Loss: 1.6775529384613037, Learning Rate: 2.5184654077747837e-05) +Epoch... (5/30 | Step: 11120 | Loss: 1.6618034839630127, Learning Rate: 2.5180319425999187e-05) +Epoch... (5/30 | Step: 11130 | Loss: 1.8106663227081299, Learning Rate: 2.5175984774250537e-05) +Epoch... (5/30 | Step: 11140 | Loss: 1.7148308753967285, Learning Rate: 2.517165194149129e-05) +Epoch... (5/30 | Step: 11150 | Loss: 1.7115646600723267, Learning Rate: 2.516731728974264e-05) +Epoch... (5/30 | Step: 11160 | Loss: 1.7114417552947998, Learning Rate: 2.516298263799399e-05) +Epoch... (5/30 | Step: 11170 | Loss: 1.6694353818893433, Learning Rate: 2.515864798624534e-05) +Epoch... (5/30 | Step: 11180 | Loss: 1.7138220071792603, Learning Rate: 2.5154311515507288e-05) +Epoch... (5/30 | Step: 11190 | Loss: 1.770442247390747, Learning Rate: 2.514997686375864e-05) +Epoch... (5/30 | Step: 11200 | Loss: 1.634385108947754, Learning Rate: 2.514564221200999e-05) +Epoch... (5/30 | Step: 11210 | Loss: 1.7121963500976562, Learning Rate: 2.514130756026134e-05) +Epoch... (5/30 | Step: 11220 | Loss: 1.6640175580978394, Learning Rate: 2.5136974727502093e-05) +Epoch... (5/30 | Step: 11230 | Loss: 1.72880220413208, Learning Rate: 2.5132640075753443e-05) +Epoch... (5/30 | Step: 11240 | Loss: 1.7038096189498901, Learning Rate: 2.5128305424004793e-05) +Epoch... (5/30 | Step: 11250 | Loss: 1.737168788909912, Learning Rate: 2.512396895326674e-05) +Epoch... (5/30 | Step: 11260 | Loss: 1.6961932182312012, Learning Rate: 2.511963430151809e-05) +Epoch... (5/30 | Step: 11270 | Loss: 1.7822821140289307, Learning Rate: 2.511529964976944e-05) +Epoch... (5/30 | Step: 11280 | Loss: 1.7194281816482544, Learning Rate: 2.511096499802079e-05) +Epoch... (5/30 | Step: 11290 | Loss: 1.680819034576416, Learning Rate: 2.510663034627214e-05) +Epoch... (5/30 | Step: 11300 | Loss: 1.7248175144195557, Learning Rate: 2.510229569452349e-05) +Epoch... (5/30 | Step: 11310 | Loss: 1.7197959423065186, Learning Rate: 2.5097962861764245e-05) +Epoch... (5/30 | Step: 11320 | Loss: 1.6556663513183594, Learning Rate: 2.5093628210015595e-05) +Epoch... (5/30 | Step: 11330 | Loss: 1.714162826538086, Learning Rate: 2.5089293558266945e-05) +Epoch... (5/30 | Step: 11340 | Loss: 1.5587143898010254, Learning Rate: 2.5084958906518295e-05) +Epoch... (5/30 | Step: 11350 | Loss: 1.675426959991455, Learning Rate: 2.5080624254769646e-05) +Epoch... (5/30 | Step: 11360 | Loss: 1.6751116514205933, Learning Rate: 2.5076289603020996e-05) +Epoch... (5/30 | Step: 11370 | Loss: 1.624657154083252, Learning Rate: 2.5071953132282943e-05) +Epoch... (5/30 | Step: 11380 | Loss: 1.6660606861114502, Learning Rate: 2.5067618480534293e-05) +Epoch... (5/30 | Step: 11390 | Loss: 1.6287914514541626, Learning Rate: 2.5063283828785643e-05) +Epoch... (5/30 | Step: 11400 | Loss: 1.7122278213500977, Learning Rate: 2.5058950996026397e-05) +Epoch... (5/30 | Step: 11400 | Loss: 1.7122278213500977, Learning Rate: 2.5058950996026397e-05) +Epoch... (5/30 | Step: 11400 | Eval Loss: 1.8902904987335205 | Eval rouge1: 41.2493 | Eval rouge2: 15.7217 | Eval rougeL: 37.5034 | Eval rougeLsum: 37.4983 | Eval gen_len: 11.3028 |) +Epoch... (5/30 | Step: 11410 | Loss: 1.6782784461975098, Learning Rate: 2.5054616344277747e-05) +Epoch... (5/30 | Step: 11420 | Loss: 1.742269515991211, Learning Rate: 2.5050281692529097e-05) +Epoch... (5/30 | Step: 11430 | Loss: 1.603810429573059, Learning Rate: 2.5045947040780447e-05) +Epoch... (5/30 | Step: 11440 | Loss: 1.6971403360366821, Learning Rate: 2.5041612389031798e-05) +Epoch... (5/30 | Step: 11450 | Loss: 1.7365331649780273, Learning Rate: 2.5037275918293744e-05) +Epoch... (5/30 | Step: 11460 | Loss: 1.7393994331359863, Learning Rate: 2.5032941266545095e-05) +Epoch... (5/30 | Step: 11470 | Loss: 1.6623597145080566, Learning Rate: 2.5028606614796445e-05) +Epoch... (5/30 | Step: 11480 | Loss: 1.687732219696045, Learning Rate: 2.5024271963047795e-05) +Epoch... (5/30 | Step: 11490 | Loss: 1.7002153396606445, Learning Rate: 2.501993913028855e-05) +Epoch... (5/30 | Step: 11500 | Loss: 1.730302095413208, Learning Rate: 2.50156044785399e-05) +Epoch... (5/30 | Step: 11510 | Loss: 1.7404625415802002, Learning Rate: 2.501126982679125e-05) +Epoch... (5/30 | Step: 11520 | Loss: 1.739749789237976, Learning Rate: 2.50069351750426e-05) +Epoch... (5/30 | Step: 11530 | Loss: 1.7267487049102783, Learning Rate: 2.500260052329395e-05) +Epoch... (5/30 | Step: 11535 | Loss: 1.6310797929763794, Learning Rate: 2.5000434106914327e-05) +Epoch... (5/30 | Step: 11535 | Eval Loss: 1.8884644508361816 | Eval rouge1: 41.1904 | Eval rouge2: 15.6084 | Eval rougeL: 37.3854 | Eval rougeLsum: 37.3791 | Eval gen_len: 11.4548 |) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..18df6af --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +Pillow +jax[cpu] +flax +git+https://github.com/ydshieh/transformers.git@flax_vision_encoder_decoder diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000..7fd3cac --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1 @@ +{"bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "unk_token": "<|endoftext|>", "pad_token": "<|endoftext|>"} \ No newline at end of file diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000..47a347e --- /dev/null +++ b/tokenizer.json @@ -0,0 +1 @@ +{"version":"1.0","truncation":{"max_length":32,"strategy":"LongestFirst","stride":0},"padding":{"strategy":{"Fixed":32},"direction":"Right","pad_to_multiple_of":null,"pad_id":50256,"pad_type_id":0,"pad_token":"<|endoftext|>"},"added_tokens":[{"id":50256,"special":true,"content":"<|endoftext|>","single_word":false,"lstrip":false,"rstrip":false,"normalized":false}],"normalizer":null,"pre_tokenizer":{"type":"ByteLevel","add_prefix_space":false,"trim_offsets":true},"post_processor":{"type":"ByteLevel","add_prefix_space":true,"trim_offsets":false},"decoder":{"type":"ByteLevel","add_prefix_space":true,"trim_offsets":true},"model":{"type":"BPE","dropout":null,"unk_token":null,"continuing_subword_prefix":"","end_of_word_suffix":"","fuse_unk":false,"vocab":{"!":0,"\"":1,"#":2,"$":3,"%":4,"&":5,"'":6,"(":7,")":8,"*":9,"+":10,",":11,"-":12,".":13,"/":14,"0":15,"1":16,"2":17,"3":18,"4":19,"5":20,"6":21,"7":22,"8":23,"9":24,":":25,";":26,"<":27,"=":28,">":29,"?":30,"@":31,"A":32,"B":33,"C":34,"D":35,"E":36,"F":37,"G":38,"H":39,"I":40,"J":41,"K":42,"L":43,"M":44,"N":45,"O":46,"P":47,"Q":48,"R":49,"S":50,"T":51,"U":52,"V":53,"W":54,"X":55,"Y":56,"Z":57,"[":58,"\\":59,"]":60,"^":61,"_":62,"`":63,"a":64,"b":65,"c":66,"d":67,"e":68,"f":69,"g":70,"h":71,"i":72,"j":73,"k":74,"l":75,"m":76,"n":77,"o":78,"p":79,"q":80,"r":81,"s":82,"t":83,"u":84,"v":85,"w":86,"x":87,"y":88,"z":89,"{":90,"|":91,"}":92,"~":93,"¡":94,"¢":95,"£":96,"¤":97,"¥":98,"¦":99,"§":100,"¨":101,"©":102,"ª":103,"«":104,"¬":105,"®":106,"¯":107,"°":108,"±":109,"²":110,"³":111,"´":112,"µ":113,"¶":114,"·":115,"¸":116,"¹":117,"º":118,"»":119,"¼":120,"½":121,"¾":122,"¿":123,"À":124,"Á":125,"Â":126,"Ã":127,"Ä":128,"Å":129,"Æ":130,"Ç":131,"È":132,"É":133,"Ê":134,"Ë":135,"Ì":136,"Í":137,"Î":138,"Ï":139,"Ð":140,"Ñ":141,"Ò":142,"Ó":143,"Ô":144,"Õ":145,"Ö":146,"×":147,"Ø":148,"Ù":149,"Ú":150,"Û":151,"Ü":152,"Ý":153,"Þ":154,"ß":155,"à":156,"á":157,"â":158,"ã":159,"ä":160,"å":161,"æ":162,"ç":163,"è":164,"é":165,"ê":166,"ë":167,"ì":168,"í":169,"î":170,"ï":171,"ð":172,"ñ":173,"ò":174,"ó":175,"ô":176,"õ":177,"ö":178,"÷":179,"ø":180,"ù":181,"ú":182,"û":183,"ü":184,"ý":185,"þ":186,"ÿ":187,"Ā":188,"ā":189,"Ă":190,"ă":191,"Ą":192,"ą":193,"Ć":194,"ć":195,"Ĉ":196,"ĉ":197,"Ċ":198,"ċ":199,"Č":200,"č":201,"Ď":202,"ď":203,"Đ":204,"đ":205,"Ē":206,"ē":207,"Ĕ":208,"ĕ":209,"Ė":210,"ė":211,"Ę":212,"ę":213,"Ě":214,"ě":215,"Ĝ":216,"ĝ":217,"Ğ":218,"ğ":219,"Ġ":220,"ġ":221,"Ģ":222,"ģ":223,"Ĥ":224,"ĥ":225,"Ħ":226,"ħ":227,"Ĩ":228,"ĩ":229,"Ī":230,"ī":231,"Ĭ":232,"ĭ":233,"Į":234,"į":235,"İ":236,"ı":237,"IJ":238,"ij":239,"Ĵ":240,"ĵ":241,"Ķ":242,"ķ":243,"ĸ":244,"Ĺ":245,"ĺ":246,"Ļ":247,"ļ":248,"Ľ":249,"ľ":250,"Ŀ":251,"ŀ":252,"Ł":253,"ł":254,"Ń":255,"Ġt":256,"Ġa":257,"he":258,"in":259,"re":260,"on":261,"Ġthe":262,"er":263,"Ġs":264,"at":265,"Ġw":266,"Ġo":267,"en":268,"Ġc":269,"it":270,"is":271,"an":272,"or":273,"es":274,"Ġb":275,"ed":276,"Ġf":277,"ing":278,"Ġp":279,"ou":280,"Ġan":281,"al":282,"ar":283,"Ġto":284,"Ġm":285,"Ġof":286,"Ġin":287,"Ġd":288,"Ġh":289,"Ġand":290,"ic":291,"as":292,"le":293,"Ġth":294,"ion":295,"om":296,"ll":297,"ent":298,"Ġn":299,"Ġl":300,"st":301,"Ġre":302,"ve":303,"Ġe":304,"ro":305,"ly":306,"Ġbe":307,"Ġg":308,"ĠT":309,"ct":310,"ĠS":311,"id":312,"ot":313,"ĠI":314,"ut":315,"et":316,"ĠA":317,"Ġis":318,"Ġon":319,"im":320,"am":321,"ow":322,"ay":323,"ad":324,"se":325,"Ġthat":326,"ĠC":327,"ig":328,"Ġfor":329,"ac":330,"Ġy":331,"ver":332,"ur":333,"Ġu":334,"ld":335,"Ġst":336,"ĠM":337,"'s":338,"Ġhe":339,"Ġit":340,"ation":341,"ith":342,"ir":343,"ce":344,"Ġyou":345,"il":346,"ĠB":347,"Ġwh":348,"ol":349,"ĠP":350,"Ġwith":351,"Ġ1":352,"ter":353,"ch":354,"Ġas":355,"Ġwe":356,"Ġ(":357,"nd":358,"ill":359,"ĠD":360,"if":361,"Ġ2":362,"ag":363,"ers":364,"ke":365,"Ġ\"":366,"ĠH":367,"em":368,"Ġcon":369,"ĠW":370,"ĠR":371,"her":372,"Ġwas":373,"Ġr":374,"od":375,"ĠF":376,"ul":377,"ate":378,"Ġat":379,"ri":380,"pp":381,"ore":382,"ĠThe":383,"Ġse":384,"us":385,"Ġpro":386,"Ġha":387,"um":388,"Ġare":389,"Ġde":390,"ain":391,"and":392,"Ġor":393,"igh":394,"est":395,"ist":396,"ab":397,"rom":398,"ĠN":399,"th":400,"Ġcom":401,"ĠG":402,"un":403,"op":404,"00":405,"ĠL":406,"Ġnot":407,"ess":408,"Ġex":409,"Ġv":410,"res":411,"ĠE":412,"ew":413,"ity":414,"ant":415,"Ġby":416,"el":417,"os":418,"ort":419,"oc":420,"qu":421,"Ġfrom":422,"Ġhave":423,"Ġsu":424,"ive":425,"ould":426,"Ġsh":427,"Ġthis":428,"nt":429,"ra":430,"pe":431,"ight":432,"art":433,"ment":434,"Ġal":435,"ust":436,"end":437,"--":438,"all":439,"ĠO":440,"ack":441,"Ġch":442,"Ġle":443,"ies":444,"red":445,"ard":446,"âĢ":447,"out":448,"ĠJ":449,"Ġab":450,"ear":451,"iv":452,"ally":453,"our":454,"ost":455,"gh":456,"pt":457,"Ġpl":458,"ast":459,"Ġcan":460,"ak":461,"ome":462,"ud":463,"The":464,"Ġhis":465,"Ġdo":466,"Ġgo":467,"Ġhas":468,"ge":469,"'t":470,"ĠU":471,"rou":472,"Ġsa":473,"Ġj":474,"Ġbut":475,"Ġwor":476,"Ġall":477,"ect":478,"Ġk":479,"ame":480,"Ġwill":481,"ok":482,"Ġwhe":483,"Ġthey":484,"ide":485,"01":486,"ff":487,"ich":488,"pl":489,"ther":490,"Ġtr":491,"..":492,"Ġint":493,"ie":494,"ure":495,"age":496,"Ġne":497,"ial":498,"ap":499,"ine":500,"ice":501,"Ġme":502,"Ġout":503,"ans":504,"one":505,"ong":506,"ions":507,"Ġwho":508,"ĠK":509,"Ġup":510,"Ġtheir":511,"Ġad":512,"Ġ3":513,"Ġus":514,"ated":515,"ous":516,"Ġmore":517,"ue":518,"og":519,"ĠSt":520,"ind":521,"ike":522,"Ġso":523,"ime":524,"per":525,".\"":526,"ber":527,"iz":528,"act":529,"Ġone":530,"Ġsaid":531,"Ġ-":532,"are":533,"Ġyour":534,"cc":535,"ĠTh":536,"Ġcl":537,"ep":538,"ake":539,"able":540,"ip":541,"Ġcont":542,"Ġwhich":543,"ia":544,"Ġim":545,"Ġabout":546,"Ġwere":547,"very":548,"ub":549,"Ġhad":550,"Ġen":551,"Ġcomp":552,",\"":553,"ĠIn":554,"Ġun":555,"Ġag":556,"ire":557,"ace":558,"au":559,"ary":560,"Ġwould":561,"ass":562,"ry":563,"ĠâĢ":564,"cl":565,"ook":566,"ere":567,"so":568,"ĠV":569,"ign":570,"ib":571,"Ġoff":572,"Ġte":573,"ven":574,"ĠY":575,"ile":576,"ose":577,"ite":578,"orm":579,"Ġ201":580,"Ġres":581,"Ġman":582,"Ġper":583,"Ġother":584,"ord":585,"ult":586,"Ġbeen":587,"Ġlike":588,"ase":589,"ance":590,"ks":591,"ays":592,"own":593,"ence":594,"Ġdis":595,"ction":596,"Ġany":597,"Ġapp":598,"Ġsp":599,"int":600,"ress":601,"ations":602,"ail":603,"Ġ4":604,"ical":605,"Ġthem":606,"Ġher":607,"ount":608,"ĠCh":609,"Ġar":610,"Ġif":611,"Ġthere":612,"Ġpe":613,"Ġyear":614,"av":615,"Ġmy":616,"Ġsome":617,"Ġwhen":618,"ough":619,"ach":620,"Ġthan":621,"ru":622,"ond":623,"ick":624,"Ġover":625,"vel":626,"Ġqu":627,"ĊĊ":628,"Ġsc":629,"reat":630,"ree":631,"ĠIt":632,"ound":633,"port":634,"Ġalso":635,"Ġpart":636,"fter":637,"Ġkn":638,"Ġbec":639,"Ġtime":640,"ens":641,"Ġ5":642,"ople":643,"Ġwhat":644,"Ġno":645,"du":646,"mer":647,"ang":648,"Ġnew":649,"----":650,"Ġget":651,"ory":652,"ition":653,"ings":654,"Ġjust":655,"Ġinto":656,"Ġ0":657,"ents":658,"ove":659,"te":660,"Ġpeople":661,"Ġpre":662,"Ġits":663,"Ġrec":664,"Ġtw":665,"ian":666,"irst":667,"ark":668,"ors":669,"Ġwork":670,"ade":671,"ob":672,"Ġshe":673,"Ġour":674,"wn":675,"ink":676,"lic":677,"Ġ19":678,"ĠHe":679,"ish":680,"nder":681,"ause":682,"Ġhim":683,"ons":684,"Ġ[":685,"Ġro":686,"form":687,"ild":688,"ates":689,"vers":690,"Ġonly":691,"oll":692,"Ġspe":693,"ck":694,"ell":695,"amp":696,"Ġacc":697,"Ġbl":698,"ious":699,"urn":700,"ft":701,"ood":702,"Ġhow":703,"hed":704,"Ġ'":705,"Ġafter":706,"aw":707,"Ġatt":708,"ov":709,"ne":710,"Ġplay":711,"erv":712,"ict":713,"Ġcould":714,"itt":715,"Ġam":716,"Ġfirst":717,"Ġ6":718,"Ġact":719,"Ġ$":720,"ec":721,"hing":722,"ual":723,"ull":724,"Ġcomm":725,"oy":726,"old":727,"ces":728,"ater":729,"Ġfe":730,"Ġbet":731,"we":732,"iff":733,"Ġtwo":734,"ock":735,"Ġback":736,").":737,"ident":738,"Ġunder":739,"rough":740,"sel":741,"xt":742,"Ġmay":743,"round":744,"Ġpo":745,"ph":746,"iss":747,"Ġdes":748,"Ġmost":749,"Ġdid":750,"Ġadd":751,"ject":752,"Ġinc":753,"fore":754,"Ġpol":755,"ont":756,"Ġagain":757,"clud":758,"tern":759,"Ġknow":760,"Ġneed":761,"Ġcons":762,"Ġco":763,"Ġ.":764,"Ġwant":765,"Ġsee":766,"Ġ7":767,"ning":768,"iew":769,"ĠThis":770,"ced":771,"Ġeven":772,"Ġind":773,"ty":774,"ĠWe":775,"ath":776,"Ġthese":777,"Ġpr":778,"Ġuse":779,"Ġbecause":780,"Ġfl":781,"ng":782,"Ġnow":783,"ĠâĢĵ":784,"com":785,"ise":786,"Ġmake":787,"Ġthen":788,"ower":789,"Ġevery":790,"ĠUn":791,"Ġsec":792,"oss":793,"uch":794,"Ġem":795,"Ġ=":796,"ĠRe":797,"ied":798,"rit":799,"Ġinv":800,"lect":801,"Ġsupp":802,"ating":803,"Ġlook":804,"man":805,"pect":806,"Ġ8":807,"row":808,"Ġbu":809,"Ġwhere":810,"ific":811,"Ġyears":812,"ily":813,"Ġdiff":814,"Ġshould":815,"Ġrem":816,"Th":817,"In":818,"Ġev":819,"day":820,"'re":821,"rib":822,"Ġrel":823,"ss":824,"Ġdef":825,"Ġright":826,"Ġsy":827,"),":828,"les":829,"000":830,"hen":831,"Ġthrough":832,"ĠTr":833,"__":834,"Ġway":835,"Ġdon":836,"Ġ,":837,"Ġ10":838,"ased":839,"Ġass":840,"ublic":841,"Ġreg":842,"ĠAnd":843,"ix":844,"Ġvery":845,"Ġinclud":846,"other":847,"Ġimp":848,"oth":849,"Ġsub":850,"ĠâĢĶ":851,"Ġbeing":852,"arg":853,"ĠWh":854,"==":855,"ible":856,"Ġdoes":857,"ange":858,"ram":859,"Ġ9":860,"ert":861,"ps":862,"ited":863,"ational":864,"Ġbr":865,"Ġdown":866,"Ġmany":867,"aking":868,"Ġcall":869,"uring":870,"ities":871,"Ġph":872,"ics":873,"als":874,"Ġdec":875,"ative":876,"ener":877,"Ġbefore":878,"ility":879,"Ġwell":880,"Ġmuch":881,"erson":882,"Ġthose":883,"Ġsuch":884,"Ġke":885,"Ġend":886,"ĠBut":887,"ason":888,"ting":889,"Ġlong":890,"ef":891,"Ġthink":892,"ys":893,"Ġbel":894,"Ġsm":895,"its":896,"ax":897,"Ġown":898,"Ġprov":899,"Ġset":900,"ife":901,"ments":902,"ble":903,"ward":904,"Ġshow":905,"Ġpres":906,"ms":907,"omet":908,"Ġob":909,"Ġsay":910,"ĠSh":911,"ts":912,"ful":913,"Ġeff":914,"Ġgu":915,"Ġinst":916,"und":917,"ren":918,"cess":919,"Ġent":920,"ĠYou":921,"Ġgood":922,"Ġstart":923,"ince":924,"Ġmade":925,"tt":926,"stem":927,"olog":928,"up":929,"Ġ|":930,"ump":931,"Ġhel":932,"vern":933,"ular":934,"ually":935,"Ġac":936,"Ġmon":937,"Ġlast":938,"Ġ200":939,"10":940,"Ġstud":941,"ures":942,"ĠAr":943,"self":944,"ars":945,"meric":946,"ues":947,"cy":948,"Ġmin":949,"ollow":950,"Ġcol":951,"io":952,"Ġmod":953,"Ġcount":954,"ĠCom":955,"hes":956,"Ġfin":957,"air":958,"ier":959,"âĢĶ":960,"read":961,"ank":962,"atch":963,"ever":964,"Ġstr":965,"Ġpoint":966,"ork":967,"ĠNew":968,"Ġsur":969,"ool":970,"alk":971,"ement":972,"Ġused":973,"ract":974,"ween":975,"Ġsame":976,"oun":977,"ĠAl":978,"ci":979,"Ġdiffere":980,"Ġwhile":981,"--------":982,"Ġgame":983,"cept":984,"Ġsim":985,"...":986,"Ġinter":987,"ek":988,"Ġreport":989,"Ġprodu":990,"Ġstill":991,"led":992,"ah":993,"Ġhere":994,"Ġworld":995,"Ġthough":996,"Ġnum":997,"arch":998,"imes":999,"ale":1000,"ĠSe":1001,"ĠIf":1002,"//":1003,"ĠLe":1004,"Ġret":1005,"Ġref":1006,"Ġtrans":1007,"ner":1008,"ution":1009,"ters":1010,"Ġtake":1011,"ĠCl":1012,"Ġconf":1013,"way":1014,"ave":1015,"Ġgoing":1016,"Ġsl":1017,"ug":1018,"ĠAmeric":1019,"Ġspec":1020,"Ġhand":1021,"Ġbetween":1022,"ists":1023,"ĠDe":1024,"oot":1025,"It":1026,"Ġear":1027,"Ġagainst":1028,"Ġhigh":1029,"gan":1030,"az":1031,"ather":1032,"Ġexp":1033,"Ġop":1034,"Ġins":1035,"Ġgr":1036,"Ġhelp":1037,"Ġrequ":1038,"ets":1039,"ins":1040,"ĠPro":1041,"ism":1042,"Ġfound":1043,"land":1044,"ata":1045,"uss":1046,"ames":1047,"Ġperson":1048,"Ġgreat":1049,"pr":1050,"Ġsign":1051,"ĠAn":1052,"'ve":1053,"Ġsomet":1054,"Ġser":1055,"hip":1056,"Ġrun":1057,"Ġ:":1058,"Ġter":1059,"irect":1060,"Ġfollow":1061,"Ġdet":1062,"ices":1063,"Ġfind":1064,"12":1065,"Ġmem":1066,"Ġcr":1067,"ered":1068,"ex":1069,"Ġext":1070,"uth":1071,"ense":1072,"co":1073,"Ġteam":1074,"ving":1075,"ouse":1076,"ash":1077,"att":1078,"ved":1079,"Ġsystem":1080,"ĠAs":1081,"der":1082,"ives":1083,"min":1084,"Ġlead":1085,"ĠBl":1086,"cent":1087,"Ġaround":1088,"Ġgovern":1089,"Ġcur":1090,"velop":1091,"any":1092,"Ġcour":1093,"alth":1094,"ages":1095,"ize":1096,"Ġcar":1097,"ode":1098,"Ġlaw":1099,"Ġread":1100,"'m":1101,"con":1102,"Ġreal":1103,"Ġsupport":1104,"Ġ12":1105,"....":1106,"Ġreally":1107,"ness":1108,"Ġfact":1109,"Ġday":1110,"Ġboth":1111,"ying":1112,"Ġserv":1113,"ĠFor":1114,"Ġthree":1115,"Ġwom":1116,"Ġmed":1117,"ody":1118,"ĠThey":1119,"50":1120,"Ġexper":1121,"ton":1122,"Ġeach":1123,"akes":1124,"Ġche":1125,"Ġcre":1126,"ines":1127,"Ġrep":1128,"19":1129,"gg":1130,"illion":1131,"Ġgrou":1132,"ute":1133,"ik":1134,"We":1135,"get":1136,"ER":1137,"Ġmet":1138,"Ġsays":1139,"ox":1140,"Ġduring":1141,"ern":1142,"ized":1143,"ared":1144,"Ġfam":1145,"ically":1146,"Ġhapp":1147,"ĠIs":1148,"Ġchar":1149,"med":1150,"vent":1151,"Ġgener":1152,"ient":1153,"ple":1154,"iet":1155,"rent":1156,"11":1157,"ves":1158,"ption":1159,"Ġ20":1160,"formation":1161,"Ġcor":1162,"Ġoffic":1163,"ield":1164,"Ġtoo":1165,"ision":1166,"Ġinf":1167,"ĠZ":1168,"the":1169,"oad":1170,"Ġpublic":1171,"Ġprog":1172,"ric":1173,"**":1174,"Ġwar":1175,"Ġpower":1176,"view":1177,"Ġfew":1178,"Ġloc":1179,"Ġdifferent":1180,"Ġstate":1181,"Ġhead":1182,"'ll":1183,"Ġposs":1184,"Ġstat":1185,"ret":1186,"ants":1187,"Ġval":1188,"Ġiss":1189,"Ġcle":1190,"ivers":1191,"anc":1192,"Ġexpl":1193,"Ġanother":1194,"ĠQ":1195,"Ġav":1196,"thing":1197,"nce":1198,"Wh":1199,"Ġchild":1200,"Ġsince":1201,"ired":1202,"less":1203,"Ġlife":1204,"Ġdevelop":1205,"ittle":1206,"Ġdep":1207,"Ġpass":1208,"ãĥ":1209,"Ġturn":1210,"orn":1211,"This":1212,"bers":1213,"ross":1214,"ĠAd":1215,"Ġfr":1216,"Ġresp":1217,"Ġsecond":1218,"oh":1219,"Ġ/":1220,"Ġdisc":1221,"Ġ&":1222,"Ġsomething":1223,"Ġcomple":1224,"Ġed":1225,"Ġfil":1226,"Ġmonth":1227,"aj":1228,"uc":1229,"Ġgovernment":1230,"Ġwithout":1231,"Ġleg":1232,"Ġdist":1233,"Ġput":1234,"Ġquest":1235,"ann":1236,"Ġprot":1237,"20":1238,"Ġnever":1239,"ience":1240,"Ġlevel":1241,"Ġart":1242,"Ġthings":1243,"Ġmight":1244,"Ġeffect":1245,"Ġcontro":1246,"Ġcent":1247,"Ġ18":1248,"Ġallow":1249,"Ġbelie":1250,"chool":1251,"ott":1252,"Ġincre":1253,"Ġfeel":1254,"Ġresult":1255,"Ġlot":1256,"Ġfun":1257,"ote":1258,"Ġty":1259,"erest":1260,"Ġcontin":1261,"Ġusing":1262,"Ġbig":1263,"201":1264,"Ġask":1265,"Ġbest":1266,"Ġ)":1267,"IN":1268,"Ġopp":1269,"30":1270,"Ġnumber":1271,"iness":1272,"St":1273,"lease":1274,"Ġca":1275,"Ġmust":1276,"Ġdirect":1277,"Ġgl":1278,"Ġ<":1279,"Ġopen":1280,"Ġpost":1281,"Ġcome":1282,"Ġseem":1283,"ording":1284,"Ġweek":1285,"ately":1286,"ital":1287,"Ġel":1288,"riend":1289,"Ġfar":1290,"Ġtra":1291,"inal":1292,"Ġpri":1293,"ĠUS":1294,"Ġplace":1295,"Ġform":1296,"Ġtold":1297,"\":":1298,"ains":1299,"ature":1300,"ĠTrump":1301,"Ġstand":1302,"Ġ#":1303,"ider":1304,"ĠFr":1305,"Ġnext":1306,"Ġsoc":1307,"Ġpur":1308,"Ġlet":1309,"Ġlittle":1310,"Ġhum":1311,"Ġi":1312,"ron":1313,"15":1314,"Ġ15":1315,"Ġcommun":1316,"Ġmark":1317,"ĠThere":1318,"Ġwr":1319,"ĠThat":1320,"Ġinformation":1321,"ways":1322,"Ġbus":1323,"app":1324,"Ġinvest":1325,"me":1326,"Ġhard":1327,"ained":1328,"ead":1329,"Ġimport":1330,"Ġappro":1331,"Ġtest":1332,"Ġtri":1333,"Ġrest":1334,"osed":1335,"Ġfull":1336,"Ġcare":1337,"ĠSp":1338,"Ġcase":1339,"ON":1340,"Ġsk":1341,"Ġless":1342,"Ġ+":1343,"Ġpartic":1344,"ĠPl":1345,"ably":1346,"uck":1347,"ished":1348,"chn":1349,"be":1350,"Ġlist":1351,"ator":1352,"Ġtop":1353,"Ġadv":1354,"ĠBe":1355,"ruct":1356,"Ġdem":1357,"ration":1358,"ling":1359,"gy":1360,"reen":1361,"ger":1362,"Ġhome":1363,"Ġleft":1364,"Ġbetter":1365,"Ġdata":1366,"Ġ11":1367,"Ġattack":1368,"Ġproble":1369,"line":1370,"ards":1371,"Ġbeh":1372,"ral":1373,"ĠHow":1374,"ĠShe":1375,"arge":1376,"Ġ--":1377,"://":1378,"Ġbro":1379,"ĠPh":1380,"ats":1381,"Ġbuild":1382,"ww":1383,"ided":1384,"aim":1385,"ases":1386,"ency":1387,"Ġmain":1388,"ined":1389,"Ġincluding":1390,"Ġ{":1391,"Ġgot":1392,"Ġinterest":1393,"Ġkeep":1394,"ĠX":1395,"Ġeas":1396,"aining":1397,"Ġclass":1398,"â̦":1399,"ĠNo":1400,"Ġvar":1401,"Ġsmall":1402,"ample":1403,"AT":1404,"Ġide":1405,"ĠSo":1406,"Ġrece":1407,"Ġpolit":1408,"Ġmov":1409,"Ġplan":1410,"Ġpercent":1411,"iving":1412,"Ġcamp":1413,"Ġpay":1414,"14":1415,"sc":1416,"ised":1417,"Ġunt":1418,"oney":1419,"ploy":1420,"====":1421,"Ġdidn":1422,"ĠInd":1423,"els":1424,"ertain":1425,"Ġpos":1426,"____":1427,"iver":1428,"Ġprocess":1429,"Ġprogram":1430,"ified":1431,"ĠRep":1432,"16":1433,"uro":1434,"ology":1435,"atter":1436,"ina":1437,"Ġname":1438,"ĠAll":1439,"Ġfour":1440,"Ġreturn":1441,"vious":1442,"bs":1443,"Ġcalled":1444,"Ġmove":1445,"ĠSc":1446,"ird":1447,"Ġgroup":1448,"Ġbre":1449,"Ġmen":1450,"Ġcap":1451,"ten":1452,"ee":1453,"Ġdri":1454,"leg":1455,"here":1456,"uthor":1457,"Ġpat":1458,"Ġcurrent":1459,"ides":1460,"Ġpop":1461,"to":1462,"ention":1463,"Ġalways":1464,"Ġmil":1465,"Ġwomen":1466,"Ġ16":1467,"Ġold":1468,"iven":1469,"raph":1470,"ĠOr":1471,"ror":1472,"ently":1473,"Ġnear":1474,"ĠEx":1475,"ream":1476,"sh":1477,"Ġ14":1478,"Ġfree":1479,"ission":1480,"stand":1481,"ĠCon":1482,"ality":1483,"used":1484,"13":1485,"Ġdesign":1486,"Ġchange":1487,"Ġchang":1488,"Ġbo":1489,"Ġvis":1490,"ember":1491,"Ġbook":1492,"ready":1493,"Ġkill":1494,"25":1495,"pped":1496,"Ġaway":1497,"Ġable":1498,"Ġcountry":1499,"Ġconst":1500,"arn":1501,"Ġorder":1502,"AR":1503,"ior":1504,"ium":1505,"orth":1506,"18":1507,"ailable":1508,"Ġsw":1509,"Ġmillion":1510,"Ġ13":1511,"atic":1512,"ted":1513,"ĠGo":1514,"Ġoper":1515,"eng":1516,"Ġthing":1517,"ajor":1518,"conom":1519,"ĠComm":1520,"Ġwhy":1521,"ured":1522,"ural":1523,"Ġschool":1524,"by":1525,"ĠMar":1526,"Ġaff":1527,"Ġdays":1528,"Ġann":1529,"ush":1530,"ane":1531,"If":1532,"eg":1533,"Ġprof":1534,"Ġhealth":1535,"outh":1536,"But":1537,"ional":1538,".,":1539,"Ġsol":1540,"Ġalready":1541,"Ġ30":1542,"Ġcharact":1543,"He":1544,"Ġfriend":1545,"ES":1546,"ians":1547,"icle":1548,"'d":1549,"ĠOn":1550,"Ġleast":1551,"Ġprom":1552,"Ġdr":1553,"Ġhist":1554,"ither":1555,"Ġest":1556,"iqu":1557,"17":1558,"son":1559,"Ġtell":1560,"Ġtalk":1561,"ohn":1562,"oint":1563,"lection":1564,"AN":1565,"Ġuntil":1566,"augh":1567,"Ġlater":1568,"Ġve":1569,"Ġview":1570,"ending":1571,"ived":1572,"Ġword":1573,"ware":1574,"Ġcost":1575,"Ġenough":1576,"Ġgive":1577,"ĠUnited":1578,"Ġtechn":1579,"arent":1580,"OR":1581,"Ġpar":1582,"ĠDr":1583,"Ġ2016":1584,"rist":1585,"ering":1586,"ĠÂ":1587,"Ġlarge":1588,"side":1589,"acy":1590,"ccess":1591,"Ġwin":1592,"Ġimportant":1593,"Ġ199":1594,"Ġdoesn":1595,"Ġ17":1596,"Ġbusiness":1597,"Ġclear":1598,"Ġrese":1599,"\",":1600,"ury":1601,"Ġequ":1602,"aster":1603,"alf":1604,"ĠAmerican":1605,"nect":1606,"Ġexpect":1607,"iversity":1608,"Ġocc":1609,"ĠFl":1610,"Ġkind":1611,"Ġmean":1612,"Ġpast":1613,"Ġdev":1614,"Ġbas":1615,"let":1616,"raft":1617,"Ġorgan":1618,"Ġdel":1619,"Ġperform":1620,"Ġstory":1621,"Ġseason":1622,"ĠCol":1623,"Ġclaim":1624,"Ġcame":1625,"Ġwithin":1626,"Ġline":1627,"Ġproject":1628,"ĠAt":1629,"Ġcontrol":1630,"ended":1631,"ĠSy":1632,"Ġair":1633,"ization":1634,"Ġ*":1635,"ley":1636,"Ġmoney":1637,"idd":1638,"You":1639,"for":1640,"Ġfamily":1641,"Ġmaking":1642,"Ġbit":1643,"Ġpolice":1644,"Ġhappen":1645,"Ġvers":1646,"ony":1647,"uff":1648,"ĠWhen":1649,"Ġsit":1650,"ideo":1651,"lf":1652,"ison":1653,"Ġsure":1654,"gin":1655,"Ġappear":1656,"Ġlight":1657,"Ġes":1658,"of":1659,"Ġwater":1660,"Ġtimes":1661,"not":1662,"Ġgrow":1663,"Ġcompany":1664,"ĠTe":1665,"ows":1666,"Ġmar":1667,"ource":1668,"iol":1669,"arm":1670,"br":1671,"Ġexample":1672,"Ġconc":1673,"Ġfore":1674,"ĠTo":1675,"pro":1676,"EN":1677,"ries":1678,"Ġ25":1679,"ĠCan":1680,"ney":1681,"Ġactually":1682,"Ġever":1683,"urity":1684,"aken":1685,"aps":1686,"Ġtax":1687,"Ġmajor":1688,"ama":1689,"Ġoften":1690,"eral":1691,"Ġhuman":1692,"Ġjob":1693,"ister":1694,"Ġavailable":1695,"ocr":1696,"enn":1697,"aid":1698,"ivid":1699,"Ġrecord":1700,"?\"":1701,"Ġsing":1702,"ĠAm":1703,"idence":1704,"Ġnews":1705,"ster":1706,"Ġeconom":1707,"Ġfollowing":1708,"ĠBr":1709,"ising":1710,"Ġhour":1711,"most":1712,"ument":1713,"Ġsex":1714,"Ġdesc":1715,"Ġbecome":1716,"ĠEd":1717,"Ġtook":1718,"Ġhaving":1719,"Ġproduct":1720,"ault":1721,"As":1722,"aring":1723,"Ġmeans":1724,"Ġhop":1725,"une":1726,"Ġcho":1727,"Ġcertain":1728,"Ġnon":1729,"Ġdeal":1730,"24":1731,"lement":1732,"oci":1733,"ene":1734,"Ġside":1735,"ĠPr":1736,"ĠMay":1737,"Ġreason":1738,"ued":1739,"ched":1740,"ulation":1741,"Ġelect":1742,"Ġofficial":1743,"Ġpossible":1744,"Ġhold":1745,"ands":1746,"ots":1747,"Ġcity":1748,"ories":1749,"Ġsever":1750,"Ġchildren":1751,"Ġonce":1752,"Ġactiv":1753,"ler":1754,"Ġnight":1755,"itions":1756,"ĠJohn":1757,"ape":1758,"play":1759,"Ġdone":1760,"Ġlim":1761,"Ġworking":1762,"ĠPres":1763,"orld":1764,"eb":1765,"ĠCo":1766,"Ġbody":1767,"ails":1768,"utes":1769,"ĠMr":1770,"Ġwhether":1771,"Ġauthor":1772,"rop":1773,"Ġproper":1774,"Ġseen":1775,");":1776,"Ġfac":1777,"ĠSu":1778,"Ġcond":1779,"iting":1780,"Ġcourse":1781,"Ġ}":1782,"----------------":1783,"aign":1784,"Ġevent":1785,"Ġeng":1786,"Ġpot":1787,"Ġintern":1788,"iam":1789,"Ġshort":1790,"empt":1791,"ãĤ":1792,"ĠGod":1793,"ilar":1794,"80":1795,"Ġorig":1796,"IS":1797,"ourn":1798,"ability":1799,"itive":1800,"Ġdam":1801,"Ġ100":1802,"Ġpress":1803,"Ġdoing":1804,"Ġprotect":1805,"ring":1806,"Ġthought":1807,"Ġquestion":1808,"rew":1809,"ĠWar":1810,"Ġseveral":1811,"ĠState":1812,"Ġgiven":1813,"Ġfund":1814,"ĠTw":1815,"Ġwent":1816,"ances":1817,"work":1818,"por":1819,"my":1820,"40":1821,"Ġarg":1822,"artment":1823,"ustom":1824,"Ġpolic":1825,"Ġmeet":1826,"Ġcreat":1827,"22":1828,"ĠStates":1829,"Ġgames":1830,"raw":1831,"uture":1832,"Ġunderstand":1833,"urs":1834,"ĠOb":1835,"lish":1836,"sy":1837,"Ġmakes":1838,"Ġwon":1839,"agon":1840,"Ġhtt":1841,"Ġlove":1842,"ential":1843,"Ġcomplete":1844,"par":1845,"ĠIm":1846,"AL":1847,"Ġaccount":1848,"Âł":1849,"ored":1850,"vert":1851,"Ġident":1852,"Ġ2015":1853,"Ġothers":1854,"ĠMin":1855,"iber":1856,"verage":1857,"There":1858,"itional":1859,"dd":1860,"Ġprob":1861,"Ġyoung":1862,"Ġalong":1863,"Ġaccording":1864,"Ġyet":1865,"Ġmembers":1866,"ĠWhat":1867,"oid":1868,"ĠMan":1869,"And":1870,"Ġamong":1871,"ai":1872,"Ġemploy":1873,"ĠRes":1874,"Ġ>":1875,"Ġinvol":1876,"Ġlow":1877,"af":1878,"ĠCar":1879,"Ġhig":1880,"ĠOne":1881,"ĠSec":1882,"ination":1883,"Ġlikely":1884,"Ġant":1885,"aged":1886,"ĠRuss":1887,"Ġben":1888,"Ġrele":1889,"For":1890,"back":1891,"ĠNot":1892,"Ġpresident":1893,"ball":1894,"Ġaccess":1895,"ividual":1896,"ĠDem":1897,"ĠEuro":1898,"60":1899,"Ġknown":1900,"irl":1901,"ĠGr":1902,"Ġearly":1903,"use":1904,"iety":1905,"âĢĵ":1906,"Ġfight":1907,"Ġsent":1908,"Ġtoday":1909,"Ġmarket":1910,"\".":1911,"Ġbased":1912,"Ġstrong":1913,"urther":1914,"Ġdeb":1915,"mber":1916,"Ġproblem":1917,"Ġdeath":1918,"Ġsocial":1919,"imate":1920,"AS":1921,"ortun":1922,"Ġcampaign":1923,"ery":1924,"Ch":1925,"Ġey":1926,"ially":1927,"Ġmus":1928,"wh":1929,"pos":1930,"Ġer":1931,"Ġsaf":1932,"Ġmonths":1933,"iron":1934,"Ġviol":1935,"Ġfive":1936,"Ġstre":1937,"Ġplayers":1938,"inc":1939,"ald":1940,"year":1941,"aun":1942,"Ġsuccess":1943,"Ġpresent":1944,"erence":1945,"Ġ2014":1946,"Ġsugg":1947,"Ġparticular":1948,"Ġtry":1949,"Ġsuggest":1950,"ĠChrist":1951,"ones":1952,"Ġpriv":1953,"23":1954,"Ġcrit":1955,"Ġland":1956,"Ġlocal":1957,"ify":1958,"29":1959,"Ġaut":1960,"ED":1961,"ĠGu":1962,"Ġmult":1963,"Ġpolitical":1964,"Ġasked":1965,"Ġformer":1966,"itter":1967,"ript":1968,"Ġclose":1969,"Ġpract":1970,"ĠYork":1971,"Ġgetting":1972,"Ġacross":1973,"Ġcomb":1974,"Ġbelieve":1975,"Ġz":1976,"Ġtoget":1977,"Ġtogether":1978,"ĠCent":1979,"irc":1980,"Ġindividual":1981,"ĠMc":1982,"27":1983,"isk":1984,"ĠEng":1985,"Ġface":1986,"Ġ24":1987,"Ġvalue":1988,"Ġarea":1989,"ev":1990,"Ġwrit":1991,"ĠPresident":1992,"Ġvot":1993,"Ġkey":1994,"Ġmom":1995,"put":1996,"Ġanything":1997,"Ġexperience":1998,"attle":1999,"Ġmind":2000,"aff":2001,"omm":2002,"Ġfuture":2003,"ged":2004,"Ġcut":2005,"Ġtot":2006,"itch":2007,"Ġvideo":2008,"Ġinvestig":2009,"Ġnet":2010,"ĠMy":2011,"rict":2012,"ien":2013,".)":2014,"Ġimpro":2015,"though":2016,"wards":2017,"Ġconnect":2018,"ĠMed":2019,"selves":2020,"ensive":2021,"mb":2022,"ober":2023,"ators":2024,"An":2025,"Ġ50":2026,"Ġredu":2027,"resent":2028,"Ġabove":2029,"Ġfre":2030,"ĠEurope":2031,"sw":2032,"Ġamount":2033,"ĠApp":2034,"Ġeither":2035,"Ġmilit":2036,"Ġanal":2037,"Ġfail":2038,"ĠEn":2039,"ales":2040,"Ġspecial":2041,"Ġblack":2042,"IT":2043,"cher":2044,"Ġlooking":2045,"Ġfire":2046,"yn":2047,"Ġalmost":2048,"oon":2049,"Ġstudy":2050,"Ġmiss":2051,"ches":2052,"rown":2053,"Ġtre":2054,"Ġcommunity":2055,"Ġmedia":2056,"Ġfood":2057,"Ġcomes":2058,"ĠUniversity":2059,"Ġsingle":2060,"What":2061,"uly":2062,"Ġhalf":2063,"ague":2064,"hod":2065,"ĠRepublic":2066,"Ġstarted":2067,"Ġquick":2068,"oto":2069,"book":2070,"Ġissue":2071,"itor":2072,"Ġelse":2073,"Ġconsider":2074,"26":2075,"rodu":2076,"Ġtaken":2077,"28":2078,"99":2079,"ĠWith":2080,"Ġtrue":2081,"Ġwa":2082,"Ġtrad":2083,"Ġago":2084,"Ġmess":2085,"ief":2086,"Ġadded":2087,"oke":2088,"Ġbad":2089,"Ġfav":2090,"33":2091,"Ġsimilar":2092,"ask":2093,"ĠDon":2094,"Ġcharacter":2095,"orts":2096,"ĠHouse":2097,"Ġreported":2098,"Ġtype":2099,"val":2100,"iod":2101,"ĠHowever":2102,"Ġtarg":2103,"Ġentire":2104,"pping":2105,"Ġhistory":2106,"Ġlive":2107,"ffic":2108,"........":2109,"ederal":2110,"Ġtrying":2111,"Ġdiscuss":2112,"ĠHar":2113,"aces":2114,"lished":2115,"Ġself":2116,"osp":2117,"rest":2118,"Ġroom":2119,"elt":2120,"Ġfall":2121,"olution":2122,"Ġet":2123,"Ġx":2124,"Ġisn":2125,"Ġidea":2126,"bo":2127,"Ġsound":2128,"ĠDep":2129,"Ġsomeone":2130,"cially":2131,"ully":2132,"Ġfoc":2133,"Ġobject":2134,"ift":2135,"aper":2136,"Ġplayer":2137,"Ġrather":2138,"Ġservice":2139,"ashing":2140,"ĠDo":2141,"ĠPart":2142,"rug":2143,"mon":2144,"ply":2145,"Ġmor":2146,"Ġnothing":2147,"Ġprovide":2148,"IC":2149,"ung":2150,"Ġparty":2151,"Ġexist":2152,"Ġmag":2153,"70":2154,"Ġrul":2155,"Ġhouse":2156,"Ġbehind":2157,"Ġhowever":2158,"ĠWorld":2159,"Ġsum":2160,"Ġapplic":2161,"Ġ;":2162,"Ġfunction":2163,"gr":2164,"ĠPol":2165,"Ġfront":2166,"200":2167,"Ġseries":2168,"Ġtem":2169,"Ġtyp":2170,"ills":2171,"Ġopt":2172,"Ġpoints":2173,"Ġbelow":2174,"itted":2175,"Ġspecific":2176,"Ġ2017":2177,"umb":2178,"Ġra":2179,"Ġprevious":2180,"Ġpret":2181,"reme":2182,"Ġcustom":2183,"Ġcourt":2184,"ĠMe":2185,"Ġrepl":2186,"Ġwhole":2187,"go":2188,"cer":2189,"Ġtreat":2190,"ĠAct":2191,"Ġprobably":2192,"Ġlearn":2193,"ender":2194,"ĠAss":2195,"Ġversion":2196,"now":2197,"Ġcheck":2198,"ĠCal":2199,"RE":2200,"minist":2201,"On":2202,"ources":2203,"Ġbenef":2204,"Ġdoc":2205,"Ġdeter":2206,"Ġenc":2207,"Ġsuper":2208,"Ġaddress":2209,"Ġvict":2210,"Ġ2013":2211,"Ġmeas":2212,"tr":2213,"Ġfield":2214,"When":2215,"Ġsignific":2216,"uge":2217,"Ġfeat":2218,"Ġcommon":2219,"load":2220,"Ġbegin":2221,"Ġbring":2222,"Ġaction":2223,"erman":2224,"Ġdescrib":2225,"Ġindust":2226,"Ġwanted":2227,"ried":2228,"ming":2229,"Ġattempt":2230,"45":2231,"fer":2232,"Ġdue":2233,"ression":2234,"##":2235,"Ġshall":2236,"Ġsix":2237,"oo":2238,"Ġstep":2239,"Ġpub":2240,"Ġhimself":2241,"Ġ23":2242,"Ġcop":2243,"Ġdest":2244,"Ġstop":2245,"AC":2246,"ibility":2247,"Ġlab":2248,"icult":2249,"Ġhours":2250,"Ġcreate":2251,"Ġfurther":2252,"ĠAmerica":2253,"ĠCity":2254,"Ġdou":2255,"head":2256,"ST":2257,"ĠNorth":2258,"cing":2259,"Ġnational":2260,"ule":2261,"ĠInst":2262,"Ġtaking":2263,"ĠQu":2264,"irt":2265,"Ġred":2266,"Ġresearch":2267,"viron":2268,"ĠGe":2269,"Ġbreak":2270,"ana":2271,"Ġspace":2272,"aterial":2273,"Ġrecent":2274,"ĠAb":2275,"Ġgeneral":2276,"Ġhit":2277,"Ġperiod":2278,"Ġeverything":2279,"ively":2280,"Ġphys":2281,"Ġsaying":2282,"anks":2283,"Ġcou":2284,"Ġcult":2285,"aced":2286,"eal":2287,"uation":2288,"Ġcoun":2289,"lu":2290,"Ġinclude":2291,"Ġposition":2292,"ĠAfter":2293,"ĠCanad":2294,"ĠEm":2295,"Ġimm":2296,"ĠRed":2297,"Ġpick":2298,"Ġcompl":2299,"Ġmatter":2300,"reg":2301,"ext":2302,"angu":2303,"isc":2304,"ole":2305,"aut":2306,"Ġcompet":2307,"eed":2308,"fect":2309,"Ġ21":2310,"ĠSen":2311,"ĠThese":2312,"asing":2313,"Ġcannot":2314,"Ġinit":2315,"Ġrelations":2316,"ached":2317,"Ġbar":2318,"Ġ40":2319,"ĠTH":2320,"Ġ2012":2321,"Ġvol":2322,"Ġground":2323,"Ġsecurity":2324,"Ġupd":2325,"ilt":2326,"35":2327,"Ġconcern":2328,"ĠJust":2329,"Ġwhite":2330,"Ġseems":2331,"ĠHer":2332,"pecially":2333,"ients":2334,"Ġannoun":2335,"Ġfig":2336,"ights":2337,"Ġstri":2338,"like":2339,"ids":2340,"Ġsus":2341,"Ġwatch":2342,"Ġâ":2343,"Ġwind":2344,"ĠCont":2345,"Ġitself":2346,"Ġmass":2347,"Al":2348,"yle":2349,"ique":2350,"ĠNational":2351,"Ġabs":2352,"Ġpack":2353,"Ġoutside":2354,"Ġanim":2355,"Ġpain":2356,"eter":2357,"Ġmanag":2358,"duct":2359,"ogn":2360,"Ġ]":2361,"ĠSept":2362,"sec":2363,"off":2364,"ĠJan":2365,"Ġfoot":2366,"ades":2367,"Ġthird":2368,"Ġmot":2369,"Ġevidence":2370,"inton":2371,"Ġthreat":2372,"apt":2373,"ples":2374,"cle":2375,"Ġlo":2376,"Ġdecl":2377,"Ġitem":2378,"medi":2379,"Ġrepresent":2380,"omb":2381,"amer":2382,"Ġsignificant":2383,"ograph":2384,"su":2385,"Ġcal":2386,"ires":2387,"0000":2388,"ID":2389,"AM":2390,"Ġsimply":2391,"Ġlonger":2392,"Ġfile":2393,"OT":2394,"che":2395,"So":2396,"ateg":2397,"org":2398,"ĠHis":2399,"Ġener":2400,"Ġdom":2401,"Ġupon":2402,"ili":2403,"\":\"":2404,"Ġthemselves":2405,"Ġcoming":2406,"Ġquite":2407,"Ġdifficult":2408,"ĠBar":2409,"ilities":2410,"rel":2411,"ends":2412,"cial":2413,"64":2414,"Ġwoman":2415,"rap":2416,"yr":2417,"Ġnecess":2418,"ips":2419,"Ġtext":2420,"Ġrequire":2421,"Ġmilitary":2422,"Ġreview":2423,"Ġrespons":2424,"75":2425,"Ġsubject":2426,"Ġinstead":2427,"Ġissues":2428,"Ġgen":2429,"\",\"":2430,"Ġminutes":2431,"Ġweap":2432,"ray":2433,"amed":2434,"time":2435,"bl":2436,"How":2437,"Ġcode":2438,"ĠSm":2439,"Ġhigher":2440,"ĠSte":2441,"ris":2442,"Ġpage":2443,"Ġstudents":2444,"ĠIntern":2445,"Ġmethod":2446,"ĠAug":2447,"ĠPer":2448,"ĠAg":2449,"Ġpolicy":2450,"ĠSw":2451,"Ġexec":2452,"Ġaccept":2453,"ume":2454,"ribut":2455,"Ġwords":2456,"Ġfinal":2457,"Ġchanges":2458,"ĠDemocr":2459,"Ġfriends":2460,"Ġrespect":2461,"Ġep":2462,"Ġcompan":2463,"ivil":2464,"Ġdamage":2465,"****":2466,"ogle":2467,"vironment":2468,"Ġneg":2469,"ental":2470,"Ġap":2471,"Ġtotal":2472,"ival":2473,"!\"":2474,"lim":2475,"Ġneeds":2476,"Ġagre":2477,"Ġdevelopment":2478,"Ġage":2479,"iple":2480,"21":2481,"Ġresults":2482,"ĠAf":2483,"Sh":2484,"Ġgun":2485,"ĠObama":2486,"roll":2487,"Ġ@":2488,"Ġrights":2489,"ĠBrit":2490,"Ġrunning":2491,"Ġwasn":2492,"Ġport":2493,"Ġrate":2494,"Ġpretty":2495,"Ġtarget":2496,"Ġsaw":2497,"Ġcirc":2498,"Ġworks":2499,"icro":2500,"alt":2501,"over":2502,"www":2503,"That":2504,"lier":2505,"Ġeveryone":2506,"ude":2507,"Ġpie":2508,"iddle":2509,"rael":2510,"Ġrad":2511,"Ġblock":2512,"Ġwalk":2513,"To":2514,"ãģ":2515,"nes":2516,"ĠAust":2517,"aul":2518,"rote":2519,"ĠSouth":2520,"ession":2521,"oph":2522,"Ġshows":2523,"Ġsite":2524,"Ġjo":2525,"Ġrisk":2526,"clus":2527,"lt":2528,"Ġinj":2529,"iding":2530,"ĠSpe":2531,"Ġchall":2532,"irm":2533,"Ġ22":2534,"itting":2535,"str":2536,"Ġhy":2537,"LE":2538,"key":2539,"Ġbegan":2540,"atur":2541,"ashington":2542,"lam":2543,"ĠDav":2544,"bit":2545,"Ġsize":2546,"ĠPar":2547,"38":2548,"ournal":2549,"face":2550,"Ġdecision":2551,"Ġlarg":2552,"Ġjud":2553,"rect":2554,"Ġcontinue":2555,"ĠOct":2556,"overed":2557,"ĠInt":2558,"========":2559,"Ġparent":2560,"ĠWill":2561,"Ġeasy":2562,"Ġdrug":2563,"anger":2564,"Ġsense":2565,"Ġdi":2566,"iday":2567,"Ġenergy":2568,"istic":2569,"Ġassoci":2570,"arter":2571,"obal":2572,"eks":2573,"ĠEl":2574,"urch":2575,"Ġgirl":2576,"oe":2577,"itle":2578,"Ġ28":2579,"ĠChe":2580,"Ġrequest":2581,"Ġsoon":2582,"Ġhost":2583,"ky":2584,"Ġstates":2585,"omes":2586,"Ġmaterial":2587,"lex":2588,"Ġmoment":2589,"Ġansw":2590,"onse":2591,"Ġespecially":2592,"Ġnorm":2593,"Ġservices":2594,"pite":2595,"ran":2596,"Ġrole":2597,"44":2598,"):":2599,"Ġcred":2600,"Cl":2601,"________":2602,"Ġmat":2603,"Ġlog":2604,"ĠClinton":2605,"OU":2606,"Ġoffice":2607,"Ġ26":2608,"Ġcharg":2609,"Ġtrack":2610,"ma":2611,"Ġheart":2612,"Ġball":2613,"Ġpersonal":2614,"Ġbuilding":2615,"na":2616,"set":2617,"body":2618,"ĠBlack":2619,"Ġincrease":2620,"itten":2621,"Ġneeded":2622,"36":2623,"32":2624,"=\"":2625,"Ġlost":2626,"Ġbecame":2627,"Ġgroups":2628,"ĠMus":2629,"Ġwrote":2630,"ĠPe":2631,"Ġprop":2632,"joy":2633,"é":2634,"ĠWhite":2635,"Ġdead":2636,".'":2637,"Ġhttp":2638,"Ġwebs":2639,"OS":2640,"Ġinside":2641,"Ġwrong":2642,"Ġstatement":2643,"Ġ...":2644,"yl":2645,"Ġfilm":2646,"Ġmusic":2647,"Ġshare":2648,"ification":2649,"Ġrelease":2650,"Ġforward":2651,"Ġstay":2652,"Ġcomput":2653,"itte":2654,"ser":2655,"Ġoriginal":2656,"Ġcard":2657,"Ġcand":2658,"Ġdiv":2659,"atural":2660,"Ġfavor":2661,"OM":2662,"Ġcases":2663,"uses":2664,"Ġsection":2665,"Ġleave":2666,"ging":2667,"oved":2668,"ĠWashington":2669,"39":2670,"ĠGl":2671,"Ġrequired":2672,"action":2673,"apan":2674,"oor":2675,"iter":2676,"ĠKing":2677,"Ġcountries":2678,"ĠGerman":2679,"lling":2680,"Ġ27":2681,"34":2682,"Ġquestions":2683,"Ġprim":2684,"Ġcell":2685,"Ġshoot":2686,"Ġanyone":2687,"ĠWest":2688,"Ġaffect":2689,"epend":2690,"Ġonline":2691,"ĠIsrael":2692,"ĠSeptember":2693,"Ġability":2694,"Ġcontent":2695,"ises":2696,"Ġreve":2697,"Ġlaun":2698,"Ġindic":2699,"Ġforce":2700,"cast":2701,"Ġsold":2702,"aving":2703,"fl":2704,"Ġsoft":2705,"Ġcompanies":2706,"ceed":2707,"Ġarticle":2708,"Ġaud":2709,"Ġrev":2710,"Ġeduc":2711,"Ġplaying":2712,"05":2713,"Ġheld":2714,"ctor":2715,"Ġreleased":2716,"Ġfederal":2717,"37":2718,"Ġadminist":2719,"Ġinterview":2720,"Ġinstall":2721,"Ġreceived":2722,"Ġsource":2723,"uk":2724,"Ph":2725,"Ġserious":2726,"Ġcreated":2727,"Ġcause":2728,"Ġimmedi":2729,"Ġdefin":2730,"uel":2731,"ĠDepartment":2732,"ctions":2733,"ĠCour":2734,"ĠNow":2735,"ze":2736,"ites":2737,"itution":2738,"Ġlate":2739,"Ġspeak":2740,"ners":2741,"Ġlegal":2742,"ari":2743,"ĠCor":2744,"Ġweeks":2745,"Ġmodel":2746,"Ġpred":2747,"Ġexact":2748,"BC":2749,"ĠBy":2750,"ING":2751,"osing":2752,"Ġtakes":2753,"Ġregard":2754,"Ġopportun":2755,"Ġprice":2756,"Ġ198":2757,"ĠApr":2758,"fully":2759,"Ġord":2760,"Ġproblems":2761,"ruction":2762,"ham":2763,"ĠCount":2764,"lege":2765,"Ġleaders":2766,"ET":2767,"lev":2768,"Ġdeep":2769,"ological":2770,"ese":2771,"haps":2772,"ĠSome":2773,"Ġpers":2774,"Ġcontract":2775,"Ġrelationship":2776,"sp":2777,"oud":2778,"Ġbase":2779,"48":2780,"mit":2781,"Ad":2782,"ancial":2783,"Ġconsum":2784,"Ġpotential":2785,"Ġlangu":2786,"rem":2787,"eth":2788,"Ġrelig":2789,"ressed":2790,"66":2791,"Ġlink":2792,"Ġlower":2793,"ayer":2794,"ĠJune":2795,"Ġfem":2796,"unt":2797,"erc":2798,"urd":2799,"Ġcontact":2800,"Ġill":2801,"Ġmother":2802,"Ġestab":2803,"htt":2804,"ĠMarch":2805,"ĠBro":2806,"ĠChina":2807,"Ġ29":2808,"Ġsqu":2809,"Ġprovided":2810,"Ġaverage":2811,"asons":2812,"Ġ2011":2813,"Ġexam":2814,"lin":2815,"55":2816,"ned":2817,"Ġperfect":2818,"Ġtou":2819,"alse":2820,"ux":2821,"Ġbuy":2822,"Ġshot":2823,"Ġcollect":2824,"Ġphot":2825,"Ġplayed":2826,"Ġsurpr":2827,"Ġofficials":2828,"Ġsimple":2829,"avy":2830,"Ġindustry":2831,"Ġhands":2832,"ground":2833,"Ġpull":2834,"Ġround":2835,"Ġuser":2836,"Ġrange":2837,"uary":2838,"Ġprivate":2839,"ops":2840,"ees":2841,"Ġways":2842,"ĠMich":2843,"Ġveh":2844,"Ġexcept":2845,"Ġterms":2846,"imum":2847,"pper":2848,"ION":2849,"ores":2850,"ĠDragon":2851,"oul":2852,"Ġden":2853,"Ġperformance":2854,"Ġbill":2855,"cil":2856,"47":2857,"Ġenvironment":2858,"Ġexc":2859,"add":2860,"Ġworth":2861,"Ġpict":2862,"Ġchance":2863,"Ġ2018":2864,"bor":2865,"Ġspeed":2866,"iction":2867,"Ġalleg":2868,"ĠJapan":2869,"atory":2870,"reet":2871,"Ġmatch":2872,"ĠII":2873,"Ġstru":2874,"order":2875,"Ġste":2876,"Ġliving":2877,"Ġstruct":2878,"ino":2879,"Ġsepar":2880,"hern":2881,"Ġresponse":2882,"Ġenjoy":2883,"Ġvia":2884,"AD":2885,"uments":2886,"acebook":2887,"Ġmember":2888,"ibr":2889,"izing":2890,"Ġtool":2891,"ĠMon":2892,"ĠWhile":2893,"hood":2894,"ĠAng":2895,"ĠDef":2896,"Ġoffer":2897,"Tr":2898,"aur":2899,"Ġturned":2900,"ĠJuly":2901,"down":2902,"anced":2903,"Ġrecently":2904,"ĠEar":2905,"Ġce":2906,"ĠStar":2907,"ĠCong":2908,"rought":2909,"Ġblood":2910,"Ġhope":2911,"Ġcomment":2912,"aint":2913,"Ġarri":2914,"iles":2915,"Ġparticip":2916,"ought":2917,"ription":2918,"08":2919,"49":2920,"Ġgave":2921,"Ġselect":2922,"Ġkilled":2923,"sych":2924,"Ġgoes":2925,"ij":2926,"Ġcoll":2927,"Ġimpact":2928,"atives":2929,"ĠSer":2930,"09":2931,"ĠAugust":2932,"Ġboy":2933,"de":2934,"ĠDes":2935,"Ġfelt":2936,"US":2937,"Ġexpected":2938,"Ġimage":2939,"ĠMark":2940,"ccording":2941,"oice":2942,"EC":2943,"ĠMag":2944,"ened":2945,"hold":2946,"ĠPost":2947,"Ġprevent":2948,"No":2949,"Ġinvolved":2950,"Ġeyes":2951,"Ġquickly":2952,"At":2953,"unk":2954,"Ġbehav":2955,"Ġur":2956,"Ġled":2957,"come":2958,"ey":2959,"Ġcandid":2960,"Ġearlier":2961,"Ġfocus":2962,"ety":2963,"Pro":2964,"ledge":2965,"ixed":2966,"illed":2967,"Ġpopular":2968,"AP":2969,"Ġsett":2970,"light":2971,"Ġvarious":2972,"inks":2973,"Ġlevels":2974,"Ġroad":2975,"ellig":2976,"ables":2977,"hel":2978,"ittee":2979,"ĠGener":2980,"ype":2981,"Ġheard":2982,"icles":2983,"Ġmis":2984,"Ġusers":2985,"ĠSan":2986,"Ġimprove":2987,"Ġfather":2988,"Ġsearch":2989,"They":2990,"vil":2991,"Ġprofess":2992,"Ġknew":2993,"Ġloss":2994,"Ġevents":2995,"65":2996,"Ġbillion":2997,"07":2998,"02":2999,"ĠNews":3000,"ĠAM":3001,"Ġcover":3002,"where":3003,"ension":3004,"Ġbott":3005,"Ġareas":3006,"ences":3007,"ope":3008,"ĠTwitter":3009,"ael":3010,"Ġgets":3011,"ĠGoogle":3012,"Ġsn":3013,"iant":3014,"Ġvote":3015,"Ġnearly":3016,"Ġincluded":3017,"Ġrecogn":3018,"zz":3019,"mm":3020,"aled":3021,"Ġhappened":3022,"04":3023,"Ġhot":3024,"Ġwhose":3025,"Ġcivil":3026,"Ġsuff":3027,"oes":3028,"itiz":3029,"ĠSyri":3030,"Ġrespond":3031,"Ġhon":3032,"Ġfeatures":3033,"Ġeconomic":3034,"ĠApril":3035,"rim":3036,"Ġtechnology":3037,"Ġoption":3038,"aging":3039,"Ġpurch":3040,"Re":3041,"Ġlat":3042,"chie":3043,"isl":3044,"Ġrecomm":3045,"uf":3046,"Ġtraining":3047,"Ġeffects":3048,"Ġfast":3049,"Ġ2010":3050,"Ġoccur":3051,"Ġwebsite":3052,"Ġemail":3053,"Ġsens":3054,"ech":3055,"Ġoil":3056,"Ġinflu":3057,"Ġcurrently":3058,"ĠSch":3059,"ĠAdd":3060,"Ġgoal":3061,"Ġscient":3062,"Ġconv":3063,"100":3064,"emy":3065,"Ġdecided":3066,"Ġtravel":3067,"Ġmention":3068,"LL":3069,"03":3070,"Ġelection":3071,"Ġphone":3072,"Ġlooks":3073,"Ġsituation":3074,"Ġcy":3075,"Ġhor":3076,"bed":3077,"ĠCourt":3078,"aily":3079,"aves":3080,"Ġquality":3081,"ĠComp":3082,"wise":3083,"Ġtable":3084,"Ġstaff":3085,"ĠWind":3086,"ett":3087,"Ġtried":3088,"idered":3089,"Ġaddition":3090,"Ġbox":3091,"Ġlack":3092,"arily":3093,"Ġwide":3094,"Ġmid":3095,"Ġboard":3096,"ysis":3097,"Ġanti":3098,"ha":3099,"Ġdig":3100,"ening":3101,"Ġdro":3102,"Con":3103,"68":3104,"Ġslow":3105,"based":3106,"sequ":3107,"Ġpath":3108,"Ex":3109,"aker":3110,"Ġworked":3111,"Ġpen":3112,"Ġengine":3113,"Ġlooked":3114,"ĠSuper":3115,"ĠServ":3116,"Ġvictim":3117,"Un":3118,"Ġproperty":3119,"Ġintrodu":3120,"Ġexecut":3121,"ĠPM":3122,"Le":3123,"Ġcolor":3124,"ĠMore":3125,"Ġ60":3126,"Ġnetwork":3127,"Ġdate":3128,"cul":3129,"idge":3130,"Ġextra":3131,"31":3132,"Ġsle":3133,"67":3134,"Ġwond":3135,"Ġreports":3136,"just":3137,"ĠAustral":3138,"Ġcapital":3139,"Ġens":3140,"Ġcommand":3141,"Ġallowed":3142,"Ġprep":3143,"Ġcapt":3144,"hib":3145,"Ġnumbers":3146,"chan":3147,"Ġfair":3148,"mp":3149,"oms":3150,"Ġreach":3151,"With":3152,"tain":3153,"Ġbroad":3154,"Ġcouple":3155,"ecause":3156,"lying":3157,"ĠFeb":3158,"Ġscreen":3159,"Ġlives":3160,"Ġprior":3161,"ĠCongress":3162,"Ar":3163,"Ġapproach":3164,"Ġemer":3165,"aries":3166,"ĠDis":3167,"serv":3168,"ĠNe":3169,"Ġbuilt":3170,"cies":3171,"Ġrepe":3172,"Ġrules":3173,"force":3174,"ĠPal":3175,"Ġfinancial":3176,"Ġconsidered":3177,"ĠChar":3178,"nces":3179,"ĠIS":3180,"Ġbrought":3181,"Ġbi":3182,"iers":3183,"ĠSim":3184,"OP":3185,"Ġproducts":3186,"Ġvisit":3187,"Ġdocument":3188,"Ġconduct":3189,"Ġcompletely":3190,"ining":3191,"ĠCalif":3192,"ibly":3193,"Ġwritten":3194,"ĠTV":3195,"ements":3196,"Ġdraw":3197,"One":3198,"Ġpublished":3199,"Ġsecret":3200,"rain":3201,"het":3202,"ĠFacebook":3203,"onday":3204,"ĠUp":3205,"Ġsexual":3206,"Ġthous":3207,"ĠPat":3208,"Ġess":3209,"Ġstandard":3210,"Ġarm":3211,"ges":3212,"ection":3213,"Ġfell":3214,"Ġforeign":3215,"ani":3216,"ĠFriday":3217,"Ġregular":3218,"inary":3219,"Ġincreased":3220,"Ġusually":3221,"Ġdemon":3222,"Ġdark":3223,"Ġadditional":3224,"rol":3225,"ĠOf":3226,"Ġproduction":3227,"!!":3228,"undred":3229,"Ġinternational":3230,"idents":3231,"ĠFree":3232,"roup":3233,"Ġrace":3234,"Ġmach":3235,"Ġhuge":3236,"All":3237,"lear":3238,"ovember":3239,"Ġtown":3240,"Ġattention":3241,"ĠOff":3242,"yond":3243,"ĠThen":3244,"field":3245,"Ġterror":3246,"raz":3247,"ĠBo":3248,"Ġmeeting":3249,"ĠPark":3250,"Ġarrest":3251,"Ġfear":3252,"Ġaw":3253,"ĠVal":3254,"oring":3255,"',":3256,"Ġextreme":3257,"arr":3258,"Ġworkers":3259,"After":3260,"Ġ31":3261,"net":3262,"ament":3263,"Ġdirectly":3264,"Ġpopulation":3265,"ube":3266,"ĠOctober":3267,"ĠIN":3268,"ĠJanuary":3269,"59":3270,"ĠDavid":3271,"Ġcross":3272,"cember":3273,"ĠFirst":3274,"Ġmessage":3275,"irit":3276,"Ġnation":3277,"Ġpoll":3278,"isions":3279,"Ġanswer":3280,"ny":3281,"isode":3282,"Ġcarry":3283,"ĠRussia":3284,"Ġhear":3285,"ength":3286,"roy":3287,"Ġnatural":3288,"inally":3289,"Ġdog":3290,"mitted":3291,"Ġtrade":3292,"Ġsubst":3293,"Ġmultiple":3294,"ĠAfric":3295,"Ġfans":3296,"Ġsort":3297,"Ġglobal":3298,"ication":3299,"ĠWed":3300,"ara":3301,"Ġachie":3302,"Ġlanguage":3303,"vey":3304,"Ġtal":3305,"Ġnecessary":3306,"Ġdetails":3307,"Ġsen":3308,"ĠSund":3309,"ĠReg":3310,"ĠRec":3311,"06":3312,"Ġsil":3313,"ressive":3314,"Ġmedical":3315,"unch":3316,"ornia":3317,"Ġund":3318,"fort":3319,"ocks":3320,"ĠMonday":3321,"uesday":3322,"craft":3323,"77":3324,"urt":3325,"Ġver":3326,"ĠHill":3327,"Ġreceive":3328,"Ġmorning":3329,"estern":3330,"Ġbank":3331,"Ġsat":3332,"irth":3333,"ĠHigh":3334,"Ġdevice":3335,"ĠTHE":3336,"ĠCenter":3337,"Ġsafe":3338,"Ġple":3339,"ĠCanada":3340,"Ġsystems":3341,"Ġassist":3342,"Ġsurv":3343,"Ġbattle":3344,"ĠSoc":3345,"vertis":3346,"She":3347,"Ġpaper":3348,"Ġgrowth":3349,"Ġcast":3350,"Sc":3351,"Ġplans":3352,"lled":3353,"Ġparts":3354,"Ġwall":3355,"Ġmovement":3356,"Ġpractice":3357,"imately":3358,"Ġdisplay":3359,"Ġsometimes":3360,"omp":3361,"ĠPaul":3362,"ĠYes":3363,"king":3364,"58":3365,"oly":3366,"Ġson":3367,"Ġavoid":3368,"okes":3369,"ĠJew":3370,"Ġtowards":3371,"asc":3372,"Ġ//":3373,"ĠKore":3374,"Ġtalking":3375,"Ġcorrect":3376,"Ġspent":3377,"icks":3378,"iable":3379,"eared":3380,"Ġterm":3381,"Ġwants":3382,"oming":3383,"Ġut":3384,"Ġdoub":3385,"Ġforces":3386,"Ġplease":3387,"69":3388,"ĠNovember":3389,"atform":3390,"ondon":3391,"Ġones":3392,"Ġimmediately":3393,"ĠRussian":3394,"ĠMet":3395,"Ġdeg":3396,"Ġparents":3397,"CH":3398,"ĠAmericans":3399,"aly":3400,"ĠMod":3401,"Ġshown":3402,"Ġconditions":3403,"Ġstuff":3404,"Ġreb":3405,"ĠYour":3406,"Ġincludes":3407,"nown":3408,"ĠSam":3409,"Ġexperien":3410,"mission":3411,"ĠEven":3412,"aught":3413,"Ġannounced":3414,"ĠRepublican":3415,"Ġdetermin":3416,"Ġdescribed":3417,"ĠCounty":3418,"()":3419,"Ġdoor":3420,"Ġchanged":3421,"Ġneigh":3422,"ĠHere":3423,"Ġclean":3424,"Ġpan":3425,"ĠDecember":3426,"ĠEuropean":3427,"iring":3428,"apter":3429,"Ġclub":3430,"ĠTuesday":3431,"Ġpaid":3432,"ĠNet":3433,"Ġattacks":3434,"Ġcharacters":3435,"Ġalone":3436,"Ġdirector":3437,"dom":3438,"Ġ35":3439,"Ġload":3440,"Ġrout":3441,"ĠCalifornia":3442,"Ġfinally":3443,"Ġrac":3444,"Ġcontr":3445,"Ġexactly":3446,"resh":3447,"pri":3448,"ĠIslam":3449,"Ġnature":3450,"Ġcareer":3451,"Ġlatest":3452,"Ġconvers":3453,"ĠSl":3454,"pose":3455,"cient":3456,"ĠInc":3457,"ivity":3458,"88":3459,"ĠAtt":3460,"ĠMor":3461,"nesday":3462,"Ġweight":3463,"ken":3464,"Ġnote":3465,"Ġteams":3466,"Ġ\\":3467,"airs":3468,"ĠGreen":3469,"Ġhundred":3470,"onent":3471,"Ġstreng":3472,"Ġconsist":3473,"icated":3474,"Ġregul":3475,"Ġlic":3476,"astic":3477,"Ġten":3478,"ursday":3479,"elligence":3480,"ously":3481,"ĠUK":3482,"BI":3483,"Ġcosts":3484,"Ġindepend":3485,"ĠAP":3486,"Ġnormal":3487,"Ġhom":3488,"Ġobvious":3489,"Ġswe":3490,"Ġstar":3491,"Ġready":3492,"acher":3493,"Ġimplement":3494,"gest":3495,"Ġsong":3496,"ĠGet":3497,"ĠLab":3498,"Ġinteresting":3499,"using":3500,"Ġgiving":3501,"ĠSunday":3502,"Ġetc":3503,"Ġmiddle":3504,"Ġremember":3505,"right":3506,"osition":3507,"utions":3508,"Ġmax":3509,"46":3510,"Ġyourself":3511,"Ġdemand":3512,"Ġtreatment":3513,"Ġdanger":3514,"ĠCons":3515,"Ġguy":3516,"ĠBritish":3517,"Ġphysical":3518,"Ġrelated":3519,"Ġremain":3520,"Ġcouldn":3521,"Ġrefer":3522,"Ġcitiz":3523,"box":3524,"ENT":3525,"board":3526,"Ġinn":3527,"IG":3528,"ero":3529,"ĠStreet":3530,"ospital":3531,"rench":3532,"chers":3533,"Ġstra":3534,"OL":3535,"ager":3536,"ĠAN":3537,"Ġeasily":3538,"IA":3539,"enge":3540,"iny":3541,"Ġclos":3542,"ocked":3543,"Ġuses":3544,"ĠCoun":3545,"Im":3546,"uild":3547,"??":3548,"more":3549,"Ġang":3550,"Ġwrite":3551,"olute":3552,"57":3553,"Ġleader":3554,"Ġreading":3555,"":3784,"Ġfigure":3785,"Ġdisapp":3786,"enty":3787,"Ġsoftware":3788,"Ġult":3789,"Ġofficers":3790,"New":3791,"Is":3792,"Ġremains":3793,"ĠIndia":3794,"Ġpsych":3795,"rief":3796,"Ġcat":3797,"esc":3798,"Ġobserv":3799,"Ġstage":3800,"ĠDark":3801,"Ġenter":3802,"change":3803,"Ġpassed":3804,"Ġdespite":3805,"ĠOut":3806,"Ġmovie":3807,"rs":3808,"Ġvoice":3809,"mine":3810,"ĠPlay":3811,"Ġtoward":3812,"ĠTer":3813,"Ġregion":3814,"Ġvalues":3815,"orters":3816,"Ġmount":3817,"Ġofficer":3818,"ĠOther":3819,"ban":3820,"Ġhous":3821,"wood":3822,"room":3823,"IV":3824,"ĠSun":3825,"see":3826,"ĠOver":3827,"rog":3828,"90":3829,"Ġlay":3830,"ĠTur":3831,"awn":3832,"Ġpressure":3833,"ĠSub":3834,"Ġbooks":3835,"edom":3836,"ĠSand":3837,"AA":3838,"ago":3839,"Ġreasons":3840,"ford":3841,"Ġactivity":3842,"UT":3843,"Now":3844,"ĠSenate":3845,"cell":3846,"night":3847,"Ġcalls":3848,"inter":3849,"Ġletter":3850,"ĠRob":3851,"ĠJe":3852,"Ġchoose":3853,"ĠLaw":3854,"Get":3855,"Be":3856,"Ġrob":3857,"Ġtypes":3858,"Ġplatform":3859,"Ġquarter":3860,"RA":3861,"ĠTime":3862,"Ġmaybe":3863,"ĠCr":3864,"95":3865,"pre":3866,"Ġmoving":3867,"Ġlif":3868,"Ġgold":3869,"Ġsom":3870,"Ġpatients":3871,"Ġtruth":3872,"ĠKe":3873,"urance":3874,"antly":3875,"mar":3876,"Ġcharge":3877,"ĠGreat":3878,"Ġcele":3879,"--------------------------------":3880,"Ġrock":3881,"roid":3882,"ancy":3883,"Ġcredit":3884,"aud":3885,"By":3886,"ĠEvery":3887,"Ġmoved":3888,"inger":3889,"ribution":3890,"Ġnames":3891,"Ġstraight":3892,"ĠHealth":3893,"ĠWell":3894,"Ġfeature":3895,"Ġrule":3896,"Ġsche":3897,"inated":3898,"ĠMichael":3899,"berg":3900,"41":3901,"iled":3902,"band":3903,"Ġclick":3904,"ĠAngel":3905,"onents":3906,"ÂŃ":3907,"ĠIraq":3908,"ĠSaturday":3909,"Ġaware":3910,"part":3911,"Ġpattern":3912,"OW":3913,"ĠLet":3914,"Ġgrad":3915,"igned":3916,"Ġassociated":3917,"Ġstyle":3918,"no":3919,"iation":3920,"aith":3921,"ilies":3922,"Ġstories":3923,"uration":3924,"Ġindividuals":3925,"Ġâ̦":3926,"miss":3927,"ĠAssoci":3928,"ishing":3929,"aby":3930,"Ġsummer":3931,"ĠBen":3932,"Ġ32":3933,"Ġarch":3934,"uty":3935,"ĠTexas":3936,"hol":3937,"Ġfully":3938,"Ġmill":3939,"Ġfollowed":3940,"ĠBill":3941,"ĠIndian":3942,"ĠSecret":3943,"ĠBel":3944,"ĠFebruary":3945,"Ġjobs":3946,"Ġseemed":3947,"ĠGovern":3948,"ipped":3949,"Ġreality":3950,"Ġlines":3951,"Ġpark":3952,"Ġmeasure":3953,"ĠOur":3954,"IM":3955,"Ġbrother":3956,"Ġgrowing":3957,"Ġban":3958,"Ġestim":3959,"Ġcry":3960,"ĠSchool":3961,"Ġmechan":3962,"ĠOF":3963,"ĠWindows":3964,"Ġrates":3965,"ĠOh":3966,"Ġpositive":3967,"Ġculture":3968,"istics":3969,"ica":3970,"Ġhar":3971,"ya":3972,"itely":3973,"ipp":3974,"Ġmap":3975,"encies":3976,"ĠWilliam":3977,"II":3978,"akers":3979,"56":3980,"ĠMart":3981,"ĠRem":3982,"Ġaltern":3983,"itude":3984,"Ġcoach":3985,"rowd":3986,"Don":3987,"Ġkids":3988,"Ġjournal":3989,"Ġcorpor":3990,"Ġfalse":3991,"Ġweb":3992,"Ġsleep":3993,"Ġcontain":3994,"Ġsto":3995,"Ġbed":3996,"iverse":3997,"ĠRich":3998,"ĠChinese":3999,"Ġpun":4000,"Ġmeant":4001,"known":4002,"Ġnotice":4003,"Ġfavorite":4004,"aven":4005,"Ġcondition":4006,"Ġpurpose":4007,"))":4008,"Ġorganization":4009,"Ġchalleng":4010,"Ġmanufact":4011,"Ġsusp":4012,"ĠAc":4013,"Ġcritic":4014,"unes":4015,"uclear":4016,"Ġmer":4017,"vention":4018,"Ġ80":4019,"Ġmist":4020,"ĠUs":4021,"ĠTor":4022,"http":4023,"olf":4024,"Ġlarger":4025,"Ġadvant":4026,"Ġresear":4027,"Ġactions":4028,"ml":4029,"Ġkept":4030,"Ġaim":4031,",'":4032,"col":4033,"Ġbenefits":4034,"ifying":4035,"Ġactual":4036,"ĠInternational":4037,"Ġvehicle":4038,"Ġchief":4039,"Ġefforts":4040,"ĠLeague":4041,"ĠMost":4042,"Ġwait":4043,"Ġadult":4044,"Ġoverall":4045,"Ġspeech":4046,"Ġhighly":4047,"Ġfemale":4048,"Ġerror":4049,"Ġeffective":4050,"54":4051,"Ġencour":4052,"well":4053,"Ġfailed":4054,"Ġconserv":4055,"Ġprograms":4056,"Ġtrou":4057,"Ġahead":4058,"500":4059,"vertisement":4060,"IP":4061,"ĠFound":4062,"pir":4063,"Ġ%":4064,"Ġcrime":4065,"ander":4066,"Ġlocation":4067,"ĠIran":4068,"Ġbehavior":4069,"azing":4070,"Ġrare":4071,"Ġemb":4072,"Ġcaused":4073,"Ġship":4074,"Ġactive":4075,"Ġcontribut":4076,"Ġgreen":4077,"Ġacqu":4078,"Ġreflect":4079,"venue":4080,"Ġfirm":4081,"Ġbirth":4082,"].":4083,"Ġclearly":4084,"Ġemot":4085,"Ġagency":4086,"riage":4087,"Ġmemory":4088,"98":4089,"SA":4090,"ĠSee":4091,"acing":4092,"CC":4093,"Ġbiggest":4094,"Ġrap":4095,"Ġbasic":4096,"Ġband":4097,"eat":4098,"Ġsuspect":4099,"ĠMac":4100,"Ġ90":4101,"mark":4102,"istan":4103,"Ġspread":4104,"ams":4105,"ki":4106,"asy":4107,"rav":4108,"ĠRober":4109,"Ġdemonstr":4110,"rated":4111,"Ġabsolute":4112,"Ġplaces":4113,"Ġimpl":4114,"ibrary":4115,"Ġcards":4116,"Ġdestroy":4117,"Ġvirt":4118,"vere":4119,"Ġappeared":4120,"yan":4121,"point":4122,"Ġbeg":4123,"Ġtemper":4124,"spe":4125,"anted":4126,"ears":4127,"ĠDirect":4128,"Ġlength":4129,"Ġblog":4130,"amb":4131,"Ġinteg":4132,"Ġresources":4133,"acc":4134,"iful":4135,"Ġspot":4136,"Ġforced":4137,"Ġthousands":4138,"ĠMinister":4139,"Ġqual":4140,"ĠFrench":4141,"atically":4142,"Ġgenerally":4143,"Ġdrink":4144,"Ġthus":4145,"IL":4146,"odes":4147,"Ġappropri":4148,"ĠRead":4149,"Ġwhom":4150,"Ġeye":4151,"Ġcollege":4152,"Ġ45":4153,"irection":4154,"Ġensure":4155,"Ġapparent":4156,"iders":4157,"Ġreligious":4158,"Ġminor":4159,"olic":4160,"Ġtro":4161,"ĠWhy":4162,"ribute":4163,"met":4164,"Ġprimary":4165,"Ġdeveloped":4166,"Ġpeace":4167,"Ġskin":4168,"ste":4169,"ava":4170,"Ġblue":4171,"Ġfamilies":4172,"Ġir":4173,"Ġapply":4174,"Ġinform":4175,"ĠSmith":4176,"CT":4177,"ii":4178,"Ġlimit":4179,"Ġresist":4180,"................":4181,"umn":4182,"Ġconflic":4183,"Ġtwe":4184,"udd":4185,"ĠTom":4186,"Ġliter":4187,"que":4188,"bon":4189,"Ġhair":4190,"Ġeventually":4191,"Ġpus":4192,"Ġhelped":4193,"Ġagg":4194,"orney":4195,"ĠApple":4196,"Ġfit":4197,"ĠSur":4198,"Ġprem":4199,"Ġsales":4200,"Ġseconds":4201,"Ġstrength":4202,"Ġfeeling":4203,"¿½":4204,"Ġtour":4205,"Ġknows":4206,"oom":4207,"Ġexerc":4208,"Ġsomew":4209,"�":4210,">>":4211,"Ġspokes":4212,"Ġideas":4213,"Ġregist":4214,"soft":4215,"ĠDel":4216,"ĠPC":4217,"Ġpropos":4218,"Ġlaunch":4219,"Ġbottom":4220,"TH":4221,"ĠPlease":4222,"vest":4223,"itz":4224,"ĠInter":4225,"Ġscript":4226,"Ġrat":4227,"arning":4228,"Ġil":4229,"ĠJer":4230,"ĠAre":4231,"Ġwhatever":4232,"oken":4233,"cience":4234,"Ġmode":4235,"Ġagree":4236,"Ġsources":4237,"Ġinitial":4238,"Ġrestrict":4239,"Ġwonder":4240,"usion":4241,"####":4242,"ĠSil":4243,"ville":4244,"Ġburn":4245,"tw":4246,"asion":4247,"Ġ£":4248,"Ġnor":4249,"uing":4250,"Ġreached":4251,"Ġsun":4252,"Ġcateg":4253,"igration":4254,"Ġcook":4255,"Ġpromot":4256,"Ġmale":4257,"Ġclimate":4258,"Ġfix":4259,"Ġalleged":4260,"UR":4261,"alled":4262,"Ġimages":4263,"Cont":4264,"ota":4265,"Ġschools":4266,"ios":4267,"Ġdrop":4268,"Ġstream":4269,"ĠMo":4270,"Ġpreviously":4271,"aling":4272,"Ġpet":4273,"Ġdouble":4274,"Ġ(@":4275,"annel":4276,"Ġdefault":4277,"ties":4278,"Ġrank":4279,"ĠDec":4280,"ĠCouncil":4281,"Ġweapon":4282,"Ġstock":4283,"Ġanaly":4284,"ĠStr":4285,"Ġpicture":4286,"ĠPolice":4287,"ference":4288,"Ġcentury":4289,"Ġcitizens":4290,"Ġonto":4291,"Ġexpand":4292,"Ġhero":4293,"ĠSol":4294,"Ġwild":4295,"Ġupdate":4296,"Ġcustomers":4297,"ront":4298,"def":4299,"Ġlik":4300,"Ġcriminal":4301,"ĠChristian":4302,"SP":4303,"76":4304,"Ġleaving":4305,"Ġotherwise":4306,"ĠDist":4307,"Ġbasis":4308,"52":4309,"53":4310,"icip":4311,"ĠBer":4312,"Ġrecommend":4313,"Ġfloor":4314,"Ġcrowd":4315,"oles":4316,"Ġ70":4317,"Ġcentral":4318,"ĠEv":4319,"Ġdream":4320,"Ġdownload":4321,"Ġconfir":4322,"ĠThom":4323,"Ġwindow":4324,"Ġhappens":4325,"Ġunit":4326,"Ġtend":4327,"Ġspl":4328,"Ġbecomes":4329,"Ġfighting":4330,"Ġpredict":4331,"ĠPress":4332,"ĠPower":4333,"Ġheavy":4334,"aked":4335,"Ġfan":4336,"orter":4337,"ategy":4338,"BA":4339,"izes":4340,"Ġspend":4341,"Here":4342,"Ġ2007":4343,"Ġadop":4344,"ĠHam":4345,"Ġfootball":4346,"ĠPort":4347,"oday":4348,"51":4349,"ampions":4350,"Ġtransfer":4351,"ht":4352,"Ġ38":4353,"term":4354,"acity":4355,"Ġbur":4356,"],":4357,"ternal":4358,"rig":4359,"but":4360,"Ġtherefore":4361,"ĠBecause":4362,"resp":4363,"rey":4364,"Ġmission":4365,"Some":4366,"Ġnoted":4367,"Ġassum":4368,"Ġdisease":4369,"Ġedit":4370,"Ġprogress":4371,"rd":4372,"ĠBrown":4373,"ocal":4374,"Ġadding":4375,"Ġraised":4376,"ĠAny":4377,"Ġtick":4378,"Ġseeing":4379,"ĠPeople":4380,"Ġagreement":4381,"Ġserver":4382,"Ġwat":4383,"Ġdebate":4384,"Ġsupposed":4385,"iling":4386,"Ġlargest":4387,"Ġsuccessful":4388,"ĠPri":4389,"ĠDemocratic":4390,"Ġjump":4391,"ĠSyria":4392,"Ġowners":4393,"Ġoffers":4394,"Ġshooting":4395,"Ġeffic":4396,"sey":4397,"Ġhaven":4398,"verse":4399,"tered":4400,"ĠLight":4401,"imal":4402,"ĠBig":4403,"Ġdefend":4404,"Ġbeat":4405,"Ġrecords":4406,"%)":4407,"Ġscen":4408,"Ġemployees":4409,"Ġdevices":4410,"hem":4411,"Ġcommer":4412,"ĠMex":4413,"Ġbenefit":4414,"ĠProf":4415,"Ġilleg":4416,"Ġsurface":4417,"ĠAlso":4418,"Ġharm":4419,"ingly":4420,"wide":4421,"ĠAlex":4422,"Ġshut":4423,"ĠCur":4424,"Ġlose":4425,"pm":4426,"Ġchallenge":4427,"semb":4428,"Ġstation":4429,"Ġintelligence":4430,"Ġaccur":4431,"ĠFlor":4432,"Ġrequires":4433,"ĠMal":4434,"bum":4435,"Ġhospital":4436,"Ġspirit":4437,"Ġoffered":4438,"Ġproduce":4439,"ĠCommun":4440,"Ġcreating":4441,"Ġcris":4442,"spect":4443,"Ġended":4444,"Ġdaily":4445,"Ġvoters":4446,"lands":4447,"ias":4448,"ih":4449,"ona":4450,"Ġsmart":4451,"ĠOffice":4452,"ĠLord":4453,"rial":4454,"ĠInternet":4455,"Ġcircum":4456,"Ġextremely":4457,"'.":4458,"Ġopinion":4459,"ĠMil":4460,"Ġgain":4461,"BS":4462,"ĠFin":4463,"yp":4464,"Ġuseful":4465,"Ġbudget":4466,"Ġcomfort":4467,"isf":4468,"Ġbackground":4469,"eline":4470,"Ġepisode":4471,"Ġenemy":4472,"Ġtrial":4473,"Ġestablish":4474,"date":4475,"ĠCap":4476,"Ġcontinues":4477,"Ġshowing":4478,"ĠUnion":4479,"with":4480,"Ġposted":4481,"ĠSystem":4482,"Ġeat":4483,"rian":4484,"Ġrise":4485,"ĠGermany":4486,"ils":4487,"Ġsigned":4488,"Ġvill":4489,"Ġgrand":4490,"mor":4491,"ĠEngland":4492,"Ġprojects":4493,"umber":4494,"Ġconference":4495,"za":4496,"Ġresponsible":4497,"ĠArab":4498,"Ġlearned":4499,"âĢĶâĢĶ":4500,"ipping":4501,"ĠGeorge":4502,"OC":4503,"Ġreturned":4504,"ĠAustralia":4505,"Ġbrief":4506,"Qu":4507,"Ġbrand":4508,"illing":4509,"abled":4510,"Ġhighest":4511,"Ġtrain":4512,"ĠCommission":4513,"while":4514,"Ġnom":4515,"ception":4516,"Ġmut":4517,"ĠBlue":4518,"Ġincident":4519,"vant":4520,"86":4521,"ĠID":4522,"Ġnuclear":4523,"74":4524,"ĠLike":4525,"ĠRE":4526,"ĠMicro":4527,"li":4528,"mail":4529,"Ġcharges":4530,"89":4531,"Ġadjust":4532,"ado":4533,"Ġearth":4534,"NA":4535,"Ġprices":4536,"PA":4537,"Ġdraft":4538,"Ġruns":4539,"Ġcandidate":4540,"enses":4541,"Ġmanagement":4542,"ĠPhil":4543,"ĠMiss":4544,"Ġteach":4545,"gram":4546,"Ġunderstanding":4547,"ait":4548,"icago":4549,"Add":4550,"ĠEp":4551,"secut":4552,"Ġseparate":4553,"Ġinstance":4554,"Ġeth":4555,"Ġunless":4556,"********":4557,"ĠFore":4558,"inate":4559,"Ġoperations":4560,"Sp":4561,"Ġfaith":4562,"gar":4563,"ĠChurch":4564,"ronic":4565,"Ġconfig":4566,"osure":4567,"Ġactivities":4568,"Ġtraditional":4569,"Ġ36":4570,"Ġdirection":4571,"Ġmachine":4572,"Ġsurround":4573,"Ġpush":4574,"unction":4575,"ĠEU":4576,"Ġeasier":4577,"Ġargument":4578,"GB":4579,"Ġmicro":4580,"Ġspending":4581,"izations":4582,"Ġtheory":4583,"adow":4584,"Ġcalling":4585,"ĠLast":4586,"Ġder":4587,"Ġinfluence":4588,"Ġcommit":4589,"Ġphoto":4590,"Ġunc":4591,"istry":4592,"gn":4593,"aste":4594,"acks":4595,"Ġdisp":4596,"ady":4597,"do":4598,"ĠGood":4599,"Ġ`":4600,"Ġwish":4601,"Ġrevealed":4602,"³³":4603,"lig":4604,"Ġenforce":4605,"ĠCommittee":4606,"Ġchem":4607,"Ġmiles":4608,"Ġinterested":4609,"Ġsolution":4610,"icy":4611,"inct":4612,"Ġ->":4613,"ĠDet":4614,"Ġremoved":4615,"Ġcompar":4616,"eah":4617,"Ġplant":4618,"ĠSince":4619,"Ġachieve":4620,"Ġadvantage":4621,"Ġslightly":4622,"bing":4623,"Ġplaced":4624,"under":4625,"2015":4626,"ĠMad":4627,"Ġtim":4628,"oses":4629,"Ġcru":4630,"ĠRock":4631,"Ġmostly":4632,"Ġnegative":4633,"Ġsetting":4634,"Ġproduced":4635,"Ġmur":4636,"Ġconnection":4637,"ĠMer":4638,"Ġdriver":4639,"Ġexecutive":4640,"Ġassault":4641,"Ġborn":4642,"ĠVer":4643,"tained":4644,"Ġstructure":4645,"Ġreduce":4646,"Ġdecades":4647,"Ġded":4648,"uke":4649,"ĠMany":4650,"idden":4651,"Ġleague":4652,"Se":4653,"Ġjoin":4654,"Ġdisco":4655,"Ġdie":4656,"cks":4657,"actions":4658,"Ġassess":4659,"agn":4660,"Ġgoals":4661,"ours":4662,"IR":4663,"Ġsenior":4664,"iller":4665,"mod":4666,"ipment":4667,"ocol":4668,"uy":4669,"ĠQue":4670,"Ġparties":4671,"irgin":4672,"Ġlearning":4673,"itable":4674,"Ġstreet":4675,"Ġcamera":4676,"App":4677,"Ġskills":4678,"bre":4679,"cious":4680,"Ġcelebr":4681,"ĠFranc":4682,"Ġexisting":4683,"Ġwilling":4684,"lor":4685,"Ġid":4686,"ĠSpace":4687,"Ġcritical":4688,"ĠLa":4689,"ortunately":4690,"Ġserve":4691,"Ġcold":4692,"Ġspecies":4693,"TS":4694,"Ġanimals":4695,"ĠBay":4696,"Ġolder":4697,"ĠUnder":4698,"estic":4699,"ĠTre":4700,"Ġteacher":4701,"Ġprefer":4702,"vis":4703,"Ġthread":4704,"ĠMatt":4705,"Ġmanager":4706,"ãĥ»":4707,"Ġprofessional":4708,"ĠVol":4709,"Ġnotes":4710,"These":4711,"ula":4712,"Ġfresh":4713,"ented":4714,"uzz":4715,"edy":4716,"clusion":4717,"ĠRel":4718,"Ġdoubt":4719,"EO":4720,"Ġopened":4721,"ĠBit":4722,"Advertisement":4723,"Ġguess":4724,"ĠUN":4725,"Ġsequ":4726,"Ġexplain":4727,"otten":4728,"Ġattract":4729,"aks":4730,"Ġstring":4731,"Ġcontext":4732,"ossible":4733,"ĠRepublicans":4734,"Ġsolid":4735,"Ġcities":4736,"Ġasking":4737,"Ġrandom":4738,"ups":4739,"uries":4740,"arant":4741,"dden":4742,"gl":4743,"ĠFlorida":4744,"Ġdepend":4745,"ĠScott":4746,"Ġ33":4747,"ĠiT":4748,"icon":4749,"Ġmentioned":4750,"Ġ2000":4751,"Ġclaimed":4752,"Ġdefinitely":4753,"ulf":4754,"Ġcore":4755,"Ġopening":4756,"ĠConst":4757,"which":4758,"ĠTra":4759,"AG":4760,"72":4761,"Ġbelieved":4762,"ada":4763,"Ġ48":4764,"ĠSecurity":4765,"yright":4766,"ĠPet":4767,"ĠLou":4768,"Ġholding":4769,"================":4770,"Ġice":4771,"Ġbrow":4772,"Ġauthorities":4773,"host":4774,"word":4775,"Ġscore":4776,"ĠDiv":4777,"Ġcells":4778,"Ġtransl":4779,"Ġneighbor":4780,"Ġremove":4781,"uct":4782,"Ġdistrict":4783,"ĠAccording":4784,"Ġworse":4785,"Ġconcerns":4786,"Ġpresidential":4787,"Ġpolicies":4788,"ĠHall":4789,"73":4790,"Ġhus":4791,"AY":4792,"Ġ2006":4793,"ĠJud":4794,"Ġindependent":4795,"ĠJustice":4796,"iliar":4797,"print":4798,"ighter":4799,"Ġprotection":4800,"zen":4801,"Ġsudden":4802,"house":4803,"ĠJes":4804,"PR":4805,"ĠInf":4806,"Ġbul":4807,"Ġ_":4808,"ĠService":4809,"ĠPR":4810,"Ġstrategy":4811,"ffect":4812,"Ġgirls":4813,"Ġmissing":4814,"oyal":4815,"ĠTeam":4816,"ulated":4817,"Ġdat":4818,"Ġpolitics":4819,"abor":4820,"According":4821,"Ġspell":4822,"Ġgraph":4823,"orthern":4824,"TC":4825,"Ab":4826,"Ġlabor":4827,"isher":4828,"Ġkick":4829,"ĠiTunes":4830,"Ġsteps":4831,"poses":4832,"Ġsmaller":4833,"En":4834,"bert":4835,"Ġroll":4836,"Ġresearchers":4837,"Ġclosed":4838,"Ġtransport":4839,"Ġlawy":4840,"________________":4841,"ĠChicago":4842,"Ġaspect":4843,"Ġnone":4844,"Ġmarriage":4845,"96":4846,"Ġelements":4847,"ĠFre":4848,"ĠSal":4849,"Ġdram":4850,"FC":4851,"top":4852,"equ":4853,"Ġhearing":4854,"Ġsupported":4855,"Ġtesting":4856,"cohol":4857,"Ġmassive":4858,"Ġstick":4859,"Ġguard":4860,"isco":4861,"phone":4862,"From":4863,"However":4864,"Ġborder":4865,"Ġcopy":4866,"ography":4867,"list":4868,"71":4869,"Ġowner":4870,"class":4871,"ruit":4872,"rate":4873,"ĠOnce":4874,"Ġdigital":4875,"Ġtask":4876,"ERS":4877,"Ġincred":4878,"tes":4879,"++":4880,"ĠFrance":4881,"Ġbreat":4882,"owl":4883,"Ġissued":4884,"ĠWestern":4885,"Ġdetect":4886,"Ġpartners":4887,"Ġshared":4888,"ĠCall":4889,"Ġcancer":4890,"ache":4891,"ribe":4892,"Ġexplained":4893,"Ġheat":4894,"{\"":4895,"Ġinvestment":4896,"ĠBook":4897,"Ġwood":4898,"Ġtools":4899,"ĠAlthough":4900,"Ġbelief":4901,"Ġcrisis":4902,"Ġge":4903,"ĠMP":4904,"Ġoperation":4905,"type":4906,"~~":4907,"ga":4908,"Ġcontains":4909,"anta":4910,"Ġexpress":4911,"ĠGroup":4912,"ĠJournal":4913,"ka":4914,"Ġamb":4915,"ĠUSA":4916,"Ġfinding":4917,"Ġfunding":4918,"how":4919,"Ġestablished":4920,"ideos":4921,"Ġdegree":4922,"Ġdangerous":4923,"anging":4924,"Ġfreedom":4925,"pport":4926,"outhern":4927,"Ġchurch":4928,"Ġcatch":4929,"ĠTwo":4930,"Ġpresence":4931,"ĠGuard":4932,"Up":4933,"Ġauthority":4934,"ĠProject":4935,"Ġbutton":4936,"Ġconsequ":4937,"Ġvalid":4938,"Ġweak":4939,"Ġstarts":4940,"Ġreference":4941,"ĠMem":4942,"\")":4943,"UN":4944,"orage":4945,"ĠOpen":4946,"Ġcollection":4947,"ym":4948,"gency":4949,"Ġbeautiful":4950,"ros":4951,"Ġtells":4952,"Ġwaiting":4953,"nel":4954,"Ġproviding":4955,"ĠDemocrats":4956,"Ġdaughter":4957,"Ġmaster":4958,"Ġpurposes":4959,"ĠJapanese":4960,"Ġequal":4961,"Ġturns":4962,"Ġdocuments":4963,"Ġwatching":4964,"Res":4965,"Ġran":4966,"2014":4967,"Ġreject":4968,"ĠKorea":4969,"Ġvictims":4970,"Level":4971,"erences":4972,"Ġwitness":4973,"Ġ34":4974,"Ġreform":4975,"coming":4976,"Ġoccup":4977,"Ġcaught":4978,"Ġtraffic":4979,"ading":4980,"Ġmodels":4981,"ario":4982,"Ġserved":4983,"Ġbatter":4984,"uate":4985,"ĠSecretary":4986,"Ġagreed":4987,"Ġtruly":4988,"ynam":4989,"ĠRet":4990,"Ġunits":4991,"ĠResearch":4992,"hand":4993,"azine":4994,"ĠMike":4995,"Ġvariety":4996,"otal":4997,"Ġamazing":4998,"Ġconfirmed":4999,"Ġentirely":5000,"Ġpurchase":5001,"Ġelement":5002,"Ġcash":5003,"Ġdetermine":5004,"De":5005,"Ġcars":5006,"ĠWall":5007,"âĸ":5008,"Ġviews":5009,"Ġdrugs":5010,"Ġdepartment":5011,"ĠStep":5012,"uit":5013,"Ġ39":5014,"asure":5015,"ĠClass":5016,"Ġcovered":5017,"ĠBank":5018,"Ġmere":5019,"uana":5020,"Ġmulti":5021,"Ġmix":5022,"Ġunlike":5023,"levision":5024,"Ġstopped":5025,"Ġsem":5026,"ĠGal":5027,"ules":5028,"Ġwel":5029,"ĠJohnson":5030,"la":5031,"Ġskill":5032,"Ġbecoming":5033,"rie":5034,"Ġappropriate":5035,"fe":5036,"ellow":5037,"ĠProt":5038,"ulate":5039,"ocation":5040,"Ġweekend":5041,"odies":5042,"Ġsites":5043,"Ġanimal":5044,"ĠTim":5045,"Ġscale":5046,"Ġcharged":5047,"Ġinstruct":5048,"illa":5049,"Ġmethods":5050,"Ġcert":5051,"Ġjudge":5052,"ĠHel":5053,"Ġdollars":5054,"Ġstanding":5055,"ĠSqu":5056,"Ġdebt":5057,"liam":5058,"Ġdriving":5059,"ĠSum":5060,"ĠEdition":5061,"Ġalbum":5062,"andon":5063,"IF":5064,"ĠUk":5065,"63":5066,"ader":5067,"Ġcommercial":5068,"esh":5069,"ĠGovernment":5070,"Ġdiscovered":5071,"Ġoutput":5072,"ĠHillary":5073,"ĠCarol":5074,"Ġ2005":5075,"Ġabuse":5076,"ancing":5077,"Ġswitch":5078,"Ġannual":5079,"Tw":5080,"Ġstated":5081,"agement":5082,"inner":5083,"Ġdemocr":5084,"Ġresidents":5085,"Ġallowing":5086,"Ġfactors":5087,"odd":5088,"Ġfuck":5089,"emies":5090,"Ġoccurred":5091,"oti":5092,"Ġnorth":5093,"ĠPublic":5094,"Ġinjury":5095,"Ġinsurance":5096,"CL":5097,"olly":5098,"ãĢ":5099,"Ġrepeated":5100,"Ġarms":5101,"anged":5102,"Ġconstruction":5103,"Ġfle":5104,"PU":5105,"icians":5106,"Ġforms":5107,"ĠMcC":5108,"antic":5109,"Ġmental":5110,"pire":5111,"Ġequipment":5112,"Ġfant":5113,"Ġdiscussion":5114,"Ġregarding":5115,"kin":5116,"arp":5117,"Ġchair":5118,"ogue":5119,"Ġproceed":5120,"ĠId":5121,"Our":5122,"Ġmurder":5123,"Man":5124,"Ġ49":5125,"asp":5126,"Ġsupply":5127,"Ġinput":5128,"Ġwealth":5129,"liament":5130,"Ġproced":5131,"orial":5132,"ĠStat":5133,"ĠNFL":5134,"hens":5135,"ĠInstitute":5136,"Ġputting":5137,"ournament":5138,"etic":5139,"Ġlocated":5140,"Ġkid":5141,"eria":5142,"run":5143,"Ġprinc":5144,"Ġ!":5145,"going":5146,"ĠBet":5147,"Ġclot":5148,"Ġtelling":5149,"Ġproposed":5150,"iot":5151,"orry":5152,"Ġfunds":5153,"gment":5154,"ĠLife":5155,"Ġbaby":5156,"ĠBack":5157,"Ġspoke":5158,"Image":5159,"Ġearn":5160,"ĠAT":5161,"gu":5162,"Ġexchange":5163,"ĠLin":5164,"oving":5165,"Ġpair":5166,"More":5167,"azon":5168,"Ġarrested":5169,"Ġkilling":5170,"can":5171,"ĠCard":5172,"yd":5173,"Ġidentified":5174,"Ġmobile":5175,"Ġthanks":5176,"onym":5177,"ĠForm":5178,"Ġhundreds":5179,"ĠChris":5180,"ĠCat":5181,"Ġtrend":5182,"hat":5183,"ĠAv":5184,"oman":5185,"Ġelectric":5186,"ĠWil":5187,"SE":5188,"Of":5189,"Ġrestaur":5190,"oted":5191,"Ġtrig":5192,"Ġnine":5193,"Ġbomb":5194,"Why":5195,"¯":5196,"Ġcoverage":5197,"Ġappeal":5198,"ĠRobert":5199,"ĠSup":5200,"Ġfinished":5201,"Ġflow":5202,"Ġdeliver":5203,"Ġcalcul":5204,"Ġphotos":5205,"Ġphil":5206,"Ġpieces":5207,"Ġappre":5208,"kes":5209,"Ġrough":5210,"Do":5211,"Ġpartner":5212,"Ġconcerned":5213,"Ġ37":5214,"ĠGen":5215,"Col":5216,"ctors":5217,"Ġ=>":5218,"state":5219,"Ġsuggested":5220,"ĠForce":5221,"CE":5222,"Ġherself":5223,"ĠPlan":5224,"works":5225,"ooth":5226,"rency":5227,"Ġcorner":5228,"Ġhusband":5229,"Ġinternet":5230,"ĠAut":5231,"ems":5232,"osen":5233,"ĠAtl":5234,"gen":5235,"Ġbalance":5236,"62":5237,"Ġsounds":5238,"text":5239,"Ġarr":5240,"oves":5241,"Ġmillions":5242,"Ġradio":5243,"Ġsatisf":5244,"ĠDam":5245,"Mr":5246,"Go":5247,"Spe":5248,"Ġcombat":5249,"rant":5250,"ĠGree":5251,"Ġfuel":5252,"Ġdistance":5253,"Ġtests":5254,"Ġdecre":5255,"ĠEr":5256,"Ġmanaged":5257,"DS":5258,"Ġtit":5259,"Ġmeasures":5260,"ĠLiber":5261,"Ġattend":5262,"ashed":5263,"ĠJose":5264,"ĠNight":5265,"dit":5266,"ĠNov":5267,"ĠEnd":5268,"outs":5269,"Ġgeneration":5270,"Ġadvoc":5271,"yth":5272,"Ġconversation":5273,"ĠSky":5274,"active":5275,"cel":5276,"rier":5277,"ĠFrank":5278,"Ġgender":5279,"Ġconcent":5280,"Ġcarried":5281,"anda":5282,"ĠVirgin":5283,"Ġarrived":5284,"icide":5285,"aded":5286,"Ġfailure":5287,"Ġminimum":5288,"lets":5289,"Ġworst":5290,"Ġkeeping":5291,"Ġintended":5292,"Ġillegal":5293,"Ġsubsc":5294,"Ġdetermined":5295,"Ġtrip":5296,"Yes":5297,"Ġraise":5298,"Ġ~":5299,"Ġfeels":5300,"Ġpackage":5301,"ĠJo":5302,"hi":5303,"2016":5304,"real":5305,"Ġfra":5306,"Ġsymb":5307,"Me":5308,"ucky":5309,"pret":5310,"ĠKh":5311,"ĠEdit":5312,"ĠWeb":5313,"emic":5314,"ĠColor":5315,"Ġjustice":5316,"Int":5317,"Ġfarm":5318,"cknow":5319,"\">":5320,"eless":5321,"Ġreduced":5322,"Ġ500":5323,"xx":5324,"ĠRad":5325,"ĠWood":5326,"Ġclin":5327,"Ġhyp":5328,"iler":5329,"ura":5330,"kins":5331,"85":5332,"61":5333,"ĠTheir":5334,"ĠMary":5335,"Ġsan":5336,"Ġnovel":5337,"ĠWho":5338,"Ġcapacity":5339,"Ġimpossible":5340,"Ġplays":5341,"Ġminister":5342,"ijuana":5343,"icate":5344,"ĠSet":5345,"Ġfram":5346,"Ġing":5347,"Ġcommunities":5348,"ĠFBI":5349,"ita":5350,"Ġbon":5351,"Ġstrateg":5352,"Ġinterests":5353,"lock":5354,"gers":5355,"mas":5356,"ĠAND":5357,"Ġconflict":5358,"Ġrequirements":5359,"Ġsac":5360,"Ġoperating":5361,"ini":5362,"related":5363,"Ġcommitted":5364,"Ġrelatively":5365,"Ġsouth":5366,"¯¯":5367,"Ġafford":5368,"Ġidentity":5369,"Ġdecisions":5370,"Ġaccused":5371,"place":5372,"Ġvictory":5373,"och":5374,"iat":5375,"Name":5376,"Com":5377,"tion":5378,"eds":5379,"Ġseek":5380,"Ġtight":5381,"ĠImages":5382,"Ġiniti":5383,"Ġhumans":5384,"Ġfamiliar":5385,"Ġaudience":5386,"Ġinternal":5387,"venture":5388,"Ġsides":5389,"ĠTO":5390,"Ġdim":5391,"Ġconclud":5392,"Ġappoint":5393,"Ġenforcement":5394,"ĠJim":5395,"ĠAssociation":5396,"Ġcircumst":5397,"ĠCanadian":5398,"Ġjoined":5399,"Ġdifferences":5400,"ĠLos":5401,"Ġprotest":5402,"Ġtwice":5403,"win":5404,"Ġglass":5405,"arsh":5406,"ĠArmy":5407,"Ġexpression":5408,"Ġdecide":5409,"Ġplanning":5410,"ania":5411,"Ġhandle":5412,"ĠMicrosoft":5413,"ĠNor":5414,"Ġmaximum":5415,"ĠRev":5416,"Ġsea":5417,"Ġeval":5418,"Ġhelps":5419,"ref":5420,"Ġbound":5421,"Ġmouth":5422,"Ġstandards":5423,"Ġclim":5424,"ĠCamp":5425,"ĠFox":5426,"cles":5427,"Ġarmy":5428,"ĠTechn":5429,"acking":5430,"xy":5431,"SS":5432,"Ġ42":5433,"Ġbug":5434,"ĠUkrain":5435,"ĠMax":5436,"ĠJones":5437,"ĠShow":5438,"lo":5439,"Ġplanet":5440,"Ġ75":5441,"Ġwinning":5442,"Ġfaster":5443,"Ġspect":5444,"Ġbroken":5445,"TR":5446,"Ġdefined":5447,"Ġhealthy":5448,"Ġcompetition":5449,"https":5450,"ĠIsland":5451,"ĠFe":5452,"Ġannounce":5453,"ĠCup":5454,"ĠInstead":5455,"Ġclient":5456,"Ġpossibly":5457,"section":5458,"ocket":5459,"look":5460,"Ġfinish":5461,"Ġcrew":5462,"Ġreserv":5463,"Ġeditor":5464,"Ġhate":5465,"Ġsale":5466,"Ġcontrovers":5467,"Ġpages":5468,"wing":5469,"Ġnumer":5470,"Ġopposition":5471,"Ġ2004":5472,"Ġrefuge":5473,"Ġflight":5474,"Ġapart":5475,"ĠLat":5476,"Americ":5477,"ĠAfrica":5478,"Ġapplications":5479,"ĠPalest":5480,"ĠBur":5481,"Ġgar":5482,"ĠSocial":5483,"Ġupgr":5484,"Ġshape":5485,"Ġspeaking":5486,"ansion":5487,"ao":5488,"ĠSn":5489,"Ġworry":5490,"ĠBritain":5491,"Please":5492,"roud":5493,"Ġhun":5494,"Ġintroduced":5495,"Ġdiet":5496,"Ind":5497,"ĠSecond":5498,"Ġfunctions":5499,"uts":5500,"ĠEach":5501,"ĠJeff":5502,"Ġstress":5503,"Ġaccounts":5504,"Ġguarant":5505,"ĠAnn":5506,"edia":5507,"Ġhonest":5508,"Ġtree":5509,"ĠAfrican":5510,"ĠBush":5511,"},":5512,"Ġsch":5513,"ĠOnly":5514,"Ġfif":5515,"igan":5516,"Ġexercise":5517,"ĠExp":5518,"Ġscientists":5519,"Ġlegislation":5520,"ĠWork":5521,"ĠSpr":5522,"ÃĤ":5523,"ĠHuman":5524,"Ġè":5525,"Ġsurvey":5526,"Ġrich":5527,"rip":5528,"Ġmaintain":5529,"Ġflo":5530,"Ġleadership":5531,"stream":5532,"ĠIslamic":5533,"Ġ01":5534,"ĠCollege":5535,"Ġmagic":5536,"ĠPrime":5537,"Ġfigures":5538,"2017":5539,"inder":5540,"xual":5541,"ĠDead":5542,"Ġabsolutely":5543,"Ġfourth":5544,"Ġpresented":5545,"respond":5546,"rible":5547,"Ġalcohol":5548,"ato":5549,"ĠDE":5550,"porary":5551,"Ġgrab":5552,"Ġvari":5553,"Ġquant":5554,"ĠPhoto":5555,"Ġplus":5556,"rick":5557,"arks":5558,"Ġalternative":5559,"Ġpil":5560,"Ġapprox":5561,"that":5562,"Ġobjects":5563,"ĠRo":5564,"ĠAndroid":5565,"Ġsignificantly":5566,"ĠRoad":5567,"kay":5568,"Read":5569,"avor":5570,"Ġacknow":5571,"ĠHD":5572,"ĠSing":5573,"Or":5574,"ĠMont":5575,"Ġuns":5576,"prof":5577,"Ġnegoti":5578,"ĠArch":5579,"iki":5580,"Ġtelevision":5581,"ĠJewish":5582,"Ġcommittee":5583,"Ġmotor":5584,"Ġappearance":5585,"Ġsitting":5586,"Ġstrike":5587,"ĠDown":5588,"comp":5589,"ĠHist":5590,"Ġfold":5591,"acement":5592,"ĠLouis":5593,"Ġbelong":5594,"ĠâĢ¢":5595,"Ġmort":5596,"Ġprepared":5597,"Ġ64":5598,"ĠMaster":5599,"Ġindeed":5600,"ĠDen":5601,"Ġrent":5602,"TA":5603,"ourney":5604,"arc":5605,"Su":5606,"97":5607,"Ġadvice":5608,"Ġchanging":5609,"Ġlisted":5610,"Ġlaunched":5611,"isation":5612,"ĠPeter":5613,"ishes":5614,"Ġlived":5615,"ĠMel":5616,"ĠSupreme":5617,"ĠFederal":5618,"Ġ);":5619,"ructure":5620,"Ġsets":5621,"Ġphilos":5622,"uous":5623,"ĠÂł":5624,"Ġapplied":5625,"ĠNOT":5626,"Ġhousing":5627,"ĠMount":5628,"Ġodd":5629,"Ġsust":5630,"DA":5631,"fficient":5632,"Ġ?":5633,"olved":5634,"Ġpowers":5635,"Ġthr":5636,"Ġremaining":5637,"ĠWater":5638,"LC":5639,"Ġcauses":5640,"ãģ®":5641,"Ġmanner":5642,"ads":5643,"Ġsuggests":5644,"Ġends":5645,"standing":5646,"fig":5647,"ĠDun":5648,"idth":5649,"Ġgay":5650,"Ġtermin":5651,"ĠAngeles":5652,"MS":5653,"Ġscientific":5654,"Ġcoal":5655,"apers":5656,"bar":5657,"ĠThomas":5658,"Ġsym":5659,"ĠRun":5660,"this":5661,"PC":5662,"igrants":5663,"Ġminute":5664,"ĠDistrict":5665,"cellent":5666,"Ġleaves":5667,"Ġcompleted":5668,"amin":5669,"Ġfocused":5670,"Ġmonitor":5671,"Ġvehicles":5672,"MA":5673,"ĠMass":5674,"ĠGrand":5675,"Ġaffected":5676,"itutional":5677,"Ġconstruct":5678,"Ġfollows":5679,"Ġton":5680,"reens":5681,"Ġhomes":5682,"ĠExt":5683,"ĠLevel":5684,"rast":5685,"ĠIr":5686,"Ġelim":5687,"Ġlargely":5688,"ĠJoe":5689,"Ġvotes":5690,"alls":5691,"Ġbusinesses":5692,"ĠFoundation":5693,"ĠCentral":5694,"Ġyards":5695,"Ġmaterials":5696,"ulner":5697,"Ġguide":5698,"Ġcloser":5699,"ums":5700,"Ġsports":5701,"eder":5702,"Just":5703,"Ġtaxes":5704,"84":5705,"ĠOld":5706,"Ġdecade":5707,"ola":5708,"Ġvir":5709,"Ġdropped":5710,"Ġdelay":5711,"itect":5712,"Ġsecure":5713,"stein":5714,"level":5715,"Ġtreated":5716,"Ġfiled":5717,"aine":5718,"Ġvan":5719,"Ġmir":5720,"Ġcolumn":5721,"icted":5722,"eper":5723,"Ġrot":5724,"Ġconsult":5725,"Ġentry":5726,"Ġmarijuana":5727,"ĠDou":5728,"Ġapparently":5729,"oking":5730,"clusive":5731,"Ġincreases":5732,"ano":5733,"Ġspecifically":5734,"Ġtele":5735,"ensions":5736,"Ġreligion":5737,"abilities":5738,"Ġframe":5739,"ĠNote":5740,"ĠLee":5741,"Ġhelping":5742,"Ġedge":5743,"oston":5744,"Ġorganizations":5745,"Ãĥ":5746,"ĠBoth":5747,"hips":5748,"Ġbigger":5749,"Ġboost":5750,"ĠStand":5751,"Ġrow":5752,"uls":5753,"abase":5754,"Ġrid":5755,"Let":5756,"aren":5757,"rave":5758,"Ġstret":5759,"PD":5760,"Ġvision":5761,"Ġwearing":5762,"Ġappreci":5763,"Ġaward":5764,"ĠUse":5765,"Ġfactor":5766,"war":5767,"ulations":5768,")(":5769,"Ġgod":5770,"Ġterrit":5771,"Ġparam":5772,"asts":5773,"87":5774,"Ġenemies":5775,"ĠGames":5776,"FF":5777,"Ġaccident":5778,"Well":5779,"ĠMartin":5780,"TER":5781,"Ġath":5782,"ĠHell":5783,"Ġforg":5784,"Ġveter":5785,"ĠMedic":5786,"free":5787,"Ġstars":5788,"Ġexpensive":5789,"Ġacad":5790,"rawn":5791,"ĠWhe":5792,"Ġlock":5793,"Ġformat":5794,"Ġsoldiers":5795,"sm":5796,"Ġagent":5797,"Ġresponsibility":5798,"ora":5799,"ĠScience":5800,"Ġrapid":5801,"Ġtough":5802,"ĠJesus":5803,"Ġbelieves":5804,"ML":5805,"Ġwear":5806,"lete":5807,"ÃĥÃĤ":5808,"ĠDri":5809,"Ġcommission":5810,"ĠBob":5811,"Oh":5812,"aped":5813,"Ġwarm":5814,"ÃĥÃĤÃĥÃĤ":5815,"Ġ2003":5816,"ortion":5817,"Ġhasn":5818,"uster":5819,"Ġunivers":5820,"ĠIll":5821,"Ġking":5822,"ologies":5823,"94":5824,"ĠTem":5825,"ĠMos":5826,"Ġpatient":5827,"ĠMexico":5828,"cean":5829,"ĠDeath":5830,"ĠSanders":5831,"you":5832,"ĠCast":5833,"ĠCompany":5834,"pty":5835,"Ġhappening":5836,"FP":5837,"ĠBattle":5838,"Ġbought":5839,"Am":5840,"Mod":5841,"Us":5842,"uters":5843,"ĠCre":5844,"ĠThose":5845,"Ġ44":5846,"iser":5847,"Ġsoul":5848,"ĠTop":5849,"ĠHarry":5850,"ĠAw":5851,"Ġseat":5852,"ffee":5853,"Ġrevolution":5854,"Ġ(\"":5855,"ĠDuring":5856,"ette":5857,"Ġring":5858,"Ġoffensive":5859,"Ġreturns":5860,"Ġvideos":5861,"Ġdiscl":5862,"Ġfamous":5863,"enced":5864,"ĠSign":5865,"ĠRiver":5866,"Ġ300":5867,"PM":5868,"ĠBus":5869,"ĠCH":5870,"Ġcandidates":5871,"arden":5872,"Ġpercentage":5873,"Ġvisual":5874,"Ġthank":5875,"Ġtrouble":5876,"nergy":5877,"Ġ2001":5878,"Ġprove":5879,"ashion":5880,"Ġenh":5881,"ĠLong":5882,"UM":5883,"Ġconnected":5884,"Ġpossibility":5885,"Over":5886,"Ġexpert":5887,"Ġlibrary":5888,"arts":5889,"ĠDirector":5890,"Ġfellow":5891,"92":5892,"irty":5893,"Ġdry":5894,"Ġsigns":5895,"ĠLove":5896,"Ġquiet":5897,"foot":5898,"Ġpure":5899,"ĠHun":5900,"Ġfilled":5901,"phas":5902,"ĠElect":5903,"endment":5904,"ĠExpl":5905,"Ġunable":5906,"ns":5907,"mo":5908,"Ġvast":5909,"obe":5910,"Ġidentify":5911,"apping":5912,"ĠCarolina":5913,"gress":5914,"Ġprote":5915,"Ġfish":5916,"Ġcircumstances":5917,"razy":5918,"ĠPhot":5919,"Ġbodies":5920,"ĠMur":5921,"Ġdeveloping":5922,"ĠAR":5923,"Ġexperienced":5924,"Ġsubstant":5925,"ĠBoard":5926,"esome":5927,"Ġdomestic":5928,"Ġcombined":5929,"ĠPut":5930,"Ġchemical":5931,"ĠChild":5932,"Ġpool":5933,"ĠCy":5934,"Ġegg":5935,"cons":5936,"sters":5937,"Ġhurt":5938,"Ġmarkets":5939,"Ġconservative":5940,"Ġsupporters":5941,"Ġagencies":5942,"idel":5943,"Ob":5944,"urb":5945,"Ġ43":5946,"ĠDefense":5947,"ye":5948,"ĠAp":5949,"dule":5950,"Ġtemperature":5951,"Ġconducted":5952,"ĠChief":5953,"Ġpulled":5954,"Ġfol":5955,"Last":5956,"onto":5957,"osis":5958,"VER":5959,"Des":5960,"ĠPan":5961,"First":5962,"Ġadvance":5963,"Ġlicense":5964,"rors":5965,"ĠJon":5966,"Ġimagine":5967,"Ġhell":5968,"Ġfixed":5969,"Ġincor":5970,"osite":5971,"ĠLog":5972,"icken":5973,"]:":5974,"Ġsurprise":5975,"hab":5976,"Ġcraft":5977,"olt":5978,"ĠJul":5979,"Ġdial":5980,"Ġrelevant":5981,"Ġentered":5982,"Ġleads":5983,"ĠAD":5984,"ĠClean":5985,"Ġpictures":5986,"essor":5987,"Ġalt":5988,"Ġpaying":5989,"Per":5990,"ĠMarket":5991,"Ġupdates":5992,"amily":5993,"ĠType":5994,"ĠHome":5995,"Ġ55":5996,"sembly":5997,"rome":5998,"83":5999,"Ġgreatest":6000,"Ġheight":6001,"Ġheav":6002,"aints":6003,"Ġlisten":6004,"aser":6005,"ĠSH":6006,"Ġcapable":6007,"acle":6008,"Ġperspect":6009,"inating":6010,"Ġoffering":6011,"rypt":6012,"ĠDevelop":6013,"abin":6014,"rc":6015,"Ġbright":6016,"alty":6017,"arrow":6018,"Ġsuppl":6019,"inding":6020,"acked":6021,"gypt":6022,"ĠAnother":6023,"pg":6024,"ĠVirginia":6025,"ĠLu":6026,"Ġplanned":6027,"Ġpit":6028,"Ġsweet":6029,"Type":6030,"ĠDi":6031,"Ġtypically":6032,"ĠFrancisco":6033,"Ġprospect":6034,"ĠDan":6035,"Ġteen":6036,"rees":6037,"Ġsched":6038,"Ġhol":6039,"Ġscr":6040,"Ġlots":6041,"life":6042,"Ġnewsp":6043,"Ġforget":6044,"ĠNone":6045,"ĠMiddle":6046,"ĠRyan":6047,"edd":6048,"Ġsevere":6049,"Ġsuit":6050,"ller":6051,"93":6052,"Ġcorrespond":6053,"Ġexplos":6054,"uations":6055,"Ġflag":6056,"game":6057,"rid":6058,"Ġprin":6059,"ĠData":6060,"Ġdeploy":6061,"ĠEnter":6062,"suit":6063,"ghan":6064,"ĠMen":6065,"Ġthoughts":6066,"Ġmatters":6067,"Ġadapt":6068,"ĠAri":6069,"Ġfill":6070,"Ġforth":6071,"Ġsam":6072,"Ġ41":6073,"Ġpayment":6074,"ĠHor":6075,"Ġspring":6076,"duc":6077,"Ġlosing":6078,"Ġbringing":6079,"FO":6080,"ala":6081,"Ġdistribution":6082,"hered":6083,"bour":6084,"ĠIsraeli":6085,"oma":6086,"Ġcombination":6087,"Ġplenty":6088,"VE":6089,"Can":6090,"ĠHaw":6091,"Ġperman":6092,"ĠSpecial":6093,"Ġtow":6094,"Ġseeking":6095,"Ġexamples":6096,"Ġclasses":6097,"cr":6098,"Ġbeer":6099,"Ġmoves":6100,"ĠIP":6101,"ĠKn":6102,"Ġpanel":6103,"Even":6104,"Ġproperly":6105,"Ġris":6106,"Ġplug":6107,"Ġestimated":6108,"Every":6109,"Ġdefensive":6110,"agraph":6111,"Ġpregn":6112,"Ġinstit":6113,"ĠVict":6114,"Ġvolume":6115,"Ġpositions":6116,"Ġlinks":6117,"ĠProgram":6118,"ĠWeek":6119,"agues":6120,"Ġtransform":6121,"ker":6122,"ĠCEO":6123,"Ġcas":6124,"Ġopponent":6125,"Ġtweet":6126,"ĠCode":6127,"Ġshop":6128,"Ġfly":6129,"Ġtalks":6130,"Ġbag":6131,"Phone":6132,"Ġaid":6133,"Ġplants":6134,"Ġ65":6135,"Ġattorney":6136,"arters":6137,"quest":6138,"ĠMagic":6139,"Ġbegins":6140,"Ġmyster":6141,"Ġenvironmental":6142,"Ġstorage":6143,"NN":6144,"Ġmarg":6145,"Ġske":6146,"Ġmetal":6147,"elly":6148,"Ġordered":6149,"Ġremained":6150,"Ġloved":6151,"Ġprompt":6152,"Ġupdated":6153,"Ġexperts":6154,"Ġwalking":6155,"Ġancient":6156,"Ġperformed":6157,"ATE":6158,"Ġneither":6159,"iency":6160,"Ġmanufacture":6161,"ĠPak":6162,"Ġselected":6163,"Ġmine":6164,"Ġultimately":6165,"Ġexplan":6166,"Ġlabel":6167,"ĠServices":6168,"ributed":6169,"Trump":6170,"Ġsyn":6171,"ĠUlt":6172,"SC":6173,"Ġmeat":6174,"Ġgiant":6175,"ĠWars":6176,"ĠON":6177,"Ġadm":6178,"Ġinterpret":6179,"Ġevening":6180,"Ġevil":6181,"ĠBoston":6182,"ĠWild":6183,"ĠÃ":6184,"ĠBitcoin":6185,"ĠAmazon":6186,"Dr":6187,"ĠInformation":6188,"Ġobviously":6189,"Ġadvanced":6190,"Photo":6191,"olar":6192,"Ġweather":6193,"Ġsymbol":6194,"Ġsole":6195,"Ġpotentially":6196,"oster":6197,"Ġoriginally":6198,"mun":6199,"300":6200,"aze":6201,"essions":6202,"Ġdeck":6203,"Ġstood":6204,"Ġyouth":6205,"ĠBern":6206,"Rep":6207,"ĠTest":6208,"Ġbasically":6209,"otic":6210,"Ġinvolve":6211,"olit":6212,"lyn":6213,"See":6214,"Ġaircraft":6215,"Ġconfirm":6216,"EW":6217,"Ġmessages":6218,"ĠRichard":6219,"Ġkit":6220,"Ġprohib":6221,"Ġvulner":6222,"isters":6223,"Ġexistence":6224,"Ġturning":6225,"ĠSP":6226,"Ġdesire":6227,"Ġflat":6228,"Ġment":6229,"season":6230,"anges":6231,"Ġneighborhood":6232,"ĠLake":6233,"ATION":6234,"Ġpointed":6235,"bur":6236,"Ġinnov":6237,"ucks":6238,"UL":6239,"Ġprofessor":6240,"Ġexpressed":6241,"AB":6242,"icious":6243,"Ġ2002":6244,"ĠDev":6245,"Ġsession":6246,"Ġbare":6247,"sen":6248,"Ġdiss":6249,"ĠCath":6250,"ĠPass":6251,"ĠPoint":6252,"Ġdoctor":6253,"orrow":6254,"ailed":6255,"ĠRub":6256,"ĠDC":6257,"ĠCharl":6258,"person":6259,"Ġwriter":6260,"ighters":6261,"ureau":6262,"Ġoblig":6263,"Ġrecorded":6264,"Ġbroke":6265,"Ġorders":6266,"ilty":6267,"Ġmotion":6268,"inity":6269,"law":6270,"adium":6271,"Ġimmigration":6272,"Ġcontrast":6273,"Ġbatt":6274,"Ġexcellent":6275,"Ġtechnical":6276,"ami":6277,"Ġtun":6278,"Ġcloud":6279,"ĠYear":6280,"geon":6281,"Ġcreation":6282,"Ġstrange":6283,"Ġauth":6284,"Ġfort":6285,"born":6286,"Ġextent":6287,"ĠToday":6288,"ĠClub":6289,"Ġrain":6290,"Ġsample":6291,"Ġaccepted":6292,"Ġtact":6293,"Ġfired":6294,"ĠSon":6295,"Ġstands":6296,"Ġboot":6297,"Ġ47":6298,"Ġstatements":6299,"Ġversions":6300,"Ġselling":6301,"ounded":6302,"Ġ1990":6303,"Ġweren":6304,"ĠWatch":6305,"Ġexperiment":6306,"Post":6307,"Ġretail":6308,"uled":6309,"Inst":6310,"unte":6311,"ãĥ¼":6312,"Ġdepart":6313,"Ġbond":6314,"ivery":6315,"ompl":6316,"Ġreaction":6317,"ĠSyrian":6318,"ĠPac":6319,"apped":6320,"aniel":6321,"DP":6322,"Ġresolution":6323,"Ġreact":6324,"Ġapproved":6325,"onom":6326,"mond":6327,"ĠOffic":6328,"---":6329,"Ġreplace":6330,"Ġtack":6331,"Ġsport":6332,"Ġchain":6333,"Ġemergency":6334,"rad":6335,"ĠPalestin":6336,"Ġ46":6337,"Ġautomatically":6338,"Ġroute":6339,"Ġpal":6340,"Ġbanks":6341,"ĠParis":6342,"ĠMedia":6343,"road":6344,"icing":6345,"ixt":6346,"isted":6347,"Ġgrew":6348,"Ġcoord":6349,"ĠWhere":6350,"omin":6351,"Ġsubs":6352,"��":6353,"Ġ±":6354,"Ġcorporate":6355,"Ġselection":6356,"noon":6357,"ĠReport":6358,"cs":6359,"cluding":6360,"orders":6361,"anche":6362,"ĠIts":6363,"Ġslowly":6364,"ĠEgypt":6365,"ĠAcc":6366,"Ġcolle":6367,"iques":6368,"EX":6369,"Ġattempts":6370,"url":6371,"ĠCross":6372,"Ġfindings":6373,"ĠSC":6374,"ĠOR":6375,"Ġindex":6376,"ensity":6377,"ĠWay":6378,"ĠLand":6379,"Ġshock":6380,"dis":6381,"Ġdynam":6382,"Ġcart":6383,"mosp":6384,"Since":6385,"iest":6386,"ĠBoy":6387,"Ġstorm":6388,"ĠContin":6389,"2013":6390,"hew":6391,"ilit":6392,"Ġessential":6393,"iquid":6394,"Other":6395,"ivered":6396,"Ġreasonable":6397,"Act":6398,"Ġsubsequ":6399,"ĠPack":6400,"ĠFort":6401,"Ġconsidering":6402,"Ġuniversity":6403,"log":6404,"Ġmarried":6405,"Ġillust":6406,"ĠTrue":6407,"£ı":6408,"Ġnumerous":6409,"rastructure":6410,"Ġseriously":6411,"Ġreferred":6412,"ua":6413,"Ġconsistent":6414,"onna":6415,"ĠReal":6416,"ruption":6417,"ciples":6418,"Ġfacts":6419,"91":6420,"otes":6421,"erg":6422,"Then":6423,"Ġaccompl":6424,"Note":6425,"Ġrevenue":6426,"Ġpassing":6427,"Ġmal":6428,"een":6429,"ĠYet":6430,"Ġgather":6431,"terday":6432,"ework":6433,"ĠAuthor":6434,"Pe":6435,"Ġoptim":6436,"Ġrub":6437,"Ġè£ı":6438,"Ġunknown":6439,"stone":6440,"Ġunion":6441,"olve":6442,"Ġopportunities":6443,"Ġbrowser":6444,"ĠWal":6445,"ĠCost":6446,"Ġreporting":6447,"sts":6448,"pet":6449,"Ġsand":6450,"Ġsuddenly":6451,"Ġsurprising":6452,"ĠVR":6453,"Ġsomewhat":6454,"ĠBas":6455,"ulture":6456,"izz":6457,"ĠCD":6458,"Ġchallenges":6459,"Ġsettings":6460,"Ġexperiences":6461,"ĠFull":6462,"Ġcann":6463,"Ġreceiving":6464,"EST":6465,"Ġjoint":6466,"Ġcultural":6467,"Ġast":6468,"82":6469,"astern":6470,"ceived":6471,"ĠCru":6472,"Ġbull":6473,"pired":6474,"amm":6475,"Ġfacing":6476,"power":6477,"Ġboss":6478,"ĠHol":6479,"Ġinstr":6480,"Ġincreasingly":6481,"Ġshift":6482,"Ġstreets":6483,"ĠWilliams":6484,"abb":6485,"Ġlie":6486,"Ġlaugh":6487,"ĠCa":6488,"PL":6489,"Ġadults":6490,"Ġcustomer":6491,"Ġobtained":6492,"Ġsupporting":6493,"html":6494,"fire":6495,"Ġdetailed":6496,"Ġpicked":6497,"ĠRight":6498,"lder":6499,"EE":6500,"stood":6501,"ĠKim":6502,"Ġwire":6503,"Ġsight":6504,"Ġdevelopers":6505,"Ġpersons":6506,"Ġsad":6507,"Ġcup":6508,"Ġwarning":6509,"Ġboys":6510,"long":6511,"Ġbird":6512,"fo":6513,"Ġwal":6514,"Ġobserved":6515,"Ġzone":6516,"iveness":6517,"Ġchannel":6518,"cript":6519,"Ġrefused":6520,"ĠAgain":6521,"Ġsuc":6522,"Ġspokesman":6523,"ĠRef":6524,"rite":6525,"ouston":6526,"ãĥ³":6527,"ĠSher":6528,"Ġacts":6529,"ĠName":6530,"Ġstruggle":6531,"arry":6532,"ometimes":6533,"Ġdiscrim":6534,"HT":6535,"Ġcategory":6536,"Ġrealize":6537,"Ġemployee":6538,"ĠAfghan":6539,"enger":6540,"Ġguns":6541,"ĠSteve":6542,"ĠMot":6543,"ĠOl":6544,"oked":6545,"Ġthick":6546,"Ġfairly":6547,"illy":6548,"Ġsurve":6549,"ĠMat":6550,"weight":6551,"âĶ":6552,"Ġtroops":6553,"Ġagents":6554,"Ġbattery":6555,"Ġmotiv":6556,"á":6557,"Sec":6558,"den":6559,"overy":6560,"LS":6561,"Ġflu":6562,"Ġconfident":6563,"ĠOper":6564,"Ġempty":6565,"Ġphen":6566,"Ġsector":6567,"Ġexcited":6568,"Ġremote":6569,"aph":6570,"oen":6571,"Ġdestroyed":6572,"Ġmoral":6573,"ĠHP":6574,"ĠRon":6575,"Ġdress":6576,"ĠBat":6577,"Ġlit":6578,"ĠMS":6579,"Ġaf":6580,"HL":6581,"rum":6582,"isms":6583,"Ġshouldn":6584,"Ġsympt":6585,"ĠToronto":6586,"hetic":6587,"Ġcarbon":6588,"Ġinstalled":6589,"Ġviolent":6590,"Ġsolar":6591,"ja":6592,"Ġpractices":6593,"Ġride":6594,"ĠPenn":6595,"Ġimproved":6596,"Ġaudio":6597,"Ġbehavi":6598,"ĠPS":6599,"Ġeating":6600,"Data":6601,"ĠReview":6602,"pass":6603,"claim":6604,"uated":6605,"angers":6606,"chen":6607,"Ġproperties":6608,"Ġanywhere":6609,"Another":6610,"Ġblow":6611,"ĠJackson":6612,"Ġproud":6613,"Ġplane":6614,"lines":6615,"Ġsquare":6616,"Ġproof":6617,"ansas":6618,"Ġtalked":6619,"makers":6620,"Ġsister":6621,"Ġholds":6622,"Ġresident":6623,"Ġ==":6624,"Ġresistance":6625,"Ġsplit":6626,"Ġprosecut":6627,"Ġconfidence":6628,"resents":6629,"Ġcuts":6630,"Ġexception":6631,"Ġzero":6632,"Getty":6633,"Ġcopyright":6634,"Ġtotally":6635,"ormal":6636,"ifications":6637,"ĠAustralian":6638,"Ġsick":6639,"Ġ150":6640,"Ġhousehold":6641,"Ġfees":6642,"Ġdrivers":6643,"ogen":6644,"ĠNY":6645,"Ġnecessarily":6646,"Ġregulations":6647,"earing":6648,"sl":6649,"Ġperspective":6650,"care":6651,"icial":6652,"His":6653,"Ġescape":6654,"Ġsurprised":6655,"ĠVan":6656,"urrent":6657,"Ġvac":6658,"81":6659,"ĠThus":6660,"Ġemphas":6661,"ĠChampions":6662,"ĠIce":6663,"Ġnarr":6664,"Ġheads":6665,"Ġcausing":6666,"bel":6667,"fortunately":6668,"ĠMa":6669,"Ġtargets":6670,"cipl":6671,"Ġafternoon":6672,"Ġadds":6673,"ĠMaybe":6674,"ĠFour":6675,"essed":6676,"plete":6677,"Ġusual":6678,"cho":6679,"ingu":6680,"Ġwithd":6681,"ĠEnergy":6682,"ĠEconom":6683,"OO":6684,"Ġarticles":6685,"Ġinjured":6686,"Ġmanage":6687,"Ġexplains":6688,"Ġdiagn":6689,"Rec":6690,"atures":6691,"Ġlinked":6692,"Ġdiscussed":6693,"Ġexplo":6694,"Ġoccasion":6695,"athan":6696,"Ġopposite":6697,"Ġfaces":6698,"Ġdenied":6699,"ĠKnight":6700,"Ġnut":6701,"Ġapproximately":6702,"Ġdisappoint":6703,"onymous":6704,"ĠBest":6705,"ĠLo":6706,"ĠHy":6707,"ĠAff":6708,"Ġvoting":6709,"anwhile":6710,"ĠIII":6711,"Ġinstitutions":6712,"agram":6713,"ĠDaily":6714,"Ġdrag":6715,"Ġnearby":6716,"Ġguilty":6717,"Ġconver":6718,"Pre":6719,"ship":6720,"Ġreward":6721,"Ġphilosoph":6722,"ĠSS":6723,"ugh":6724,"Ġapps":6725,"friend":6726,"Ġupper":6727,"Ġadvert":6728,"Ġsnow":6729,"Ġfrust":6730,"Ġourselves":6731,"Fr":6732,"ĠDie":6733,"ampion":6734,"Ġdismiss":6735,"Ġcere":6736,"Ġsignal":6737,"from":6738,"Ġ).":6739,"Ġ52":6740,"Ġcrimes":6741,"itors":6742,"estival":6743,"useum":6744,"Ġcouncil":6745,"ĠSaud":6746,"May":6747,"ĠGun":6748,"ician":6749,"ether":6750,"Ġsufficient":6751,"ĠHen":6752,"sole":6753,"Ġhistorical":6754,"ĠFar":6755,"ĠTurn":6756,"Ġpin":6757,"Ġsucceed":6758,"mat":6759,"lymp":6760,"Ġtradition":6761,"ĠOk":6762,"Ġcro":6763,"Ġdescription":6764,"alle":6765,"Ġsky":6766,"Te":6767,"Ġwidely":6768,"Ġwave":6769,"Ġdefinition":6770,"ĠJews":6771,"Ġcycle":6772,"Ġrefere":6773,"Ġbrings":6774,"usal":6775,"Ġalive":6776,"Ġfrequently":6777,"Ġintention":6778,"ĠControl":6779,"lv":6780,"ystem":6781,"Ġprivacy":6782,"gent":6783,"rence":6784,"ĠQuest":6785,"ĠChristmas":6786,"Ġrail":6787,"Ġcooper":6788,"Ġtested":6789,"ĠCapt":6790,"asks":6791,"Ġcomfortable":6792,"Ġdelivered":6793,"scape":6794,"Ġdepth":6795,"ĠGOP":6796,"Ġwrites":6797,"Ġassets":6798,"Ġsav":6799,"iments":6800,"Ġtransition":6801,"Ġartist":6802,"ĠLook":6803,"Ġlob":6804,"Ġcomponents":6805,"arity":6806,"Ġwalked":6807,"Ġroot":6808,"Ġparticipants":6809,"Ġnoticed":6810,"Ġresc":6811,"Ġnav":6812,"ĠAdminist":6813,"da":6814,"utral":6815,"plate":6816,"Ġimportance":6817,"Ġassert":6818,"iously":6819,"cription":6820,"Ġinjuries":6821,"ĠCheck":6822,"Ġregistered":6823,"Ġintent":6824,"Ġmissed":6825,"ographic":6826,"Ġsentence":6827,"ounter":6828,"Ġassistance":6829,"evin":6830,"Ġdatabase":6831,"Ġbuildings":6832,"Ġclassic":6833,"Ġthinks":6834,"ĠOhio":6835,"Pr":6836,"ugg":6837,"Ġfee":6838,"pan":6839,"Ġeffectively":6840,"Ġfacility":6841,"Ġbear":6842,"Ġchapter":6843,"Ġdogs":6844,"ĠColumb":6845,"Ġlatter":6846,"itial":6847,"Ġadmitted":6848,"TV":6849,"ĠGeorg":6850,"Ġposts":6851,"\\\\":6852,"Ġlawyer":6853,"Ġequival":6854,"Ġmand":6855,"Ġcontrolled":6856,"ĠWalk":6857,"ĠAndrew":6858,"Ġmenu":6859,"amental":6860,"Ġprotected":6861,"va":6862,"Ġadministr":6863,"oral":6864,"Ġrein":6865,"ĠSar":6866,"Ġamounts":6867,"Ġnative":6868,"ĠMoon":6869,"Ġrepresents":6870,"Ġabandon":6871,"Ġcarrying":6872,"Ġtank":6873,"mary":6874,"Ġdeclared":6875,"Tube":6876,"Ġhat":6877,"Ġpunish":6878,"ellect":6879,"mes":6880,"Ġuniverse":6881,"ĠRod":6882,"phy":6883,"Ġinfrastructure":6884,"Ġ51":6885,"Ġopposed":6886,"ownt":6887,"ca":6888,"ĠMake":6889,"Ġhardware":6890,"Ġcoffee":6891,"Rel":6892,"bal":6893,"world":6894,"ĠSaf":6895,"ĠSea":6896,"inals":6897,"Ġowned":6898,"Ġhall":6899,"ersion":6900,"Ġdescribe":6901,"ĠPot":6902,"Ġportion":6903,"Ġatmosp":6904,"Ġgovernments":6905,"Ġdepending":6906,"Ġoffense":6907,"Ġtrick":6908,"awa":6909,"ĠLine":6910,"ĠVis":6911,"ĠHard":6912,"ĠOrig":6913,"ĠClick":6914,"Ġdesk":6915,"ĠValley":6916,"ĠSov":6917,"Ġmovies":6918,"Ġremark":6919,"Ġmail":6920,"Ġconscious":6921,"Ġruling":6922,"ĠRights":6923,"Ġmedic":6924,"hent":6925,"ĠWomen":6926,"><":6927,"Ġreplaced":6928,"ĠPrem":6929,"ĠThanks":6930,"Ġrenew":6931,"ĠBall":6932,"iform":6933,"Ġshots":6934,"Comm":6935,"Ġarmed":6936,"Ġconstant":6937,"Ġtaste":6938,"Ġrealized":6939,"Ġbuff":6940,"Ġmo":6941,"Ġefficient":6942,"Most":6943,"oration":6944,"ifies":6945,"Ġcommunication":6946,"Ġflood":6947,"Ġconsequences":6948,"Ġanyway":6949,"igg":6950,"ĠGM":6951,"ĠThank":6952,"Ġiron":6953,"Ġevolution":6954,"ĠCop":6955,"twitter":6956,"Ġ95":6957,"Ġrelationships":6958,"adel":6959,"ĠYoung":6960,"Ġproposal":6961,"ayers":6962,"uilding":6963,"ĠHot":6964,"ORE":6965,"cos":6966,"Ġcollabor":6967,"PG":6968,"axy":6969,"Ġknowing":6970,"Ġsupports":6971,"owed":6972,"Ġcontrols":6973,"Ġmerely":6974,"umer":6975,"Ġathlet":6976,"Ġfashion":6977,"path":6978,"Ġgift":6979,"Ġera":6980,"AND":6981,"Ġkinds":6982,"ĠKorean":6983,"Ġlegit":6984,"ulous":6985,"Ġessentially":6986,"Ġtherap":6987,"nic":6988,"Ġsuffered":6989,"Ġhur":6990,"Ġpromise":6991,"Ġexcess":6992,"Ġoverw":6993,"Ġprime":6994,"ĠHouston":6995,"erry":6996,"ĠMs":6997,"RS":6998,"2012":6999,"Ġstores":7000,"ĠOlymp":7001,"Ġjourney":7002,"Although":7003,"Sub":7004,"ĠEduc":7005,"ĠChapter":7006,"Ġrequests":7007,"Ġconsumers":7008,"Ġtiny":7009,"Ġisol":7010,"ĠFair":7011,"ba":7012,"ĠYOU":7013,"Ġcrash":7014,"celer":7015,"Ġemotional":7016,"Ġgoods":7017,"Ġelected":7018,"Ġmoder":7019,"ĠLinux":7020,"Ġblocks":7021,"Ġisland":7022,"ĠSociety":7023,"Ġelections":7024,"Ġbroadcast":7025,"Ġcheap":7026,"Ġnations":7027,"Ġseasons":7028,"400":7029,"Ġwaste":7030,"ĠSat":7031,"Ġfields":7032,"employ":7033,"Ġprofile":7034,"Ġauthors":7035,"ALL":7036,"ĠGra":7037,"west":7038,"ĠTy":7039,"Ġdeaths":7040,"Ġvacc":7041,"Ġformed":7042,"Ġdu":7043,"Ġongoing":7044,"ĠMuslims":7045,"elf":7046,"igure":7047,"Ġassume":7048,"ĠUkraine":7049,"water":7050,"Ġcoast":7051,"Ġvoted":7052,"gor":7053,"ĠAS":7054,"ĠMichigan":7055,"aza":7056,"ĠArm":7057,"iro":7058,"Ġflex":7059,"asters":7060,"''":7061,"Ġwelcome":7062,"arl":7063,"Ġlocations":7064,"igation":7065,"ĠFil":7066,"Ġbuying":7067,"Ġarchitect":7068,"Ġharder":7069,"ĠCub":7070,"Ġinterface":7071,"Ġrestaurant":7072,"Ġdiscover":7073,"Ġexceed":7074,"Ġfavour":7075,"gery":7076,"Ġduty":7077,"Ġpitch":7078,"ador":7079,"ĠMach":7080,"boy":7081,"Ġresponded":7082,"Ġextended":7083,"hers":7084,"Many":7085,"raid":7086,"ifer":7087,"ĠIns":7088,"Ser":7089,"Ġmedium":7090,"she":7091,"ĠSports":7092,"Ġmagazine":7093,"utation":7094,"Ġlimits":7095,"ĠGall":7096,"Ġexternal":7097,"razil":7098,"Ġyounger":7099,"tle":7100,"Ġremind":7101,"ĠCON":7102,"Ġimmediate":7103,"Ġhidden":7104,"Ġvolunte":7105,"Ġsimpl":7106,"odcast":7107,"Ġphase":7108,"dr":7109,"Ġplot":7110,"Ġexposure":7111,"RI":7112,"ograp":7113,"vin":7114,"anish":7115,"ĠAcad":7116,"ĠEngine":7117,"Ġexpansion":7118,"ĠPay":7119,"Your":7120,"Ġpushed":7121,"ĠEll":7122,"ĠHead":7123,"Ġmarketing":7124,"ĠAC":7125,"ket":7126,"Ġhits":7127,"Ġgro":7128,"ĠAge":7129,"ĠScot":7130,"][":7131,"Ġstim":7132,"ĠiPhone":7133,"ĪĴ":7134,"Ġnarrow":7135,"ĠGetty":7136,"ĠTurkey":7137,"Ġperfectly":7138,"Ġenable":7139,"utch":7140,"Ġprecise":7141,"Ġregime":7142,"Ġshif":7143,"Ġcompens":7144,"gun":7145,"div":7146,"Ġchosen":7147,"ĠKen":7148,"Any":7149,"Ġtrees":7150,"Ġrecommended":7151,"ĠRen":7152,"uable":7153,"ĠHT":7154,"Follow":7155,"EG":7156,"ĠHand":7157,"ĠKenn":7158,"Ġarguments":7159,"Ġexists":7160,"Ġbike":7161,"ĠConserv":7162,"Ġbreaking":7163,"ĠGar":7164,"Ġcrazy":7165,"Ġvirtual":7166,"aylor":7167,"ixel":7168,"Ġ1980":7169,"Ġpermission":7170,"ĠSeries":7171,"Ġconsumer":7172,"Ġclosely":7173,"called":7174,"Ġ54":7175,"Ġhopes":7176,"Ġarray":7177,"ĠWin":7178,"ĠLabour":7179,"Ġspons":7180,"ĠIre":7181,"Ġpow":7182,"Ġreaders":7183,"Ġemployment":7184,"Ġcreature":7185,"Ġresulting":7186,"Ġaccurate":7187,"Ġmoments":7188,"Ġargued":7189,"Ġped":7190,"During":7191,"Ġ53":7192,"ĠTal":7193,"Ġsought":7194,"Ġsuffering":7195,"Ġicon":7196,"lee":7197,"Ġ($":7198,"alian":7199,"°":7200,"Ġpra":7201,"Ġbonus":7202,"(\"":7203,"ko":7204,"Ġacting":7205,"DE":7206,"fall":7207,"Ġcomparison":7208,"Ġsmooth":7209,"ĠNAS":7210,"upp":7211,"ĠJoseph":7212,"eping":7213,"ĠTake":7214,"ĠMid":7215,"Ġsending":7216,"fast":7217,"ĠFall":7218,"Ġdealing":7219,"user":7220,"ĠOrgan":7221,"Co":7222,"Ġattached":7223,"Ġsees":7224,"%.":7225,"Ġtypical":7226,"ART":7227,"Ġfinds":7228,"ĠAsia":7229,"umin":7230,"ĠCore":7231,"ĠEnt":7232,"inent":7233,"uce":7234,"ĠBlood":7235,"ĠNever":7236,"Ġemails":7237,"Ġhighlight":7238,"Ġconfront":7239,"atus":7240,"uted":7241,"Ġunus":7242,"Ġtopic":7243,"ĠAdam":7244,"Ġble":7245,"ati":7246,"Ġunderstood":7247,"Set":7248,"struct":7249,"TP":7250,"Ġmob":7251,"aa":7252,"ĠStart":7253,"pected":7254,"sell":7255,"Ġdedicated":7256,"ĠCA":7257,"uan":7258,"Ġsongs":7259,"escription":7260,"Ġtech":7261,"Ġrape":7262,"Ġaside":7263,"Ġgrant":7264,"Ġ56":7265,"sub":7266,"Ġargue":7267,"Ġcontaining":7268,"Ġschedule":7269,"Ġliberal":7270,"Ġpublicly":7271,"Ġheavily":7272,"ĠUt":7273,"iner":7274,"ĠSection":7275,"ĠCare":7276,"weet":7277,"ls":7278,"Dis":7279,"âĶĢ":7280,"ĠFollow":7281,"Back":7282,"ĠIT":7283,"Ġbes":7284,"ji":7285,"ĠHit":7286,"ested":7287,"Ġeverybody":7288,"ĠSwed":7289,"Ġfemin":7290,"Ġfacilities":7291,"Ġconven":7292,"Comp":7293,"ĠOS":7294,"core":7295,"Ġanx":7296,"Ġdivision":7297,"ĠCam":7298,"ĠStan":7299,"mates":7300,"Ġexplore":7301,"plom":7302,"Ġshares":7303,"pload":7304,"anes":7305,"Ġideal":7306,"eters":7307,"ĠBase":7308,"Ġplastic":7309,"Ġdistinct":7310,"ĠNetwork":7311,"ĠSeattle":7312,"Ġtrading":7313,"ensus":7314,"intend":7315,"Ġexhib":7316,"Ġinitially":7317,"ĠFood":7318,"Ġthousand":7319,"ĠBusiness":7320,"acter":7321,"Ġparagraph":7322,"Ġroughly":7323,"Ġwww":7324,"Ġcreative":7325,"ĠConf":7326,"Ġconsumption":7327,"Ġfilms":7328,"agan":7329,"Ġobtain":7330,"Ġtall":7331,"Ġtor":7332,"Ġacknowled":7333,"Ġgrown":7334,"alo":7335,"KE":7336,"Ġ400":7337,"enders":7338,"taining":7339,"UG":7340,"Ġsuicide":7341,"Ġwatched":7342,"ĠList":7343,"ali":7344,"rehens":7345,"Ġsurrounding":7346,"Ġpip":7347,"Ġflying":7348,"ĠJava":7349,"ordan":7350,"Ġserving":7351,"inations":7352,"post":7353,"Ġsho":7354,"Av":7355,"Ġjail":7356,"zy":7357,"Ġ1999":7358,"Ġ>":9609,"orous":9610,"Ġfirms":9611,"screen":9612,"una":9613,"Ġembarrass":9614,"ulse":9615,"Ġletting":9616,"Ġthrew":9617,"iley":9618,"Ġchannels":9619,"lan":9620,"ĠVegas":9621,"Ġsear":9622,"Ġfantastic":9623,"arre":9624,"uzzle":9625,"ĠDer":9626,"Those":9627,"Ġswing":9628,"Ġsheet":9629,"index":9630,"cover":9631,"ogan":9632,"Ġvariables":9633,"ĠTech":9634,"Ġspoken":9635,"achel":9636,"ĠDa":9637,"ĠMountain":9638,"Ġloaded":9639,"Ġfootage":9640,"version":9641,"Ġunl":9642,"ĠPhoenix":9643,"Ġthrowing":9644,"Ġfiring":9645,"Ġtracking":9646,"Ġwidth":9647,"Ġstruggling":9648,"rooms":9649,"otion":9650,"Ġmonthly":9651,"ĠServer":9652,"Ġeggs":9653,"open":9654,"MC":9655,"Ġ1993":9656,"Ġhired":9657,"Ġstayed":9658,"ĠAllen":9659,"Ġstro":9660,"Ġ98":9661,"step":9662,"ĠTurkish":9663,"Ġfabric":9664,"isting":9665,"ĠDom":9666,"Ġdates":9667,"Ġpron":9668,"Ġbasketball":9669,"Ġlucky":9670,"ĠArabia":9671,"Ġassumed":9672,"esty":9673,"Ġaffairs":9674,"Ġglad":9675,"ĠIndeed":9676,"ĠFA":9677,"ĠWord":9678,"Ġjoining":9679,"ifice":9680,"pread":9681,"irts":9682,"ĠSelect":9683,"Ġpopulations":9684,"aware":9685,"Ġnose":9686,"Ġcomplaints":9687,"start":9688,"Ġscoring":9689,"Thanks":9690,"Ġmining":9691,"Ġvisitors":9692,"SH":9693,"Ġdamaged":9694,"Ġcharacteristics":9695,"ĠPent":9696,"DC":9697,"Ġ83":9698,"ĠSix":9699,"rates":9700,"Ġflags":9701,"ĠBrew":9702,"dog":9703,"Mark":9704,"////":9705,"Ġexecution":9706,"Ġjoke":9707,"phones":9708,"Ġtestimony":9709,"Ġobst":9710,"QL":9711,"ĠCut":9712,"Ġstudied":9713,"ĠNintendo":9714,"icket":9715,"ĠNBC":9716,"Ġlad":9717,"ĠBra":9718,"ĠMoh":9719,"Ġkernel":9720,"Ġoverwhelming":9721,"Ġaged":9722,"Ġapplicable":9723,"ĠCond":9724,"Ġroads":9725,"ĠBlock":9726,"made":9727,"odge":9728,"Ġcommands":9729,"Ġoffices":9730,"veland":9731,"Ġtut":9732,"Ġreceiver":9733,"ĠFro":9734,"Ġshopping":9735,"ĠiP":9736,"ĠStre":9737,"ĠABC":9738,"Ġentertainment":9739,"ĠBow":9740,"orted":9741,"Mc":9742,"Ġreads":9743,"grad":9744,"ĠCollect":9745,"ĠâĪĴ":9746,"ĠCapital":9747,"ederation":9748,"Ġemployer":9749,"Ġinvolvement":9750,"Ġanxiety":9751,"alia":9752,"Ġroof":9753,"ĠAmong":9754,"ĠDemocrat":9755,"Ġstats":9756,"ĠVill":9757,"Ġconstitutional":9758,"Ġreferring":9759,"itty":9760,"Ġtackle":9761,"outube":9762,"Ġbacked":9763,"ĠHong":9764,"ĠBroad":9765,"Ġele":9766,"ĠOtt":9767,"Ġ1992":9768,"hour":9769,"achusetts":9770,"Cal":9771,"Ġdefeated":9772,"Ġ81":9773,"esp":9774,"Ġseemingly":9775,"was":9776,"ĠJenn":9777,"ĠKurd":9778,"Ġgene":9779,"Ġdiscount":9780,"Ret":9781,"ECT":9782,"();":9783,"Ġclubs":9784,"Ġsid":9785,"ĠMarsh":9786,"Check":9787,"Ġpp":9788,"ĠEag":9789,"idespread":9790,"Ġbeings":9791,"FT":9792,"Ġintroduction":9793,"ĠChange":9794,"ARD":9795,"Ġ110":9796,"adows":9797,"ierce":9798,"Ġmeal":9799,"author":9800,"ĠBang":9801,"lahoma":9802,"Ġranks":9803,"2011":9804,"????":9805,"max":9806,"Ġcollapse":9807,"Ġopens":9808,"Ġecho":9809,"Ġsoph":9810,"Ġracist":9811,"Ġenormous":9812,"Ġwaves":9813,"Ġtap":9814,"Ġcomprehensive":9815,".--":9816,"ĠRoy":9817,"Ġfarmers":9818,"Related":9819,"aired":9820,"rones":9821,"ĠCrim":9822,"Ġproportion":9823,"Ġdesigns":9824,"Ġnegotiations":9825,"Ġvirtually":9826,"ĠBatman":9827,"Ġwarn":9828,"Ġlegitimate":9829,"mate":9830,"Ġconvention":9831,",,":9832,"netic":9833,"ĠSD":9834,"Ġconsistently":9835,"Ġcompensation":9836,"Ġpunishment":9837,"Ġye":9838,"Ġtie":9839,"ĠBureau":9840,"irlf":9841,"ĠBu":9842,"ĠAren":9843,"ĠPhilipp":9844,"Ġknife":9845,"Ġmemories":9846,"ĠRoss":9847,"Ġangle":9848,"Ġ86":9849,"ĠThunder":9850,"Ġrend":9851,"ĠTour":9852,"Ġcounts":9853,"sung":9854,"ĠImp":9855,"Ġeducational":9856,"Ġaccessible":9857,"COM":9858,"Ġdrew":9859,"yer":9860,"Gl":9861,"amine":9862,"ORT":9863,"OB":9864,"IB":9865,"master":9866,"Ġtrials":9867,"ogy":9868,"har":9869,"ĠTrust":9870,"Ġpreferred":9871,"irlfriend":9872,"ĠNev":9873,"Ġbin":9874,"Ġcow":9875,"Page":9876,"Ġsignature":9877,"ĠBL":9878,"700":9879,"Ġretired":9880,"Ġbytes":9881,"Ġneighb":9882,"ĠLegend":9883,"Ġdevast":9884,"Ġsuspected":9885,"isons":9886,"ĠPokémon":9887,"scale":9888,"Ġcapabilities":9889,"Ġrevel":9890,"Ġcheese":9891,"dy":9892,"igrant":9893,"Ġfailing":9894,"bits":9895,"ĠHeroes":9896,"ĠGhost":9897,"ĠScient":9898,"Ġappointed":9899,"uri":9900,"Ġinstitution":9901,"Ġexpanded":9902,"greg":9903,"Ġmonitoring":9904,"Ġpodcast":9905,"Ġcoalition":9906,"Ġ96":9907,"Jo":9908,"Ġstolen":9909,"ĠSab":9910,"Ġstops":9911,"Ġholiday":9912,"Ġintr":9913,"Car":9914,"Black":9915,"ĠLGBT":9916,"Ġwarming":9917,"ĠAnderson":9918,"Ġ89":9919,"Ġproducer":9920,"Med":9921,"Ġaccuracy":9922,"ĠMarvel":9923,"izabeth":9924,"ĠPatrick":9925,"mony":9926,"Ġmini":9927,"acles":9928,"Ġovert":9929,"they":9930,"Ġmembership":9931,"ĠVen":9932,"Ġexch":9933,"Ġremoval":9934,"ĠDave":9935,"TY":9936,"mad":9937,"ĠFind":9938,"Ġadequ":9939,"Ġec":9940,"Ġteeth":9941,"Ġemotion":9942,"Ġperm":9943,"Ġsolely":9944,"db":9945,"Ġextraord":9946,"IGHT":9947,"cal":9948,"Ġguidelines":9949,"Ġdying":9950,"Ġsuspended":9951,"ĠPremier":9952,"ĠAnthony":9953,"elve":9954,"Ġdad":9955,"ĠEth":9956,"ĠFootball":9957,"Ġabandoned":9958,"Ġ<<":9959,"Ġmarch":9960,"Ġhorror":9961,"â̦\"":9962,"Ġchildhood":9963,"Ġcampaigns":9964,"Ġlunch":9965,"ĠAlbert":9966,"block":9967,"âĸĪâĸĪ":9968,"ounding":9969,"Ġbone":9970,"organ":9971,"aders":9972,"ĠFlash":9973,"ĠDrive":9974,"Ġtonight":9975,"Ġwars":9976,"ĠFL":9977,"Ġformation":9978,"const":9979,"News":9980,"Ġcompe":9981,"orious":9982,"ĠStaff":9983,"Ġdiscussions":9984,"ĠProtection":9985,"ĠJam":9986,"Ġcriteria":9987,"Ġinstallation":9988,"Ġaccomplish":9989,"izza":9990,"Ġpublisher":9991,"Ġrescue":9992,"ĠTry":9993,"ULL":9994,"ĠSom":9995,"ĠHop":9996,"oret":9997,"ths":9998,"ordon":9999,"Ġpocket":10000,"ĠInv":10001,"Download":10002,"ĠCrime":10003,"Ġbene":10004,"ĠGuide":10005,"ĠAssembly":10006,"Ġparameters":10007,"IE":10008,"ĠAlexander":10009,"Ġconcert":10010,"ĠSche":10011,"Ġshoes":10012,"Ġvisiting":10013,"Ġrecall":10014,"Ġbub":10015,"Ġrural":10016,"Ġconcrete":10017,"ĠRos":10018,"Next":10019,"Russ":10020,"Ġloans":10021,"ĠShield":10022,"Ġtrem":10023,"hemat":10024,"kg":10025,"ĠHarris":10026,"isition":10027,"ĠMove":10028,"ĠFC":10029,"Ġfate":10030,"ĠCho":10031,"Ġtired":10032,"Ġprincipal":10033,"hist":10034,"iences":10035,"athy":10036,"Ġsevent":10037,"Ġmood":10038,"Ġstrategic":10039,"Ġdiseases":10040,"Ġforum":10041,"Ġtempor":10042,"Ġheadquarters":10043,"Par":10044,"ige":10045,"flix":10046,"Ġguitar":10047,"Ġ94":10048,"Only":10049,"Ġreleases":10050,"roph":10051,"================================":10052,"Ġ600":10053,"ĠContinue":10054,"igate":10055,"ĠCrit":10056,"system":10057,"Ġdisabled":10058,"Ġunexpected":10059,"ithub":10060,"Ġunclear":10061,"ĠEst":10062,"Ġcontrad":10063,"Ġstrategies":10064,"ventures":10065,"Ġpassage":10066,"AME":10067,"Ġimproving":10068,"Ġreveals":10069,"Ġdecrease":10070,"ova":10071,"Ġannoy":10072,"ĠShort":10073,"ĠLibrary":10074,"Ġcyber":10075,"nell":10076,"ĠHur":10077,"ĠCB":10078,"Ġphotograp":10079,"UI":10080,"Ġsed":10081,"Ge":10082,"Ġ87":10083,"Ġdiverse":10084,"Ġencouraged":10085,"Ġconspiracy":10086,"Ġbirds":10087,"Ġoperator":10088,"Ġhandful":10089,"Ġclassified":10090,"?)":10091,"Ġdramatic":10092,"Ġinvestigators":10093,"ito":10094,"Ġwidespread":10095,"ĠRoom":10096,"----------------------------------------------------------------":10097,"Ġcollective":10098,"Ġjournalist":10099,"String":10100,"Ġtemperatures":10101,"ila":10102,"Ġguid":10103,"Ġinspect":10104,"Ġmissile":10105,"ĠMayor":10106,"Ġmanual":10107,"Ġsimultane":10108,"Ġratings":10109,"Ġsuck":10110,"Ġ97":10111,"Ġuniversal":10112,"Ġpharm":10113,"Ġdisrupt":10114,"iano":10115,"AV":10116,"Ġft":10117,"Ġstatist":10118,"olds":10119,"ĠWalker":10120,"php":10121,"Ġundert":10122,"ĠLas":10123,"ishop":10124,"ntil":10125,"reshold":10126,"ĠWhether":10127,"Ms":10128,"Ġdeny":10129,"ĠCloud":10130,"Ġprovider":10131,"Ġsurviv":10132,"ĠUpdate":10133,"has":10134,"Ġmistakes":10135,"charge":10136,"pled":10137,"rity":10138,"Ġnode":10139,"ĠMassachusetts":10140,"ools":10141,"lication":10142,"Ġfails":10143,"emale":10144,"ori":10145,"backs":10146,"Ġshirt":10147,"Ġ''":10148,"ĠNAT":10149,"Ġwaters":10150,"elson":10151,"Ġease":10152,"Ġscar":10153,"Ġcontents":10154,"mind":10155,"Ġcontribution":10156,"Ġshr":10157,"Ġhanded":10158,"Ġstability":10159,"Ġtrave":10160,"Em":10161,"Ġmirror":10162,"123":10163,"Ġweigh":10164,"Ġfiction":10165,"ouver":10166,"istant":10167,"rition":10168,"ĠFed":10169,"Ġphysically":10170,"Ġstake":10171,"ĠArticle":10172,"ĠArc":10173,"ĠLewis":10174,"ĠMind":10175,"Ġdemonstrate":10176,"Ġprofits":10177,"vision":10178,"omic":10179,"olid":10180,"Ġbattles":10181,"Ġdrives":10182,"Ġeastern":10183,"ĠSony":10184,"!!!":10185,"aration":10186,"vard":10187,"ĠGL":10188,"portation":10189,"Ġ92":10190,"Ġlawmakers":10191,"Ġprotecting":10192,"ĠEPA":10193,"Ġyeah":10194,"Ġshame":10195,"olph":10196,"even":10197,"xit":10198,"Ġattach":10199,"Ġrepresenting":10200,"Ġobs":10201,"ĠUtah":10202,"iffs":10203,"ĠFreedom":10204,"ó":10205,"AK":10206,"Ġincidents":10207,"itage":10208,"Ġviewers":10209,"cd":10210,"Ġmouse":10211,"Ġclar":10212,"Ġaccordance":10213,"Ġbot":10214,"cor":10215,"ĠSummer":10216,"held":10217,"Ġinnocent":10218,"Ġinitiative":10219,"ols":10220,"________________________________":10221,"Ġspots":10222,"pace":10223,"Ġconventional":10224,"Ġcorporations":10225,"Ġblocked":10226,"HD":10227,"attered":10228,"Ġrefers":10229,"Ġbuck":10230,"ĠDigital":10231,"120":10232,"Ġtopics":10233,"TF":10234,"Äģ":10235,"brid":10236,"reement":10237,"Ġunderlying":10238,"ĠMember":10239,"Ġinvestigating":10240,"Ġpregnancy":10241,"Ġtouchdown":10242,"ĠBand":10243,"ĠCaller":10244,"Ġinstances":10245,"PP":10246,"wa":10247,"Good":10248,"Ġ1991":10249,"ĠCold":10250,"Ġfears":10251,"Ġremarks":10252,"ĨĴ":10253,"atal":10254,"Ġmit":10255,"Ġexperiments":10256,"ipt":10257,"Color":10258,"indu":10259,"Update":10260,"Ġ93":10261,"Ag":10262,"Ġå":10263,"ancouver":10264,"Both":10265,"Ġjudges":10266,"Object":10267,"Ġstere":10268,"umbn":10269,"Ġparticipation":10270,"ĠStars":10271,"ĠJere":10272,"Ġweekly":10273,"ĠBan":10274,"Ġconversations":10275,"ĠPitt":10276,"uz":10277,"ĠIndiana":10278,"ĠKick":10279,"Ġinfection":10280,"Ġheroes":10281,"Ġsettled":10282,"Ġstrip":10283,"Ġhal":10284,"Ġdump":10285,"ĠSci":10286,"Ġles":10287,"Ġreferences":10288,"ĠURL":10289,"ĠBridge":10290,"Ġwanting":10291,"Force":10292,"Ġexclus":10293,"Meanwhile":10294,"mn":10295,"Ġgentle":10296,"maker":10297,"senal":10298,"ĠGro":10299,"ouri":10300,"ĠRain":10301,"ĠAlliance":10302,"Ġlift":10303,"ela":10304,"SD":10305,"ĠCleveland":10306,"Ġranked":10307,"Ġstadium":10308,"Ġdeadly":10309,"ä¸":10310,"Ġriding":10311,"aria":10312,"ĠArmor":10313,"Ġdocumentation":10314,"ĠGreece":10315,"reek":10316,"Ġlens":10317,"ĠSa":10318,"Ġgross":10319,"ĠEmer":10320,"agers":10321,"ĠDub":10322,"ĠRh":10323,"ĠAMD":10324,"Ġarrival":10325,"Ġdesert":10326,"Ġsupplement":10327,"ĠResp":10328,"Ġknee":10329,"Ġmargin":10330,"font":10331,"ogg":10332,"2010":10333,"ĠPir":10334,"ĠProm":10335,"ivals":10336,"Ġintake":10337,"Ġdifferently":10338,"ugs":10339,"Ġbits":10340,"cluded":10341,"Ġsearching":10342,"ĠDu":10343,"umble":10344,"Ġfunctional":10345,"ĠBaltimore":10346,"ĠCould":10347,"Ġdesired":10348,"Ġcircuit":10349,"ĠLyn":10350,"ĠGO":10351,"ĠFalse":10352,"repre":10353,"':":10354,"alties":10355,"Ġminim":10356,"Ġdrove":10357,"ĠShould":10358,"Ġhip":10359,"Ġpros":10360,"Ġutility":10361,"ĠNature":10362,"ĠMode":10363,"President":10364,"opp":10365,"rat":10366,"formance":10367,"Ġconcentration":10368,"Ġfont":10369,"ĠBud":10370,"Ġamid":10371,"Ġrevers":10372,"ĠML":10373,"Bar":10374,"Ġinteraction":10375,"Ġjurisd":10376,"Ġspells":10377,"dep":10378,"fil":10379,"Ġcivilians":10380,"utter":10381,"ĠCooper":10382,"ĠBelow":10383,"Ġentrance":10384,"Ġconvert":10385,"Ġcontroversy":10386,"owered":10387,"Ġcontrary":10388,"Ġarc":10389,"ĠExecutive":10390,"ĠOfficer":10391,"Ġpackages":10392,"Ġprogressive":10393,"width":10394,"Ġreserved":10395,"vol":10396,"ĠSamsung":10397,"Ġprinted":10398,"Ġcenters":10399,"Ġintroduce":10400,"ĠKennedy":10401,"Ġodds":10402,"Ġsurely":10403,"Ġindependence":10404,"Ġpassengers":10405,"reprene":10406,"ĠBeh":10407,"Ġloves":10408,"ĠESPN":10409,"Ġfacilit":10410,"Ġidentical":10411,"Ġdoct":10412,"Ġpartnership":10413,"conf":10414,"ĠHide":10415,"Ġconfused":10416,"ĠCow":10417,"Men":10418,"Ġwrest":10419,"ĠIraqi":10420,"Ġholes":10421,"ĠStudies":10422,"Ġpregnant":10423,"hard":10424,"Ġsignals":10425,"IX":10426,"Ġpulling":10427,"Ġgraduate":10428,"Ġnominee":10429,"Date":10430,"Ġpermitted":10431,"ĠâĤ¬":10432,"ĠOklahoma":10433,"Start":10434,"Ġauthorized":10435,"Ġalarm":10436,"ĠCos":10437,"van":10438,"Ġgenerations":10439,"cular":10440,"Ġdragon":10441,"ĠSoftware":10442,"ĠEdward":10443,"Ġcontroller":10444,"Sen":10445,"gered":10446,"ĠVik":10447,"Ġapproached":10448,"Thank":10449,"Ġcance":10450,"Ġformula":10451,"ĠSmall":10452,"Ġweakness":10453,"Ġramp":10454,"itudes":10455,"jud":10456,"Ġbrilliant":10457,"Ġaccus":10458,"source":10459,"Ġ800":10460,"ĠEvil":10461,"Sw":10462,"Ġhomeless":10463,"week":10464,"iens":10465,"rics":10466,"ĠThird":10467,"TO":10468,"Ġorganic":10469,"Ġpresentation":10470,"agh":10471,"ĠDownload":10472,"vation":10473,"Ġassembly":10474,"orable":10475,"holders":10476,"ĠBernie":10477,"ĠHelp":10478,"Ġtong":10479,"ĠFight":10480,"Ġbeach":10481,"Book":10482,"ĠLic":10483,"Ġrush":10484,"ĠRound":10485,"oup":10486,"ĠMarx":10487,"Ġcalculated":10488,"ĠDevil":10489,"ĠSarah":10490,"Ġoccasionally":10491,"Ġbullet":10492,"Available":10493,"gate":10494,"Ġ91":10495,"Ġhosp":10496,"Ġpromises":10497,"ĠHIV":10498,"ĠStadium":10499,"ĠStock":10500,"ĠCorporation":10501,"gage":10502,"NG":10503,"ĠCredit":10504,"Ġsne":10505,"ibl":10506,"Ġaccum":10507,"such":10508,"Ġterrorists":10509,"Ġconsciousness":10510,"ĠZh":10511,"Ġdrama":10512,"oola":10513,"piration":10514,"Ġlabour":10515,"ĠNin":10516,"Ġutter":10517,"Ġdemocratic":10518,"Ġassass":10519,"ilation":10520,"Ġgest":10521,"Ġabroad":10522,"Ġmetab":10523,"Ġsorts":10524,"Ġflav":10525,"UB":10526,"Ġmg":10527,"ĠNothing":10528,"ĠOd":10529,"Ġmusical":10530,"2009":10531,"Ġdrops":10532,"ocated":10533,"ateral":10534,"000000":10535,"Ġgre":10536,"Ġequality":10537,"Ġburden":10538,"Ġvig":10539,"ĠLeader":10540,"------------":10541,"Ġceremony":10542,"Ġfighter":10543,"Ġactors":10544,"Ġæ":10545,"aman":10546,"Fi":10547,"Ġalign":10548,"puter":10549,"Ġelder":10550,"ĠNSA":10551,"Ġrepresentation":10552,"ĠOntario":10553,"ITH":10554,"usalem":10555,"Ġharassment":10556,"itzer":10557,"Ġsymp":10558,"Ġboxes":10559,"ĠDR":10560,"Ġmanifest":10561,"atre":10562,"Ġ^":10563,"Ġdies":10564,"leton":10565,"Ġmissions":10566,"ethe":10567,"Ġresolve":10568,"Ġfollowers":10569,"Ġasc":10570,"Ġkm":10571,"lord":10572,"ammed":10573,"Ġsilent":10574,"ĠAssociated":10575,"Ġtiming":10576,"Ġprisoners":10577,"ĠKings":10578,"ĠFive":10579,"Ġtower":10580,"Ġapproaches":10581,"Ġprecisely":10582,"Ġbureau":10583,"ĠMother":10584,"ĠIss":10585,"Ġkeyboard":10586,"itual":10587,"Ġfunded":10588,"Ġstaying":10589,"Ġpsychological":10590,"Ġmile":10591,"ĠLeon":10592,"ĠBarb":10593,"will":10594,"Ġwider":10595,"ĠAtlantic":10596,"Ġtill":10597,"ĠRome":10598,"rot":10599,"Ġaccompan":10600,"Ġflour":10601,"aco":10602,"World":10603,"ĠExpress":10604,"ĠYu":10605,"Cor":10606,"Ġpleased":10607,"party":10608,"Ġpointing":10609,"Ġinflation":10610,"Ġroy":10611,"Ġ),":10612,"ainer":10613,"Ġwedding":10614,"ormon":10615,"Ġrequiring":10616,"Ġqualified":10617,"Ġsegment":10618,"END":10619,"Ġsizes":10620,"eals":10621,"Ġcorrupt":10622,"assador":10623,"Ġceleb":10624,"Ġdreams":10625,"ĠMess":10626,"Ġchecking":10627,"ĠVersion":10628,"Ġpreparing":10629,"Ġactively":10630,"ĠDiff":10631,"Ġlux":10632,"ĠWinter":10633,"acteria":10634,"ĠNE":10635,"Ġdeputy":10636,"Ġtransgender":10637,"Ġsummary":10638,"Ġinher":10639,"eries":10640,"char":10641,"ĠYan":10642,"Ġknock":10643,"ĠPath":10644,"Ġlip":10645,"roller":10646,"Ġimpression":10647,"Ġcelebrate":10648,"Ġslide":10649,"Ġguests":10650,"Ġclip":10651,"FS":10652,"Ġsavings":10653,"Ġcaptain":10654,"Ġlegacy":10655,"ĠDenver":10656,"Ġwounded":10657,"taboola":10658,"ACT":10659,"Ġpursue":10660,"Ġoxy":10661,"Ġq":10662,"Ġsemi":10663,"ĠNeed":10664,"ĠAffairs":10665,"Ġobsc":10666,"Ġchecked":10667,"Ġdual":10668,"Code":10669,"ĠMD":10670,"lem":10671,"ulty":10672,"Ġ©":10673,"ĠElizabeth":10674,"Ġcenturies":10675,"arded":10676,"src":10677,"Ġevident":10678,"ennis":10679,"atin":10680,"Ġunemployment":10681,"ĠMario":10682,"Ġintim":10683,"Christ":10684,"Ġbiological":10685,"Ġsoldier":10686,"ĠAdded":10687,"Ġmath":10688,"ĠGil":10689,"Ġbias":10690,"Ġdating":10691,"ĠOcean":10692,"Ġmice":10693,"Mus":10694,"hire":10695,"ĠTes":10696,"Server":10697,"limited":10698,"Size":10699,"Ġmeters":10700,"Ġrocket":10701,"essee":10702,"Ġcertificate":10703,"ĠIranian":10704,"ASS":10705,"Ġgrid":10706,"Dec":10707,"Ġrolling":10708,"commun":10709,"ĠSweden":10710,"bury":10711,"Ġtissue":10712,"Ġracism":10713,"ĠLocal":10714,"Ġmystery":10715,"Ġexamine":10716,"Ġstem":10717,"Ġsits":10718,"Ġhoped":10719,"oting":10720,"Ġdialogue":10721,"Ġpersu":10722,"Watch":10723,"lay":10724,"MAN":10725,"Ġchronic":10726,"ĠPortland":10727,"market":10728,"ĠSEC":10729,"Ġparallel":10730,"Ġscandal":10731,"Ġcarries":10732,"Ġphenomenon":10733,"human":10734,"acker":10735,"ĠOx":10736,"Ġretirement":10737,"tainment":10738,"ovie":10739,"ĠGear":10740,"Ġduties":10741,"Ġdose":10742,"Ġscroll":10743,"MB":10744,"inf":10745,"Ġsauce":10746,"Ġlandscape":10747,"reddit":10748,"ĠChampionship":10749,"ĠReddit":10750,"alid":10751,"Ġcoin":10752,"Ġovers":10753,"Ġposting":10754,"about":10755,"Ġfel":10756,"andy":10757,"Ġbold":10758,"Ġfocusing":10759,"effect":10760,"GR":10761,"Ġdeemed":10762,"Ġrecommendations":10763,"Ġstepped":10764,"Ġvoter":10765,"ĠDeep":10766,"ĠInstagram":10767,"Ġmoderate":10768,"ĠMaryland":10769,"Ġrestricted":10770,"ĠMB":10771,"ĠChall":10772,"Ġtob":10773,"Ġcir":10774,"ĠOcc":10775,"ĠEver":10776,"Ġcollaps":10777,"INFO":10778,"=-":10779,"ĠPict":10780,"ĠAccount":10781,"nc":10782,"Ġought":10783,"Ġexport":10784,"Ġdrunk":10785,"('":10786,"Ġwise":10787,"ĠMort":10788,"necess":10789,"Ġancest":10790,"ĠIncre":10791,"Ġfrequent":10792,"mir":10793,"Ġinterpretation":10794,"Ġdependent":10795,"Ġcoins":10796,"ĠBol":10797,"Video":10798,"ĠJustin":10799,"Ġfatal":10800,"Ġcooking":10801,"Ġconfusion":10802,"ipher":10803,"Ġcustody":10804,"ĠMorgan":10805,"omach":10806,"ĠGovernor":10807,"Ġrestaurants":10808,"eling":10809,"Ġacknowledged":10810,"Ġther":10811,"Ġgenes":10812,"ching":10813,"Hey":10814,"Ġtactics":10815,"ĠMexican":10816,"Ġvend":10817,"Ġhes":10818,"quer":10819,"Ġnoting":10820,"ĠCameron":10821,"Ġtargeting":10822,"rock":10823,"Ġcredits":10824,"Ġemotions":10825,"Ġrepresentatives":10826,"news":10827,"Ġlegislative":10828,"Ġremoving":10829,"Ġtweeted":10830,"ĠCarter":10831,"ĠFixed":10832,"Ġforcing":10833,"Ġspeaker":10834,"Ġmales":10835,"ĠVietnam":10836,"lined":10837,"Ġconcepts":10838,"Ġvoices":10839,"oir":10840,"ĠTrib":10841,"Whe":10842,"ĠJerusalem":10843,"ĠSant":10844,"Ġcul":10845,"Ġlady":10846,"ĠHawai":10847,"Ġarts":10848,"ĠInn":10849,"ĠMachine":10850,"ĠEmperor":10851,"Ġslot":10852,"gly":10853,"ĠProcess":10854,"III":10855,"Ġathletes":10856,"ĠTemple":10857,"ĠRepresent":10858,"Ġpresc":10859,"Ġtons":10860,"Ġgolden":10861,"Ġpunch":10862,"ĠGR":10863,"iverpool":10864,"Ġenact":10865,"Ġlobby":10866,"Ġmos":10867,"Ġpicking":10868,"Ġlifetime":10869,"Ġcognitive":10870,"Each":10871,"zo":10872,"Ġdub":10873,"Ġconsists":10874,"oln":10875,"Ġfestival":10876,"amous":10877,"Ġintellig":10878,"words":10879,"ĠSmart":10880,"Ġdele":10881,"Ġlapt":10882,"Ġmagical":10883,"ĠSin":10884,"bus":10885,"urities":10886,"ighth":10887,"ĠRuby":10888,"ĠSure":10889,"olving":10890,"Ġjun":10891,"OST":10892,"Ġimposed":10893,"Ġastron":10894,"Ġcorrel":10895,"ĠNS":10896,"ĠKit":10897,"ĠFuture":10898,"burn":10899,"Ġimmune":10900,"ocus":10901,"Ġcourses":10902,"ĠString":10903,"Ġlean":10904,"Ġghost":10905,"Ġoutcomes":10906,"Ġexpense":10907,"Ġeveryday":10908,"Ġacceptable":10909,"Ah":10910,"Ġequipped":10911,"Ġorange":10912,"FR":10913,"ĠDutch":10914,"Though":10915,"ĠRank":10916,"QU":10917,"ĠRoberts":10918,"what":10919,"rend":10920,"Ġdisappear":10921,"Ġspawn":10922,"ĠLam":10923,"ois":10924,"Ġdeserve":10925,"Ġminimal":10926,"Ġnervous":10927,"ĠWould":10928,"Ġrook":10929,"ĠVancouver":10930,"Ġresign":10931,"shire":10932,"ĠWorks":10933,"ĠBuild":10934,"Ġaffordable":10935,"ĠGary":10936,"ĠArena":10937,"Ġhanging":10938,"Ġimplications":10939,"ĠSong":10940,"Ġmaintaining":10941,"Ġguards":10942,"CON":10943,"Ġderived":10944,"Ġexecuted":10945,"Ġtheories":10946,"Ġquoted":10947,"ĠAndre":10948,"oga":10949,"seless":10950,"info":10951,"ĠBelg":10952,"Ġtears":10953,"ĠSurv":10954,"Ġbirthday":10955,"igious":10956,"immer":10957,"Ġspectrum":10958,"Ġarchitecture":10959,"Ġrecruit":10960,"arma":10961,"Table":10962,"Ġmonsters":10963,"ĠGov":10964,"Ġdestination":10965,"Ġattractive":10966,"Ġfoss":10967,"ĠMoreover":10968,"Ġpresents":10969,"THE":10970,"Ġreply":10971,"pton":10972,"Ġcum":10973,"Ġdelight":10974,"Ġaffects":10975,"Ġdonations":10976,"ĠToy":10977,"ĠHim":10978,"MENT":10979,"Ġovercome":10980,"itched":10981,"ĠFantasy":10982,"ĠHat":10983,"ĠBeast":10984,"bott":10985,"Ġinvestigations":10986,"Run":10987,"Ġhunting":10988,"di":10989,"fund":10990,"Ġsessions":10991,"estyle":10992,"Ġportray":10993,"oids":10994,"Yeah":10995,"Ġcommunicate":10996,"Ġcomedy":10997,"ĠYang":10998,"Ġbelt":10999,"ĠMarine":11000,"Ġpredicted":11001,"Play":11002,"Ġimportantly":11003,"Ġremarkable":11004,"Ġeliminate":11005,"David":11006,"Ġbind":11007,"VID":11008,"Ġadvocates":11009,"ĠGaza":11010,"imp":11011,"DB":11012,"ĠNa":11013,"ĠSimilar":11014,"IES":11015,"Ġcharity":11016,"vas":11017,"math":11018,"Ġâĸ":11019,"oker":11020,"ndum":11021,"Ġcaps":11022,"ĠHal":11023,"2000":11024,"ean":11025,"Ġfleet":11026,"Ġrecre":11027,"Right":11028,"Ġsleeping":11029,"ijing":11030,"kind":11031,"Ġdesignated":11032,"ä":11033,"Ġanimation":11034,"kee":11035,"ĠIntrodu":11036,"Ġ/>":11037,"Ġdelayed":11038,"Ġtremend":11039,"Ġcurious":11040,"Use":11041,"Ġlect":11042,"dam":11043,"Ġinnovation":11044,"ĠPoints":11045,"Ġloading":11046,"Ġdispute":11047,"ctic":11048,"irds":11049,"ĠBY":11050,"Ġnurs":11051,"ĠValue":11052,"IONS":11053,"ĠHum":11054,"Ġtemplate":11055,"mers":11056,"Ġappearances":11057,"ĠEntertainment":11058,"Ġtranslation":11059,"Ġsake":11060,"Ġbeneath":11061,"Ġinhib":11062,"Ġeuro":11063,"abetes":11064,"Ġstudying":11065,"ĠMas":11066,"Ġperceived":11067,"Ġexamined":11068,"Ġeager":11069,"Ġcoaches":11070,"Ġimper":11071,"chi":11072,"Ġproduces":11073,"\").":11074,"ĠEveryone":11075,"Ġmunicip":11076,"Ġgirlfriend":11077,"Ġhire":11078,"ĠVice":11079,"Ġsuitable":11080,"opy":11081,"Ġinequ":11082,"ĠDuke":11083,"fish":11084,"first":11085,"ĠObs":11086,"Ġinterior":11087,"ĠBruce":11088,"ĠRy":11089,"Ġanalys":11090,"Ġconsiderable":11091,"Ġforecast":11092,"Ġfert":11093,"orship":11094,"ĠDrug":11095,"ĠALL":11096,":\"":11097,"thur":11098,"ĠMail":11099,"Ġballot":11100,"Ġinstantly":11101,"ĠChannel":11102,"Ġpicks":11103,"Ġ1989":11104,"Ġtent":11105,"oli":11106,"Ġcivilian":11107,"bling":11108,"ello":11109,"bu":11110,"Ġinch":11111,"Ġlogo":11112,"Ġcooperation":11113,"Ġwalks":11114,"Ġinvestments":11115,"Ġimprison":11116,"ĠFestival":11117,"ĠKy":11118,"Ġlegally":11119,"Ġgri":11120,"charg":11121,"Sl":11122,"Ġthreatening":11123,"duction":11124,"flow":11125,"Ġdismissed":11126,"ibraries":11127,"cap":11128,"ele":11129,"ĠMcG":11130,"ĠHarvard":11131,"ĠConservative":11132,"ĠCBS":11133,"png":11134,"Ġroots":11135,"ĠHaving":11136,"umbled":11137,"ĠFun":11138,"\\/":11139,"ĠSearch":11140,"plex":11141,"Ġdiscussing":11142,"Ġcontinu":11143,"ĠTai":11144,"ĠWik":11145,"Free":11146,"fit":11147,"Ġrefuse":11148,"Ġmanaging":11149,"Ġsynd":11150,"ipedia":11151,"walk":11152,"Ġprofessionals":11153,"Ġguidance":11154,"Ġuniversities":11155,"Ġassemb":11156,"untu":11157,"Finally":11158,"ASE":11159,"ĠAuto":11160,"ĠHad":11161,"Ġanniversary":11162,"LD":11163,"ĠDur":11164,"ĠUltimate":11165,"ihad":11166,"product":11167,"Ġtransit":11168,"Ġrestore":11169,"Ġexplaining":11170,"Ġasset":11171,"Ġtransferred":11172,"Ġburst":11173,"apolis":11174,"ĠMagazine":11175,"ĠCra":11176,"ĠBR":11177,"gged":11178,"ĠHE":11179,"Mich":11180,"bet":11181,"ĠLady":11182,"ylum":11183,"erves":11184,"Ġmeets":11185,"white":11186,"Log":11187,"Ġcorresponding":11188,"Ġinsisted":11189,"GG":11190,"Ġsurrounded":11191,"Ġtens":11192,"Ġlane":11193,"Ġcoinc":11194,"home":11195,"Ġexisted":11196,"ected":11197,"ĠDouble":11198,"lamm":11199,"Ġskept":11200,"exp":11201,"Ġperception":11202,"iev":11203,"ĠBeing":11204,"oft":11205,"Ġadopt":11206,".:":11207,"];":11208,"Windows":11209,"Ġsatellite":11210,"ASH":11211,"Ġinfant":11212,"description":11213,"ĠMeanwhile":11214,"cm":11215,"oca":11216,"ĠTreat":11217,"actor":11218,"Ġtobacco":11219,"ĠNorm":11220,"emption":11221,"Ġflesh":11222,"Ġje":11223,"oop":11224,"ĠHeaven":11225,"Ġbeating":11226,"anim":11227,"Ġgathering":11228,"Ġcultiv":11229,"GO":11230,"abe":11231,"ĠJonathan":11232,"ĠSafety":11233,"Ġbadly":11234,"prot":11235,"Ġchoosing":11236,"Ġcontacted":11237,"Ġquit":11238,"Ġdistur":11239,"Ġstir":11240,"Ġtoken":11241,"Det":11242,"ĠPa":11243,"Ġfunctionality":11244,"003":11245,"some":11246,"Ġlimitations":11247,"Ġmeth":11248,"build":11249,"config":11250,"NT":11251,"rell":11252,"blem":11253,"ĠMom":11254,"Ġveterans":11255,"ĠHu":11256,"Ġtrends":11257,"arer":11258,"ĠGiven":11259,"ĠCaption":11260,"may":11261,"AST":11262,"Ġwondering":11263,"ĠClark":11264,"normal":11265,"Ġseparated":11266,"Ġdesp":11267,"stic":11268,"brew":11269,"Ġrelating":11270,"ĠNik":11271,"ĠFarm":11272,"Ġenthusi":11273,"good":11274,"deb":11275,"Ġactivist":11276,"Ġmart":11277,"Ġexplosion":11278,"ĠEconomic":11279,"Link":11280,"Ġinsight":11281,"Ġconvenient":11282,"Ġcounterpart":11283,"support":11284,"ĠVirt":11285,"agen":11286,"ĠTennessee":11287,"ĠSimon":11288,"ĠAward":11289,"OCK":11290,"ĠFigure":11291,"Ġoverseas":11292,"Ġpride":11293,"ĠCas":11294,"note":11295,"mg":11296,"Current":11297,"Ġdisplays":11298,"content":11299,"Ġtraveling":11300,"Ġhospitals":11301,"ĠFinancial":11302,"ĠPast":11303,"Ġdefendant":11304,"Ġstreaming":11305,"mble":11306,"ĠBerlin":11307,"uki":11308,"Ġdistribut":11309,"Ġantib":11310,"Ġchocolate":11311,"ĠCastle":11312,"Ġinterrupt":11313,"ĠRow":11314,"Ġconversion":11315,"Ġbugs":11316,"ĠRather":11317,"liest":11318,"LY":11319,"ĠJean":11320,"common":11321,"akh":11322,"Ġ130":11323,"otton":11324,"ĠDean":11325,"Ġamendment":11326,"Ġgameplay":11327,"ĠWarren":11328,"oda":11329,"Ġhighlights":11330,"Ġirre":11331,"ĠNATO":11332,"Ġballs":11333,"Ġdemanding":11334,"URE":11335,"ĠLuke":11336,"Figure":11337,"stop":11338,"onia":11339,"zone":11340,"izers":11341,"ĠWR":11342,"Ġawarded":11343,"Ġregulatory":11344,"ĠHart":11345,"ĠSN":11346,"pling":11347,"Ġsour":11348,"ĠPixel":11349,"usive":11350,"Ġfet":11351,"ĠSent":11352,"Ġautomatic":11353,"Ġfer":11354,"vernment":11355,"ĠKhan":11356,"TON":11357,"father":11358,"Ġextraordinary":11359,"throp":11360,"ĠPython":11361,"ĠGPU":11362,"Ġsexually":11363,"Ġdesktop":11364,"itivity":11365,"ĠAntonio":11366,"Ġorient":11367,"Ġears":11368,"obby":11369,"ouses":11370,"vertisements":11371,"Ġmanufacturers":11372,"icient":11373,"minute":11374,"Ġconviction":11375,"Ġgarden":11376,"public":11377,"Ġsatisfied":11378,"fold":11379,"OK":11380,"Ġinhab":11381,"ĠThink":11382,"Ġprogramme":11383,"Ġstomach":11384,"Ġcoordin":11385,"Ġholy":11386,"Ġthreshold":11387,"Ġrhet":11388,"Ġserial":11389,"Ġemployers":11390,"ĠEverything":11391,"rah":11392,"Ġbother":11393,"Ġbrands":11394,"Value":11395,"ĠTed":11396,"ĠPlanet":11397,"Ġpink":11398,"ĠFurthermore":11399,"sa":11400,"PE":11401,"reck":11402,"ĠUSD":11403,"otte":11404,"Ġ&&":11405,"Ġlanded":11406,"gets":11407,"Ġproducers":11408,"Ġhealthcare":11409,"Ġdominant":11410,"Ġdestro":11411,"Ġamended":11412,"chron":11413,"Ġfits":11414,"ĠSyd":11415,"ĠAuthority":11416,"ATCH":11417,"Ġfights":11418,"ĠLLC":11419,"Ġ---":11420,"ĠCorp":11421,"Ġtoxic":11422,"specific":11423,"ĠCorn":11424,"ĠChel":11425,"Ġtelephone":11426,"ĠPant":11427,"Ġmysterious":11428,"aunch":11429,"odox":11430,"media":11431,"Ġwitnesses":11432,"agu":11433,"Ġquestioned":11434,"ĠBrexit":11435,"ĠRemember":11436,"enez":11437,"Ġendorse":11438,"iatric":11439,"ĠIdent":11440,"Ġridiculous":11441,"110":11442,"Ġprayer":11443,"Ġscientist":11444,"Ġ1950":11445,"ĠAqu":11446,"Ġunderground":11447,"ĠUFC":11448,"mare":11449,"ĠLater":11450,"wich":11451,"Ġsubscrib":11452,"Ġhosts":11453,"Ġerr":11454,"Ġgrants":11455,"antom":11456,"Ġsummon":11457,"early":11458,"ĠClear":11459,"ĠPrim":11460,"Ġsuspension":11461,"Ġguaranteed":11462,"apper":11463,"Ġrice":11464,"ĠSean":11465,"ĠShin":11466,"Ġreferendum":11467,"Ġfled":11468,"rust":11469,"Ġ360":11470,"tery":11471,"Ġshocked":11472,"BR":11473,"ĠOil":11474,"ĠAllah":11475,"Ġpartly":11476,"Ġignor":11477,"Ġtransmission":11478,"Ġhomosexual":11479,"iversal":11480,"Ġhopefully":11481,"ãĤ¤":11482,"Ġlesson":11483,"Leg":11484,"Ġ..":11485,"Yet":11486,"table":11487,"appropri":11488,"rett":11489,"Ġboards":11490,"Ġincorrect":11491,"Ġbacteria":11492,"aru":11493,"amac":11494,"Ġsnap":11495,".'\"":11496,"Ġparad":11497,"tem":11498,"heart":11499,"Ġavailability":11500,"Ġwisdom":11501,"Ġ(+":11502,"Ġpriest":11503,"ĠÂłĠÂł":11504,"Open":11505,"Ġspan":11506,"Ġparameter":11507,"Ġconvince":11508,"Ġ(%)":11509,"rac":11510,"Ġfo":11511,"Ġsafely":11512,"Ġconverted":11513,"ĠOlympic":11514,"Ġreserve":11515,"Ġhealing":11516,"ĠMine":11517,"Max":11518,"Ġinherent":11519,"ĠGraham":11520,"Ġintegrated":11521,"Dem":11522,"Ġpipeline":11523,"Ġapplying":11524,"Ġembed":11525,"ĠCharlie":11526,"Ġcave":11527,"2008":11528,"Ġconsensus":11529,"Ġrewards":11530,"Pal":11531,"ĠHTML":11532,"Ġpopularity":11533,"looking":11534,"ĠSword":11535,"ĠArts":11536,"')":11537,"Ġelectron":11538,"clusions":11539,"Ġintegrity":11540,"Ġexclusively":11541,"Ġgrace":11542,"Ġtorture":11543,"Ġburned":11544,"two":11545,"Ġ180":11546,"Produ":11547,"Ġentreprene":11548,"raphics":11549,"Ġgym":11550,"ricane":11551,"ĠTam":11552,"Ġadministrative":11553,"Ġmanufacturer":11554,"Ġvel":11555,"ĠNi":11556,"Ġisolated":11557,"ĠMedicine":11558,"Ġbackup":11559,"Ġpromoting":11560,"Ġcommander":11561,"Ġflee":11562,"ĠRussell":11563,"Ġforgotten":11564,"ĠMissouri":11565,"Ġresidence":11566,"mons":11567,"Ġresemb":11568,"Ġwand":11569,"Ġmeaningful":11570,"PT":11571,"Ġbol":11572,"Ġhelic":11573,"Ġwealthy":11574,"Ġrifle":11575,"strong":11576,"rowing":11577,"plan":11578,"asury":11579,"â̦.":11580,"Ġexpanding":11581,"ĠHamilton":11582,"Ġreceives":11583,"SI":11584,"eatures":11585,"ĠAnim":11586,"REE":11587,"Put":11588,"Ġbriefly":11589,"rive":11590,"Ġstimul":11591,"Ġ``(":11592,"Ġ__":11593,"Ġchip":11594,"Ġhaz":11595,"Ġprize":11596,"ĠThings":11597,"ACE":11598,"ulin":11599,"dict":11600,"oku":11601,"Ġassociate":11602,"ockets":11603,"youtube":11604,"Story":11605,"ategory":11606,"Ġmild":11607,"ailing":11608,"ĠYe":11609,"Orig":11610,"ĠKa":11611,"orig":11612,"Ġpropaganda":11613,"Ġanonymous":11614,"Ġstruggled":11615,"Ġoutrage":11616,"ATED":11617,"ĠBeijing":11618,"rary":11619,"Ġleather":11620,"Ġworlds":11621,"Ġbroader":11622,"125":11623,"idal":11624,"ĠBetter":11625,"Ġtear":11626,"Ext":11627,"Ġproposals":11628,"Ġiter":11629,"ĠSquad":11630,"Ġvolunt":11631,"mi":11632,"Did":11633,"ĠPu":11634,"pin":11635,"Ġspeakers":11636,"Ġborders":11637,"Ġfigured":11638,"='":11639,"Ġsimultaneously":11640,"aeda":11641,"Ġcharging":11642,"Ġurged":11643,"Ġconj":11644,"256":11645,"ĠGordon":11646,"merce":11647,"Ġdocumentary":11648,"Share":11649,"itol":11650,"ONE":11651,"ĠGarden":11652,"hatt":11653,"ĠThompson":11654,"aneous":11655,"apore":11656,"Ġtanks":11657,"Ġlessons":11658,"track":11659,"Ġoutstanding":11660,"Ġvolunteers":11661,"Ġspray":11662,"Ġmanagers":11663,"large":11664,"Ġcamps":11665,"Ġartificial":11666,"ĠRu":11667,"Ġbags":11668,"thal":11669,"Ġcompatible":11670,"ĠBlade":11671,"Ġfed":11672,"Ġargues":11673,"FI":11674,"Ġunfair":11675,"Ġcorn":11676,"Ġoffset":11677,"Ġdirections":11678,"Ġdisappointed":11679,"ĠConvention":11680,"Ġviewing":11681,"ME":11682,"ocity":11683,"Ġtowns":11684,"Ġlayers":11685,"Ġrolled":11686,"Ġjumped":11687,"Ġattribute":11688,"Ġunnecess":11689,"incoln":11690,"Ġsuppose":11691,"ĠNether":11692,"cha":11693,"Ġburied":11694,"Ġsixth":11695,"Ben":11696,"ressing":11697,"OUR":11698,"Ġwound":11699,"Ġcycl":11700,"Ġmechanisms":11701,"Ġcongressional":11702,"ĠElement":11703,"Ġagreements":11704,"Ġdecor":11705,"Ġclosest":11706,"ĠMit":11707,"Google":11708,"}}":11709,"Ġmixture":11710,"Ġfluid":11711,"Sign":11712,"ĠScholar":11713,"Ġpist":11714,"asket":11715,"abling":11716,"Ġracing":11717,"hero":11718,"riel":11719,"assy":11720,"Ġcheaper":11721,"ben":11722,"Ġvertical":11723,"amacare":11724,"ĠReading":11725,"gments":11726,"Ġhelicop":11727,"Ġsacrifice":11728,"aya":11729,"paren":11730,"VA":11731,"ĠLes":11732,"ĠStudio":11733,"Ġviolations":11734,"ĠAnna":11735,"acer":11736,"é¾":11737,"ĠRat":11738,"ĠBeck":11739,"ĠDick":11740,"ĠACT":11741,"Ġcomposition":11742,"Ġtexture":11743,"ĠOwn":11744,"Ġsmartphone":11745,"ĠNA":11746,"Ġforb":11747,"import":11748,"Ġdefending":11749,"ilst":11750,"rer":11751,"Ġoh":11752,"ĠJeremy":11753,"Ġbanking":11754,"ceptions":11755,"Ġrespective":11756,"/.":11757,"Ġdrinks":11758,"ĠWi":11759,"Ġbands":11760,"ĠLiverpool":11761,"Ġgrip":11762,"ĠBuy":11763,"Ġopenly":11764,"Ġreviewed":11765,"pert":11766,"Ġverify":11767,"ĠCole":11768,"ĠWales":11769,"MO":11770,"Ġunpre":11771,"Ġshelter":11772,"ĠImperial":11773,"Ġgui":11774,"ĠDak":11775,"Ġsuggestions":11776,"Ġexplicitly":11777,"Ġslave":11778,"Ġblockchain":11779,"Ġcompeting":11780,"Ġpromising":11781,"SON":11782,"Ġsoccer":11783,"Ġconstitution":11784,"429":11785,"Ġdistract":11786,"ĠUser":11787,"esides":11788,"ĠMethod":11789,"ĠTokyo":11790,"Ġaccompanied":11791,"Client":11792,"sur":11793,"alog":11794,"Ġidentification":11795,"Ġinvasion":11796,"asma":11797,"Ġindustries":11798,"ppers":11799,"Ġsubtle":11800,"ĠUnit":11801,"natural":11802,"Ġsurvived":11803,"Ġflaw":11804,"ĺħ":11805,"ĠHoll":11806,"Ġdeficit":11807,"Ġtutorial":11808,"ĠChance":11809,"Ġarguing":11810,"Ġcontemporary":11811,"Ġintegration":11812,"forward":11813,"Ġtum":11814,"itis":11815,"Ġhiding":11816,"ĠDomin":11817,"ĠTan":11818,"ĠBuilding":11819,"ĠVin":11820,"Ġspokesperson":11821,"ĠNotes":11822,"Ġemerging":11823,"Ġpreparation":11824,"Ġprost":11825,"Ġsuspects":11826,"Ġautonom":11827,"Description":11828,"Ġdealt":11829,"ĠPear":11830,"Ġsteady":11831,"Ġdecreased":11832,"Ġsovere":11833,"ĠClin":11834,"Ġgradually":11835,"orses":11836,"ĠWAR":11837,"Serv":11838,"ãĤ¢":11839,"hr":11840,"Ġdirty":11841,"ĠBarn":11842,"ĠBC":11843,"Ġdil":11844,"Ġcalendar":11845,"Ġcompliance":11846,"Ġchamber":11847,"bb":11848,"Ġpassenger":11849,"ateful":11850,"ĠTitle":11851,"ĠSydney":11852,"ĠGot":11853,"Ġdarkness":11854,"Ġdefect":11855,"Ġpacked":11856,"assion":11857,"Ġgods":11858,"Ġharsh":11859,"ICK":11860,"leans":11861,"Ġalgorithm":11862,"Ġoxygen":11863,"Ġvisits":11864,"Ġblade":11865,"Ġkilomet":11866,"ĠKentucky":11867,"Ġkiller":11868,"Pack":11869,"enny":11870,"Ġdivine":11871,"Ġnomination":11872,"being":11873,"Ġengines":11874,"Ġcats":11875,"Ġbuffer":11876,"ĠPhill":11877,"Ġtraff":11878,"AGE":11879,"Ġtongue":11880,"Ġradiation":11881,"erer":11882,"mem":11883,"ĠExplicit":11884,"é¾į":11885,"Ġcouples":11886,"Ġphysics":11887,"ĠMcK":11888,"Ġpolitically":11889,"awks":11890,"ĠBloom":11891,"Ġworship":11892,"eger":11893,"uter":11894,"ĠFO":11895,"Ġmathemat":11896,"Ġsentenced":11897,"Ġdisk":11898,"ĠMarg":11899,"Ġ/*":11900,"PI":11901,"Ġoptional":11902,"Ġbabies":11903,"Ġseeds":11904,"ĠScottish":11905,"Ġthy":11906,"]]":11907,"ĠHitler":11908,"PH":11909,"ngth":11910,"Ġrecovered":11911,"inge":11912,"Ġpowder":11913,"Ġlips":11914,"Ġdesigner":11915,"Ġdisorders":11916,"Ġcourage":11917,"Ġchaos":11918,"\"},{\"":11919,"Ġcarrier":11920,"bably":11921,"High":11922,"ĠRT":11923,"esity":11924,"len":11925,"Ġroutes":11926,"uating":11927,"Fil":11928,"NOT":11929,"wall":11930,"sburgh":11931,"Ġengaging":11932,"ĠJavaScript":11933,"orer":11934,"lihood":11935,"Ġunions":11936,"ĠFederation":11937,"ĠTesla":11938,"Ġcompletion":11939,"ĠTa":11940,"Ġprivilege":11941,"ĠOrange":11942,"Ġneur":11943,"parency":11944,"Ġbones":11945,"Ġtitled":11946,"Ġprosecutors":11947,"ĠME":11948,"Ġengineer":11949,"ĠUniverse":11950,"ĠHig":11951,"nie":11952,"oard":11953,"Ġhearts":11954,"ĠGre":11955,"ussion":11956,"Ġministry":11957,"Ġpenet":11958,"ĠNut":11959,"ĠOw":11960,"ĠXP":11961,"instein":11962,"Ġbulk":11963,"System":11964,"icism":11965,"ĠMarketable":11966,"Ġpreval":11967,"Ġposter":11968,"Ġattending":11969,"urable":11970,"Ġlicensed":11971,"ĠGh":11972,"etry":11973,"ĠTradable":11974,"Ġblast":11975,"à¤":11976,"ĠTitan":11977,"elled":11978,"die":11979,"Have":11980,"ĠFlame":11981,"Ġprofound":11982,"Ġparticipating":11983,"Ġanime":11984,"ĠEss":11985,"Ġspecify":11986,"Ġregarded":11987,"ĠSpell":11988,"Ġsons":11989,"owned":11990,"Ġmerc":11991,"Ġexperimental":11992,"lando":11993,"hs":11994,"ĠDungeon":11995,"inos":11996,"Ġcomply":11997,"ĠSystems":11998,"arth":11999,"Ġseized":12000,"local":12001,"ĠGirls":12002,"udo":12003,"oned":12004,"ĠFle":12005,"Ġconstructed":12006,"Ġhosted":12007,"Ġscared":12008,"actic":12009,"ĠIslands":12010,"ĠMORE":12011,"Ġbless":12012,"Ġblocking":12013,"Ġchips":12014,"Ġevac":12015,"Ps":12016,"Ġcorporation":12017,"Ġox":12018,"Ġlighting":12019,"Ġneighbors":12020,"ĠUb":12021,"aro":12022,"Ġbeef":12023,"ĠUber":12024,"Facebook":12025,"armed":12026,"itate":12027,"ĠRating":12028,"ĠQuick":12029,"Ġoccupied":12030,"Ġaims":12031,"ĠAdditionally":12032,"ĠInterest":12033,"Ġdramatically":12034,"Ġheal":12035,"Ġpainting":12036,"Ġengineers":12037,"MM":12038,"ĠMust":12039,"Ġquantity":12040,"Paul":12041,"Ġearnings":12042,"ĠPosts":12043,"stra":12044,"ãĥ¼ãĥ":12045,"Ġstance":12046,"Ġdropping":12047,"script":12048,"Ġdressed":12049,"Make":12050,"Ġjustify":12051,"ĠLtd":12052,"Ġprompted":12053,"Ġscrut":12054,"Ġspeeds":12055,"ĠGiants":12056,"omer":12057,"ĠEditor":12058,"Ġdescribing":12059,"ĠLie":12060,"mented":12061,"Ġnowhere":12062,"ocaly":12063,"Ġinstruction":12064,"fortable":12065,"Ġentities":12066,"Ġcm":12067,"ĠNatural":12068,"Ġinquiry":12069,"Ġpressed":12070,"izont":12071,"forced":12072,"Ġraises":12073,"ĠNetflix":12074,"ĠSide":12075,"Ġouter":12076,"Ġamongst":12077,"ims":12078,"owski":12079,"Ġclimb":12080,"never":12081,"Ġcombine":12082,"ding":12083,"Ġcompr":12084,"Ġsignificance":12085,"Ġremembered":12086,"ĠNevada":12087,"ĠTel":12088,"ĠScar":12089,"ĠWarriors":12090,"ĠJane":12091,"Ġcoup":12092,"bas":12093,"Ġterminal":12094,",-":12095,"OH":12096,"Ġtension":12097,"Ġwings":12098,"ĠMyster":12099,"����":12100,"ĠUnlike":12101,"valid":12102,"vironments":12103,"ĠAli":12104,"Ġnaked":12105,"books":12106,"ĠMun":12107,"ĠGulf":12108,"Ġdensity":12109,"Ġdimin":12110,"Ġdesperate":12111,"Ġpresidency":12112,"Ġ1986":12113,"hy":12114,"IND":12115,"Ġunlock":12116,"imens":12117,"Ġhandled":12118,"ĠEb":12119,"Ġdisappeared":12120,"Ġgenre":12121,"Ġ1988":12122,"Ġdetermination":12123,"Stream":12124,"iko":12125,"apters":12126,"Ġacknowledge":12127,"Jan":12128,"Ġcapitalism":12129,"Pat":12130,"Ġ2020":12131,"Ġpainful":12132,"Ġcurve":12133,"Ġbombs":12134,"storm":12135,"ĠMetal":12136,"encer":12137,"ĠFig":12138,"ĠAaron":12139,"anches":12140,"Ġinspiration":12141,"Ġexhaust":12142,"tains":12143,"ashi":12144,"Ġdescript":12145,"Ġritual":12146,"ĠChelsea":12147,"Ġpromotion":12148,"ĠHung":12149,"ĠWard":12150,"iva":12151,"ĠET":12152,"Ġtoss":12153,"allow":12154,"ĠFrancis":12155,"Dep":12156,"Ġhappiness":12157,"ĠGlass":12158,"Ġbeta":12159,"Ġstrengthen":12160,"NE":12161,"oa":12162,"Ġbuttons":12163,"ĠMurray":12164,"Ġkicked":12165,"Quest":12166,"ĠTalk":12167,"ĠSeveral":12168,"ĠZero":12169,"Ġdrone":12170,"ulk":12171,"Ġcam":12172,"ĠMobile":12173,"Ġpreventing":12174,"Ġretro":12175,"ĠAx":12176,"Ġcruel":12177,"Ġfloat":12178,".),":12179,"Ġfiling":12180,"ĠGrant":12181,"ĠBor":12182,"Ġrib":12183,"Ġchampionship":12184,"ĠMerc":12185,"Ġstyles":12186,"Ġcake":12187,"Ġbuilds":12188,"ĠSelf":12189,"iox":12190,"Ġepic":12191,"oyd":12192,"Bel":12193,"ĠStew":12194,".(":12195,"ahu":12196,"ĠBeyond":12197,"Ġouts":12198,"Ġsolo":12199,"ĠTree":12200,"Ġpreserve":12201,"Ġtub":12202,"ARE":12203,"roc":12204,"ĠImpro":12205,"ĠWright":12206,"Ġbund":12207,"Ġtraged":12208,"Ġoccasional":12209,"bian":12210,"Second":12211,"rons":12212,"Ġinteractions":12213,"formed":12214,"sing":12215,"Ġowns":12216,"Ġhockey":12217,"General":12218,"Ġlogical":12219,"Ġexpend":12220,"Ġescal":12221,"ĠGriff":12222,"ĠCrown":12223,"ĠReserve":12224,"Ġstopping":12225,"Ġexcuse":12226,"second":12227,"Ġoperated":12228,"Ġreaches":12229,"ĠMalays":12230,"Ġpollution":12231,"ĠBrooklyn":12232,"Ġdelete":12233,"Ġhash":12234,"Block":12235,"aha":12236,"â̳":12237,"Ġshorter":12238,"piece":12239,">>>":13163,"ĠMormon":13164,"tor":13165,"Ġparticles":13166,"ĠBart":13167,"ryption":13168,"Ġadmin":13169,"Ġsquee":13170,"VIDIA":13171,"Ġcreator":13172,"iameter":13173,"icular":13174,"NBC":13175,"Ġgrabbed":13176,"Ġnodd":13177,"Ġrated":13178,"Ġrotation":13179,"Ġgrasp":13180,"Ġexcessive":13181,"ĠEC":13182,"ĠWhit":13183,"Ġinventory":13184,"aults":13185,"ĠFB":13186,"Ġecosystem":13187,"Ġbillions":13188,"Ġventure":13189,"named":13190,"Ġdefender":13191,"oute":13192,"Instead":13193,"irable":13194,"War":13195,"Ġassumption":13196,"Ġbite":13197,"Ġearthqu":13198,"tail":13199,"space":13200,"Ġgifts":13201,"boys":13202,"Ġinevitable":13203,"Ġstructural":13204,"Ġbeneficial":13205,"Ġcompelling":13206,"hole":13207,"ervation":13208,"Ġcoat":13209,"oj":13210,"incarn":13211,"ĠYears":13212,"Ġdetermining":13213,"Ġrhetoric":13214,"Ġboundaries":13215,"Ġwhites":13216,"Ant":13217,"addy":13218,")-":13219,"raham":13220,"etermin":13221,"Ġharvest":13222,"ĠConc":13223,"Ġlaptop":13224,"ĠMatch":13225,"Ġenjoying":13226,"cca":13227,"ollar":13228,"Ġtrips":13229,"Ġaddiction":13230,"ĠSak":13231,"Ġpowered":13232,"Ġcous":13233,"ĠRussians":13234,"iere":13235,"Ġretrie":13236,"quality":13237,"Ġdiffer":13238,"Ġkingdom":13239,"ĠLaur":13240,"ĠCapitol":13241,"Ġconclusions":13242,"ĠAltern":13243,"ĠNav":13244,"Ġtransparent":13245,"BER":13246,"Group":13247,"ĠComplete":13248,"Ġinfer":13249,"Ġintrig":13250,"Ġinsane":13251,"RO":13252,"ophob":13253,"isen":13254,"qual":13255,"Michael":13256,"Ġmuseum":13257,"ĠPope":13258,"Ġreset":13259,"rative":13260,"five":13261,"Ġaggreg":13262,"ittees":13263,"ository":13264,"Ġcarb":13265,"ĠRecord":13266,"Ġdecides":13267,"ĠFix":13268,"Ġexceptions":13269,"ĠCommissioner":13270,"uns":13271,"ĠEnvironmental":13272,"Ġlegendary":13273,"istence":13274,"Ġtunnel":13275,"km":13276,"Ġinsult":13277,"Ġtroll":13278,"Ġshake":13279,"Ġdetention":13280,"ques":13281,"ĠChrome":13282,"ĠFiles":13283,"Ġsubt":13284,"Ġprospects":13285,"Ġprol":13286,"render":13287,"proof":13288,"Ġperformances":13289,"Str":13290,"Ġhref":13291,"ername":13292,"Ġachievement":13293,"Ġfut":13294,"Full":13295,"ĠLeban":13296,"google":13297,"ãĥĪ":13298,"ampa":13299,"Maybe":13300,"Ġprojected":13301,"ĠEmb":13302,"Ġcolleg":13303,"Ġawards":13304,"ĠâĶ":13305,"Gold":13306,"ĠBlake":13307,"ĠRaj":13308,"ifting":13309,"Ġpending":13310,"Ġinstinct":13311,"Ġdevelopments":13312,"Connect":13313,"ĠMand":13314,"ĠWITH":13315,"ĠPhilippines":13316,"profile":13317,"Ġaltogether":13318,"ĠBund":13319,"ĠTD":13320,"oooo":13321,"amped":13322,"iph":13323,"Ġsteam":13324,"Ġoldest":13325,"Ġdetection":13326,"ulpt":13327,"Ġç":13328,"ĠWayne":13329,"2006":13330,"fa":13331,"Ġcircles":13332,"ĠFu":13333,"Ġdonors":13334,"appropriate":13335,"ĠDakota":13336,"jamin":13337,"Ġmotivated":13338,"Ġpurchases":13339,"ĠLouisiana":13340,"ĠSpl":13341,"Ġglobe":13342,"Ġ105":13343,"zip":13344,"call":13345,"Ġdepartments":13346,"Ġsustainable":13347,"105":13348,"ĠOP":13349,"ifiers":13350,"Ġprevented":13351,"Ġincomp":13352,"ĠCommander":13353,"Ġdominated":13354,"Ġ»":13355,"Ġinvested":13356,"Ġcomplexity":13357,"Ġincl":13358,"Ġensuring":13359,"Ġrealm":13360,"ync":13361,"ĠIndependent":13362,"rained":13363,"ĠJen":13364,"ĠFlight":13365,"Ġathe":13366,"Ġspeculation":13367,"ĠTE":13368,"ocate":13369,"tic":13370,"Ġplaint":13371,"herry":13372,"Ġtoy":13373,"Ġ111":13374,"Ġplates":13375,"status":13376,"ĠIsa":13377,"Ġdevoted":13378,"Cop":13379,"ĠES":13380,"255":13381,"urrency":13382,"Main":13383,"Ġslaves":13384,"Ġpepper":13385,"Ġquotes":13386,"Ġceiling":13387,"ĠFish":13388,"Ġtransformation":13389,"Ġfraction":13390,"Ġadvantages":13391,"Ġtoile":13392,"Ġstunning":13393,"Ġmoist":13394,"breaking":13395,"si":13396,"ĠLocation":13397,"ĠMedium":13398,"Ġtexts":13399,"Ġugly":13400,"Ġbio":13401,".âĢĶ":13402,"ĠBased":13403,"Ġtrains":13404,"ĠWing":13405,"ĠAncient":13406,"ĠRecords":13407,"ĠHope":13408,"Special":13409,"adesh":13410,"obi":13411,"[/":13412,"Ġtemporarily":13413,"Ver":13414,"hu":13415,"oser":13416,"Ġovernight":13417,"Ġmamm":13418,"ĠTreasury":13419,"ĠVenezuel":13420,"ĠMega":13421,"Ġtar":13422,"Ġexpects":13423,"black":13424,"orph":13425,"\\\\\\\\":13426,"Ġacceptance":13427,"Ġradar":13428,"sis":13429,"Ġjunior":13430,"Ġframes":13431,"Ġobservation":13432,"acies":13433,"Power":13434,"ĠAdvanced":13435,"Mag":13436,"ologically":13437,"ĠMechan":13438,"Ġsentences":13439,"Ġanalysts":13440,"aughters":13441,"forcement":13442,"Ġvague":13443,"Ġclause":13444,"Ġdirectors":13445,"Ġevaluate":13446,"Ġcabinet":13447,"Matt":13448,"ĠClassic":13449,"Ang":13450,"Ġcler":13451,"ĠBuck":13452,"Ġresearcher":13453,"Ġ160":13454,"Ġpoorly":13455,"Ġexperiencing":13456,"ĠPed":13457,"ĠManhattan":13458,"Ġfreed":13459,"Ġthemes":13460,"advant":13461,"Ġnin":13462,"Ġpraise":13463,"104":13464,"ĠLibya":13465,"best":13466,"Ġtrusted":13467,"Ġcease":13468,"Ġdign":13469,"Direct":13470,"Ġbombing":13471,"Ġmigration":13472,"ĠSciences":13473,"Ġmunicipal":13474,"ĠAverage":13475,"Ġglory":13476,"Ġrevealing":13477,"Ġarena":13478,"Ġuncertainty":13479,"Ġbattlefield":13480,"iao":13481,"God":13482,"Ġcinem":13483,"rape":13484,"elle":13485,"apons":13486,"Ġlisting":13487,"Ġwaited":13488,"Ġspotted":13489,"keley":13490,"ĠAudio":13491,"eor":13492,"arding":13493,"idding":13494,"igma":13495,"ĠNeg":13496,"Ġlone":13497,"Ġ----":13498,"exe":13499,"deg":13500,"Ġtransf":13501,"Ġwash":13502,"Ġslavery":13503,"Ġexploring":13504,"ĠWW":13505,"atson":13506,"Ġencl":13507,"lies":13508,"ĠCreek":13509,"Ġwooden":13510,"Manager":13511,"ĠBrand":13512,"ummy":13513,"ĠArthur":13514,"Ġbureaucr":13515,"Ġblend":13516,"arians":13517,"Further":13518,"Ġsupposedly":13519,"Ġwinds":13520,"Ġ1979":13521,"Ġgravity":13522,"Ġanalyses":13523,"ĠTravel":13524,"ĠVeter":13525,"Ġdumb":13526,"Ġalternate":13527,"gal":13528,"Ġconsumed":13529,"Ġeffectiveness":13530,".''":13531,"Ġpaths":13532,"onda":13533,"LA":13534,"ĠStrong":13535,"Ġenables":13536,"Ġescaped":13537,"Ġ\"\"":13538,"Ġ112":13539,"Ġ1983":13540,"Ġsmiled":13541,"Ġtendency":13542,"Fire":13543,"Ġpars":13544,"ĠRoc":13545,"Ġlake":13546,"Ġfitness":13547,"ĠAth":13548,"ĠHorn":13549,"Ġhier":13550,"Ġimpose":13551,"mother":13552,"Ġpension":13553,"icut":13554,"borne":13555,"iciary":13556,"._":13557,"ĠSU":13558,"Ġpolar":13559,"isy":13560,"engu":13561,"itialized":13562,"ATA":13563,"write":13564,"Ġexercises":13565,"ĠDiamond":13566,"otypes":13567,"Ġharmful":13568,"onz":13569,"Ġprinting":13570,"story":13571,"Ġexpertise":13572,"ĠGer":13573,"Ġtragedy":13574,"ĠFly":13575,"Ġdivid":13576,"ampire":13577,"stock":13578,"Mem":13579,"Ġreign":13580,"Ġunve":13581,"Ġamend":13582,"ĠProphet":13583,"Ġmutual":13584,"ĠFac":13585,"Ġreplacing":13586,"Har":13587,"ĠCircuit":13588,"Ġthroat":13589,"ĠShot":13590,"Ġbatteries":13591,"Ġtoll":13592,"Ġaddressing":13593,"ĠMedicaid":13594,"Ġpupp":13595,"ĠNar":13596,"olk":13597,"Ġequity":13598,"MR":13599,"ĠHispan":13600,"ĠLarge":13601,"mid":13602,"Dev":13603,"Ġexped":13604,"Ġdemo":13605,"ĠMarshall":13606,"ergus":13607,"Ġfiber":13608,"Ġdivorce":13609,"ĠCreate":13610,"Ġslower":13611,"ĠParker":13612,"ĠStudent":13613,"ĠTraining":13614,"Return":13615,"ĠTru":13616,"Ġcub":13617,"ĠReached":13618,"Ġpanic":13619,"Ġquarters":13620,"Ġrect":13621,"Ġtreating":13622,"Ġrats":13623,"ĠChristianity":13624,"oler":13625,"Ġsacred":13626,"Ġdeclare":13627,"ulative":13628,"eting":13629,"Ġdelivering":13630,"estone":13631,"Ġtel":13632,"ĠLarry":13633,"Ġmeta":13634,"accept":13635,"artz":13636,"ĠRoger":13637,"handed":13638,"Ġheader":13639,"Ġtrapped":13640,"ĠCentury":13641,"Ġknocked":13642,"ĠOxford":13643,"Ġsurvivors":13644,"bot":13645,"Ġdemonstration":13646,"Ġdirt":13647,"Ġassists":13648,"OME":13649,"ĠDraft":13650,"ortunate":13651,"folio":13652,"pered":13653,"usters":13654,"gt":13655,"ĠLock":13656,"Ġjudicial":13657,"verted":13658,"Ġsecured":13659,"outing":13660,"ĠBooks":13661,"Ġhosting":13662,"Ġlifted":13663,"length":13664,"Ġjer":13665,"Ġwheels":13666,"ĠRange":13667,"umbnails":13668,"Ġdiagnosis":13669,"tech":13670,"ĠStewart":13671,"ĠPract":13672,"Ġnationwide":13673,"Ġdear":13674,"Ġobligations":13675,"Ġgrows":13676,"Ġmandatory":13677,"Ġsuspicious":13678,"!'":13679,"Apr":13680,"Great":13681,"Ġmortgage":13682,"Ġprosecutor":13683,"Ġeditorial":13684,"ĠKr":13685,"Ġprocessed":13686,"ungle":13687,"Ġflexibility":13688,"Earlier":13689,"ĠCart":13690,"ĠSug":13691,"Ġfocuses":13692,"Ġstartup":13693,"Ġbreach":13694,"ĠTob":13695,"cycle":13696,"ãĢĮ":13697,"rose":13698,"Ġbizarre":13699,"ãĢį":13700,"Ġvegetables":13701,"$$":13702,"Ġretreat":13703,"oshi":13704,"ĠShop":13705,"ĠGround":13706,"ĠStop":13707,"ĠHawaii":13708,"ĠAy":13709,"Perhaps":13710,"ĠBeaut":13711,"uffer":13712,"enna":13713,"Ġproductivity":13714,"Fixed":13715,"control":13716,"Ġabsent":13717,"ĠCampaign":13718,"Green":13719,"Ġidentifying":13720,"Ġregret":13721,"Ġpromoted":13722,"ĠSeven":13723,"Ġeru":13724,"neath":13725,"aughed":13726,"ĠPin":13727,"ĠLiving":13728,"Cost":13729,"omatic":13730,"mega":13731,"ĠNig":13732,"ocy":13733,"Ġinbox":13734,"Ġempire":13735,"Ġhorizont":13736,"Ġbranches":13737,"Ġmetaph":13738,"Active":13739,"edi":13740,"ĠFilm":13741,"ĠSomething":13742,"Ġmods":13743,"incial":13744,"ĠOriginal":13745,"Gen":13746,"Ġspirits":13747,"Ġearning":13748,"Hist":13749,"Ġriders":13750,"Ġsacrific":13751,"MT":13752,"ĠVA":13753,"ĠSalt":13754,"Ġoccupation":13755,"ĠMi":13756,"Ġdisg":13757,"lict":13758,"Ġnit":13759,"Ġnodes":13760,"eem":13761,"ĠPier":13762,"Ġhatred":13763,"psy":13764,"ãĥī":13765,"Ġtheater":13766,"Ġsophisticated":13767,"Ġdefended":13768,"Ġbesides":13769,"Ġthoroughly":13770,"ĠMedicare":13771,"Ġblamed":13772,"arently":13773,"Ġcrying":13774,"FOR":13775,"priv":13776,"Ġsinging":13777,"ĠIl":13778,"Ġcute":13779,"oided":13780,"olitical":13781,"ĠNeuro":13782,"å¤":13783,"Ġdonation":13784,"ĠEagles":13785,"ĠGive":13786,"Tom":13787,"Ġsubstantially":13788,"ĠLicense":13789,"ĠJa":13790,"Ġgrey":13791,"ĠAnimal":13792,"ĠER":13793,"ĠUnd":13794,"Ġkeen":13795,"Ġconclude":13796,"ĠMississippi":13797,"Engine":13798,"ĠStudios":13799,"Press":13800,"overs":13801,"llers":13802,"Ġ350":13803,"ĠRangers":13804,"Ġrou":13805,"erto":13806,"Ep":13807,"issa":13808,"ivan":13809,"Ġseal":13810,"ĠRegist":13811,"display":13812,"Ġweaken":13813,"uum":13814,"ĠCommons":13815,"ĠSay":13816,"Ġcultures":13817,"Ġlaughed":13818,"Ġslip":13819,"Ġtreatments":13820,"izable":13821,"mart":13822,"ĠRice":13823,"Ġbeast":13824,"Ġobesity":13825,"ĠLaure":13826,"iga":13827,"Which":13828,"holder":13829,"Ġelderly":13830,"Ġpays":13831,"Ġcomplained":13832,"Ġcrop":13833,"Ġproc":13834,"Ġexplosive":13835,"ĠFan":13836,"ĠArsenal":13837,"Author":13838,"eful":13839,"Ġmeals":13840,"Ġ(-":13841,"idays":13842,"Ġimagination":13843,"Ġannually":13844,"Ġms":13845,"asures":13846,"Head":13847,"ikh":13848,"matic":13849,"Ġboyfriend":13850,"ĠComputer":13851,"Ġbump":13852,"Ġsurge":13853,"ĠCraig":13854,"ĠKirk":13855,"Del":13856,"mediate":13857,"Ġscenarios":13858,"ĠMut":13859,"ĠStream":13860,"Ġcompetitors":13861,"ÙĦ":13862,"ĠStanford":13863,"ĠResources":13864,"azed":13865,"bage":13866,"Ġorganis":13867,"ĠRelease":13868,"Ġseparately":13869,"Ġhabits":13870,"Ġmeasurements":13871,"ĠClose":13872,"Ġaccompany":13873,"Ġgly":13874,"Ġtang":13875,"ĠRou":13876,"Ġplugin":13877,"Ġconvey":13878,"ĠChallenge":13879,"oots":13880,"jan":13881,"Ġcurs":13882,"ĠRelations":13883,"keeper":13884,"Ġapproaching":13885,"ping":13886,"Speaking":13887,"Ġarrangement":13888,"ĠVI":13889,"arettes":13890,"Ġaffecting":13891,"Ġpermits":13892,"because":13893,"Ġuseless":13894,"ĠHus":13895,"!!!!":13896,"Ġdestroying":13897,"Unfortunately":13898,"Ġfascinating":13899,"Sem":13900,"Ġelectoral":13901,"Ġtransparency":13902,"ĠChaos":13903,"Ġvolunteer":13904,"Ġstatistical":13905,"Ġactivated":13906,"rox":13907,"Web":13908,"HE":13909,"ĠHampshire":13910,"isive":13911,"Map":13912,"Ġtrash":13913,"ĠLawrence":13914,"stick":13915,"Cr":13916,"Ġrings":13917,"EXT":13918,"Ġoperational":13919,"opes":13920,"Does":13921,"ĠEvans":13922,"Ġwitnessed":13923,"Port":13924,"Ġlaunching":13925,"econom":13926,"wear":13927,"ĠParticip":13928,"umm":13929,"cules":13930,"ĠRAM":13931,"ĠTun":13932,"Ġassured":13933,"Ġbinary":13934,"Ġbetray":13935,"Ġexploration":13936,"ĠFel":13937,"Ġadmission":13938,"itated":13939,"Sy":13940,"Ġavoided":13941,"ĠSimulator":13942,"Ġcelebrated":13943,"ĠElectric":13944,"¥ŀ":13945,"Ġcluster":13946,"itzerland":13947,"health":13948,"Line":13949,"ĠNash":13950,"aton":13951,"Ġspare":13952,"Ġenterprise":13953,"ĠDIS":13954,"cludes":13955,"Ġflights":13956,"Ġregards":13957,"ĠÃĹ":13958,"half":13959,"Ġtrucks":13960,"Ġcontacts":13961,"Ġuncons":13962,"ĠClimate":13963,"Ġimmense":13964,"NEW":13965,"occ":13966,"ective":13967,"Ġembod":13968,"Ġpatrol":13969,"Ġbeside":13970,"Ġviable":13971,"Ġcreep":13972,"Ġtriggered":13973,"verning":13974,"Ġcomparable":13975,"ql":13976,"Ġgaining":13977,"asses":13978,"Ġ();":13979,"ĠGrey":13980,"ĠMLS":13981,"sized":13982,"Ġprosper":13983,"\"?":13984,"Ġpolling":13985,"Ġshar":13986,"ĠRC":13987,"Ġfirearm":13988,"orient":13989,"Ġfence":13990,"Ġvariations":13991,"giving":13992,"ĠPi":13993,"ospel":13994,"Ġpledge":13995,"Ġcure":13996,"Ġspy":13997,"Ġviolated":13998,"Ġrushed":13999,"Ġstroke":14000,"ĠBlog":14001,"sels":14002,"ĠEc":14003,",''":14004,"Ġpale":14005,"ĠCollins":14006,"terror":14007,"ĠCanadians":14008,"Ġtune":14009,"Ġlaboratory":14010,"Ġnons":14011,"tarian":14012,"Ġdisability":14013,"ĠGam":14014,"Ġsinger":14015,"alg":14016,"ĠSenior":14017,"Ġtraded":14018,"ĠWarrior":14019,"Ġinfring":14020,"ĠFranklin":14021,"Ġstrain":14022,"ĠSwedish":14023,"Ġseventh":14024,"ĠBenn":14025,"ĠTell":14026,"Ġsyndrome":14027,"Ġwondered":14028,"iden":14029,"++++":14030,"igo":14031,"Ġpurple":14032,"Ġjournalism":14033,"Ġrebel":14034,"Ġfu":14035,"blog":14036,"Ġinvite":14037,"rencies":14038,"ĠContact":14039,"Israel":14040,"ĠContent":14041,"Ġcheer":14042,"Ġbedroom":14043,"ĠEngineering":14044,"ĠQueens":14045,"Ġdwell":14046,"ĠPlayStation":14047,"ĠDim":14048,"ĠColon":14049,"lr":14050,"Ġoperates":14051,"Ġmotivation":14052,"USA":14053,"astered":14054,"Core":14055,"ĠTruth":14056,"olo":14057,"OSE":14058,"ĠMemory":14059,"Ġpredec":14060,"Ġanarch":14061,"Ġ1920":14062,"ĠYam":14063,"è":14064,"bid":14065,"Ġgrateful":14066,"Ġexcitement":14067,"Ġtreasure":14068,"Ġlongest":14069,"ctive":14070,"Ġdeserves":14071,"Ġreserves":14072,"Ġcops":14073,"ĠOttawa":14074,"ĠEgyptian":14075,"anked":14076,"Ġartif":14077,"Ġhypothesis":14078,":/":14079,"Ġpurchasing":14080,"Ġlovely":14081,"HP":14082,"Ġdivide":14083,"Ġstrictly":14084,"Ġquestioning":14085,"Ġtaxpayers":14086,"ĠJoy":14087,"Ġrolls":14088,"ĠHeavy":14089,"Ġports":14090,"Ġmagnetic":14091,"Ġinflamm":14092,"Ġbrush":14093,"tics":14094,"âĪĴ":14095,"Ġbottles":14096,"ppy":14097,"Ġpadd":14098,"ãĤ¯":14099,"million":14100,"Ġdevastating":14101,"Ġcompiled":14102,"Ġmedication":14103,"Ġtwelve":14104,"ĠPerry":14105,"Space":14106,"imb":14107,"your":14108,"Ġleaked":14109,"ĠTar":14110,"Ġunity":14111,"Ġinfected":14112,"Ġtraveled":14113,"IDE":14114,"ĠMcDonald":14115,"txt":14116,"ĠPrinc":14117,"Ġinterven":14118,"ĠTaiwan":14119,"ĠPow":14120,"Ġbearing":14121,"ĠThread":14122,"Ġzones":14123,"izards":14124,"unks":14125,"Chapter":14126,"llor":14127,"Ġ·":14128,"Ġwounds":14129,"Ġdiscretion":14130,"Ġsucceeded":14131,"iking":14132,"Ġiconic":14133,"Call":14134,"Ġscreening":14135,"ĠMis":14136,"icts":14137,"Ġministers":14138,"Ġseparation":14139,"Player":14140,"Ġbip":14141,"Ġbeloved":14142,"Ġcounting":14143,"ĠEye":14144,"around":14145,"inging":14146,"Ġtablet":14147,"Ġoffence":14148,"inance":14149,"have":14150,"ĠInfo":14151,"ĠNinja":14152,"Ġprotective":14153,"ĠCass":14154,"Mac":14155,"ĠQuality":14156,"North":14157,"Ġic":14158,"ĠCuba":14159,"ĠChronicle":14160,"ĠProperty":14161,"Ġfastest":14162,"otos":14163,"ĠGerm":14164,"OWN":14165,"Ġboom":14166,"ĠStanley":14167,"erguson":14168,"Ġclever":14169,"Ġenters":14170,"mode":14171,"terior":14172,"ĠSens":14173,"Ġlinear":14174,"ARK":14175,"Ġcomparing":14176,"Ġpurely":14177,"Ġsafer":14178,"ĠPotter":14179,"Ġcups":14180,"RT":14181,"Ġgluc":14182,"Ġattributed":14183,"Ġdupl":14184,"ĠPap":14185,"Ġprecious":14186,"Ġpa":14187,"ictionary":14188,"ĠTig":14189,"ĠToo":14190,"olutions":14191,"stan":14192,"Ġrobots":14193,"Ġlobb":14194,"Ġstatute":14195,"Ġprevention":14196,"western":14197,"160":14198,"ĠActive":14199,"ĠMaria":14200,"hal":14201,"None":14202,"ellar":14203,"ĠKB":14204,"ĠPartners":14205,"ĠSingle":14206,"ĠFollowing":14207,"ango":14208,"acious":14209,"Ġthou":14210,"Ġkg":14211,"Ġinfluential":14212,"ĠFriends":14213,"Sur":14214,"ainted":14215,"Ġforums":14216,"Ġstarter":14217,"Ġcitizenship":14218,"ĠElection":14219,"onge":14220,"otation":14221,"osph":14222,";;;;":14223,"utical":14224,"pur":14225,"eren":14226,"Ġaccusations":14227,"bitious":14228,"abbit":14229,"ĠOrd":14230,"Posted":14231,"irk":14232,"Ġsensitivity":14233,"iche":14234,"ĠAmy":14235,"ĠFab":14236,"Ġsummit":14237,"Ġpedest":14238,"Ġrubber":14239,"Ġagricultural":14240,"Ġcancel":14241,"AE":14242,"Ġinaug":14243,"Ġcontam":14244,"Ġfirmly":14245,"iw":14246,"stage":14247,"ĠKan":14248,"Ġtier":14249,"Ġinvention":14250,"Ġtranslated":14251,"ĠRules":14252,"Box":14253,"Twitter":14254,"IDS":14255,"Ġpizza":14256,"Ġdebug":14257,"ĠDrop":14258,"vs":14259,"Ġhorses":14260,"big":14261,"Ġboring":14262,"Ġhood":14263,"ĠMcCain":14264,"atched":14265,"ĠBros":14266,"Ġskip":14267,"Ġessay":14268,"stat":14269,"ĠLegends":14270,"Ġammunition":14271,"auc":14272,"Ġshooter":14273,"Ġunh":14274,"Ġsupplied":14275,"Ġgeneric":14276,"ĠSK":14277,"iban":14278,"yrics":14279,"Ġ255":14280,"Ġclimbing":14281,"Former":14282,"Ġflip":14283,"Ġjumping":14284,"Ġfrustration":14285,"ĠTerry":14286,"Ġneighborhoods":14287,"Ġmedian":14288,"bean":14289,"Ġbrains":14290,"Following":14291,"Ġshaped":14292,"Ġdraws":14293,"Ġaltered":14294,"Jack":14295,"Ġrecipes":14296,"Ġskilled":14297,"wealth":14298,"achi":14299,"election":14300,"Ġbehaviors":14301,"deals":14302,"ĠUntil":14303,"Fe":14304,"Ġdeclaration":14305,"marks":14306,"ĠBetween":14307,"celona":14308,"Ġreson":14309,"Ġbubble":14310,"Among":14311,"Ġimperial":14312,"GS":14313,"Ġfeminist":14314,"2005":14315,"ĠKyle":14316,"Ġaccounting":14317,"ĠTele":14318,"ĠTyr":14319,"Ġconnecting":14320,"Ġrehab":14321,"ĠPred":14322,"sim":14323,"Ġmeantime":14324,"Ġphysician":14325,"MW":14326,"ĠCampbell":14327,"ĠBrandon":14328,"Ġcontributing":14329,"ĠRule":14330,"ĠWeight":14331,"ĠNap":14332,"Ġinteractive":14333,"Ġvag":14334,"Ġhelmet":14335,"ĠComb":14336,"four":14337,"Ġshipped":14338,"Ġcompleting":14339,"ĠPD":14340,"PDATE":14341,"Ġspreading":14342,"Ġscary":14343,"erving":14344,"ĠGas":14345,"Ġfrank":14346,"school":14347,"Ġromantic":14348,"Ġstabil":14349,"Rob":14350,"Ġaccurately":14351,"Ġacute":14352,"ĠHann":14353,"Ġsymbols":14354,"Ġcivilization":14355,"ĠAW":14356,"Ġlightning":14357,"Ġconsiders":14358,"Ġvenue":14359,"Ġ×":14360,"Ġoven":14361,"ĠSF":14362,"his":14363,"Ġnu":14364,"ĠLearn":14365,"Ġpeoples":14366,"Ġstd":14367,"Ġslee":14368,"Ġslic":14369,"ĠStatistics":14370,"Ġcorners":14371,"ĠBaker":14372,"Ġ:)":14373,"mentation":14374,"olver":14375,"Ġlaughing":14376,"ĠTodd":14377,"onde":14378,"ĠHills":14379,"Ġnuts":14380,"ĠWoman":14381,"plane":14382,"Ġliver":14383,"ĠInside":14384,"Sorry":14385,"Ġagrees":14386,"Ġfundament":14387,"ĠFisher":14388,"Ġauction":14389,"Ġthreads":14390,"glas":14391,"ĠBasic":14392,"ĠNat":14393,"Ġlacking":14394,"Ġcelebration":14395,"ju":14396,"Ġsilly":14397,"Euro":14398,"Ġtatt":14399,"ighty":14400,"controlled":14401,"Test":14402,"ĠSingh":14403,"Ġrage":14404,"Ġrhyth":14405,"offic":14406,"ĠPhantom":14407,"Ġheadlines":14408,"Ġresponding":14409,"ĠMorning":14410,"Ġvitamin":14411,"Ġboots":14412,"ĠSite":14413,"alin":14414,"pi":14415,"Ġviral":14416,"ĠUC":14417,"DER":14418,"ĠSex":14419,"Ġstocks":14420,"current":14421,"Ġchurches":14422,"ĠRare":14423,"ĠMurphy":14424,"Ġdenial":14425,"ĠGaming":14426,"Ġtoug":14427,"Ġnick":14428,"Ġmakers":14429,"ĠRonald":14430,"Ġgenerous":14431,"ĠDoc":14432,"ĠMorris":14433,"Ġtransformed":14434,"ĠNormal":14435,"Ġ104":14436,"ĠKickstarter":14437,"ĠUpon":14438,"Online":14439,"ĠIRS":14440,"Ġwrap":14441,"Ġloving":14442,"Ġarrives":14443,"ĠDue":14444,"Ġheter":14445,"ĠMade":14446,"Ġrental":14447,"Ġbelongs":14448,"Ġattorneys":14449,"Ġcrops":14450,"Ġmatched":14451,"ulum":14452,"oline":14453,"109":14454,"Ġdispar":14455,"Ġbuyers":14456,"ĠCambridge":14457,"Ġethics":14458,"roups":14459,"Ġjustified":14460,"Ġmarginal":14461,"Ġrespected":14462,"winning":14463,"Ġnodded":14464,"ĠSerge":14465,"ĠFormer":14466,"Craft":14467,"################":14468,"ĠWarner":14469,"Ġdash":14470,"ete":14471,"Ġentert":14472,"ĠEscape":14473,"outheast":14474,"Ġknees":14475,"ĠBomb":14476,"Ġrug":14477,"Pass":14478,"Ġattitudes":14479,"government":14480,"ĠPrior":14481,"Ġqualities":14482,"Ġnotification":14483,"ĠPhone":14484,"lie":14485,"Ġanticipated":14486,"ĠCombat":14487,"ĠBarry":14488,"Ġ1982":14489,"Users":14490,"oner":14491,"Ġcomputing":14492,"ĠConnecticut":14493,"Ġlesser":14494,"Ġpeers":14495,"ĠCu":14496,"Ġtechnically":14497,"Ġsubmission":14498,"ĠUniversal":14499,"Ġmanually":14500,"ourge":14501,"Ġrespondents":14502,"ĠBTC":14503,"ĠHost":14504,"Ġfare":14505,"ĠBird":14506,"Ġreceipt":14507,"also":14508,"Ġjack":14509,"Ġagriculture":14510,"Ġskull":14511,"Ġ!=":14512,"Ġpassive":14513,"ĠCI":14514,"Ġsocieties":14515,"Ġreminded":14516,"Ġinterference":14517,"Buy":14518,"Ġâľ":14519,"gon":14520,"Ġscrutiny":14521,"ĠWitch":14522,"Ġconducting":14523,"Ġãĥ":14524,"Ġexchanges":14525,"ĠMitchell":14526,"Ġinhabit":14527,"Ġtwist":14528,"BD":14529,"Ġwherever":14530,"groupon":14531,"Ġjokes":14532,"ĠBenjamin":14533,"ĠRandom":14534,"frame":14535,"ĠLions":14536,"Ġhighlighted":14537,"ĠArkansas":14538,"Ent":14539,"Ġpile":14540,"Ġprelim":14541,"gs":14542,"minded":14543,"Ġfelony":14544,"ĠGA":14545,"ĠLuck":14546,"Ġpractically":14547,"ĠBos":14548,"Ġactress":14549,"Dam":14550,"ĠBou":14551,"Ġvisa":14552,"Ġembedded":14553,"Ġhybrid":14554,"Ġearliest":14555,"Ġsooner":14556,"social":14557,"ĠHA":14558,"Ġsteep":14559,"Ġdisadvant":14560,"Ġexploit":14561,"ĠEgg":14562,"ĠUltra":14563,"Ġnecessity":14564,"Local":14565,"iege":14566,"Ġdated":14567,"Ġmasses":14568,"Ġsubscription":14569,"pless":14570,"Ġanonym":14571,"Ġpresumably":14572,"Blue":14573,"Their":14574,"asketball":14575,"ĠPhilip":14576,"Ġcomed":14577,"loaded":14578,"rane":14579,"Ġreflection":14580,"China":14581,"Ġextends":14582,"Ġforming":14583,"Ġunders":14584,"2001":14585,"Ġgrat":14586,"Ġconcentrations":14587,"Ġinsulin":14588,"Ġsecular":14589,"Ġwhilst":14590,"Ġwinners":14591,"Advertisements":14592,"Ġdeliberately":14593,"ĠWorking":14594,"Ġsink":14595,"etics":14596,"dale":14597,"Ġmandate":14598,"Ġgram":14599,"Ġvacation":14600,"Ġwarnings":14601,"ripp":14602,"ĠTHAT":14603,"Ġcommentary":14604,"Ġintu":14605,"Ġaest":14606,"Ġreasoning":14607,"Ġbreakdown":14608,"ĠZombie":14609,"Ġ-->":14610,"ĠPolitical":14611,"cott":14612,"Ġthrust":14613,"Ġtechnological":14614,"Ġdeciding":14615,"Ġtrafficking":14616,"Long":14617,"Welcome":14618,"prising":14619,"ĠCommunications":14620,"Ġendors":14621,"Ġswift":14622,"Ġmetabol":14623,"coins":14624,"resa":14625,"ĠHTTP":14626,"Ġenroll":14627,"ĠHappy":14628,"usr":14629,"intage":14630,"Ġ[\"":14631,"uably":14632,"ĠMaterial":14633,"Ġrepeal":14634,"Sept":14635,"kh":14636,"ĠModi":14637,"Ġunderneath":14638,"ĠIL":14639,"shore":14640,"Ġdiagnosed":14641,"aceutical":14642,"Ġshower":14643,"aux":14644,"ĠSwitch":14645,"ĠStrength":14646,"Ġjihad":14647,"national":14648,"Ġtrauma":14649,"ussy":14650,"oni":14651,"Ġconsolid":14652,"Ġcalories":14653,"ĠFlynn":14654,"agged":14655,"168":14656,"ĠPink":14657,"Ġfulfill":14658,"Ġchains":14659,"Ġnotably":14660,"ĠAV":14661,"Life":14662,"ĠChuck":14663,"mus":14664,"ĠUrban":14665,"ĠHend":14666,"Ġdeposit":14667,"ĠSad":14668,"Ġaffair":14669,"ORK":14670,"ieval":14671,"ĠFDA":14672,"Ġtrop":14673,"ĠOverall":14674,"Ġvirtue":14675,"Ġsatisfaction":14676,"aund":14677,"Ġlun":14678,"ĠSwitzerland":14679,"ĠOperation":14680,"process":14681,"Ġshook":14682,"Ġcounties":14683,"leased":14684,"ĠCharlotte":14685,"112":14686,"Ġtranscript":14687,"Ġredd":14688,"push":14689,"ĠHey":14690,"ĠAnalysis":14691,"[\"":14692,"Ġalternatives":14693,"ardless":14694,"Ġeleph":14695,"Ġprejud":14696,"ĠLeaf":14697,"Having":14698,"ĠHub":14699,"Ġexpressions":14700,"ĠVolume":14701,"Ġshocking":14702,"ĠReds":14703,"Ġreadily":14704,"Ġplanets":14705,"adata":14706,"Ġcollapsed":14707,"ĠMadrid":14708,"Ġirrit":14709,"ipper":14710,"ĠEnc":14711,"ĠWire":14712,"Ġbuzz":14713,"ĠGP":14714,"asha":14715,"Ġaccidentally":14716,"uru":14717,"Ġfrustrated":14718,"ĠSA":14719,"Ġhungry":14720,"ĠHuff":14721,"Ġlabels":14722,"anto":14723,"ĠEP":14724,"Ġbarriers":14725,")|":14726,"ĠBerkeley":14727,"ĠJets":14728,"Ġpairs":14729,"ĠLan":14730,"James":14731,"ĠBear":14732,"Ġhumor":14733,"ĠLiberty":14734,"Ġmagnitude":14735,"Ġaging":14736,"ĠMason":14737,"Ġfriendship":14738,"umbling":14739,"Ġemerge":14740,"Ġnewspapers":14741,"Ġambitious":14742,"ĠRichards":14743,"aternal":14744,"Ġ1981":14745,"Ġcookies":14746,"Ġsculpt":14747,"Ġpursuit":14748,"Location":14749,"Ġscripts":14750,"pc":14751,"Ġarrangements":14752,"Ġdiameter":14753,"Ġloses":14754,"amation":14755,"Ġliqu":14756,"ĠJake":14757,"arette":14758,"Ġunderstands":14759,"ĠZen":14760,"vm":14761,"Ġapprove":14762,"Ġwip":14763,"Ġultra":14764,"Ġintend":14765,"ĠDI":14766,"ascular":14767,"Ġstays":14768,"ĠKor":14769,"ĠKl":14770,"Ġinvesting":14771,"La":14772,"Ġbelieving":14773,"bad":14774,"mouth":14775,"Ġtaxpayer":14776,"ãĥĥ":14777,"ĠQuebec":14778,"Ġlap":14779,"ĠSwiss":14780,"drop":14781,"Ġdrain":14782,"iri":14783,"etc":14784,"ften":14785,"ĠNex":14786,"Ġstraw":14787,"Ġscreaming":14788,"Ġcounted":14789,"Ġdamaging":14790,"Ġambassador":14791,"century":14792,"Ġprox":14793,"Ġarrests":14794,"uv":14795,"ilateral":14796,"ĠCharg":14797,"Ġprescribed":14798,"Ġindependently":14799,"Ġfierce":14800,"ĠBaby":14801,"Ġbrave":14802,"Ġsuits":14803,"=>":14804,"Ġbaseline":14805,"ĠRate":14806,"Ġislands":14807,"Ġ((":14808,"green":14809,"ixels":14810,"Ġnamely":14811,"ĠVillage":14812,"than":14813,"amy":14814,"Version":14815,"gmail":14816,"entials":14817,"ĠSud":14818,"ĠMelbourne":14819,"Ġarriving":14820,"Ġquantum":14821,"eff":14822,"ropolitan":14823,"Tri":14824,"Ġfuneral":14825,"ĠIR":14826,"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ":14827,"ĠCob":14828,"itably":14829,"Ġturb":14830,"Ġcombo":14831,"Review":14832,"Ġdeployment":14833,"uity":14834,"ĠBott":14835,"Ġinvisible":14836,"Ġrendering":14837,"Ġunlocked":14838,"Ġaqu":14839,"ĠVladimir":14840,"Ġpad":14841,"ĠBrain":14842,"ĠLegacy":14843,"dragon":14844,"ĠKurdish":14845,"Ġsounded":14846,"Ġdetained":14847,"ĠDM":14848,"gary":14849,"Ġdaughters":14850,"Ġdisturbing":14851,"uka":14852,"ĠParad":14853,"Ġtast":14854,"Ġunfortunate":14855,"Ġul":14856,"emin":14857,"Ġattendance":14858,"trl":14859,"Ġparks":14860,"ĠMemorial":14861,"ĠAlice":14862,"othy":14863,"guard":14864,"ĠDise":14865,"ĠShan":14866,"ĠForum":14867,"Rich":14868,"Ġshifted":14869,"uez":14870,"Ġlighter":14871,"ĠMagn":14872,"Ġcod":14873,"Sch":14874,"hammad":14875,"Pub":14876,"350":14877,"ĠPokemon":14878,"Ġprototype":14879,"Ġunre":14880,"Base":14881,"ĠStudents":14882,"ĠReply":14883,"ĠCommunist":14884,"Ġgau":14885,"ĠTyler":14886,"IZ":14887,"Ġparticipated":14888,"Ġsuprem":14889,"ĠDetails":14890,"Ġvessels":14891,"rod":14892,"Ġtribe":14893,"keep":14894,"Ġassumptions":14895,"Ġpound":14896,"Ġcrude":14897,"ĠAvailable":14898,"Ġswimming":14899,"Ġinclusion":14900,"Ġadvances":14901,"culation":14902,"Ġconservation":14903,"Ġoverd":14904,"ĠBuffalo":14905,"Article":14906,"edge":14907,"Ġawa":14908,"ĠMadison":14909,"Ġsidew":14910,"Ġcatast":14911,"ĠKrist":14912,"ucle":14913,"ĠHighway":14914,"ĠTerror":14915,"Ġactivation":14916,"Ġunconscious":14917,"ĠSatan":14918,"ĠSusan":14919,"illery":14920,"Ġarranged":14921,"iop":14922,"Ġrumors":14923,"urring":14924,"think":14925,"ĠKeith":14926,"ĠKind":14927,"Ġavoiding":14928,"byn":14929,"nut":14930,"ĠSpeaker":14931,"rus":14932,"names":14933,"Ġguilt":14934,"ĠOlympics":14935,"Ġsail":14936,"ĠMes":14937,"levant":14938,"ĠColumbus":14939,"aft":14940,"City":14941,"South":14942,"ĠHarvey":14943,"ĠPun":14944,"Several":14945,"Ġmentally":14946,"Ġimpress":14947,"mount":14948,"ĠUbuntu":14949,"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ":14950,"ĠSuperman":14951,"ĠMPs":14952,"Ġintentions":14953,"ĠRacing":14954,"Ġlikelihood":14955,"Ġ240":14956,"Total":14957,"Ġtoys":14958,"ĠWatson":14959,"Ġurge":14960,"Lear":14961,"ĠPaper":14962,"Ġoccurring":14963,"ĠBeng":14964,"ĠCert":14965,"Ġstones":14966,"Tim":14967,"ĠTwin":14968,"zb":14969,"ĠDynam":14970,"Ġpolitician":14971,"kens":14972,"ĠEnterprise":14973,"UTERS":14974,"Ġabol":14975,"Ġrefresh":14976,"Ġarbitrary":14977,"pection":14978,"Ġtroubles":14979,"Ġ});":14980,"tv":14981,"Ġpilots":14982,"Ġdistribute":14983,"Ġaudit":14984,"Ġpause":14985,"original":14986,"Ġrivals":14987,"£":14988,"Fig":14989,"TL":14990,"abil":14991,"rying":14992,"Lin":14993,"ioned":14994,"lon":14995,"Ġfancy":14996,"Ġcrashed":14997,"Ġtract":14998,"Ġshed":14999,"Ġconsume":15000,"Based":15001,"download":15002,"init":15003,"Ġvoltage":15004,"Introdu":15005,"Ġcondemned":15006,"ĠFinance":15007,"respect":15008,"Ġexcluded":15009,"Ġestablishing":15010,"heric":15011,"Ġheritage":15012,"Ġspectacular":15013,"Ġunst":15014,"ĠSnowden":15015,"ĠLane":15016,"San":15017,"Ġprotections":15018,"struction":15019,"incinn":15020,"Ġmacro":15021,"Custom":15022,"iosity":15023,"Ġesp":15024,"Ġfunctioning":15025,"Ġmush":15026,"Ġpuzzle":15027,"Ġethical":15028,"Mal":15029,"Ġgoverning":15030,"ĠFerguson":15031,"Ġrestored":15032,"Ġstressed":15033,"ĠCounter":15034,"ĠKas":15035,"clip":15036,"ANS":15037,"Ġseiz":15038,"UK":15039,"byss":15040,"oldown":15041,"api":15042,"Ġpermanently":15043,"ounters":15044,"West":15045,"Through":15046,"Light":15047,"atoes":15048,"Ġneat":15049,"Ġcord":15050,"urer":15051,"Ġseverely":15052,"ĠAven":15053,"Ġinterrog":15054,"Ġtriple":15055,"Given":15056,"Number":15057,"Ġarise":15058,"Ġsher":15059,"plant":15060,"Ġflower":15061,"ĠCou":15062,"Ġate":15063,"Ġnewer":15064,"bul":15065,"Ġmeanwhile":15066,"ĠLair":15067,"Ġadjustment":15068,"ĠCopyright":15069,"Ġdivers":15070,"iological":15071,"Ġgamers":15072,"oat":15073,"Ġhistorically":15074,"Ġanalog":15075,"Ġlongtime":15076,"Ġprescription":15077,"ĠMist":15078,"ĠHyper":15079,"ĠMaine":15080,"ĠDeity":15081,"Ġmultipl":15082,"ĠReincarn":15083,"ĠHyd":15084,"ĠPic":15085,"Sil":15086,"rants":15087,"ĠCris":15088,".;":15089,"({":15090,"ependence":15091,"Ġrecy":15092,"ateur":15093,"Ġquad":15094,"Ġglob":15095,"Ġconced":15096,"team":15097,"Ġcapitalist":15098,"ĠLot":15099,"Ġroyal":15100,"ĠCyber":15101,"Ġblacks":15102,"metic":15103,"riv":15104,"ĠDanny":15105,"Ġspo":15106,"ĠRO":15107,"Ġanimated":15108,"rypted":15109,"ĠDeputy":15110,"Ġrendered":15111,"FE":15112,"Ġstreak":15113,"Ġclouds":15114,"ĠDoug":15115,"~~~~~~~~":15116,"Ġdiscour":15117,"ĠVeh":15118,"Ġpsychology":15119,"ĠJourney":15120,"Ġcrystal":15121,"ĠFrost":15122,"Ġsuspicion":15123,"Ġrelate":15124,"orus":15125,"ĠCrypt":15126,"ĠNVIDIA":15127,"comed":15128,"uting":15129,"incinnati":15130,"Ġvulnerability":15131,"ostic":15132,"Ġisolation":15133,"Ġcooling":15134,"ĠCoalition":15135,"Ġ119":15136,"Four":15137,"ĠDeal":15138,"Ġâī":15139,"semble":15140,"rament":15141,"ĠBarcelona":15142,"Ġ102":15143,"Ġcocaine":15144,"ocalypse":15145,"Feb":15146,"ogenic":15147,"Ġmutation":15148,"Ġcryptoc":15149,"ĠKel":15150,"ĠGit":15151,"ais":15152,"Ġsisters":15153,"ANK":15154,"Ġactivate":15155,"Ter":15156,"Ġdread":15157,"ylon":15158,"Ġpropri":15159,"Aust":15160,"ĠDefault":15161,"Ġoutdoor":15162,"Ġsheer":15163,"ceive":15164,"Ġgently":15165,"о":15166,"Program":15167,"ĠâĨĴ":15168,"Ġvegan":15169,"ĠCrus":15170,"Ġresponsibilities":15171,"ĠHR":15172,"OLD":15173,"Ġprevents":15174,"Ġstiff":15175,"ĠWere":15176,"Ġathletic":15177,"ĠScore":15178,"Ġ):":15179,"Ġcolumns":15180,"ĠLoc":15181,"available":15182,"ĠFram":15183,"ĠSessions":15184,"Ġcompanion":15185,"Ġpacks":15186,"140":15187,"ĠKnights":15188,"Ġfart":15189,"Ġstreams":15190,"Ġshore":15191,"Ġappeals":15192,"ĠPerformance":15193,"haul":15194,"ĠStra":15195,"ĠNag":15196,"103":15197,"ĠTransportation":15198,"BB":15199,"Ev":15200,"zan":15201,"Public":15202,"Ġtwin":15203,"ulsion":15204,"Mult":15205,"Ġelectro":15206,"Ġstatue":15207,"ationally":15208,"ĠNort":15209,"Ġinspection":15210,"/*":15211,"igue":15212,"Ġcompassion":15213,"ĠTales":15214,"ĠStein":15215,"ĠScreen":15216,"ĠBug":15217,"ĠLion":15218,"girl":15219,"Ġwithdrawal":15220,"Ġobjectives":15221,"Ġbloody":15222,"Ġpreliminary":15223,"Ġjacket":15224,"Ġdimensions":15225,"ĠCool":15226,"ĠOccup":15227,"Ġwreck":15228,"Ġdoubled":15229,"anking":15230,"Ġ1975":15231,"Ġglasses":15232,"ĠWang":15233,"prov":15234,"Path":15235,"connected":15236,"ĠMulti":15237,"ĠNorway":15238,"agonist":15239,"Ġfeared":15240,"Ġtouching":15241,"Ġarguably":15242,"¯¯¯¯¯¯¯¯":15243,"ĠNCAA":15244,"chem":15245,"Ġspat":15246,"ĠWWE":15247,"ĠCel":15248,"igger":15249,"Ġattacker":15250,"ĠJoin":15251,"object":15252,"etta":15253,"Ġeliminated":15254,"det":15255,"Ġdestruct":15256,"ĠLucas":15257,"ctuary":15258,"180":15259,"ĠBrady":15260,"ĠBlues":15261,"Bay":15262,"aukee":15263,"Ġtimeline":15264,"Ġdelegates":15265,"written":15266,"ufficient":15267,"Ġshapes":15268,"Copyright":15269,"ouble":15270,"service":15271,"Ġpione":15272,"Ġcolleges":15273,"Ġrows":15274,"Ġspite":15275,"Ġassessed":15276,"360":15277,"Ġlease":15278,"Ġconfidential":15279,"cker":15280,"ĠManning":15281,"ĠVoice":15282,"Ġsealed":15283,"Ġcalculate":15284,"NO":15285,"ĠAssistant":15286,"Ġteenager":15287,"ulent":15288,"atherine":15289,"Ġmock":15290,"Ġdiamond":15291,"Ġfest":15292,"Ġswitched":15293,"Ġresume":15294,"ĠPuerto":15295,"Ġlanes":15296,"iration":15297,"ĠSimilarly":15298,"Ġrod":15299,"ĠSel":15300,"ĠPalace":15301,"ĠLimited":15302,"eous":15303,"Ġvariant":15304,"Ġward":15305,"Ġ))":15306,"Show":15307,"OOK":15308,"Alex":15309,"ĠNep":15310,"bris":15311,"ĠWikipedia":15312,"Ġexceptional":15313,"Ġmanages":15314,"ĠDraw":15315,"Again":15316,"Ġcopper":15317,"utt":15318,"Ġexports":15319,"Ġportfolio":15320,"Ġelevated":15321,"Rated":15322,"ĠOtherwise":15323,"ĠTact":15324,"ĠShel":15325,"ĠTX":15326,"\"âĢĶ":15327,"Ġresur":15328,"ĠWa":15329,"venant":15330,"Ġmonetary":15331,"people":15332,"Email":15333,"Ġfifty":15334,"ĠSweet":15335,"ĠMalaysia":15336,"Ġconfusing":15337,"ĠRio":15338,"uda":15339,"utenant":15340,"\");":15341,"Ġpraised":15342,"Ġvolumes":15343,"turn":15344,"Ġmature":15345,"Ġnonprofit":15346,"Ġpassionate":15347,"ĠPrivate":15348,"Ġ103":15349,"Ġdescend":15350,"ç¥ŀ":15351,"uffy":15352,"headed":15353,"Whether":15354,"rien":15355,"zech":15356,"beit":15357,"Ġchrom":15358,"ĠMcM":15359,"Ġdancing":15360,"Ġeleg":15361,"ĠNoticed":15362,"115":15363,"Ġadvocacy":15364,"ENTS":15365,"ambling":15366,"ĠMinor":15367,"ĠFinn":15368,"Ġpriorities":15369,"Ġthereof":15370,"ĠStage":15371,"ĠRogers":15372,"Ġsubstitute":15373,"ĠJar":15374,"ĠJefferson":15375,"Ġlightly":15376,"102":15377,"ĠLisa":15378,"uits":15379,"ysical":15380,"Ġshifts":15381,"Ġdrones":15382,"Ġworkplace":15383,"Ġresid":15384,"ensed":15385,"ahn":15386,"Ġpreferences":15387,"server":15388,"Ġdebates":15389,"doc":15390,"ĠGods":15391,"Ġhelicopter":15392,"Ġhonour":15393,"Ġconsiderably":15394,"eded":15395,"ĠFemale":15396,"ĠAnne":15397,"Ġreun":15398,"ĠFace":15399,"ĠHallow":15400,"ĠBudget":15401,"Ġcondemn":15402,"Ġtender":15403,"Prof":15404,"ocratic":15405,"ĠTurner":15406,"ĠAgric":15407,"Ġ1976":15408,"Ġapt":15409,"disc":15410,"ĠFighter":15411,"ĠAur":15412,"Ġgarbage":15413,"input":15414,"ĠKarl":15415,"ĠOliver":15416,"ĠLanguage":15417,"kn":15418,"Non":15419,"ĠClar":15420,"Ġtraditions":15421,"Ġadvertisement":15422,"ĠSor":15423,"Ġarchive":15424,"Ġvillages":15425,"750":15426,"Ġimplementing":15427,"waukee":15428,"Ġdietary":15429,"Ġswitching":15430,"Republic":15431,"Ġvelocity":15432,"Ġcit":15433,"ĠAwards":15434,"Ġfinancing":15435,"Ġlasted":15436,")]":15437,"Ġreminder":15438,"Person":15439,"Ġprecision":15440,"Ġdesigners":15441,"ĠFried":15442,"ĠBorder":15443,"Ġtragic":15444,"Ġwield":15445,"Ġinitiatives":15446,"ĠTank":15447,"wer":15448,"Ġjoins":15449,"Ro":15450,"inery":15451,"Ġarrow":15452,"Ġgenerating":15453,"founder":15454,"Ġsearches":15455,"Ġrandomly":15456,"Access":15457,"Ġbatch":15458,"Ġposed":15459,"lat":15460,"Ġpursuing":15461,"asa":15462,"Ġtestified":15463,"forming":15464,"ĠShar":15465,"wiki":15466,"ĠEither":15467,"Sometimes":15468,"Ġsenators":15469,"ĠJohnny":15470,"ĠTaliban":15471,"ĠGPS":15472,"\":\"/":15473,"ãģ®å":15474,"Ġanalyzed":15475,"ĠRubio":15476,"ĠMovement":15477,"opard":15478,"iii":15479,"Stand":15480,"fight":15481,"Ġignoring":15482,"iang":15483,"ĠGN":15484,"soever":15485,"ĠSTAT":15486,"Ġrefusing":15487,"Ġsweat":15488,"Ġbay":15489,"PORT":15490,"irmed":15491,"aky":15492,"Ġdispro":15493,"Ġlabeled":15494,"Ġ108":15495,"Hello":15496,"Ġpleasant":15497,"aba":15498,"Ġtriumph":15499,"Ġaboard":15500,"Ġincom":15501,"ĠCrow":15502,"lett":15503,"Ġfolk":15504,"Ġchase":15505,"``":15506,"ĠBrus":15507,"Ġteens":15508,"cue":15509,"Ġterrain":15510,"hyd":15511,"ilight":15512,"ORY":15513,"Support":15514,"ews":15515,"lli":15516,"raints":15517,"ĠCand":15518,"Ġabused":15519,"achment":15520,"larg":15521,"Bas":15522,"ĠCancer":15523,"Ġ1978":15524,"Ġsupporter":15525,"access":15526,"ĠTermin":15527,"ĠTampa":15528,"ĠANY":15529,"Ġnewest":15530,"ĠCriminal":15531,"edu":15532,"Ġ1930":15533,"Ġadmits":15534,"Ġende":15535,"Ġfailures":15536,"urate":15537,"fulness":15538,"cycl":15539,"ĠSubject":15540,"Ġinfinite":15541,"three":15542,"WA":15543,"pit":15544,"ĠInstall":15545,"Rad":15546,"iliation":15547,"GM":15548,"Ġcontinent":15549,"Ġaccommodate":15550,"ĠClay":15551,"Ġpup":15552,"ĠFunction":15553,"Ġhammer":15554,"ĠAlberta":15555,"Ġrevised":15556,"Ġminorities":15557,"Ġmeasurement":15558,"Connell":15559,"Ġdisable":15560,"ĠMix":15561,"Incre":15562,"Ġfork":15563,"ĠRosen":15564,"Ġimplies":15565,"umblr":15566,"ANG":15567,"Ġproteins":15568,"Ġaggression":15569,"Ġfacilitate":15570,"SN":15571,"Ġillegally":15572,"uer":15573,"Ġacadem":15574,"Ġpuzz":15575,"ĠShift":15576,"pay":15577,"ollo":15578,"Ġaudiences":15579,"Build":15580,"Ġnoble":15581,"Ġsyntax":15582,"âĺħ":15583,"Ġbeam":15584,"ĠBed":15585,"ĠAld":15586,"Ġorigins":15587,"video":15588,"Ġ1977":15589,"ĠAssault":15590,"Ġgarage":15591,"Team":15592,"Ġverdict":15593,"Ġdwar":15594,"ĠVirtual":15595,"event":15596,"Keep":15597,"Ġsentiment":15598,"Ġwildlife":15599,"shirt":15600,"Ġburg":15601,"Ġrecommendation":15602,"represent":15603,"Ġgallery":15604,"owners":15605,"Ġscholar":15606,"Ġconvenience":15607,"ĠSwift":15608,"Ġconvinc":15609,"Cap":15610,"Ġwarfare":15611,"ĠVisual":15612,"Ġconstitute":15613,"Ġabort":15614,"ĠWeather":15615,"ĠLooking":15616,"ĠHem":15617,"Ġmartial":15618,"Ġincoming":15619,"etition":15620,"Ġtolerance":15621,"ĠCreated":15622,"Ġflows":15623,"ĠElder":15624,"Ġsouls":15625,"Ġfoul":15626,"ĠPain":15627,"ĠCAN":15628,"Ġ220":15629,"bc":15630,"hend":15631,"Ġgenius":15632,"Real":15633,"ĠWr":15634,"ometer":15635,"pad":15636,"Ġlimiting":15637,"ĠSi":15638,"ĠLore":15639,"ĠAdventures":15640,"Ġvaried":15641,"Disc":15642,"fin":15643,"ĠPersonal":15644,"Chris":15645,"Ġinvented":15646,"Ġdive":15647,"ĠRise":15648,"Ġoz":15649,"ĠComics":15650,"Ġexpose":15651,"ĠReb":15652,"letters":15653,"site":15654,"imated":15655,"Ġhacking":15656,"Ġeducated":15657,"ĠNobody":15658,"Ġdepri":15659,"Ġincentive":15660,"ãĤ·":15661,"Ġoversight":15662,"Ġtribes":15663,"ĠBelgium":15664,"Ġlicensing":15665,"ourt":15666,"Product":15667,"ahl":15668,"ĠGem":15669,"Ġspecialist":15670,"Ġcra":15671,"anners":15672,"ĠCorbyn":15673,"Ġ1973":15674,"READ":15675,"Ġsummar":15676,"Ġoverlook":15677,"ĠApplication":15678,"Ġinappropriate":15679,"Ġdownloaded":15680,"Que":15681,"ĠBears":15682,"Ġthumb":15683,"ĠCharacter":15684,"ĠReincarnated":15685,"ĠSid":15686,"Ġdemonstrates":15687,"sky":15688,"ĠBloomberg":15689,"ĠArray":15690,"ĠResults":15691,"ĠFourth":15692,"ĠEDT":15693,"ĠOscar":15694,"cend":15695,"Ġ106":15696,"ĠNULL":15697,"ĠHERE":15698,"match":15699,"ĠBrun":15700,"Ġglucose":15701,"ieg":15702,"egu":15703,"Ġcertified":15704,"Ġrelie":15705,"Ġhumanitarian":15706,"Ġprayers":15707,"King":15708,"Ġnan":15709,"hou":15710,"108":15711,"ulu":15712,"Ġrenewable":15713,"Ġdistinguish":15714,"Ġdense":15715,"ĠVent":15716,"ĠPackage":15717,"ĠBoss":15718,"Ġeditors":15719,"Ġmigr":15720,"Tra":15721,"ĠPeters":15722,"ĠArctic":15723,"2004":15724,"ĠCape":15725,"Ġlocally":15726,"Ġlasting":15727,"Ġhandy":15728,".).":15729,"Pan":15730,"ĠRES":15731,"Index":15732,"Ġtensions":15733,"Ġformerly":15734,"Ġideological":15735,"Ġsensors":15736,"Ġdealers":15737,"Ġdefines":15738,"Sk":15739,"Ġproceeds":15740,"Ġproxy":15741,"azines":15742,"ĠBash":15743,"ĠPad":15744,"ĠCraft":15745,"ealous":15746,"Ġsheets":15747,"ometry":15748,"June":15749,"clock":15750,"TT":15751,"ĠTheatre":15752,"ĠBuzz":15753,"Ġchapters":15754,"Ġmillenn":15755,"Ġdough":15756,"ĠCongressional":15757,"Ġimagined":15758,"avior":15759,"Ġclinic":15760,"Ġ1945":15761,"Ġholder":15762,"root":15763,"olester":15764,"Ġrestart":15765,"BN":15766,"ĠHamas":15767,"ĠJob":15768,"Ġorb":15769,"Ġram":15770,"Ġdisclose":15771,"Ġtranslate":15772,"Ġimmigrant":15773,"Ġannoying":15774,"Ġtreaty":15775,"anium":15776,"ĠTea":15777,"ĠLegion":15778,"Ġcrowds":15779,"ĠBec":15780,"ĠAer":15781,"ohyd":15782,"Bro":15783,"Looking":15784,"Ġlbs":15785,"Ġaggress":15786,"Ġseam":15787,"Ġintercept":15788,"ĠMI":15789,"mercial":15790,"activ":15791,"ĠCit":15792,"Ġdimension":15793,"Ġconsistency":15794,"Ġrushing":15795,"ĠDouglas":15796,"Ġtrim":15797,"Install":15798,"icker":15799,"Ġshy":15800,"106":15801,"Ġmentions":15802,"pelled":15803,"ĠTak":15804,"cost":15805,"Ġclassroom":15806,"Ġfortune":15807,"driven":15808,"Ġunle":15809,"ĠWheel":15810,"Ġinvestor":15811,"ĠMasters":15812,"kit":15813,"Ġassociations":15814,"ĠEvolution":15815,"oping":15816,"uscript":15817,"Ġprovincial":15818,"ĠWalter":15819,"avi":15820,"SO":15821,"Ġunlimited":15822,"English":15823,"ĠCards":15824,"ĠEbola":15825,"nered":15826,"Ġrevenge":15827,"Ġoutright":15828,"umper":15829,"Ġfitting":15830,"ĠSolid":15831,"Ġformally":15832,"Ġproblematic":15833,"Ġhazard":15834,"Ġencryption":15835,"Ġstraightforward":15836,"ĠAK":15837,"Ġpse":15838,"ĠOrb":15839,"ĠChamber":15840,"ĠMak":15841,"Contents":15842,"Ġloyalty":15843,"Ġlyrics":15844,"ĠSym":15845,"Ġwelcomed":15846,"Ġcooked":15847,"Ġmonop":15848,"Ġnurse":15849,"Ġmisleading":15850,"Ġeternal":15851,"Ġshifting":15852,"Ġ+=":15853,"Vis":15854,"Ġinstitutional":15855,"illary":15856,"Ġpant":15857,"VERT":15858,"ĠACC":15859,"ĠEnh":15860,"Ġincon":15861,"ĠREUTERS":15862,"Ġdonated":15863,"â̦â̦â̦â̦":15864,"Intern":15865,"Ġexhibit":15866,"Ġtire":15867,"ĠRic":15868,"ĠChampion":15869,"ĠMuhammad":15870,"NING":15871,"ĠSoccer":15872,"Ġmobility":15873,"Ġvarying":15874,"ĠMovie":15875,"Ġlord":15876,"oak":15877,"Field":15878,"Ġvector":15879,"usions":15880,"Ġscrap":15881,"Ġenabling":15882,"make":15883,"Tor":15884,".*":15885,"||":15886,"ĠWebsite":15887,"ĠNPC":15888,"Ġsocialist":15889,"ĠBilly":15890,"ĠAdditional":15891,"Ġcargo":15892,"Ġfarms":15893,"ĠSoon":15894,"ĠPrize":15895,"Ġmidnight":15896,"Ġ900":15897,"seen":15898,"ĠSpot":15899,"Ġsheep":15900,"Ġsponsored":15901,"ĠHi":15902,"ĠJump":15903,"Ġ1967":15904,"Microsoft":15905,"ĠAgent":15906,"Ġcharts":15907,"dir":15908,"Ġadjacent":15909,"Ġtricks":15910,"Ġmanga":15911,"Ġexagger":15912,"/>":15913,"football":15914,"ĠFCC":15915,"GC":15916,"ĠTier":15917,"andra":15918,"OUND":15919,"%),":15920,"Ġfruits":15921,"VC":15922,"ĠAA":15923,"Rober":15924,"Ġmidst":15925,"âĹ":15926,"anka":15927,"Ġlegislature":15928,"ĠNeil":15929,"Ġtourists":15930,"\"\"":15931,"ĠWarning":15932,"ĠNevertheless":15933,"ĠOfficial":15934,"ĠWhatever":15935,"Ġmold":15936,"Ġdrafted":15937,"Ġsubstances":15938,"Ġbreed":15939,"Ġtags":15940,"ĠTask":15941,"Ġverb":15942,"Ġmanufactured":15943,"comments":15944,"ĠPolish":15945,"Prov":15946,"Ġdetermines":15947,"Obama":15948,"kers":15949,"Ġutterly":15950,"Ġsect":15951,"sche":15952,"ĠGates":15953,"ĠChap":15954,"Ġaluminum":15955,"Ġzombie":15956,"ĠTouch":15957,"ĠUP":15958,"Ġsatisfy":15959,"Ġpredomin":15960,"ascript":15961,"Ġelaborate":15962,"Ġ1968":15963,"Ġmeasuring":15964,"ĠVari":15965,"anyahu":15966,"Ġsir":15967,"ulates":15968,"idges":15969,"ickets":15970,"ĠSpencer":15971,"TM":15972,"oubted":15973,"Ġprey":15974,"Ġinstalling":15975,"ĠCab":15976,"reed":15977,"reated":15978,"Supp":15979,"Ġwrist":15980,"ĠKerry":15981,"107":15982,"ĠKle":15983,"ĠRachel":15984,"Ġcotton":15985,"ĠARE":15986,"ĠEle":15987,"Control":15988,"Ġloads":15989,"ĠDod":15990,"anas":15991,"bone":15992,"Ġclassical":15993,"ĠRegional":15994,"ĠInteg":15995,"VM":15996,"Ġdesires":15997,"Ġautism":15998,"supported":15999,"ĠMessage":16000,"Ġcompact":16001,"writer":16002,"Ġ109":16003,"ĠHurricane":16004,"cision":16005,"Ġcycles":16006,"Ġdrill":16007,"Ġcolleague":16008,"Ġmaker":16009,"German":16010,"Ġmistaken":16011,"Sun":16012,"ĠGay":16013,"Ġwhatsoever":16014,"Ġsells":16015,"ĠAirl":16016,"liv":16017,"ĠOption":16018,"Ġsolved":16019,"Ġsectors":16020,"Ġhorizontal":16021,"Ġequation":16022,"ĠSkill":16023,"ĠBio":16024,"gement":16025,"ĠSnap":16026,"ĠLegal":16027,"Ġtrademark":16028,"Ġmakeup":16029,"Ġassembled":16030,"Ġsaves":16031,"ĠHalloween":16032,"ĠVermont":16033,"ĠFROM":16034,"Ġfarming":16035,"ĠPodcast":16036,"acceptable":16037,"ĠHigher":16038,"Ġasleep":16039,"ullivan":16040,"Ġreferen":16041,"ĠLev":16042,"Ġbullets":16043,"oko":16044,"HC":16045,"Ġstairs":16046,"Ġmaintains":16047,"ĠLower":16048,"ĠVi":16049,"Ġmarine":16050,"Ġacres":16051,"Ġcoordinator":16052,"ĠJoh":16053,"Ġcounterparts":16054,"ĠBrothers":16055,"Ġindict":16056,"bra":16057,"Ġchunk":16058,"Ġcents":16059,"Home":16060,"ĠMonth":16061,"Ġaccordingly":16062,"ifles":16063,"ĠGermans":16064,"ĠSyn":16065,"Hub":16066,"Ġeyeb":16067,"âĶĢâĶĢâĶĢâĶĢ":16068,"Ġranges":16069,"ĠHolland":16070,"ĠRobot":16071,"fc":16072,"Mike":16073,"Ġplasma":16074,"Ġswap":16075,"Ġathlete":16076,"ĠRams":16077,",'\"":16078,"Ġinfections":16079,"Ġcorrid":16080,"Ġvib":16081,"Ġpatches":16082,"Ġtraditionally":16083,"Ġrevelation":16084,"Ġsweep":16085,"Ġglance":16086,"Ġinex":16087,"2003":16088,"ĠRaw":16089,"working":16090,"osures":16091,"ĠDat":16092,"ĠLynch":16093,"Ġleverage":16094,"ĠReid":16095,"Ġcorrelation":16096,"iances":16097,"avascript":16098,"Ġrepository":16099,"retty":16100,"Ġ1972":16101,"240":16102,"Ġoun":16103,"pol":16104,"ĠReed":16105,"Ġtactical":16106,"isite":16107,"Apple":16108,"ĠQuinn":16109,"Ġraped":16110,"illo":16111,"Europe":16112,"Ġalgorithms":16113,"ĠRodrig":16114,"iu":16115,"Ġillum":16116,"Ġfame":16117,"Ġintroducing":16118,"Ġdelays":16119,"ĠRaiders":16120,"Ġwhistle":16121,"Ġnovels":16122,"ĠReally":16123,"Ġderiv":16124,"Ġpublications":16125,"ĠNeither":16126,"ĠCommerce":16127,"Ġaston":16128,"language":16129,"Notes":16130,"ĠRoth":16131,"ĠFear":16132,"Ġmate":16133,"Ġparade":16134,"ĠQB":16135,"Ġmaneu":16136,"ĠCincinnati":16137,"mitting":16138,"Ġwaist":16139,"ĠRew":16140,"Ġdiscont":16141,"а":16142,"Ġstaring":16143,"Ġalias":16144,"Ġsecurities":16145,"Ġtoilet":16146,"ĠJedi":16147,"Ġunlaw":16148,"vised":16149,"////////":16150,"](":16151,"ĠWeiss":16152,"Ġprest":16153,"ĠCompan":16154,"Ġmemo":16155,"ĠGrace":16156,"July":16157,"ĠElite":16158,"center":16159,"ĠStay":16160,"Ġgalaxy":16161,"Ġtooth":16162,"ĠSettings":16163,"Ġsubjected":16164,"ãĤ¦":16165,"Ġlineback":16166,"Ġretailers":16167,"ĠWant":16168,"Ġdangers":16169,"Air":16170,"Ġvoluntary":16171,"eway":16172,"Ġinterpreted":16173,"otine":16174,"ç":16175,"Ġpel":16176,"Service":16177,"ĠEventually":16178,"Ġcareers":16179,"Ġthreaten":16180,"Ġmemor":16181,"ĠBradley":16182,"ancies":16183,"sn":16184,"ĠUnknown":16185,"National":16186,"Ġshadows":16187,"ailand":16188,"ĠDash":16189,"Everyone":16190,"izzard":16191,"March":16192,"=(":16193,"Ġpulls":16194,"Ġstranger":16195,"Ġbackwards":16196,"ĠBernard":16197,"imensional":16198,"Ġchron":16199,"Ġtheoretical":16200,"ktop":16201,"Ġware":16202,"ĠInvestig":16203,"ĠIniti":16204,"ĠOperations":16205,"oven":16206,"ocide":16207,"*/":16208,"Ġflames":16209,"ĠCash":16210,"shit":16211,"Ġcab":16212,"ĠAnaly":16213,"ĠSeah":16214,"Ġdefining":16215,"Ġordering":16216,"Ġimmun":16217,"Ġpersistent":16218,"ACH":16219,"Russian":16220,"mans":16221,"Ġhind":16222,"Ġphotography":16223,"©":16224,"Ġhug":16225,"Ġ107":16226,"ĠHence":16227,"iots":16228,"udeau":16229,"Ġsubsidies":16230,"Ġroutinely":16231,"ĠDevice":16232,"itic":16233,"Ġdisgust":16234,"lander":16235,"Ġ1940":16236,"Ġassignment":16237,"ĠBesides":16238,"wick":16239,"ĠDust":16240,"usc":16241,"structed":16242,"111":16243,"develop":16244,"Ġfond":16245,"Ġintersection":16246,"Ġdignity":16247,"Ġcommissioner":16248,"Without":16249,"reach":16250,"Ġcartoon":16251,"Ġscales":16252,"ãĥŃ":16253,"FIG":16254,"Ġsurveys":16255,"ĠIndonesia":16256,"Ġartwork":16257,"Ġunch":16258,"Ġcycling":16259,"unct":16260,"auer":16261,"orate":16262,"ĠObviously":16263,"Ġcharacterized":16264,"feld":16265,"Ġaffirm":16266,"Ġinnings":16267,"Ġé":16268,"Ġaliens":16269,"Ġcloth":16270,"etooth":16271,"ĠCertain":16272,"§":16273,"Ġdigest":16274,"know":16275,"ĠXL":16276,"Ġpredictions":16277,"Ġdin":16278,"WAR":16279,"Ġaftermath":16280,"Example":16281,"ĠSuccess":16282,"ĠThr":16283,"IGN":16284,"Ġminer":16285,"Bus":16286,"Ġclarity":16287,"heimer":16288,"ĠOUT":16289,"ĠSend":16290,"ĠCircle":16291,"ĠDiet":16292,"Ġpronounced":16293,"Ġcreators":16294,"Ġearthquake":16295,"attery":16296,"geons":16297,"Ġod":16298,"Ġlaying":16299,"orp":16300,"Ult":16301,"project":16302,"Ġundermin":16303,"Ġsequel":16304,"Sam":16305,"ĠDarkness":16306,"Ġreception":16307,"bull":16308,"YS":16309,"ĠVir":16310,"Ġsequences":16311,"ĠCoin":16312,"Ġoutfit":16313,"ĠWait":16314,"119":16315,"Ġdelivers":16316,"......":16317,"Ġblown":16318,"ĠEsc":16319,"ĠMath":16320,"perm":16321,"ĠUl":16322,"Ġglim":16323,"Ġfacial":16324,"Ġgreenhouse":16325,"Ġtokens":16326,"/-":16327,"ĠAnnual":16328,"ĠONE":16329,"Ġteenage":16330,"ĠPhysical":16331,"ĠLang":16332,"ĠCelt":16333,"Ġsued":16334,"ividually":16335,"Ġpatience":16336,"chair":16337,"regular":16338,"Ġaug":16339,"inv":16340,"except":16341,"ĠLil":16342,"Ġnest":16343,"fd":16344,"sum":16345,"ĠChase":16346,"Russia":16347,"ĠJennifer":16348,"Ġoffseason":16349,"Overall":16350,"Fore":16351,"Ġriot":16352,"Aud":16353,"former":16354,"Ġdefenders":16355,"ĠCT":16356,"iotic":16357,"ribly":16358,"Ġautomated":16359,"Ġpenis":16360,"Ġinsist":16361,"Ġdiagram":16362,"ĠSQL":16363,"ĠGarc":16364,"Ġwitch":16365,"client":16366,"ierra":16367,"ambers":16368,"Ġrecount":16369,"far":16370,"Very":16371,"osterone":16372,"Ġappreciated":16373,"ĠPerfect":16374,"Section":16375,"Ġdoses":16376,"ocaust":16377,"Ġcostly":16378,"Ġgrams":16379,"ĠShi":16380,"Ġwrestling":16381,"Ġ1971":16382,"Ġtrophy":16383,"Ġnerve":16384,"ĠKaz":16385,"ĠExperience":16386,"Ġpledged":16387,"Ġplayback":16388,"Ġcreativity":16389,"bye":16390,"Ġattackers":16391,"Ġholders":16392,"ĠCoach":16393,"ĠPhD":16394,"Ġtransfers":16395,"Ġcolored":16396,"ĠHindu":16397,"Ġdrown":16398,"Ġlistened":16399,"ĠWA":16400,"iasm":16401,"PO":16402,"Ġappealing":16403,"Ġdisclosed":16404,"ĠChicken":16405,"agging":16406,"Ġpleaded":16407,"Ġnavigation":16408,"ĠReturns":16409,"Ġ[[":16410,"ROR":16411,"EA":16412,"Ġphotographer":16413,"ĠRider":16414,"ippers":16415,"Ġslice":16416,"Ġerect":16417,"Ġhed":16418,"issance":16419,"ĠVikings":16420,"urious":16421,"Ġappet":16422,"oubtedly":16423,"Child":16424,"Ġauthentic":16425,"oos":16426,"ĠMaking":16427,"Ġannouncing":16428,"Ġbod":16429,"Ġmeter":16430,"ĠNine":16431,"ĠRogue":16432,"Ġworkforce":16433,"Ġrenewed":16434,"Ġorganisations":16435,"acs":16436,"PLE":16437,"Short":16438,"Ġcompounds":16439,"ĠVisit":16440,"Ġenvelop":16441,"earth":16442,"Ġsupportive":16443,"ggle":16444,"ĠBrussels":16445,"ĠGuild":16446,"Create":16447,"REL":16448,"Ġaveraged":16449,"Ġ1969":16450,"riages":16451,"Ġlengthy":16452,"Ġforgot":16453,"Okay":16454,"ĠErd":16455,"Ġdealer":16456,"Ġrecession":16457,"DD":16458,"Ġdesperately":16459,"Ġhunger":16460,"Ġsticks":16461,"Ġmph":16462,"ĠFaith":16463,"Ġintentionally":16464,"Ġdemol":16465,"ueller":16466,"ĠSale":16467,"Ġdebris":16468,"spring":16469,"Ġleap":16470,">>>>":16471,"Ġcontainers":16472,"selling":16473,"ranean":16474,"attering":16475,"Ġcommented":16476,"ĠCM":16477,"onut":16478,"Ġwoods":16479,"especially":16480,"Ġorganize":16481,"ivic":16482,"ĠWoods":16483,"anga":16484,"squ":16485,"Ġmaj":16486,"amon":16487,"Ġaxis":16488,"Ġ1974":16489,"ĠDenmark":16490,"Ġwarrior":16491,"ĠPand":16492,"Ġoutlined":16493,"ĠBO":16494,"insula":16495,"zilla":16496,"ebook":16497,"Ġdare":16498,"Ġsearched":16499,"Ġnavigate":16500,"Sn":16501,"writing":16502,"Ġunited":16503,"Japan":16504,"ĠHebrew":16505,"Ġflame":16506,"Ġrelies":16507,"Ġcatching":16508,"ĠSho":16509,"Ġimprisonment":16510,"Ġpockets":16511,"Ġclosure":16512,"ĠFam":16513,"tim":16514,"adequ":16515,"Activity":16516,"Ġrecruiting":16517,"ĠWATCH":16518,"ĠArgentina":16519,"dest":16520,"Ġapologize":16521,"oro":16522,"Ġlacks":16523,"Ġtuned":16524,"ĠGriffin":16525,"Ġinfamous":16526,"Ġcelebrity":16527,"sson":16528,"Ġ----------------------------------------------------------------":16529,"ĠIsis":16530,"ĠDisplay":16531,"Ġcredibility":16532,"Ġeconomies":16533,"Ġheadline":16534,"ĠCowboys":16535,"Ġindef":16536,"Ġlately":16537,"Ġincentives":16538,"button":16539,"ĠMob":16540,"Aut":16541,"Ġresigned":16542,"ĠOm":16543,"camp":16544,"Ġprofiles":16545,"Ġschemes":16546,"olphins":16547,"ayed":16548,"Clinton":16549,"enh":16550,"ĠYahoo":16551,"Ġabst":16552,"Ġank":16553,"suits":16554,"Ġwished":16555,"ĠMarco":16556,"udden":16557,"Ġsphere":16558,"ĠBishop":16559,"Ġincorporated":16560,"ĠPlant":16561,"114":16562,"Ġhated":16563,"pic":16564,"Ġdonate":16565,"Ġlined":16566,"Ġbeans":16567,"Ġstealing":16568,"Ġcostume":16569,"Ġsheriff":16570,"Ġforty":16571,"Ġintact":16572,"Ġadapted":16573,"Ġtravelling":16574,"bart":16575,"Ġnicely":16576,"Ġdried":16577,"Ġscal":16578,"osity":16579,"NOTE":16580,"ĠBh":16581,"ĠBroncos":16582,"ĠIgn":16583,"Ġintimate":16584,"Ġchemistry":16585,"Ġoptimal":16586,"Deb":16587,"ĠGeneration":16588,"Ġ],":16589,"ichi":16590,"ĠWii":16591,"ĠYOUR":16592,"ventions":16593,"Write":16594,"Ġpopul":16595,"unning":16596,"ĠWor":16597,"Vol":16598,"Ġqueen":16599,"heads":16600,"KK":16601,"Ġanalyze":16602,"opic":16603,"earchers":16604,"Ġdot":16605,"legraph":16606,"astically":16607,"Ġupgrades":16608,"Ġcares":16609,"Ġextending":16610,"Ġfreeze":16611,"Ġinability":16612,"Ġorgans":16613,"Ġpretend":16614,"Ġoutlet":16615,"113":16616,"olan":16617,"ĠMall":16618,"uling":16619,"talk":16620,"Ġexpressing":16621,"ĠAlways":16622,"ĠBegin":16623,"files":16624,"Ġlicenses":16625,"%%":16626,"ĠMitt":16627,"Ġfilters":16628,"ĠMilwaukee":16629,"GN":16630,"Ġunfold":16631,"Mo":16632,"Ġnutrition":16633,"ppo":16634,"Bo":16635,"Ġfounding":16636,"Ġundermine":16637,"Ġeasiest":16638,"ĠCzech":16639,"ĠMack":16640,"Ġsexuality":16641,"ĠNixon":16642,"Win":16643,"ĠArn":16644,"ĠKin":16645,"ãĤ£":16646,"icer":16647,"Ġfortun":16648,"Ġsurfaces":16649,"aghd":16650,"Ġcarriers":16651,"ĠPART":16652,"ĠTib":16653,"Ġinterval":16654,"Ġfrustrating":16655,"ĠShip":16656,"ĠArmed":16657,"ffe":16658,"Ġboats":16659,"ĠAbraham":16660,"inis":16661,"Ġsuited":16662,"thread":16663,"iov":16664,"abul":16665,"ĠVenezuela":16666,"Ġtom":16667,"super":16668,"Ġcastle":16669,"although":16670,"ioxide":16671,"eches":16672,"Ġevolutionary":16673,"Ġnegotiate":16674,"Ġconfronted":16675,"Remember":16676,"Ġ170":16677,"Such":16678,"Ġ911":16679,"mult":16680,"ĠAbyss":16681,"urry":16682,"kees":16683,"spec":16684,"ĠBarbara":16685,"Ġbelonging":16686,"Ġvillain":16687,"istani":16688,"Ġaccountable":16689,"Ġportions":16690,"ĠDecl":16691,"Ur":16692,"ĠKate":16693,"gre":16694,"Ġmagazines":16695,"UCK":16696,"Ġregulate":16697,"omon":16698,"ĠAlmost":16699,"Ġoverview":16700,"Ġscram":16701,"Ġloot":16702,"ĠFitz":16703,"Ġcharacteristic":16704,"ĠSnake":16705,"say":16706,"ĠRico":16707,"Ġtrait":16708,"ĠJoined":16709,"aucus":16710,"Ġadaptation":16711,"ĠAirlines":16712,"Ġarchae":16713,"ĠIde":16714,"Ġbikes":16715,"Ġliterary":16716,"Ġinfluences":16717,"ĠUsed":16718,"Creat":16719,"Ġplea":16720,"ĠDefence":16721,"ĠAssass":16722,"Ġpond":16723,"ULT":16724,")\"":16725,"Ġevaluated":16726,"Ġobtaining":16727,"Ġdemographic":16728,"Ġvigil":16729,"aley":16730,"Ġspouse":16731,"ĠSeahawks":16732,"respons":16733,"ĠBelt":16734,"umatic":16735,"Ġrises":16736,"runner":16737,"ĠMichelle":16738,"Ġpotent":16739,"race":16740,"ĠPAC":16741,"Find":16742,"olesterol":16743,"ISS":16744,"ĠIntroduced":16745,"resses":16746,"ignment":16747,"Os":16748,"ĠTu":16749,"ĠDex":16750,"icides":16751,"Ġsparked":16752,"ĠLaura":16753,"ĠBryant":16754,"Ġsmiling":16755,"ĠNexus":16756,"Ġdefendants":16757,"ĠCatal":16758,"Ġdishes":16759,"shaped":16760,"Ġprolong":16761,"mt":16762,"($":16763,"ãĢĤ":16764,"Ġcalculations":16765,"ĠSame":16766,"Ġpiv":16767,"HH":16768,"Ġcancelled":16769,"Ġgrin":16770,"Ġterritories":16771,"istically":16772,"Come":16773,"ĠParent":16774,"Project":16775,"Ġneglig":16776,"ĠPrivacy":16777,"Ġammo":16778,"LECT":16779,"olutely":16780,"ĠEpic":16781,"Ġmisunder":16782,"wal":16783,"April":16784,"mos":16785,"pathy":16786,"ĠCarson":16787,"Ġalbums":16788,"ĠEasy":16789,"Ġpistol":16790,"<<":16791,"Ġ\\(":16792,"target":16793,"help":16794,"Ġinterpre":16795,"conscious":16796,"ĠHousing":16797,"ĠJoint":16798,"127":16799,"Ġbeers":16800,"science":16801,"ĠFirefox":16802,"effective":16803,"ĠCabin":16804,"ĠOkay":16805,"ĠApplic":16806,"Ġspacecraft":16807,"ĠSR":16808,"vet":16809,"ĠStrange":16810,"SB":16811,"Ġcorps":16812,"iberal":16813,"efficient":16814,"Ġprevalence":16815,"Ġeconomists":16816,"118":16817,"Thread":16818,"ordable":16819,"ODE":16820,"ĠCant":16821,"=-=-":16822,"ifiable":16823,"ĠAround":16824,"Ġpole":16825,"Ġwillingness":16826,"CLA":16827,"ĠKid":16828,"Ġcomplement":16829,"Ġscattered":16830,"Ġinmates":16831,"Ġbleeding":16832,"every":16833,"Ġqueue":16834,"ĠTrain":16835,"Ġhij":16836,"Ġmelee":16837,"pleted":16838,"Ġdigit":16839,"Ġgem":16840,"official":16841,"Ġlifting":16842,"е":16843,"Requ":16844,"itutes":16845,"Ġpackaging":16846,"ĠWorkers":16847,"hran":16848,"ĠLebanon":16849,"olesc":16850,"Ġpunished":16851,"ĠJuan":16852,"Ġjam":16853,"ĠDocument":16854,"Ġmapping":16855,"icates":16856,"Ġinevitably":16857,"Ġvanilla":16858,"ĠTon":16859,"Ġwatches":16860,"Ġleagues":16861,"Ġinitiated":16862,"degree":16863,"portion":16864,"Ġrecalls":16865,"Ġruin":16866,"Ġmelt":16867,"IAN":16868,"Ġhem":16869,"Exp":16870,"Ġbaking":16871,"ĠColomb":16872,"atible":16873,"Ġradius":16874,"plug":16875,"ĠIF":16876,"etically":16877,"Ġfict":16878,"HER":16879,"ĠTap":16880,"atinum":16881,"Ġink":16882,"Ġcoh":16883,"ĠWizard":16884,"both":16885,"tex":16886,"Ġspends":16887,"ĠCurrently":16888,"ĠPit":16889,"Ġneurons":16890,"ignt":16891,"Ġrall":16892,"Ġbuses":16893,"building":16894,"Ġadjustments":16895,"Ġcried":16896,"iblical":16897,"atted":16898,"ĠZion":16899,"ĠMatter":16900,"Ġmeditation":16901,"ĠDennis":16902,"Ġours":16903,"ĠTab":16904,"Ġrankings":16905,"ortal":16906,"Ġadvers":16907,"Ġsurrender":16908,"ĠGob":16909,"cium":16910,"omas":16911,"imeter":16912,"Ġmultiplayer":16913,"Ġheroin":16914,"Ġoptimistic":16915,"Ġindicator":16916,"ĠBrig":16917,"Ġgrocery":16918,"Ġapplicant":16919,"ĠRocket":16920,"vid":16921,"Exception":16922,"pent":16923,"Ġorganizing":16924,"Ġencounters":16925,"ĠTOD":16926,"Ġjewel":16927,"Save":16928,"ĠChristie":16929,"Ġheating":16930,"Ġlazy":16931,"ĠCP":16932,"Ġcousin":16933,"Config":16934,"Ġregener":16935,"Ġnearest":16936,"Ġachieving":16937,"ENS":16938,"throw":16939,"ĠRichmond":16940,"antle":16941,"2002":16942,"Ġanten":16943,"bird":16944,"133":16945,"Ġnarc":16946,"raint":16947,"unny":16948,"ĠHispanic":16949,"ournaments":16950,"Ġprophe":16951,"ĠThailand":16952,"ĠTi":16953,"Ġinjection":16954,"Ġinherit":16955,"ravis":16956,"Ġmedi":16957,"Ġwhoever":16958,"ĠDEBUG":16959,"GP":16960,"ĠHud":16961,"Card":16962,"prom":16963,"Ġpor":16964,"Ġoverhead":16965,"Law":16966,"Ġviolate":16967,"Ġheated":16968,"Ġdescriptions":16969,"Ġachievements":16970,"ĠBeer":16971,"ĠQuant":16972,"Was":16973,"Ġeighth":16974,"ĠIv":16975,"Ġspecialized":16976,"UPDATE":16977,"ĠDelta":16978,"Pop":16979,"Jul":16980,"ĠAsk":16981,"ophy":16982,"Ġnewsletters":16983,"ĠTool":16984,"Ġgard":16985,"ĠConfeder":16986,"ĠGMT":16987,"ĠAbbott":16988,"Ġimmunity":16989,"ĠVM":16990,"Islam":16991,"Ġimplicit":16992,"wd":16993,"Ġ1944":16994,"ravity":16995,"ometric":16996,"Ġsurviving":16997,"urai":16998,"ĠPrison":16999,"Ġrust":17000,"ĠSketch":17001,"Ġbees":17002,"ĠTheory":17003,"Ġmerit":17004,"Tex":17005,"chat":17006,"Ġmim":17007,"Ġpaste":17008,"ĠKoch":17009,"Ġignorance":17010,"ĠShoot":17011,"Ġbasement":17012,"United":17013,"ĠAdvis":17014,"height":17015,"Ġfoster":17016,"Ġdetain":17017,"information":17018,"Ġneural":17019,"';":17020,"Ġproves":17021,"allery":17022,"Ġinvitation":17023,"umbers":17024,"Ġcattle":17025,"Ġbicycle":17026,"zi":17027,"Ġconsultant":17028,"Ġapology":17029,"ĠTiger":17030,"Ġ123":17031,"999":17032,"Ġindividually":17033,"rt":17034,"igion":17035,"ĠBrazilian":17036,"Ġdisturb":17037,"Ġentrepreneurs":17038,"Ġforests":17039,"cerpt":17040,"plates":17041,"pher":17042,"clipse":17043,"Ġtwitter":17044,"Ġacids":17045,"ographical":17046,"hum":17047,"ĠBald":17048,"ifully":17049,"Ġcompiler":17050,"ĠDA":17051,"Ġdonor":17052,"asi":17053,"Ġtribal":17054,"lash":17055,"ĠConfig":17056,"Ġapplicants":17057,"Ġsalaries":17058,"135":17059,"Putin":17060,"ĠFocus":17061,"irs":17062,"Ġmisconduct":17063,"ĠHaz":17064,"Ġeaten":17065,"Mobile":17066,"Muslim":17067,"ĠMarcus":17068,"viol":17069,"Ġfavorable":17070,"Ġstub":17071,"adin":17072,"ĠHob":17073,"Ġfaithful":17074,"Ġelectronics":17075,"Ġvacuum":17076,"wait":17077,"backed":17078,"economic":17079,"dist":17080,"Ġtenure":17081,"Ġsincere":17082,"ĠTogether":17083,"ĠWave":17084,"Ġprogression":17085,"Ġdenying":17086,"Ġdistress":17087,"braska":17088,"third":17089,"Ġmixing":17090,"Ġcolonial":17091,"Ġprivately":17092,"Ġunrest":17093,"aternity":17094,"Ġpremises":17095,"anti":17096,"gregation":17097,"Ġlicence":17098,"ĠHind":17099,"ĠSamuel":17100,"Ġconvincing":17101,"ĠAce":17102,"ĠRust":17103,"ĠNetanyahu":17104,"Ġhandles":17105,"ĠPatch":17106,"oriented":17107,"aho":17108,"ĠGonz":17109,"Ġhackers":17110,"claimer":17111,"Ġcustoms":17112,"ĠGran":17113,"fighters":17114,"Ġluc":17115,"Ġmanuscript":17116,"arenthood":17117,"Ġdevil":17118,"Ġwarriors":17119,"Ġoffenders":17120,"William":17121,"Ġholidays":17122,"Ġnightmare":17123,"Ġlever":17124,"ifferent":17125,"Stat":17126,"Ġexhibition":17127,"puted":17128,"ĠPure":17129,"Ġalpha":17130,"Ġenthusiasm":17131,"ĠRepresentatives":17132,"EAR":17133,"ĠTyp":17134,"Ġwheat":17135,"ĠAlf":17136,"Ġcorrection":17137,"Ġevangel":17138,"ATT":17139,"Miss":17140,"Ġsoup":17141,"Ġimplied":17142,"param":17143,"Ġsexy":17144,"ĠLux":17145,"Ġrepublic":17146,"patch":17147,"ablish":17148,"Ġicons":17149,"Ġfathers":17150,"ĠGET":17151,"ĠCarib":17152,"Ġregulated":17153,"ĠCohen":17154,"ĠBobby":17155,"Ġner":17156,"Ġbent":17157,"ventory":17158,"ĠAlong":17159,"ĠEST":17160,"ĠWallace":17161,"Ġmurders":17162,"rise":17163,"kell":17164,"ĠCommonwealth":17165,"Ġnasty":17166,"eta":17167,"ĠMIT":17168,"Ġadministered":17169,"Ġgenuinely":17170,"Editor":17171,"nick":17172,"Ġhydro":17173,"********************************":17174,"ĠBle":17175,"Ġfines":17176,"Ġgorge":17177,"ausible":17178,"rh":17179,"Ġapple":17180,"mentioned":17181,"Ġrope":17182,"otyp":17183,"HR":17184,"Ġdisappointing":17185,"Ġcage":17186,"nik":17187,"Ġdoubts":17188,"ĠFREE":17189,"prints":17190,"ĠMUST":17191,"Ġvendors":17192,"ĠInqu":17193,"Ġliberals":17194,"Ġcontractor":17195,"Ġupside":17196,"children":17197,"Ġtricky":17198,"Ġregulators":17199,"charged":17200,"liter":17201,"Ġ***":17202,"Ġrebell":17203,"lang":17204,"Ġlocals":17205,"Ġphysicians":17206,"Ġhey":17207,"arse":17208,"tm":17209,"ĠLex":17210,"Ġbehavioral":17211,"successful":17212,"FX":17213,"Ġbrick":17214,"ovic":17215,"Ġconform":17216,"Ġreviewing":17217,"Ġinsights":17218,"Ġbiology":17219,"ĠRemove":17220,"ĠExtra":17221,"Ġcommitting":17222,"induced":17223,"ignty":17224,"igm":17225,"Ġatomic":17226,"Common":17227,"ĠEM":17228,"ĠPere":17229,"ĠItems":17230,"eh":17231,"Ġpreserved":17232,"ĠHood":17233,"Ġprisoner":17234,"Ġbankruptcy":17235,"Ġgren":17236,"ushes":17237,"Ġexploitation":17238,"Ġsignatures":17239,"Ġfinan":17240,"],\"":17241,"ĠMR":17242,"Ġmeg":17243,"remlin":17244,"Ġmusicians":17245,"Ġselecting":17246,"Ġexamining":17247,"INK":17248,"lated":17249,"Hi":17250,"Ġartic":17251,"Ġpets":17252,"Ġimpair":17253,"ĠMAN":17254,"Ġtablets":17255,"include":17256,"Range":17257,"Ġcaut":17258,"Ġlogs":17259,"Ġmounting":17260,"Ġunaware":17261,"Ġdynamics":17262,"ĠPalestine":17263,"ĠQuarter":17264,"ĠPurple":17265,"Ġma":17266,"ĠImport":17267,"Ġcollections":17268,"ciation":17269,"Ġsuccessor":17270,"Ġclone":17271,"Ġaiming":17272,"Ġpossessed":17273,"Ġsticking":17274,"Ġshaking":17275,"Ġlocate":17276,"ĠHockey":17277,"Turn":17278,"170":17279,"Ġfifteen":17280,"ĠHarrison":17281,"Ġcontinuously":17282,"ĠTC":17283,"ĠValent":17284,"ĠRescue":17285,"Ġbypass":17286,"amount":17287,"Ġmast":17288,"Ġprotects":17289,"Ġartistic":17290,"Ġsometime":17291,"Ġshoe":17292,"Ġshouted":17293,"ificant":17294,"etitive":17295,"ĠRegister":17296,"ĠJin":17297,"Ġconcentrated":17298,"lington":17299,"onies":17300,"Ġgenerator":17301,"yrim":17302,"ĠArmen":17303,"Ġclearing":17304,"ido":17305,"ĠTW":17306,"alph":17307,"Ġladies":17308,"Hard":17309,"Ġdialog":17310,"Ġinputs":17311,"æľ":17312,"Ġposes":17313,"Ġslots":17314,"ĠPremium":17315,"Ġleaks":17316,"Ġbosses":17317,"Ġ113":17318,"course":17319,"Acc":17320,"ĠNewton":17321,"ĠAustria":17322,"ĠMage":17323,"Ġteaches":17324,"abad":17325,"Ġwears":17326,"Ġcyl":17327,"Ġcurse":17328,"ĠSales":17329,"ĠWings":17330,"Ġpsy":17331,"Ġgaps":17332,"ĠIceland":17333,"ĠPinterest":17334,"Ġlandlord":17335,"Ġdefinitions":17336,"ĠKer":17337,"Ġsufficiently":17338,"ĠPence":17339,"ĠArchitect":17340,"Ġsurpass":17341,"Ġ114":17342,"Ġsuperhero":17343,"ĠDisease":17344,"Ġpriests":17345,"ĠCulture":17346,"Ġdefinitive":17347,"Ġsecretly":17348,"ĠDance":17349,"install":17350,"chief":17351,"ĠJessica":17352,"Would":17353,"Updated":17354,"Ġlocker":17355,"ĠKay":17356,"Ġmemorial":17357,"è¦":17358,"fat":17359,"Ġdisgu":17360,"Ġflavors":17361,"ĠBaseball":17362,"ĠResistance":17363,"Ġkicks":17364,"Ġenv":17365,"Ġteenagers":17366,"Dark":17367,"ĠCAR":17368,"Ġhalt":17369,"ĠLG":17370,"ĠGabriel":17371,"Ġfever":17372,"Ġsatur":17373,"Ġmall":17374,"Ġaffiliate":17375,"ĠSleep":17376,"ĠSpecific":17377,"ĠVel":17378,"Ġjar":17379,"ĠSacred":17380,"ĠEdwards":17381,"ĠACL":17382,"Ġretained":17383,"ĠGiant":17384,"Ġlimitation":17385,"inces":17386,"Ġrefusal":17387,"ĠTale":17388,"ĠButler":17389,"Ġaccidents":17390,"ĠCSS":17391,"Ġimported":17392,"ĠCopy":17393,"α":17394,"ERT":17395,"zel":17396,"Ġdivisions":17397,"hots":17398,"ĠAlb":17399,"ĠDS":17400,"Loader":17401,"Washington":17402,"atisf":17403,"ĠCreative":17404,"\\.":17405,"ĠAutom":17406,"redict":17407,"Ġreceptor":17408,"ĠCarlos":17409,"Method":17410,"oka":17411,"Ġmalicious":17412,"Ġstepping":17413,",[":17414,"ĠDad":17415,"Ġattraction":17416,"ĠEffects":17417,"ĠPirate":17418,"ĠCer":17419,"ĠIndustry":17420,"ĠRud":17421,"Ġcharter":17422,"Ġdining":17423,"Ġinsists":17424,"Ġconfigure":17425,"Ġ(#":17426,"ĠSimple":17427,"ĠScroll":17428,"UTC":17429,"175":17430,"ĠKon":17431,"Ġmarketplace":17432,"ĠãĤ":17433,"Ġrefres":17434,"Ġgates":17435,"erred":17436,"ĠPod":17437,"Ġbehave":17438,"Frank":17439,"node":17440,"Ġendorsed":17441,"hett":17442,"asive":17443,"ĠHomeland":17444,"Ġrides":17445,"ĠLeave":17446,"erness":17447,"Ġflooding":17448,"AFP":17449,"Ġrisen":17450,"Ġcontinually":17451,"Ġunanim":17452,"ĠContract":17453,"ĠPas":17454,"Ġguided":17455,"ĠChile":17456,"bd":17457,"Ġsucc":17458,"ptic":17459,"Ġcommittees":17460,"ĠLuther":17461,"ĠAnyone":17462,"Ġsab":17463,"124":17464,"Ġpixel":17465,"ĠBak":17466,"ĠTag":17467,"ĠBennett":17468,"Enter":17469,"small":17470,"ĠPresidential":17471,"Ġpul":17472,"Ġcontrace":17473,"archive":17474,"Ġcoastal":17475,"ĠKids":17476,"192":17477,"â̲":17478,"icky":17479,"INGTON":17480,"Ġwolf":17481,"ĠStalin":17482,"Tur":17483,"idget":17484,"amas":17485,"ĠUnless":17486,"Ġsponsor":17487,"Ġmorph":17488,"ĠChoose":17489,"Ġrunner":17490,"Ġunbel":17491,"Ġmud":17492,"ĠMana":17493,"Ġdubbed":17494,"Ġgodd":17495,"urers":17496,"window":17497,"Ġrelied":17498,"Ġcelebrating":17499,"osc":17500,"Ġ135":17501,"Ġlobbying":17502,"Ġincomplete":17503,"Ġrestriction":17504,"Ġincap":17505,"itus":17506,"Ġexpectation":17507,"ĠApollo":17508,"Ġintens":17509,"Ġsync":17510,"GH":17511,"Ġmanipulation":17512,"BY":17513,"Ġspear":17514,"Ġbreasts":17515,"Ġvolcan":17516,"ilia":17517,"Material":17518,"Ġformats":17519,"ĠBast":17520,"Ġparliamentary":17521,"Ġsnake":17522,"Ġservants":17523,"ĠTrudeau":17524,"ĠGrim":17525,"ĠArabic":17526,"ĠSCP":17527,"ĠBoys":17528,"station":17529,"Ġprospective":17530,"orde":17531,"initialized":17532,"Ġbored":17533,"ABLE":17534,"Ġaccessed":17535,"Ġtaxi":17536,"ĠShell":17537,"aiden":17538,"ursed":17539,"inates":17540,"ĠInsurance":17541,"ĠPete":17542,"September":17543,"650":17544,"Ġadventures":17545,"ĠCover":17546,"Ġtribute":17547,"Ġsketch":17548,"Ġempower":17549,"ĠØ":17550,"ĠGlenn":17551,"ĠDaw":17552,"=\\\"":17553,"ĠPolitics":17554,"Ġguides":17555,"Ġdioxide":17556,"ĠGore":17557,"ĠBright":17558,"ĠSierra":17559,"Ġvalued":17560,"cond":17561,"Ġpointer":17562,"Select":17563,"Ġrisky":17564,"Ġabsorb":17565,"images":17566,"Ġrefuses":17567,"Ġbonuses":17568,"___":17569,"Ġhilar":17570,"ĠFeatures":17571,"220":17572,"ĠCollector":17573,"Foot":17574,"Ġ1964":17575,"culus":17576,"Ġdawn":17577,"Ġworkout":17578,"ĠLO":17579,"Ġphilosophical":17580,"ĠSandy":17581,"ĠYouth":17582,"Ġliable":17583,"Af":17584,"blue":17585,"Ġoverturn":17586,"lessness":17587,"ĠTribune":17588,"ĠIng":17589,"Ġfactories":17590,"Ġcatches":17591,"Ġprone":17592,"Ġmatrix":17593,"Ġlogin":17594,"Ġinacc":17595,"Ġexert":17596,"sys":17597,"Ġneedle":17598,"ĠQur":17599,"Ġnotified":17600,"oulder":17601,"tx":17602,"Ġreminds":17603,"Ġpublishers":17604,"Ġnort":17605,"Ġgit":17606,"Ġflies":17607,"ĠEmily":17608,"Ġflowing":17609,"ĠAlien":17610,"ĠStrateg":17611,"Ġhardest":17612,"Ġmodification":17613,"API":17614,"ĠMY":17615,"Ġcrashes":17616,"stairs":17617,"number":17618,"Ġurging":17619,"channel":17620,"ĠFalcon":17621,"Ġinhabitants":17622,"Ġterrifying":17623,"Ġutilize":17624,"Ġbanner":17625,"Ġcigarettes":17626,"Ġsenses":17627,"ĠHolmes":17628,"Ġpractition":17629,"ĠPhillips":17630,"otto":17631,"Ġcompile":17632,"Model":17633,"ĠKo":17634,"Ġ[]":17635,"Americans":17636,"ĠTerms":17637,"Ġmedications":17638,"ĠAna":17639,"Ġfundamentally":17640,"ĠNotice":17641,"Ġweaker":17642,"Ġ0000":17643,"Ġgarlic":17644,"Ġoutbreak":17645,"Ġeconomist":17646,"ĠBirth":17647,"Ġobstacles":17648,"arcer":17649,"ĠOrthodox":17650,"Ġplacebo":17651,"ĠCrew":17652,"aspberry":17653,"ĠAngels":17654,"Ġdischarge":17655,"Ġdestructive":17656,"117":17657,"ĠRising":17658,"Ġdairy":17659,"late":17660,"Ġcollision":17661,"ĠTigers":17662,"eanor":17663,"ocumented":17664,"ĠInvalid":17665,"Ġdont":17666,"ĠLiter":17667,"ĠVa":17668,"Ġhydrogen":17669,"Ġvariants":17670,"ĠBrowns":17671,"Ġ1965":17672,"Ġindigenous":17673,"Ġtrades":17674,"Ġremainder":17675,"Ġswept":17676,"ĠImpact":17677,"Ġredist":17678,"Ġunint":17679,"graduate":17680,"ãĥķ":17681,"ĠWILL":17682,"ãģ®ç":17683,"ĠCritical":17684,"Ġfisher":17685,"Ġvicious":17686,"Ġreversed":17687,"Year":17688,"ĠSox":17689,"Ġshootings":17690,"Ġfilming":17691,"Ġtouchdowns":17692,"aires":17693,"mel":17694,"Ġgrandfather":17695,"Ġaffection":17696,"ingle":17697,"Ġoverly":17698,"Additional":17699,"Ġsupreme":17700,"ĠGrad":17701,"Ġsporting":17702,"Ġmercy":17703,"ĠBrooks":17704,"ounty":17705,"Ġperforms":17706,"Ġtightly":17707,"Ġdemons":17708,"Ġkillings":17709,"Ġfaction":17710,"ĠNova":17711,"auts":17712,"Ġundoubtedly":17713,"arin":17714,"Ġunderway":17715,"rak":17716,"Ġliv":17717,"ĠRegion":17718,"Ġbriefing":17719,"sers":17720,"cloud":17721,"ĠMik":17722,"usp":17723,"Ġprediction":17724,"azor":17725,"Ġportable":17726,"ĠGand":17727,"Ġpresenting":17728,"Ġ1080":17729,"»":17730,"ushi":17731,"ĠSpark":17732,"thereum":17733,"Ġjustification":17734,"ĠNy":17735,"Ġcontractors":17736,"mingham":17737,"ĠStyle":17738,"åħ":17739,"ĠChronicles":17740,"ĠPicture":17741,"Ġproving":17742,"Ġwives":17743,"sett":17744,"Ġmolecules":17745,"ĠFairy":17746,"Ġconsisting":17747,"Ġpier":17748,"alone":17749,"inition":17750,"Ġnucle":17751,"json":17752,"Ġgotta":17753,"Ġmobil":17754,"Ġverbal":17755,"arium":17756,"Ġmonument":17757,"ucked":17758,"Ġ256":17759,"Tech":17760,"minecraft":17761,"ĠTrack":17762,"Ġtile":17763,"Ġcompatibility":17764,"asis":17765,"Ġsadd":17766,"Ġinstructed":17767,"ĠMueller":17768,"Ġlethal":17769,"Ġhormone":17770,"Ġorche":17771,"else":17772,"Ġskelet":17773,"Ġentertaining":17774,"Ġminimize":17775,"again":17776,"Ġundergo":17777,"Ġconstraints":17778,"Ġcigarette":17779,"ĠIslamist":17780,"Ġtravels":17781,"ĠPanthers":17782,"lings":17783,"Care":17784,"Ġlawsuits":17785,"uras":17786,"Ġcryst":17787,"Ġlowered":17788,"Ġaerial":17789,"Ġcombinations":17790,"Ġhaun":17791,"Ġcha":17792,"Ġvine":17793,"Ġquantities":17794,"Ġlinking":17795,"bank":17796,"Ġsoy":17797,"Bill":17798,"ĠAngela":17799,"Ġrecipient":17800,"ĠProtest":17801,"Ġsocket":17802,"Ġsolidarity":17803,"ĠâĨ":17804,"mill":17805,"Ġvaries":17806,"ĠPakistani":17807,"Dragon":17808,"Ġune":17809,"Ġhorizon":17810,"³³³³³³³³":17811,"Ġprovinces":17812,"Ġfrankly":17813,"Ġenacted":17814,"notes":17815,"['":17816,"Ġ192":17817,"ocracy":17818,"Ġendorsement":17819,"Ġovertime":17820,"True":17821,"Lab":17822,"licted":17823,"ĠDNC":17824,"Ġbeats":17825,"ĠJamie":17826,"152":17827,"ĠINT":17828,"Contact":17829,"Ġaccounted":17830,"hash":17831,"ĠPackers":17832,"pires":17833,"Ġlesbian":17834,"Ġamendments":17835,"Ġhopeful":17836,"ĠFinland":17837,"Ġspotlight":17838,"Ġconfigured":17839,"Ġtroubled":17840,"Ġgaze":17841,"ĠCalgary":17842,"Ġreliability":17843,"Ġinsurg":17844,"swer":17845,"buy":17846,"ĠSkin":17847,"Ġpixels":17848,"Ġhandgun":17849,"Ġparas":17850,"Ġcategor":17851,"ĠEL":17852,"ĠRex":17853,"Indeed":17854,"Ġkinda":17855,"Ġconjunction":17856,"ĠBryan":17857,"ĠManufact":17858,"yang":17859,"Plus":17860,"SQL":17861,"ishment":17862,"Ġdominate":17863,"Ġnail":17864,"Ġoath":17865,"Ġerupt":17866,"ĠFine":17867,"itbart":17868,"ĠChip":17869,"ĠAbd":17870,"ĠNam":17871,"Ġbuyer":17872,"Ġdissent":17873,"Leaks":17874,"Contin":17875,"Ġrider":17876,"ĠSomeone":17877,"Ġillusion":17878,"cin":17879,"ĠBoeing":17880,"Ġinadequ":17881,"ovation":17882,"iants":17883,"Ġrebuild":17884,"450":17885,"ĠDestiny":17886,"SW":17887,"ĠTill":17888,"Hit":17889,"iaz":17890,"ĠBangl":17891,"achers":17892,"ĠReform":17893,"Ġsegments":17894,"Ġsystematic":17895,"dc":17896,"ĠConservatives":17897,"Ġportal":17898,"hor":17899,"ĠDragonbound":17900,"Ġdragged":17901,"omo":17902,"Ġthee":17903,"advert":17904,"ĠReports":17905,"ĠEt":17906,"Ġbarrels":17907,"August":17908,"Ġcomparisons":17909,"Ġhex":17910,"Ġanthrop":17911,"\"[":17912,"borough":17913,"abi":17914,"Ġpictured":17915,"playing":17916,"ĠAddress":17917,"ĠMirror":17918,"Smith":17919,"Ġtires":17920,"ĠNPR":17921,"AAAA":17922,"Ġclassification":17923,"ĠThan":17924,"ĠHarm":17925,"ĠRA":17926,"Ġrejection":17927,"mination":17928,"Ġranged":17929,"ĠFalls":17930,"DI":17931,"Host":17932,"ãĤ´":17933,"ĠExample":17934,"listed":17935,"thirds":17936,"Ġsafegu":17937,"brand":17938,"Ġprobable":17939,"Canada":17940,"ITION":17941,"ĠQaeda":17942,"Ġchick":17943,"Ġimports":17944,"hit":17945,"loc":17946,"WW":17947,"Ġblew":17948,"Ġanytime":17949,"Ġwholes":17950,"iked":17951,"Ġcalculation":17952,"create":17953,"ĠOri":17954,"Ġupgraded":17955,"Ġappar":17956,"utory":17957,"ĠMol":17958,"Brit":17959,"ĠJong":17960,"INAL":17961,"ĠStarting":17962,"Ġdice":17963,"urtle":17964,"Ġrelying":17965,"closure":17966,"Ġprofitable":17967,"Ġslaughter":17968,"ĠManual":17969,"caster":17970,"Ġ\"$":17971,"Ġfeather":17972,"ĠSimply":17973,"ieves":17974,"Ġdeterior":17975,"ĠPCI":17976,"Ġstamp":17977,"Ġflaws":17978,"Ġshade":17979,"hammer":17980,"Ġpassport":17981,"Ġconting":17982,"amel":17983,"Ġobservers":17984,"Ġneglect":17985,"ĠRB":17986,"ĠBrotherhood":17987,"Ġskeptical":17988,"family":17989,"usk":17990,"Ġemotionally":17991,"âĻ":17992,"ĠBeta":17993,"asonable":17994,"idity":17995,"ĠMul":17996,"Ġkicking":17997,"ĠCarm":17998,"ollah":17999,"VERTIS":18000,"ĠAthen":18001,"Ġladder":18002,"ĠBullet":18003,"å£":18004,"0001":18005,"ĠWildlife":18006,"ĠMask":18007,"ĠNan":18008,"Rev":18009,"Ġunacceptable":18010,"legal":18011,"Ġcrowded":18012,"agi":18013,"ĠCox":18014,"je":18015,"Ġmorality":18016,"Ġfuels":18017,"Ġcables":18018,"Ġmankind":18019,"ĠCaribbean":18020,"Ġanchor":18021,"Ġbyte":18022,"ĠOften":18023,"ĠOz":18024,"Ġcrafted":18025,"Ġhistorian":18026,"ĠWu":18027,"Ġtowers":18028,"ĠCitizens":18029,"Ġhelm":18030,"Ġcredentials":18031,"Ġsingular":18032,"ĠJesse":18033,"Ġtackles":18034,"Ġcontempt":18035,"Ġafore":18036,"ĠShadows":18037,"Ġnil":18038,"Ġurgent":18039,"apple":18040,"blood":18041,"Ġvon":18042,"Ġoffline":18043,"Ġbreathe":18044,"Ġjumps":18045,"Ġirrelevant":18046,"oxic":18047,"omal":18048,"important":18049,"Jim":18050,"Ġgloves":18051,"arming":18052,"depth":18053,"Ġtalents":18054,"ookie":18055,"ĠSB":18056,"Ġpalm":18057,"uffs":18058,"esta":18059,"IGH":18060,"Ġcanon":18061,"ĠVerizon":18062,"ĠPle":18063,"Ġcoupled":18064,"velt":18065,"Ġfundraising":18066,"ĠGetting":18067,"ĠDLC":18068,"Ġmathematical":18069,"ĠHS":18070,"ĠCardinals":18071,"telling":18072,"Ġsponsors":18073,"ĠÏ":18074,"ĠBulls":18075,"option":18076,"Ġpropose":18077,"Ġmemorable":18078,"Ġembraced":18079,"Ġdeclining":18080,"Health":18081,"eda":18082,"Ġ};":18083,"Ġspam":18084,"mile":18085,"Ġpitcher":18086,"ĠEight":18087,"Ġcaring":18088,"utic":18089,"role":18090,"Ġairline":18091,"ernandez":18092,"ĠAthlet":18093,"Ġcertification":18094,"uxe":18095,"riger":18096,"Ġempir":18097,"Ġsensation":18098,"Ġdism":18099,"Ġbolt":18100,"Ġevolve":18101,"House":18102,"Ġconsultation":18103,"ĠDuty":18104,"Ġtouches":18105,"ĠNathan":18106,"Ġfaint":18107,"had":18108,"\"(":18109,"ĠConsumer":18110,"ĠExtreme":18111,"Ġ127":18112,"ĠHerm":18113,"ĠSacrament":18114,"izoph":18115,"Ġanxious":18116,"ulously":18117,"Ġsocially":18118,"ĠUTC":18119,"Ġsolving":18120,"ĠLetter":18121,"History":18122,"educ":18123,"Price":18124,"));":18125,"Ġreload":18126,"amic":18127,"Ġpork":18128,"Ġdiscourse":18129,"Ġtournaments":18130,"airo":18131,"ĠKur":18132,"ĠCosta":18133,"Ġviolating":18134,"Ġinterfere":18135,"Ġrecreational":18136,"uffle":18137,"Ġspeeches":18138,"Ġneeding":18139,"Ġremembers":18140,"Ġcredited":18141,"nia":18142,"focused":18143,"amera":18144,"Ġbru":18145,"umbs":18146,"ĠCuban":18147,"Ġpreceding":18148,"Ġnonsense":18149,"acial":18150,"Ġsmartphones":18151,"ĠStories":18152,"Sports":18153,"ĠEmergency":18154,"ouncing":18155,"efined":18156,"Ġber":18157,"Ġconsulting":18158,"Ġmasters":18159,"heastern":18160,".\"[":18161,"ĠRunning":18162,"Ġsuscept":18163,"ĠFeng":18164,"America":18165,"prises":18166,"stitial":18167,"ĠWeekly":18168,"ĠGreater":18169,"modules":18170,"ifter":18171,"Graphics":18172,"uler":18173,"Ġwholly":18174,"Ġsuppress":18175,"Ġconcealed":18176,"Ġhappily":18177,"Ġaccepts":18178,"ĠEnjoy":18179,"Ġrivers":18180,"ĠExcept":18181,"225":18182,"ĠNHS":18183,"ĠMcConnell":18184,"Ġpussy":18185,"ferred":18186,"utable":18187,"Ġattain":18188,"Ġ>=":18189,"Ġdeposits":18190,"rophic":18191,"Ġnotorious":18192,"ĠShaw":18193,"ilitation":18194,"Ġepidemic":18195,"allic":18196,"Ġsmallest":18197,"ovich":18198,"Ġaccessories":18199,"perties":18200,"Ġsurplus":18201,"ĠMech":18202,"Ġambig":18203,"ĠImmigration":18204,"Ġchim":18205,"eval":18206,"Ġpracticing":18207,"ĠMystery":18208,"Ġdomains":18209,"ĠSilicon":18210,"apps":18211,"Ġkilometers":18212,"ea":18213,"ĠSmash":18214,"Ġwarranty":18215,"Ġnost":18216,"sil":18217,"rev":18218,"Jon":18219,"ĠDublin":18220,"Ġtastes":18221,"Ġbout":18222,"great":18223,"error":18224,"Ġswitches":18225,"ĠBapt":18226,"DO":18227,"oki":18228,"Ġsourced":18229,"produ":18230,"Ġattachment":18231,"ĠIssue":18232,"ĠQuestion":18233,"Join":18234,"Ġfitted":18235,"Ġunlawful":18236,"^^":18237,"erek":18238,"Ġauthentication":18239,"Ġstole":18240,"Ġaccountability":18241,"label":18242,"Search":18243,"Ġalbeit":18244,"atican":18245,"funded":18246,"ĠAdding":18247,"ĠIQ":18248,"Ġsubmar":18249,"lit":18250,"aque":18251,"ĠLearning":18252,"Ġinteger":18253,"Master":18254,"ĠChrom":18255,"Ġpremier":18256,"Op":18257,"ĠLiu":18258,"Ġblessed":18259,"ĠGlobe":18260,"ĠResponse":18261,"Ġlegitim":18262,"ĠMerkel":18263,"Ġdisposal":18264,"´":18265,"Ġgauge":18266,"peat":18267,"Ġinduced":18268,"Ġquestionable":18269,"arthy":18270,"ĠVit":18271,"ĠFeed":18272,"Until":18273,"Ut":18274,"worthy":18275,"RY":18276,"ĠHerald":18277,"ĠHammer":18278,"Ġmedal":18279,"ĠRivers":18280,"ĠHack":18281,"Ġclarify":18282,"Ġtracked":18283,"Ġautonomous":18284,"Ġtenant":18285,"ĠQatar":18286,"erie":18287,"Ġgrim":18288,"ĠMonitor":18289,"Ġresistant":18290,"ĠSpec":18291,"ĠWells":18292,"NAS":18293,"148":18294,"Ġminers":18295,"iotics":18296,"Ġmisses":18297,"116":18298,"gian":18299,"git":18300,"ĠEyes":18301,"pres":18302,"Ġgraduated":18303,"Ġangel":18304,"Ġsynchron":18305,"Ġefficiently":18306,"Ġtransmitted":18307,"Harry":18308,"Ġglobally":18309,"ENCE":18310,"ĠMontana":18311,"raged":18312,"ĠPrevention":18313,"Ġpiss":18314,"ĠLl":18315,"Ġshelf":18316,"ĠBJP":18317,"ĠTestament":18318,"ĠLate":18319,"iker":18320,"ĠHapp":18321,"ĠJulian":18322,"hall":18323,"Ġspont":18324,"Ġshutdown":18325,"Ġinconsistent":18326,"Ġsubscribers":18327,"Ġskeleton":18328,"ĠNebraska":18329,"Ġinspire":18330,"ĠVoid":18331,"Feed":18332,"Ġangles":18333,"ĠSprings":18334,"Ġbenchmark":18335,"Ġvaccines":18336,"izophren":18337,"sexual":18338,"uffed":18339,"Ġshine":18340,"ĠKath":18341,"Ġgesture":18342,"inea":18343,"Ġrip":18344,"Ġoppression":18345,"Ġconscience":18346,"bt":18347,"ĠLum":18348,"Ġincidence":18349,"ĠFa":18350,"wr":18351,"Ġmineral":18352,"ĠSpurs":18353,"alky":18354,"Ġthunder":18355,"Ġopio":18356,"Being":18357,"ĠPalm":18358,"Ġwasted":18359,"Ġlb":18360,"iaries":18361,"ĠInitiative":18362,"Ġcurric":18363,"Ġmarker":18364,"ĠMcL":18365,"Ġextensions":18366,"ĠPv":18367,"ĠArms":18368,"Ġofferings":18369,"Ġdefenses":18370,"Ġvendor":18371,"Ġcontradict":18372,"ĠColin":18373,"Ġreddit":18374,"Ġperipher":18375,"122":18376,"Ġsins":18377,"Edit":18378,"ICT":18379,"Soft":18380,"ĠShah":18381,"Ġadministrator":18382,"ĠTrip":18383,"Ġpornography":18384,"Ġtuition":18385,"inence":18386,"ĠProgress":18387,"Ġcatalog":18388,"Ġsuite":18389,"Ġhike":18390,"Ġreproductive":18391,"engine":18392,"Ġdrought":18393,"ĠNoah":18394,"Ġ230":18395,"Ġdude":18396,"Ġrelaxed":18397,"Ġpartition":18398,"Ġparticipant":18399,"Ġtelesc":18400,"Ġfeas":18401,"ĠFF":18402,"owner":18403,"Ġsweeping":18404,"Ġlenses":18405,"Ġmatchup":18406,"ĠRepl":18407,"ournals":18408,"Ġcredible":18409,"Ġgrandmother":18410,"Ġthermal":18411,"Ġsubscribing":18412,"Ġidentities":18413,"colm":18414,"UCT":18415,"Ġreluctant":18416,"users":18417,"ĠCort":18418,"Ġassisted":18419,"OSS":18420,"ATIONS":18421,"ISH":18422,"Ġpharmaceutical":18423,"icable":18424,"adian":18425,"ĠSonic":18426,"ĠFury":18427,"ĠMong":18428,"AH":18429,"ĠPsychology":18430,"Ġphosph":18431,"Ġtreats":18432,"ŃĶ":18433,"Ġsteadily":18434,"ĠHello":18435,"Ġrelates":18436,"Ġclue":18437,"Expl":18438,"auth":18439,"Ġrevision":18440,"Ġeld":18441,"osion":18442,"Ġbron":18443,"144":18444,"rikes":18445,"Ġmines":18446,"Ġblanket":18447,"ĠFail":18448,"eled":18449,"ĠImagine":18450,"ĠPlanned":18451,"aic":18452,"Request":18453,"Mad":18454,"ĠHorse":18455,"ĠEagle":18456,"Ġcapac":18457,"157":18458,"Ġling":18459,"ĠNice":18460,"ĠParenthood":18461,"minster":18462,"ogs":18463,"ensitive":18464,"Nothing":18465,"Ġcarn":18466,"Fin":18467,"ĠPE":18468,"Ġrifles":18469,"ĠLP":18470,"Sand":18471,"ĠguiActive":18472,"Ġtourist":18473,"CNN":18474,"Ġunveiled":18475,"Ġpredecessor":18476,"}{":18477,"uber":18478,"Ġoffshore":18479,"Ġoptical":18480,"ĠRot":18481,"ĠPearl":18482,"eton":18483,"Ġstared":18484,"Ġfarther":18485,"atility":18486,"contin":18487,"ĠGy":18488,"ĠFoster":18489,"ĠCoc":18490,"rients":18491,"Ġdesigning":18492,"ĠEconomy":18493,"ONG":18494,"Women":18495,"ĠNancy":18496,"erver":18497,"Ġmascul":18498,"Ġcasualties":18499,"Ġ225":18500,"ĠSullivan":18501,"ĠChoice":18502,"Ġaster":18503,"ws":18504,"Ġhotels":18505,"Ġconsiderations":18506,"Ġcouch":18507,"ĠStrip":18508,"ĠGn":18509,"Ġmanipulate":18510,"lied":18511,"Ġsynthetic":18512,"Ġassaulted":18513,"Ġoffenses":18514,"ĠDrake":18515,"Ġimpe":18516,"October":18517,"ĠHeritage":18518,"hl":18519,"ĠBlair":18520,"Unlike":18521,"Ġgrief":18522,"Ġ450":18523,"Ġopted":18524,"Ġresignation":18525,"ilo":18526,"Ġverse":18527,"ĠTomb":18528,"Ġupt":18529,"Ġaired":18530,"ĠHook":18531,"ĠMLB":18532,"Ġassumes":18533,"outed":18534,"ĠVers":18535,"Ġinferior":18536,"Ġbundle":18537,"ĠDNS":18538,"ographer":18539,"Ġmultip":18540,"ĠSouls":18541,"Ġillustrated":18542,"Ġtactic":18543,"Ġdressing":18544,"Ġduo":18545,"Conf":18546,"Ġrelent":18547,"Ġcant":18548,"Ġscarce":18549,"Ġcandy":18550,"ĠCF":18551,"Ġaffiliated":18552,"Ġsprint":18553,"ylan":18554,"ĠGarcia":18555,"Ġjunk":18556,"Print":18557,"exec":18558,"Crit":18559,"Ġportrait":18560,"iries":18561,"ĠOFF":18562,"Ġdisputes":18563,"WR":18564,"Love":18565,"ãģĦ":18566,"ĠReyn":18567,"Ġhipp":18568,"opath":18569,"Ġfloors":18570,"ĠFeel":18571,"Ġworries":18572,"Ġsettlements":18573,"ĠPos":18574,"Ġmosque":18575,"Ġfinals":18576,"Ġcrushed":18577,"ĠProbably":18578,"ĠBot":18579,"ĠMans":18580,"ĠPeriod":18581,"Ġsovereignty":18582,"Ġseller":18583,"Ġapost":18584,"Ġamateur":18585,"Ġdorm":18586,"Ġconsuming":18587,"Ġarmour":18588,"ĠRoose":18589,"Ġintensive":18590,"Ġeliminating":18591,"ĠSunni":18592,"ĠAleppo":18593,"jin":18594,"Ġadvise":18595,"pal":18596,"ĠHalo":18597,"Ġdescent":18598,"Ġsimpler":18599,"Ġbooth":18600,"STR":18601,"Later":18602,"ĠCave":18603,"===":18604,"Ġmol":18605,"Ġfist":18606,"Ġshotgun":18607,"supp":18608,"Ġrobbery":18609,"Effect":18610,"Ġobscure":18611,"ĠProfessional":18612,"Ġembassy":18613,"Ġmilitant":18614,"Ġincarcer":18615,"Ġgenerates":18616,"Ġlaunches":18617,"Ġadministrators":18618,"Ġshaft":18619,"Ġcircular":18620,"Ġfreshman":18621,"ĠWes":18622,"ĠJoel":18623,"ĠDrew":18624,"ĠDuncan":18625,"ĠApparently":18626,"sight":18627,"ĠInternal":18628,"ĠIndividual":18629,"ĠFE":18630,"Ġbore":18631,"ĠMt":18632,"Ġbroadly":18633,"ĠOptions":18634,"ountain":18635,"ipes":18636,"ĠVideos":18637,"204":18638,"Ġhills":18639,"Ġsimulation":18640,"Ġdisappointment":18641,"itan":18642,"ĠLaboratory":18643,"Ġupward":18644,"Ġboundary":18645,"Ġdarker":18646,"hart":18647,"Ġdominance":18648,"Cong":18649,"ĠOracle":18650,"ĠLords":18651,"Ġscholarship":18652,"ĠVincent":18653,"ede":18654,"ĠRah":18655,"Ġencourages":18656,"rov":18657,"Ġquo":18658,"Ġpremise":18659,"ĠCrisis":18660,"ĠHolocaust":18661,"Ġrhythm":18662,"Ġmetric":18663,"club":18664,"Ġtransported":18665,"Ġnod":18666,"ĠPist":18667,"Ġancestors":18668,"ĠFreder":18669,"thumbnails":18670,"ĠCE":18671,"OND":18672,"Phil":18673,"venge":18674,"ĠProducts":18675,"castle":18676,"Ġqualifying":18677,"ĠKaren":18678,"VERTISEMENT":18679,"Ġmighty":18680,"Ġexplanations":18681,"Ġfixing":18682,"Di":18683,"Ġdeclaring":18684,"Ġanonymity":18685,"Ġjuven":18686,"ĠNord":18687,"ĠDoom":18688,"ĠActually":18689,"Ok":18690,"phis":18691,"ĠDesert":18692,"Ġ116":18693,"IK":18694,"ĠFM":18695,"Ġincomes":18696,"VEL":18697,"okers":18698,"Ġpecul":18699,"Ġlightweight":18700,"gue":18701,"Ġaccent":18702,"Ġincrement":18703,"ĠChan":18704,"Ġcomplaining":18705,"ĠBaghd":18706,"Ġmidfielder":18707,"Ġoverhaul":18708,"Process":18709,"ĠHollow":18710,"ĠTitans":18711,"Small":18712,"manuel":18713,"ĠUnity":18714,"ĠEvents":18715,"Sty":18716,"Ġdisproportion":18717,"nesty":18718,"enes":18719,"ĠCod":18720,"Ġdemonstrations":18721,"ĠCrimson":18722,"ĠOH":18723,"Ġenrolled":18724,"Ġcel":18725,"ĠBrett":18726,"Ġaide":18727,"Ġheels":18728,"Ġbroadband":18729,"Ġmarking":18730,"Ġwizard":18731,"ĠNJ":18732,"ĠChiefs":18733,"Ġingredient":18734,"Ġdug":18735,"ĠShut":18736,"urchase":18737,"endor":18738,"Ġfarmer":18739,"ĠGoldman":18740,"129":18741,"155":18742,"Order":18743,"Ġlion":18744,"iably":18745,"Ġstain":18746,"array":18747,"ilitary":18748,"ĠFAQ":18749,"Ġexploded":18750,"ĠMcCarthy":18751,"ĠTweet":18752,"ĠGreens":18753,"eking":18754,"ln":18755,"ensen":18756,"Ġmotorcycle":18757,"Ġparticle":18758,"Ġcholesterol":18759,"Bron":18760,"Ġstair":18761,"Ġoxid":18762,"Ġdesirable":18763,"ibles":18764,"Ġtheor":18765,"forcing":18766,"Ġpromotional":18767,"ovo":18768,"boot":18769,"ĠBonus":18770,"rawling":18771,"Ġshortage":18772,"ĠPsy":18773,"Ġrecruited":18774,"Ġinfants":18775,"Ġtestosterone":18776,"Ġdeduct":18777,"Ġdistinctive":18778,"Ġfirmware":18779,"built":18780,"145":18781,"Ġexplored":18782,"Ġfactions":18783,"Ġvide":18784,"Ġtattoo":18785,"Ġfinancially":18786,"Ġfatigue":18787,"Ġproceeding":18788,"constitutional":18789,"Ġmiser":18790,"Ġchairs":18791,"gging":18792,"ipple":18793,"Ġdent":18794,"Ġdisreg":18795,"çĶ":18796,"stant":18797,"llo":18798,"bps":18799,"akening":18800,"Ġabnormal":18801,"ĠERA":18802,"士":18803,"ĠHBO":18804,"ĠMAR":18805,"Ġconcess":18806,"Ġservant":18807,"Ġaspir":18808,"lav":18809,"ĠPanel":18810,"amo":18811,"Ġprecip":18812,"Ġrecordings":18813,"Ġproceeded":18814,"Ġcolony":18815,"ĠTang":18816,"ablo":18817,"Ġstripped":18818,"Left":18819,"too":18820,"Ġpotatoes":18821,"Ġfinest":18822,"%).":18823,"Ġcrap":18824,"ĠZach":18825,"abases":18826,"ĠGoth":18827,"Ġbillionaire":18828,"wolf":18829,"Ġsanction":18830,"SK":18831,"Ġlogged":18832,"Po":18833,"eyed":18834,"unal":18835,"Ġcricket":18836,"Ġarmies":18837,"Ġuncovered":18838,"Cloud":18839,"ón":18840,"Ġrebounds":18841,"Ġmes":18842,"Oper":18843,"Pac":18844,"Ġnationally":18845,"Ġinserted":18846,"pict":18847,"Ġgovernance":18848,"и":18849,"Ġprivileges":18850,"GET":18851,"Ġfavorites":18852,"imity":18853,"Ġlover":18854,"them":18855,"empl":18856,"Ġgorgeous":18857,"Ann":18858,"Ġslipped":18859,"Ġveto":18860,"Bob":18861,"Ġslim":18862,"ucc":18863,"ĠFame":18864,"uddenly":18865,"Ġdenies":18866,"ĠMaur":18867,"Ġdistances":18868,"Ġwanna":18869,"tar":18870,"ĠSER":18871,"ĠâĪ":18872,"Ġlemon":18873,"athetic":18874,"Ġliteral":18875,"Ġdistinguished":18876,"Ġanswering":18877,"GI":18878,"Ġreligions":18879,"ĠPhilos":18880,"ĠLay":18881,"Ġcompos":18882,"irements":18883,"ĠKos":18884,"inez":18885,"rolling":18886,"Ġyoungest":18887,"andise":18888,"ĠBorn":18889,"Ġaltar":18890,"amina":18891,"ĠBoot":18892,"voc":18893,"Ġdigging":18894,"Ġpressures":18895,"Ġlen":18896,"264":18897,"Ġassassination":18898,"ĠBirmingham":18899,"ĠMyth":18900,"Ġsovereign":18901,"ĠArtist":18902,"ĠPhotograph":18903,"Ġdepicted":18904,"Ġdispens":18905,"orthy":18906,"Ġambul":18907,"integ":18908,"ĠCele":18909,"ĠTibet":18910,"Ġhierarchy":18911,"Ġcu":18912,"Ġpreseason":18913,"ĠPeterson":18914,"Ġcolours":18915,"Ġworrying":18916,"Ġbackers":18917,"ĠPalmer":18918,"Ġμ":18919,"Ġcontributor":18920,"Ġhearings":18921,"Ġurine":18922,"ĠÙ":18923,"ourgeois":18924,"Similar":18925,"ĠZimmer":18926,"something":18927,"ĠUSC":18928,"Ġstrengths":18929,"ĠFI":18930,"Ġlogging":18931,"Asked":18932,"ĠThai":18933,"inqu":18934,"ĠWalt":18935,"Ġcrews":18936,"itism":18937,"301":18938,"Ġsharply":18939,"umed":18940,"Ġredirect":18941,"rators":18942,"Inf":18943,"ĠWeapons":18944,"Ġteasp":18945,"1999":18946,"Live":18947,"ĠEspecially":18948,"ĠSter":18949,"ĠVeterans":18950,"Ġintro":18951,"otherapy":18952,"Ġmalware":18953,"Ġbreeding":18954,"Ġmolecular":18955,"ĠRoute":18956,"ĠComment":18957,"ochem":18958,"Ġain":18959,"Season":18960,"Ġlinebacker":18961,"Ä«":18962,"ĠEconomics":18963,"esar":18964,"ĠLives":18965,"ĠEmma":18966,"Ġkin":18967,"ĠTerrit":18968,"Ġplanted":18969,"oton":18970,"ĠButter":18971,"ĠSpons":18972,"PER":18973,"Ġdungeon":18974,"Ġsymbolic":18975,"Ġfilmed":18976,"Ġdiets":18977,"Ġconcludes":18978,"Ġcertainty":18979,"ĠFormat":18980,"Ġstrangers":18981,"format":18982,"ĠPhase":18983,"Ġcopied":18984,"Ġmetres":18985,"lda":18986,"ĠUsers":18987,"Ġdeliberate":18988,"Ġwashed":18989,"ĠLance":18990,"imation":18991,"Ġimproper":18992,"ĠGenesis":18993,"ickr":18994,"ĠKush":18995,"Ġrealise":18996,"Ġembarrassing":18997,"alking":18998,"bucks":18999,"Ġverified":19000,"Ġoutline":19001,"years":19002,"ĠIncome":19003,"202":19004,"Ġzombies":19005,"Final":19006,"ĠMillenn":19007,"Ġmodifications":19008,"ĠVision":19009,"ĠMoses":19010,"verb":19011,"iterranean":19012,"ĠJet":19013,"Ġnaval":19014,"ĠAgg":19015,"Ġurl":19016,"Ġvictories":19017,"Ġnonetheless":19018,"Ġinjust":19019,"ĠFact":19020,"çļ":19021,"Ġinsufficient":19022,"review":19023,"facebook":19024,"Ġnegotiating":19025,"Ġguarantees":19026,"imen":19027,"utenberg":19028,"Ġgambling":19029,"Ġcongr":19030,"Loading":19031,"Ġnevertheless":19032,"Ġpresidents":19033,"ĠIndustrial":19034,"Ġ118":19035,"Ġpoured":19036,"ĠTory":19037,"Ġ175":19038,"Ġ:=":19039,"Scott":19040,"angered":19041,"Tok":19042,"Ġorganizers":19043,"Mat":19044,"ĠGrowth":19045,"Ġadul":19046,"Ġensures":19047,"Ġ117":19048,"é¾įå":19049,"Ġmassacre":19050,"Ġgrades":19051,"before":19052,"ADVERTISEMENT":19053,"ĠSlow":19054,"ĠMMA":19055,"âĢĶ\"":19056,"ĠVatican":19057,"Qaeda":19058,"Ġowe":19059,"6666":19060,"ĠSorry":19061,"ĠGrass":19062,"Ġbackgrounds":19063,"Ġexhausted":19064,"Ġclan":19065,"Ġcompromised":19066,"ĠElf":19067,"ĠIsaac":19068,"enson":19069,"Invest":19070,"IFA":19071,"Ġinterrupted":19072,"ãĥīãĥ©":19073,"Ġtwisted":19074,"ĠDragons":19075,"Mode":19076,"ĠKremlin":19077,"Ġfertil":19078,"heres":19079,"phan":19080,"ĠNode":19081,"fed":19082,"ĠOrc":19083,"Ġunwilling":19084,"Cent":19085,"Ġpriorit":19086,"Ġgraduates":19087,"Ġsubjective":19088,"Ġissuing":19089,"ĠLt":19090,"Ġviewer":19091,"Ġwoke":19092,"Thus":19093,"brook":19094,"Ġdepressed":19095,"Ġbracket":19096,"ĠGor":19097,"ĠFighting":19098,"Ġstriker":19099,"Report":19100,"ĠPortugal":19101,"Ġneo":19102,"wed":19103,"199":19104,"Ġfleeing":19105,"shadow":19106,"identified":19107,"USE":19108,"Steam":19109,"Ġstretched":19110,"Ġrevelations":19111,"arted":19112,"ĠDw":19113,"Ġalignment":19114,"eston":19115,"ĠJared":19116,"Sep":19117,"Ġblogs":19118,"update":19119,"gom":19120,"risk":19121,"Ġclash":19122,"ĠHour":19123,"Ġruntime":19124,"Ġunwanted":19125,"Ġscam":19126,"Ġrack":19127,"Ġenlight":19128,"onest":19129,"ĠFerr":19130,"Ġconvictions":19131,"Ġpiano":19132,"Ġcirculation":19133,"ĠWelcome":19134,"Ġbacklash":19135,"ĠWade":19136,"Ġreceivers":19137,"otive":19138,"Jeff":19139,"Ġnetworking":19140,"ĠPrep":19141,"ĠExplorer":19142,"Ġlecture":19143,"Ġuploaded":19144,"ĠMeat":19145,"BLE":19146,"ĠNazis":19147,"ĠSynd":19148,"stud":19149,"roots":19150,"rians":19151,"Ġportrayed":19152,"Ġ??":19153,"ĠBuddha":19154,"sun":19155,"Robert":19156,"ĠComplex":19157,"Ġoversee":19158,"Ġstealth":19159,"Title":19160,"ĠJobs":19161,"ĠKum":19162,"Ġappreciation":19163,"ĠMOD":19164,"Ġbasics":19165,"Ġclips":19166,"Ġnursing":19167,"Ġproposition":19168,"Ġrealised":19169,"ĠNYC":19170,"Ġallocated":19171,"rium":19172,"aran":19173,"ĠProduction":19174,"ĠVote":19175,"Ġsmugg":19176,"Ġhunter":19177,"azer":19178,"ĠChanges":19179,"Ġfluct":19180,"yon":19181,"Array":19182,"Ġkits":19183,"Water":19184,"Ġuncommon":19185,"Ġresting":19186,"ells":19187,"would":19188,"Ġpursued":19189,"Ġassertion":19190,"ometown":19191,"ĠMosul":19192,"ĠPlatform":19193,"iolet":19194,"Ġshareholders":19195,"Ġtrails":19196,"Pay":19197,"ĠEnforcement":19198,"types":19199,"ĠAnonymous":19200,"Ġsatisfying":19201,"ilogy":19202,"Ġ('":19203,"wave":19204,"city":19205,"Steve":19206,"Ġconfrontation":19207,"ĠEld":19208,"Capt":19209,"ahan":19210,"htm":19211,"ĠCtrl":19212,"ONS":19213,"230":19214,"ifa":19215,"holding":19216,"Ġdelicate":19217,"Ġjaw":19218,"ĠGoing":19219,"orum":19220,"Sal":19221,"Ġdull":19222,"ĠBeth":19223,"Ġprisons":19224,"Ġego":19225,"ĠElsa":19226,"avorite":19227,"ĠGang":19228,"ĠNuclear":19229,"Ġspider":19230,"atsu":19231,"Ġsampling":19232,"Ġabsorbed":19233,"ĠPharm":19234,"ieth":19235,"Ġbucket":19236,"ĠRecomm":19237,"OF":19238,"ĠFactory":19239,"ANCE":19240,"Ġbacter":19241,"Has":19242,"ĠObserv":19243,"121":19244,"Ġpremiere":19245,"Develop":19246,"Ġcurrencies":19247,"Cast":19248,"Ġaccompanying":19249,"ĠNashville":19250,"Ġfatty":19251,"ĠBrend":19252,"Ġlocks":19253,"Ġcentered":19254,"ĠUT":19255,"aughs":19256,"orie":19257,"ĠAffordable":19258,"vance":19259,"DL":19260,"emet":19261,"Ġthrone":19262,"ĠBluetooth":19263,"Ġnaming":19264,"ifts":19265,"ADE":19266,"Ġcorrected":19267,"Ġpromptly":19268,"ĠSTR":19269,"Ġgenome":19270,"Ġcope":19271,"Ġvalley":19272,"Ġrounded":19273,"ĠKend":19274,"alion":19275,"pers":19276,"Ġtourism":19277,"Ġstark":19278,"vl":19279,"Ġblowing":19280,"ĠSchedule":19281,"std":19282,"Ġunhappy":19283,"Ġlitigation":19284,"cedes":19285,"Ġandroid":19286,"Ġintegral":19287,"erers":19288,"uded":19289,"tax":19290,"Ġreiter":19291,"ĠMotors":19292,"ociated":19293,"Ġwonders":19294,"ĠApost":19295,"ucking":19296,"ĠRoosevelt":19297,"fram":19298,"Ġyields":19299,"Ġconstitutes":19300,"awk":19301,"Interest":19302,"Ġinterim":19303,"Ġbreakthrough":19304,"ĠCher":19305,"Ġprosec":19306,"ĠDj":19307,"ĠMT":19308,"Resp":19309,"ĠPT":19310,"Ġsperm":19311,"edit":19312,"BT":19313,"Linux":19314,"country":19315,"league":19316,"Ġdick":19317,"Ġoct":19318,"Ġinserting":19319,"Ġscra":19320,"ĠBrewing":19321,"Ġ1966":19322,"Ġrunners":19323,"Ġplun":19324,"idy":19325,"ĠDian":19326,"Ġdysfunction":19327,"Ġexclusion":19328,"Ġdisgr":19329,"Ġincorporate":19330,"Ġreconc":19331,"Ġnominated":19332,"ĠArcher":19333,"draw":19334,"achelor":19335,"Ġwritings":19336,"Ġshallow":19337,"Ġhast":19338,"ĠBMW":19339,"ĠRS":19340,"Ġthigh":19341,"Ġ1963":19342,"Ġlamb":19343,"Ġfavored":19344,"agle":19345,"Ġcooler":19346,"ĠHours":19347,"ĠGU":19348,"ĠOrigin":19349,"Ġglimpse":19350,"--------------------":19351,"Lim":19352,"Ġcheek":19353,"Ġjealous":19354,"-'":19355,"Ġharness":19356,"ĠPoison":19357,"Ġdisabilities":19358,"neapolis":19359,"Ġoutlook":19360,"Ġnotify":19361,"ĠIndianapolis":19362,"Ġabrupt":19363,"nsic":19364,"Ġencrypted":19365,"Ġforfe":19366,"reath":19367,"Ġrabb":19368,"Ġfoundations":19369,"Ġcompliment":19370,"ĠInterview":19371,"ĠSwe":19372,"Ġadolesc":19373,"Ġmonitors":19374,"ĠSacramento":19375,"Ġtimely":19376,"Ġcontempl":19377,"Ġpositioned":19378,"Ġposters":19379,"phies":19380,"iovascular":19381,"void":19382,"ĠFifth":19383,"Ġinvestigative":19384,"OUN":19385,"Ġintegrate":19386,"ĠINC":19387,"isha":19388,"iblings":19389,"ĠRequest":19390,"ĠRodriguez":19391,"Ġslides":19392,"ĠDX":19393,"Ġfeminism":19394,"Ġdatas":19395,"Ġbend":19396,"irus":19397,"ĠNigeria":19398,"Fox":19399,"Change":19400,"Ġairplane":19401,"ĠLaden":19402,"Ġpublicity":19403,"ixty":19404,"Ġcommitments":19405,"Ġaggregate":19406,"Ġdisplaying":19407,"ĠArrow":19408,"Ġ122":19409,"Ġrespects":19410,"android":19411,"six":19412,"ĠSha":19413,"Ġrestoration":19414,")\\":19415,"WS":19416,"oys":19417,"Ġillustrate":19418,"without":19419,"126":19420,"ĠâĶĤ":19421,"Ġpickup":19422,"nels":19423,"Ġ....":19424,"food":19425,"ĠFen":19426,")?":19427,"Ġphenomena":19428,"Ġcompanions":19429,"ĠWrite":19430,"Ġspill":19431,"Ġbridges":19432,"ĠUpdated":19433,"ĠFo":19434,"Ġinsects":19435,"ASHINGTON":19436,"Ġscare":19437,"iltr":19438,"ĠZhang":19439,"Ġseverity":19440,"Ġindul":19441,"149":19442,"ĠCoffee":19443,"Ġnorms":19444,"Ġpulse":19445,"ĠFT":19446,"Ġhorrific":19447,"ĠDestroy":19448,"ĠJSON":19449,"Ġolive":19450,"Ġdiscusses":19451,"Rest":19452,"Elect":19453,"ĠWinn":19454,"ĠSurviv":19455,"ĠHait":19456,"Sure":19457,"oped":19458,"Ġrooted":19459,"ĠSke":19460,"ĠBronze":19461,"Ġlol":19462,"Default":19463,"Ġcommodity":19464,"redited":19465,"Ġlibertarian":19466,"Ġforbidden":19467,"Ġgran":19468,"à¨":19469,"Ġlag":19470,"enz":19471,"drive":19472,"Ġmathematics":19473,"Ġwires":19474,"Ġcritically":19475,"Ġcarbohyd":19476,"ĠChancellor":19477,"ĠEddie":19478,"Ġbanning":19479,"ĠFri":19480,"Ġcomplications":19481,"etric":19482,"ĠBangladesh":19483,"Ġbandwidth":19484,"Stop":19485,"ĠOriginally":19486,"Ġhalfway":19487,"ynasty":19488,"shine":19489,"Ġtales":19490,"rities":19491,"avier":19492,"Ġspinning":19493,"ĠWHO":19494,"Ġneighbourhood":19495,"bach":19496,"Ġcommerce":19497,"ĠSle":19498,"BU":19499,"Ġentrepreneur":19500,"Ġpeculiar":19501,"ĠComments":19502,"fre":19503,"320":19504,"ICS":19505,"Ġimagery":19506,"ĠCanon":19507,"ĠElectronic":19508,"short":19509,"((":19510,"Dig":19511,"Ġcommem":19512,"uced":19513,"Ġinclined":19514,"ĠSummon":19515,"Ġcliff":19516,"ĠMediterranean":19517,"Ġpoetry":19518,"Ġprosperity":19519,"ĠRece":19520,"Ġpills":19521,"member":19522,"Ġfinale":19523,"unc":19524,"ĠGig":19525,"ä½":19526,"Ġlod":19527,"Ġbackward":19528,"-+":19529,"ĠForward":19530,"Ġthri":19531,"sure":19532,"Ġsoap":19533,"ĠFX":19534,"RES":19535,"ĠSexual":19536,"oulos":19537,"Ġfoolish":19538,"Ġrighteous":19539,"Ġcoff":19540,"terrorism":19541,"ustain":19542,"oter":19543,"Ġabuses":19544,"next":19545,"Ġabusive":19546,"Ġthereafter":19547,"Ġprohibition":19548,"ĠSUP":19549,"Ġdip":19550,"Ġripped":19551,"Ġinherited":19552,"Ġbats":19553,"stru":19554,"GT":19555,"Ġflawed":19556,"phabet":19557,"Ġfog":19558,"doors":19559,"Ġimaging":19560,"Ġdigits":19561,"ĠHungary":19562,"Ġarrog":19563,"Ġteachings":19564,"Ġprotocols":19565,"ĠBanks":19566,"à¸":19567,"pound":19568,"ĠCurt":19569,".\")":19570,"./":19571,"Ġexemption":19572,"endix":19573,"ĠMull":19574,"Ġimproves":19575,"ĠGamer":19576,"dimensional":19577,"Icon":19578,"ĠMargaret":19579,"Status":19580,"dates":19581,"Ġintends":19582,"Ġdepict":19583,"Ġparked":19584,"Joe":19585,"ĠMarines":19586,"chnology":19587,"!).":19588,"Ġjudged":19589,"Ġweights":19590,"Ray":19591,"Ġapartments":19592,"hester":19593,"Ġreinforce":19594,"Ġoffender":19595,"occup":19596,"Ġsore":19597,"ept":19598,"ĠPHP":19599,"ĠBrow":19600,"Ġauthorization":19601,"ĠRisk":19602,"ĠDelaware":19603,"ĠQU":19604,"Ġnotifications":19605,"Ġsunlight":19606,"Ġexclude":19607,"dat":19608,"Ġmesh":19609,"ĠSudan":19610,"Ġbelonged":19611,"Ġsubway":19612,"Ġnoon":19613,"ĠInterior":19614,"olics":19615,"ĠLakers":19616,"Ġcoding":19617,"Disclaimer":19618,"Calif":19619,"Old":19620,"Ġdisl":19621,"?????":19622,"Ġconfirms":19623,"Ġrecruitment":19624,"Ġhomicide":19625,"Consider":19626,"ĠJeffrey":19627,"fty":19628,"};":19629,"Ġobjection":19630,"doing":19631,"ĠLeo":19632,"Want":19633,"Ġglow":19634,"ĠClarke":19635,"ĠNorman":19636,"Ġverification":19637,"Ġpacket":19638,"ĠFormula":19639,"Ġplag":19640,"esville":19641,"Ġshouting":19642,"Ġov":19643,"ĠREC":19644,"ĠBub":19645,"Ġninth":19646,"Ġenerg":19647,"Ġvalidity":19648,"Ġups":19649,"jack":19650,"Ġneighboring":19651,"ĠNec":19652,"eworks":19653,"ĠHab":19654,"arez":19655,"Ġspine":19656,"Ġeventual":19657,"ĠLeaders":19658,"ĠCarn":19659,"Ġprobation":19660,"Ġromance":19661,"msg":19662,"ĠMechanical":19663,"ERY":19664,"Rock":19665,"Ġpartisan":19666,"Node":19667,"assets":19668,"minent":19669,"Ġforeigners":19670,"Ġtestify":19671,"ĠUsually":19672,"lords":19673,"ĠGren":19674,"ĠPowell":19675,"BIL":19676,"Ġsr":19677,"Ġaddict":19678,"Ġshells":19679,"Ġsigh":19680,"ĠYale":19681,"ternity":19682,"Ġ750":19683,"EU":19684,"ĠRifle":19685,"Ġpatron":19686,"ema":19687,"ĠBannon":19688,"anity":19689,"Ġtropical":19690,"ĠVII":19691,"cross":19692,"Everything":19693,"ĠISO":19694,"Ġhumble":19695,"assing":19696,"ĠFIG":19697,"Ġupdating":19698,"yson":19699,"Ġcalcium":19700,"Ġcompetent":19701,"Ġsteering":19702,"Prot":19703,"ĠSY":19704,"ĠFinals":19705,"ĠRug":19706,"159":19707,"137":19708,"ĠGolf":19709,"Ġ126":19710,"Ġaccommodation":19711,"ĠHughes":19712,"Ġaesthetic":19713,"artisan":19714,"ĠTwilight":19715,"Ġprince":19716,"ĠAgriculture":19717,"ĠDisco":19718,"Ġprecedent":19719,"Ġtyping":19720,"authorized":19721,"Option":19722,"ĠAub":19723,"lishes":19724,"acht":19725,"mag":19726,"Peter":19727,"ĠUFO":19728,"monton":19729,"ĠLith":19730,"Ġarom":19731,"Ġsecuring":19732,"Ġconfined":19733,"private":19734,"Ġswords":19735,"Ġmarkers":19736,"Ġmetabolic":19737,"select":19738,"ĠCurse":19739,"ĠOt":19740,"gressive":19741,"Ġincumb":19742,"ĠSaga":19743,"Ġpriced":19744,"Ġclearance":19745,"Content":19746,"Ġdrilling":19747,"Ġnotices":19748,"Ġbourgeois":19749,"Ġvest":19750,"Ġcookie":19751,"ĠGuardians":19752,"rys":19753,"inyl":19754,"Ġ124":19755,"Ġplausible":19756,"ongh":19757,"ĠOdin":19758,"Ġconception":19759,"ĠYuk":19760,"ĠBaghdad":19761,"ĠFlag":19762,"Austral":19763,"ĠIBM":19764,"Ġinternationally":19765,"ĠWikiLeaks":19766,"IED":19767,"Ġcyn":19768,"Ġchooses":19769,"ĠPill":19770,"Ġcombining":19771,"Ġradi":19772,"ĠMohammed":19773,"defense":19774,"atching":19775,"Subject":19776,"iciency":19777,"Frame":19778,"Ġ{\"":19779,"Ġchess":19780,"Ġtimer":19781,"190":19782,"Ġtin":19783,"Ġordinance":19784,"emetery":19785,"Ġaccusing":19786,"Ġnoticeable":19787,"Ġcentres":19788,"Ġlid":19789,"ĠMills":19790,"imgur":19791,"Ġzoom":19792,"ergic":19793,"Ġcompression":19794,"prim":19795,"find":19796,"Ġsurg":19797,"Ġpand":19798,"ĠKee":19799,"ĠChad":19800,"cellence":19801,"oyle":19802,"Ġsocialism":19803,"ĠTravis":19804,"ĠMHz":19805,"Ġguild":19806,"ALLY":19807,"ĠSubscribe":19808,"ĠRelated":19809,"Ġoccurrence":19810,"itching":19811,"Ġfictional":19812,"Ġcrush":19813,"ĠEA":19814,"cod":19815,"mix":19816,"ĠTriple":19817,"Ġretrieve":19818,"Ġstimulus":19819,"Ġpsychiat":19820,"ĠDoor":19821,"Ġhomosexuality":19822,"Ġelementary":19823,"Ġcellular":19824,"idian":19825,"ĠLaun":19826,"Ġintriguing":19827,"Ġfoam":19828,"ĠBass":19829,"idi":19830,"itsu":19831,"Ġassure":19832,"Ġcongrat":19833,"Ġbusinessman":19834,"ĠBoost":19835,"close":19836,"Ġlied":19837,"Ġsciences":19838,"ĠOmega":19839,"ĠGraphics":19840,"Ġ<=":19841,"spoken":19842,"Ġconnectivity":19843,"Saturday":19844,"ĠAvengers":19845,"Ġtoggle":19846,"Ġankle":19847,"Ġnationalist":19848,"model":19849,"ĠPool":19850,"ophobia":19851,"Var":19852,"ĠMons":19853,"atories":19854,"Ġaggressively":19855,"Clear":19856,"Forge":19857,"acters":19858,"Ġhedge":19859,"Ġpipes":19860,"Ġblunt":19861,"Ġsq":19862,"Ġremotely":19863,"Wed":19864,"asers":19865,"Ġrefriger":19866,"Ġtiles":19867,"Ġrescued":19868,"Ġcomprised":19869,"insky":19870,"Ġmanif":19871,"avanaugh":19872,"Ġprolifer":19873,"Ġaligned":19874,"xml":19875,"Ġtriv":19876,"Ġcoordination":19877,"ĠPER":19878,"ĠQuote":19879,"134":19880,"bf":19881,"ĠSaw":19882,"Ġtermination":19883,"Ġ190":19884,"Ġadditions":19885,"Ġtrio":19886,"Ġprojections":19887,"Ġpositively":19888,"Ġinclusive":19889,"Ġmembr":19890,"1990":19891,"older":19892,"Ġpracticed":19893,"inkle":19894,"Arch":19895,"Ġstarters":19896,"arius":19897,"Ġintermediate":19898,"ĠBenef":19899,"ĠKiller":19900,"Ġinterventions":19901,"ĠKil":19902,"ĠFlying":19903,"Inv":19904,"Ġpremature":19905,"Ġpsychiatric":19906,"Ġindie":19907,"Ġcollar":19908,"ĠRainbow":19909,"afi":19910,"Ġdisruption":19911,"ĠFOX":19912,"casting":19913,"Ġmisdem":19914,"cro":19915,"Ġwipe":19916,"ardon":19917,"Ġbast":19918,"ĠTommy":19919,"ĠRepresentative":19920,"Ġbelly":19921,"ĠPO":19922,"ĠBreitbart":19923,"132":19924,"Ġmessaging":19925,"Should":19926,"References":19927,"ĠGRE":19928,"istical":19929,"LP":19930,"ĠCav":19931,"ĠCrazy":19932,"Ġintuitive":19933,"keeping":19934,"ĠMoss":19935,"Ġdiscontin":19936,"ĠModule":19937,"Ġunrelated":19938,"ĠPractice":19939,"ĠTransport":19940,"Ġstatistically":19941,"orns":19942,"Ġsized":19943,"pu":19944,"Ġcaf":19945,"ĠWorlds":19946,"ĠRodgers":19947,"ĠLun":19948,"ĠComic":19949,"living":19950,"Ġcared":19951,"Ġclimbed":19952,"){":19953,"Ġconsisted":19954,"Ġmedieval":19955,"folk":19956,"Ġhacked":19957,"Ġdire":19958,"ĠHermione":19959,"Ġtended":19960,"ceans":19961,"Daniel":19962,"went":19963,"Ġlegislators":19964,"Ġredes":19965,"games":19966,"Ġgn":19967,"amiliar":19968,"Ġ++":19969,"ggy":19970,"threat":19971,"Ġmagnet":19972,"Ġperceive":19973,"Ġzip":19974,"Ġindictment":19975,"Ġcritique":19976,"gard":19977,"ĠSafe":19978,"ĠCream":19979,"Ġadvent":19980,"oba":19981,"Ġvowed":19982,"ousands":19983,"Ġski":19984,"Ġabortions":19985,"uart":19986,"Ġstunned":19987,"Ġadvancing":19988,"Ġlacked":19989,"Ġ\\\"":19990,"Ġschizophren":19991,"Ġelegant":19992,"Ġconferences":19993,"Ġcanceled":19994,"ĠHudson":19995,"ĠHopefully":19996,"Ġtrump":19997,"Ġfrequencies":19998,"Ġmeteor":19999,"ĠJunior":20000,"ĠFleet":20001,"ĠMalcolm":20002,"ĠTools":20003,"Ġ........":20004,"Ġhobby":20005,"ĠEuropeans":20006,"Ġ1500":20007,"ĠInto":20008,"Ġsway":20009,"ĠAppro":20010,"ĠCompl":20011,"Community":20012,"Ġtide":20013,"ĠSummit":20014,"ä»":20015,"Ġintervals":20016,"ĠEther":20017,"Ġhabitat":20018,"ĠStevens":20019,"lishing":20020,"ĠDomain":20021,"Ġtriggers":20022,"Ġchasing":20023,"Ġcharm":20024,"ĠFlower":20025,"itored":20026,"Ġblessing":20027,"Ġtextures":20028,"Five":20029,"Ġliquor":20030,"RP":20031,"FIN":20032,"Ġ1962":20033,"CAR":20034,"Unknown":20035,"Ġresil":20036,"ĠLily":20037,"Ġabundance":20038,"Ġpredictable":20039,"rar":20040,"Ġbullshit":20041,"leen":20042,"chet":20043,"Mor":20044,"Much":20045,"ä¹":20046,"Ġemphasized":20047,"Ġcrust":20048,"Ġprimitive":20049,"Ġenjoyable":20050,"ĠPictures":20051,"Ġteammate":20052,"pler":20053,"ĠTol":20054,"ĠKane":20055,"Ġsummoned":20056,"thy":20057,"rama":20058,"ĠHonda":20059,"Ġrealizing":20060,"Ġquicker":20061,"Ġconcentrate":20062,"clear":20063,"Ġ210":20064,"ĠErdogan":20065,"aris":20066,"Ġresponds":20067,"ĠBI":20068,"Ġeligibility":20069,"Ġpushes":20070,"ĠIdaho":20071,"Ġaggrav":20072,"Ġruins":20073,"urations":20074,"Ġbans":20075,"Ġanat":20076,"share":20077,"Ġgrind":20078,"hin":20079,"umen":20080,"Ġutilities":20081,"ĠYankees":20082,"Ġdatabases":20083,"ĠDD":20084,"Ġdisplaced":20085,"Ġdependencies":20086,"Ġstimulation":20087,"hun":20088,"houses":20089,"ĠPretty":20090,"ĠRavens":20091,"ĠTODAY":20092,"Ġassociates":20093,"Ġtherape":20094,"cled":20095,"Ġdeer":20096,"Ġrepairs":20097,"rentice":20098,"Ġreceptors":20099,"Ġremed":20100,"ĠCe":20101,"Ġmarriages":20102,"Ġballots":20103,"ĠSoldier":20104,"Ġhilarious":20105,"opl":20106,"138":20107,"Ġinherently":20108,"Ġignorant":20109,"Ġbounce":20110,"ĠEaster":20111,"RELATED":20112,"ĠCurrency":20113,"EV":20114,"ãĥŀ":20115,"ĠLead":20116,"Ġdeceased":20117,"Brien":20118,"ĠMusk":20119,"JS":20120,"Ġmerge":20121,"hearted":20122,"creat":20123,"mitt":20124,"mund":20125,"ĠâĢĭ":20126,"ĠBag":20127,"Ġprojection":20128,"Ġjava":20129,"ĠStandards":20130,"ĠLeonard":20131,"Ġcoconut":20132,"ĠPopulation":20133,"Ġtraject":20134,"Ġimply":20135,"Ġcuriosity":20136,"ĠDB":20137,"ĠFresh":20138,"ĠPor":20139,"Ġheavier":20140,"neys":20141,"gomery":20142,"Ġdeserved":20143,"Ġphrases":20144,"ĠGC":20145,"Ġyeast":20146,"desc":20147,"Death":20148,"Ġreboot":20149,"Ġmetadata":20150,"ICAL":20151,"Ġrepay":20152,"ĠIndependence":20153,"Ġsuburban":20154,"icals":20155,"Ġatop":20156,"Ġallocation":20157,"generation":20158,"ĠGram":20159,"Ġmoisture":20160,"Ġpine":20161,"ĠLiberals":20162,"Ġaides":20163,"Ġunderest":20164,"ĠBerry":20165,"Ġceremon":20166,"370":20167,"astrous":20168,"ĠPirates":20169,"Ġtense":20170,"ĠIndustries":20171,"ĠAppeals":20172,"ĠNear":20173,"Ġè£ıç":20174,"Ġlovers":20175,"ĠCAP":20176,"ĠCraw":20177,"Ġgiants":20178,"Ġefficacy":20179,"Element":20180,"ĠBehavior":20181,"ĠToyota":20182,"Ġintest":20183,"Priv":20184,"AI":20185,"Ġmaneuver":20186,"Ġperfection":20187,"Ġbang":20188,"paper":20189,"rill":20190,"George":20191,"border":20192,"inters":20193,"ĠSeth":20194,"Ġclues":20195,"ĠLevi":20196,"ĠRevenue":20197,"147":20198,"Ġvapor":20199,"Ġfortunate":20200,"Ġthreatens":20201,"Ġvet":20202,"Ġdependency":20203,"ersed":20204,"article":20205,"ĠBlizzard":20206,"Ġchlor":20207,"Ġminus":20208,"ĠBills":20209,"Ġcryptocurrency":20210,"Ġmetabolism":20211,"tering":20212,"Ġpestic":20213,"steps":20214,"ĠTreasure":20215,"racted":20216,"ĠConstant":20217,"Ġtemp":20218,"139":20219,"ĠDetective":20220,"urally":20221,"Ġrecovering":20222,"Ġcortex":20223,"Ġ144":20224,"closed":20225,"Ġprejudice":20226,"aunted":20227,"Ġstorms":20228,"ĠNOW":20229,"Ġmachinery":20230,"Address":20231,"Ġcompelled":20232,"270":20233,"Ġdespair":20234,"bane":20235,"Ġvegetable":20236,"Ġbeds":20237,"Learn":20238,"Ġcolorful":20239,"Ġspike":20240,"Ġmargins":20241,"Ġsympathy":20242,"Ġworkshop":20243,"ĠCBC":20244,"Sat":20245,"Ġburns":20246,"ĠGender":20247,"Ġ129":20248,"ĠCable":20249,"Ġdebts":20250,"ĠTheresa":20251,"Ġreflecting":20252,"Ġairst":20253,"Ġrim":20254,"ramid":20255,"Ġweaknesses":20256,"Writ":20257,"oggle":20258,"ti":20259,"ĠCharge":20260,"Ġweighed":20261,"Ġ(.":20262,"Ġlaughter":20263,"Ġrouter":20264,"ĠDemocracy":20265,"Dear":20266,"Ġhasht":20267,"Ġdy":20268,"Ġhints":20269,"running":20270,"Ġfinishes":20271,"arus":20272,"Mass":20273,"result":20274,"ascus":20275,"Ġvintage":20276,"Ġconqu":20277,"Ġwildly":20278,"acist":20279,"Ġlingu":20280,"Ġprotagonist":20281,"strom":20282,"teenth":20283,"ĠSolo":20284,"mac":20285,"filled":20286,"Ġrenown":20287,"itives":20288,"Ġmotive":20289,"ĠAntar":20290,"ĠMann":20291,"ĠAdjust":20292,"Ġrockets":20293,"Ġtroubling":20294,"ei":20295,"Ġorganisms":20296,"assis":20297,"Christian":20298,"Ġ145":20299,"ĠHass":20300,"Ġswall":20301,"Ġwax":20302,"ĠSurvival":20303,"VS":20304,"ĠMurd":20305,"vd":20306,"standard":20307,"Ġdragons":20308,"Ġacceleration":20309,"rational":20310,"final":20311,"Ġpaired":20312,"ĠEthereum":20313,"Ġinterfaces":20314,"Ġresent":20315,"Ġartifacts":20316,"Å«":20317,"arel":20318,"Ġcompetitor":20319,"ĠNicholas":20320,"ĠSurface":20321,"cpp":20322,"ĠTot":20323,"Ġeconomically":20324,"Ġorganised":20325,"Ġenforced":20326,"inho":20327,"Ġvarieties":20328,"Ġabdom":20329,"ĠBailey":20330,"idav":20331,"ĠSalv":20332,"paid":20333,"Ġaltitude":20334,"essert":20335,"ĠGutenberg":20336,"area":20337,"opoulos":20338,"Ġprofessors":20339,"iggs":20340,"ĠFate":20341,"hey":20342,"Ġ3000":20343,"Dist":20344,"Ġtwins":20345,"cill":20346,"ĠMaps":20347,"Ġtraps":20348,"Ġweed":20349,"ĠKiss":20350,"Ġyoga":20351,"Ġrecipients":20352,"ĠWestminster":20353,"Ġpools":20354,"ĠWalmart":20355,"188":20356,"ĠSchools":20357,"attack":20358,"ĠARM":20359,"paragraph":20360,"Warning":20361,"jl":20362,"Ġselfish":20363,"anchez":20364,"ĠHeights":20365,"Fre":20366,"ĠSoph":20367,"Ġ--------------------------------":20368,"tml":20369,"333":20370,"Ġraids":20371,"Ġsatellites":20372,"KEY":20373,"Ġlasts":20374,"ÑĤ":20375,"Ins":20376,"ĠDame":20377,"Ġunpredict":20378,"///":20379,"ghai":20380,"Ġartillery":20381,"Ġcruise":20382,"Ġgel":20383,"ĠCabinet":20384,"Ġblows":20385,"ĠEsp":20386,"Ġproximity":20387,"othe":20388,"ĠSkills":20389,"ĠUpper":20390,"obo":20391,"ĠNDP":20392,"Ġenjoys":20393,"Ġrepeating":20394,"ĠConstruction":20395,"ĠQuestions":20396,"Hillary":20397,"Ġuint":20398,"Ġprocessors":20399,"ĠGibson":20400,"ĠMultiple":20401,"qa":20402,"ĠBom":20403,"ĠMiles":20404,"ventional":20405,"Ġhurts":20406,"skin":20407,"ĠAIDS":20408,"Ġadvisers":20409,"ĠRoot":20410,"Ġmethodology":20411,"ĠDale":20412,"Ġdeton":20413,"ĠKnowledge":20414,"sequently":20415,"Ġ121":20416,"Ġconnects":20417,"Cy":20418,"ĠDanger":20419,"Ġcontributors":20420,"ĠBent":20421,"Ġbrass":20422,"ĠGuns":20423,"into":20424,"ĠFortune":20425,"Ġbroker":20426,"balance":20427,"Ġlengths":20428,"Ġvic":20429,"Ġaveraging":20430,"Ġappropriately":20431,"ĠCamera":20432,"Ġsandwich":20433,"ĠCDC":20434,"Ġcoordinate":20435,"Ġnavig":20436,"Ġgoodness":20437,"laim":20438,"Ġbrake":20439,"Ġextremist":20440,"ĠWake":20441,"ĠMend":20442,"ĠTiny":20443,"ĠCOL":20444,"ĠRF":20445,"ĠDual":20446,"ĠWine":20447,"Case":20448,"Ġrefined":20449,"Ġlamp":20450,"Lead":20451,"Ġbapt":20452,"ĠCarb":20453,"ĠSadd":20454,"ĠMinneapolis":20455,"PDF":20456,"Early":20457,"ĠHidden":20458,"Its":20459,"ĠTIME":20460,"Ġpap":20461,"Ġcommissioned":20462,"ĠFew":20463,"ĠColts":20464,"ĠBren":20465,"Ġbothered":20466,"Ġlikewise":20467,"Exper":20468,"ĠSchw":20469,"cry":20470,"nn":20471,"ĠMitch":20472,"imon":20473,"MG":20474,"bm":20475,"UMP":20476,"rays":20477,"Ġregistry":20478,"Ġ270":20479,"achine":20480,"rella":20481,"anting":20482,"00000":20483,"Ġruined":20484,"spot":20485,"Ġta":20486,"Ġmaximize":20487,"Ġinconven":20488,"Dead":20489,"Human":20490,"Enabled":20491,"ĠMarie":20492,"Ġchill":20493,"ĠParadise":20494,"Ġstarring":20495,"ĠLatino":20496,"ĠProtocol":20497,"ĠEVER":20498,"Ġsuppliers":20499,"message":20500,"ĠBrock":20501,"Ġserum":20502,"âĸĪâĸĪâĸĪâĸĪ":20503,"Ġencomp":20504,"Ġambition":20505,"uese":20506,"Ġarrows":20507,"Andrew":20508,"Ġantenna":20509,"Ġ1961":20510,"ĠBark":20511,"Ġbool":20512,"ãĤª":20513,"ĠStorage":20514,"Ġrailway":20515,"Ġtougher":20516,"ĠCad":20517,"Ġwashing":20518,"Py":20519,"']":20520,"embed":20521,"ĠMemphis":20522,"ackle":20523,"Ġfamously":20524,"ĠFortunately":20525,"ovies":20526,"Ġmindset":20527,"Ġsneak":20528,"ĠDh":20529,"RAW":20530,"ĠSimpson":20531,"Ġlivest":20532,"Ġlandmark":20533,"Ġcement":20534,"Low":20535,"Ġthrilled":20536,"ĠCourse":20537,"inel":20538,"Ġchuck":20539,"idate":20540,"global":20541,"Ġwhit":20542,"Ġ�":20543,"adays":20544,"ski":20545,"ĠSV":20546,"Ġviruses":20547,"306":20548,"ĠRespons":20549,"Ġtheaters":20550,"ĠBranch":20551,"ĠGeneva":20552,"ĠMK":20553,"Ġunbeliev":20554,"Ġcommunist":20555,"Original":20556,"ĠReceived":20557,"ĠTransfer":20558,"ĠArg":20559,"Input":20560,"ĠStrategy":20561,"Ġpalace":20562,"thening":20563,"Dri":20564,"Ġsentencing":20565,"umbnail":20566,"Ġpins":20567,"recy":20568,"Ġsiblings":20569,"Getting":20570,"ĠBU":20571,"ĠNorthwest":20572,"Ġprolonged":20573,"ĠSakura":20574,"Comb":20575,"ĠBour":20576,"Ġinadequate":20577,"ĠKash":20578,"Ġusername":20579,"ĠImprove":20580,"Ġbattling":20581,"ĠMAC":20582,"Ġcurriculum":20583,"Ġsoda":20584,"ĠCannon":20585,"Ġsensible":20586,"spons":20587,"December":20588,"Ġwicked":20589,"ĠPengu":20590,"Ġdictators":20591,"ĠHearts":20592,"ogyn":20593,"Ġsimilarities":20594,"ĠStats":20595,"Ġhollow":20596,"itations":20597,"\":[":20598,"Ġhover":20599,"ĠListen":20600,"sch":20601,"Sund":20602,"Ġcad":20603,"ĠParks":20604,"Ġlur":20605,"Ġhype":20606,"ĠLem":20607,"NAME":20608,"isure":20609,"Friday":20610,"Ġshoots":20611,"Ġcloses":20612,"Ġdb":20613,"ĠRidge":20614,"ĠDifferent":20615,"Ġreplies":20616,"ĠBroadway":20617,"opers":20618,"Ġintoler":20619,"ĠZeus":20620,"akespe":20621,"Ġproprietary":20622,"Ġrequesting":20623,"Ġcontrollers":20624,"ĠMIN":20625,"imedia":20626,"becca":20627,"Ġexpans":20628,"Ġoils":20629,"Bot":20630,"ĠChand":20631,"Ġprinter":20632,"Ġtopped":20633,"ĠPOL":20634,"ĠEarlier":20635,"Social":20636,"avin":20637,"Ġdecreases":20638,"ĠSeb":20639,"Ġspecifications":20640,"ĠBlast":20641,"ĠKurt":20642,"Ġfreel":20643,"Brown":20644,"Ġdilig":20645,"roe":20646,"ĠProblem":20647,"ĠQuad":20648,"Ġdecentral":20649,"ĠVector":20650,"anut":20651,"Ġplugins":20652,"ĠGregory":20653,"Ġfucked":20654,"elines":20655,"ĠAmbassador":20656,"take":20657,"Ġcleans":20658,"ongyang":20659,"Anonymous":20660,"stro":20661,"\"}":20662,"aline":20663,"ĠOdd":20664,"ĠEug":20665,"216":20666,"Ġboil":20667,"ĠPowers":20668,"Ġnurses":20669,"Obviously":20670,"ĠTechnical":20671,"Ġexceeded":20672,"ORS":20673,"Ġextremists":20674,"Ġtraces":20675,"expl":20676,"Ġcomr":20677,"ĠSach":20678,")/":20679,"Ġmasks":20680,"Ġsci":20681,"Bon":20682,"Ġregression":20683,"wegian":20684,"Ġadvisor":20685,"itures":20686,"ĠVo":20687,"example":20688,"ĠInstruct":20689,"Ġsiege":20690,"Ġreductions":20691,"ptr":20692,"Ġstatutory":20693,"Ġremoves":20694,"Ġpuck":20695,"redits":20696,"Ġbee":20697,"Ġsalad":20698,"Ġpromotions":20699,"ĠJoshua":20700,"withstanding":20701,"ETH":20702,"ĠCha":20703,"imus":20704,"Ġexpenditure":20705,"aunting":20706,"Ġdelighted":20707,"Ġ155":20708,"beh":20709,"Ġcarpet":20710,"ĠSpart":20711,"Ġjungle":20712,"lists":20713,"Ġbullying":20714,"ĠNobel":20715,"ĠGlen":20716,"Ġreferenced":20717,"Ġintroduces":20718,"sein":20719,"Ġchopped":20720,"glass":20721,"ĠWrest":20722,"Ġneutrality":20723,"ĠâĻ":20724,"Ġinvestigator":20725,"Ġshelves":20726,"Ġunconstitutional":20727,"Ġreproduction":20728,"Ġmerchant":20729,"mia":20730,"Ġmetrics":20731,"Ġexplosives":20732,"ĠSonia":20733,"Ġbodily":20734,"Ġthickness":20735,"Ġpredominantly":20736,"ĠAbility":20737,"Ġmonitored":20738,"ICH":20739,"Ġ].":20740,"ĠMartinez":20741,"Ġvisibility":20742,"Ġqueries":20743,"Ġgenocide":20744,"ĠWarfare":20745,"Query":20746,"Ġstudios":20747,"Ġembry":20748,"Ġcorridor":20749,"Ġcleaned":20750,"complete":20751,"ĠMH":20752,"Ġenrollment":20753,"INGS":20754,"Ġimpacted":20755,"Ġdisastrous":20756,"ĠYun":20757,"ĠClaire":20758,"ĠBasically":20759,"yt":20760,"usterity":20761,"Ġindirectly":20762,"wik":20763,"Ġdod":20764,"ĠCarr":20765,"Ġamp":20766,"Ġprohibit":20767,"ĠInitial":20768,"ĠRd":20769,"iji":20770,"Ġeducate":20771,"corn":20772,"iott":20773,"ĠBeauty":20774,"Ġdetective":20775,"ĠConn":20776,"since":20777,"Ġstagger":20778,"Ġobese":20779,"Ġbree":20780,"ologic":20781,"isse":20782,"walker":20783,"Ġblades":20784,"Ġlawful":20785,"func":20786,"ĠBehind":20787,"Ġappetite":20788,"Ġ(*":20789,"Ġtennis":20790,"Ġoffspring":20791,"Ġjets":20792,"Ġstructured":20793,"Ġaforementioned":20794,"Nov":20795,"Ġscaling":20796,"fill":20797,"Ġstew":20798,"Ġcurb":20799,"ĠStephan":20800,"edIn":20801,"SF":20802,"obic":20803,"éŃĶ":20804,"oug":20805,"ĠMM":20806,"Ġgenetically":20807,"opez":20808,"136":20809,"Ġumb":20810,"ancers":20811,"Ġcohort":20812,"Ġmerchandise":20813,"Ġimposing":20814,"ĠLegislature":20815,"ĠArchive":20816,"ivia":20817,"ĠNaval":20818,"Ġoffences":20819,"Ġmiracle":20820,"Ġsnapped":20821,"Ġfoes":20822,"Ġextensively":20823,"ĠRaf":20824,"Ġcater":20825,"edience":20826,"Kit":20827,"ĠBin":20828,"Ġrecommends":20829,"ĠCities":20830,"Ġrigid":20831,"ĠREAD":20832,"ĠNoble":20833,"ĠTian":20834,"Ġcertificates":20835,"antis":20836,"oiler":20837,"ĠBuddhist":20838,"did":20839,"Ġsurveyed":20840,"Ġdownward":20841,"Ġprints":20842,"ĠMotion":20843,"ronics":20844,"ĠSans":20845,"ossibly":20846,"uctions":20847,"Ġcolonies":20848,"ĠDanish":20849,"unit":20850,"Ġspoil":20851,"Ġadvisory":20852,"berries":20853,"Plan":20854,"Ġspecification":20855,"ophers":20856,"ĠResource":20857,"Ġshirts":20858,"prisingly":20859,"communications":20860,"Ġtrivial":20861,"Ġmentioning":20862,"isexual":20863,"Ġsupplements":20864,"Ġsupervision":20865,"BP":20866,"vor":20867,"Ġwit":20868,"Ġcooldown":20869,"Ġplaintiff":20870,"ĠReviews":20871,"ĠSri":20872,"ĠMint":20873,"ĠSugar":20874,"Ġafterward":20875,"ĠPriest":20876,"ĠInvestment":20877,"ogene":20878,"ĠTaking":20879,"Ġstretching":20880,"Ġinflammation":20881,"ĠTehran":20882,"Ġlining":20883,"Ġfreezing":20884,"ĠEntity":20885,"Ġinspiring":20886,"special":20887,"price":20888,"Ġsue":20889,"ĠPorter":20890,"ounge":20891,"ETA":20892,"ĠDerek":20893,"ĠLuis":20894,"uo":20895,"ymph":20896,"Ġexterior":20897,"ihil":20898,"ĠAshley":20899,"inator":20900,"Ġnutrients":20901,"ĠThrones":20902,"Ġfinances":20903,"ĠInspect":20904,"Ġspecially":20905,"ĠRequired":20906,"ĠPTS":20907,"ĠViolence":20908,"ointed":20909,"shots":20910,"Ġexcerpt":20911,"coon":20912,"INS":20913,"ĠGri":20914,"Ġrecognised":20915,"Week":20916,"Young":20917,"Ġvom":20918,"isle":20919,"ĠCurry":20920,"ĠBuddh":20921,"Ġnotebook":20922,"Ġdurable":20923,"/?":20924,"ĠGad":20925,"ĠPupp":20926,"Ġforgive":20927,"park":20928,"Ġpersonalities":20929,"analysis":20930,"clamation":20931,"Ġelevator":20932,"Ġwarehouse":20933,"ĠRole":20934,"unn":20935,"Ġillustration":20936,"ĠScan":20937,"Ġatmospheric":20938,"Import":20939,"ANC":20940,"ricted":20941,"fu":20942,"010":20943,"Ġarche":20944,"Ġrewarded":20945,"akespeare":20946,"Ġinternally":20947,"ĠRBI":20948,"alker":20949,"Ġelephant":20950,"owitz":20951,"ĠPizza":20952,"Ġbipartisan":20953,"és":20954,"Ġslowed":20955,"ĠStark":20956,"Ġoverride":20957,"OUS":20958,"Ġ320":20959,"undreds":20960,"ĠDeck":20961,"ĠCensus":20962,"bee":20963,"146":20964,"otor":20965,"Ġip":20966,"Ġub":20967,"ocations":20968,"ĠButton":20969,"rice":20970,"Ġcripp":20971,"fff":20972,"Ġoriginated":20973,"Ġoverwhelmed":20974,"appa":20975,"Ġforemost":20976,"âĢij":20977,"ĠLEG":20978,"release":20979,"eatured":20980,"atches":20981,"Ġreps":20982,"Ġlending":20983,"ĠReference":20984,"ĠClient":20985,"165":20986,"venth":20987,"Complete":20988,"ĠPatrol":20989,"Ġsworn":20990,"cam":20991,"Ġshuttle":20992,"ĠRalph":20993,"Ġhometown":20994,"-,":20995,"onal":20996,"ĠBP":20997,"åı":20998,"Ġpersuade":20999,"ĠAlexand":21000,"Ġcombines":21001,"Ġvivid":21002,"ĠLag":21003,"Ġencoding":21004,"Ġsalvation":21005,"wen":21006,"ĠRecovery":21007,"iya":21008,"University":21009,"ĠBiden":21010,"Ġbudgets":21011,"ĠTexans":21012,"fits":21013,"Ġhonored":21014,"Ġpython":21015,"TD":21016,"###":21017,"clone":21018,"Ġblink":21019,"ĠLiquid":21020,"Ġunemployed":21021,"Ġclashes":21022,"ĠCounsel":21023,"Ġdirecting":21024,"Ġpunct":21025,"ĠFalcons":21026,"Ġshark":21027,"ĠDamascus":21028,"Ġjeans":21029,"Ġembark":21030,"Ġseize":21031,"Ġupwards":21032,"280":21033,"ĠEz":21034,"ĠAnything":21035,"Ġexotic":21036,"lower":21037,"ĠCreator":21038,"ĠUm":21039,"Ġsuburbs":21040,"berger":21041,"ĠWend":21042,"Ġmint":21043,"ĠXX":21044,"ĠDro":21045,"Ġsuffers":21046,"Ġherb":21047,"tree":21048,"Ġfragile":21049,"Ġflooded":21050,"ĠAlcohol":21051,"olean":21052,"nyder":21053,"ĠKO":21054,"Fram":21055,"Ġ136":21056,"Ġowed":21057,"ĠMelee":21058,"ĠHash":21059,"Ġwhisk":21060,"Ġsudo":21061,"rr":21062,"Quick":21063,"appro":21064,"Ġii":21065,"ĠExamples":21066,"hee":21067,"Ġpromotes":21068,"perature":21069,"kar":21070,"ĠHonor":21071,"Ġsodium":21072,"ĠLif":21073,"rosso":21074,"intendent":21075,"Ġcorrespondent":21076,"Found":21077,"secret":21078,"Ġidentifies":21079,"agne":21080,"Ġlou":21081,"ĠPP":21082,"Ġcoincidence":21083,"move":21084,"Ġmilitia":21085,"Ġinfiltr":21086,"ĠPrimary":21087,"Ġpitching":21088,"ĠIb":21089,"ĠGOOD":21090,"ãĤ¸":21091,"ĠWizards":21092,"iral":21093,"ĠVenus":21094,"RR":21095,"ĠâĢķ":21096,"ĠCasey":21097,"Ġsadly":21098,"Ġadmire":21099,"Ġembarrassed":21100,"cb":21101,"Mel":21102,"Ġtubes":21103,"Ġbeautifully":21104,"ĠQueensland":21105,"Below":21106,"rez":21107,"quet":21108,"pleasant":21109,"Ġ«":21110,"Camp":21111,"Ġdecisive":21112,"1998":21113,"ĠLamb":21114,"utton":21115,"hn":21116,"ĠJagu":21117,"aunder":21118,"ĠCord":21119,"Ġclerk":21120,"Ġcaffe":21121,"Ġwiped":21122,"Ġreim":21123,"ĠMountains":21124,"Ġimprisoned":21125,"Ġdevelops":21126,"ĠPra":21127,"Ġmodeling":21128,"Anyone":21129,"ancel":21130,"ĠSit":21131,"Ġshields":21132,"Ġlawn":21133,"Ġcardiovascular":21134,"Ġdemonstrating":21135,"Ġparse":21136,"ĠIsraelis":21137,"Ġeuros":21138,"143":21139,"Ġglorious":21140,"inski":21141,"ecd":21142,"Ġconditioning":21143,"Ġhelpless":21144,"Ġmicrosc":21145,"ĠHarbor":21146,"Ġstakes":21147,"Ġ260":21148,"Ġunequ":21149,"ĠFloyd":21150,"Ġdamp":21151,"Ġapparatus":21152,"ĠLaws":21153,"Ġcounters":21154,"Ġinduce":21155,"atable":21156,"ĠAhmed":21157,"Ġslam":21158,"November":21159,"Ġpersist":21160,"Ġimminent":21161,"án":21162,"Ġshred":21163,"Ġphases":21164,"ĠEdmonton":21165,"ĠArmstrong":21166,"ĠMeet":21167,"ĠKitty":21168,"ÑĢ":21169,"circ":21170,"ĠAdult":21171,"Ġarose":21172,"ĠXen":21173,"Dan":21174,"gow":21175,"Ġsuperf":21176,"ĠAdmir":21177,"Ġendure":21178,"Ġkeyword":21179,"yrus":21180,"Ġyarn":21181,"Ġpathway":21182,"ĠHopkins":21183,"midt":21184,"Ġcensorship":21185,"dependent":21186,"Ġinstructor":21187,"Sources":21188,"Ġtoe":21189,"Ġballoon":21190,"Nob":21191,"Ġswear":21192,"ĠCastro":21193,"Ġgloss":21194,"ĠKavanaugh":21195,"Ġremarkably":21196,"Photos":21197,"ĠNom":21198,"ĠSoutheast":21199,"yers":21200,"Ġvalidation":21201,"Ġcannon":21202,"ĠVictory":21203,"ĠPierre":21204,"Ġcautious":21205,"Audio":21206,"Ġfetch":21207,"ĠGift":21208,"ĠHyp":21209,"Ġremedy":21210,"ZE":21211,"Ġscent":21212,"Ġbeard":21213,"ĠRut":21214,"-\"":21215,"Ġpatents":21216,"Hy":21217,"Ġunjust":21218,"Ġpotato":21219,"Ġforthcoming":21220,"Ġchef":21221,"ĠRift":21222,"affe":21223,"ĠROM":21224,"ĠLaunch":21225,"Ġpads":21226,"ĠNeo":21227,"Ġonset":21228,"Ġsqueeze":21229,"safe":21230,"Ġprefix":21231,"ĠTM":21232,"ĠNearly":21233,"ĠClinical":21234,"ĠMental":21235,"otiation":21236,"ĠUnic":21237,"antry":21238,"ĠCir":21239,"Ġepit":21240,"æ":21241,"Ġextracted":21242,"versely":21243,"riad":21244,"Ġstrains":21245,"Ġtops":21246,"Ġpoem":21247,"ĠRandy":21248,"ĠMaple":21249,"THER":21250,"upiter":21251,"ĠSSD":21252,"ļé":21253,"Ġuncon":21254,"pering":21255,"Ġslept":21256,"iners":21257,"Ġunderwater":21258,"ĠEvidence":21259,"gone":21260,"205":21261,"Ġhistorians":21262,"Ġsynthesis":21263,"Ġfrog":21264,"basketball":21265,"Ġvibrant":21266,"Ġsubord":21267,"Ġ365":21268,"ĠDial":21269,"Ġcooperate":21270,"HAHA":21271,"Ġgreeted":21272,"158":21273,"Ġjazz":21274,"Ġintox":21275,"ĠWalking":21276,"Ġsupervisor":21277,"ĠFusion":21278,"ĠMercedes":21279,"send":21280,"Ham":21281,"sd":21282,"nl":21283,"Ġtours":21284,"ĠFIFA":21285,"Ġculp":21286,"gd":21287,"304":21288,"Ġpleas":21289,"Ġillustrates":21290,"ĠColombia":21291,"Ġhighlighting":21292,"ĠSummary":21293,"Ġexposing":21294,"ĠDru":21295,"Ġirony":21296,"ritional":21297,"ĠCarroll":21298,"ĠEllis":21299,"Pict":21300,"ĠRapt":21301,"Ġadapter":21302,"Ġunm":21303,"Ġcorpse":21304,"Ġcelebrities":21305,"Den":21306,"atum":21307,"ĠApocalypse":21308,"ĠWag":21309,"lining":21310,"Ġhormones":21311,"Rub":21312,"ĠXi":21313,"ĠVaults":21314,"208":21315,"alkyrie":21316,"inosaur":21317,"Ġfeeds":21318,"vity":21319,"Ġdefeating":21320,"Wait":21321,"Ġemphasize":21322,"ĠSteelers":21323,"yrinth":21324,"leys":21325,"ĠWhenever":21326,"Currently":21327,"ĠClock":21328,"Ġcollectively":21329,"anyon":21330,"ĠJP":21331,"Ġmentality":21332,"Ġdownloads":21333,"Ġsurroundings":21334,"ĠBarnes":21335,"Ġflagship":21336,"Ġindicators":21337,"Ġgrapp":21338,"January":21339,"ĠElemental":21340,"ĠAthena":21341,"ibal":21342,"Ġsights":21343,"Ġcapita":21344,"ĠTreaty":21345,"Ġvoiced":21346,"ĠGaz":21347,"lette":21348,"Ġya":21349,"Ġexpired":21350,"Legend":21351,"Hot":21352,"nature":21353,"Ġunstable":21354,"Ġ280":21355,"ú":21356,"Comment":21357,"ALE":21358,"Ġquests":21359,"Ġhandler":21360,"nis":21361,"Ġversatile":21362,"Ġconceal":21363,"engeance":21364,"ĠInteractive":21365,"Ġobsessed":21366,"ĠDogs":21367,"Ġcracked":21368,"Sound":21369,"sv":21370,"ĠDylan":21371,"roads":21372,"fx":21373,"ĠCatholics":21374,"ĠHag":21375,"Ġslammed":21376,"Ġglowing":21377,"sale":21378,"Ġtissues":21379,"ĠChi":21380,"nee":21381,"Ġcher":21382,"sic":21383,"urrection":21384,"Ġbacon":21385,"ulatory":21386,").\"":21387,"Ġirregular":21388,"FORM":21389,"assed":21390,"Ġintentional":21391,"Ġcompensate":21392,"ĠSpeaking":21393,"ĠSets":21394,"153":21395,"Ġconventions":21396,"bands":21397,"emade":21398,"Ġecc":21399,"ĠWinston":21400,"ĠAssassin":21401,"ĠBelgian":21402,"Ġdependence":21403,"Ġniche":21404,"Ġbark":21405,"ĠJazz":21406,"Ġdisadvantage":21407,"Ġgasoline":21408,"Ġ165":21409,"çļĦ":21410,"essa":21411,"module":21412,"angular":21413,"OY":21414,"ĠTreatment":21415,"itas":21416,"olation":21417,"ĠArnold":21418,"Ġfeud":21419,"ĠNest":21420,"Ġtheatre":21421,"ewater":21422,"Ġminors":21423,"olicy":21424,"ĠHaven":21425,"division":21426,"Ġtrunk":21427,"Far":21428,"ĠPull":21429,"Ġcapturing":21430,"Ġ1800":21431,"ĠTeen":21432,"Ġexempl":21433,"Ġclinics":21434,"ĠBurg":21435,"Ġsubstit":21436,"Ġpayload":21437,"ĠLav":21438,"ĠTroy":21439,"ĠWitness":21440,"Ġfragments":21441,"Ġpasswords":21442,"Ġgospel":21443,"ĠGin":21444,"Ġtenants":21445,"olith":21446,"Six":21447,"Previous":21448,"ĠAges":21449,"ĠDarwin":21450,"Ġblat":21451,"Ġempathy":21452,"smith":21453,"bag":21454,"ĠEcho":21455,"ĠCamb":21456,"ĠMadd":21457,"ĠBoo":21458,"Ġrede":21459,"ĠBurning":21460,"Ġsmoothly":21461,"ĠAdrian":21462,"ĠVampire":21463,"ĠMonsters":21464,"steam":21465,"Style":21466,"Ma":21467,"rea":21468,"ĠDwar":21469,"alyst":21470,"ursor":21471,"Ġelimination":21472,"Ġcrypto":21473,"cht":21474,"ĠEternal":21475,"â̦]":21476,"ĠSorce":21477,"Ill":21478,"NER":21479,"Ġuh":21480,"Conclusion":21481,"wage":21482,"Ġrespir":21483,"Ġreminis":21484,"hetical":21485,"Ġgy":21486,"Ġutilized":21487,"icidal":21488,"Ġ1900":21489,"Ġhunters":21490,"ĠSwan":21491,"ĠReact":21492,"Ġvisitor":21493,"ĠThanksgiving":21494,"308":21495,"Posts":21496,"Ġhips":21497,"1997":21498,"omers":21499,"Ġknocking":21500,"ĠVehicle":21501,"Ġtil":21502,"Ġ138":21503,"Ġmi":21504,"ĠInvestigation":21505,"ĠKenya":21506,"Ġcasino":21507,"Ġmotives":21508,"Ġregain":21509,"rex":21510,"Ġweekends":21511,"Ġstabbed":21512,"boro":21513,"Ġexploited":21514,"ĠHAVE":21515,"ĠTelevision":21516,"cock":21517,"Ġpreparations":21518,"Ġendeav":21519,"ĠRemote":21520,"ĠMaker":21521,"ĠProdu":21522,"ĠEvan":21523,"Ġinformational":21524,"ĠLouisville":21525,"154":21526,"ĠDreams":21527,"Ġplots":21528,"ĠRunner":21529,"Ġhurting":21530,"Ġacademy":21531,"ĠMontgomery":21532,"nm":21533,"ĠLanc":21534,"ĠAlz":21535,"210":21536,"elong":21537,"Ġretailer":21538,"Ġarising":21539,"Ġrebellion":21540,"Ġblonde":21541,"played":21542,"Ġinstrumental":21543,"Cross":21544,"Ġretention":21545,"Ġtherapeutic":21546,"Ġseas":21547,"Ġinfantry":21548,"ĠClint":21549,"Ġprompting":21550,"Ġbitch":21551,"Ġstems":21552,"ĠKra":21553,"Ġthesis":21554,"ĠBog":21555,"rued":21556,"Ġkings":21557,"Ġclay":21558,"ificent":21559,"ĠYES":21560,"ĠThing":21561,"ĠCubs":21562,"veyard":21563,"elsh":21564,"inarily":21565,"ĠEy":21566,"ĠRolling":21567,"Ġevolving":21568,"India":21569,"Ġrecognizes":21570,"Ġgraduation":21571,"isers":21572,"Ġfertility":21573,"ĠMilan":21574,"Command":21575,"Ġboxing":21576,"Ġ1943":21577,"Ġgluten":21578,"ĠEmir":21579,"Ġidol":21580,"Ġconceived":21581,"ĠCreation":21582,"Merit":21583,"uddy":21584,"ussions":21585,"ĠLieutenant":21586,"ietal":21587,"Ġunchanged":21588,"ĠScale":21589,"ĠCrimea":21590,"balls":21591,"atorial":21592,"Ġdepths":21593,"Ġempirical":21594,"Ġtransm":21595,"Ġunsafe":21596,"missible":21597,"comfort":21598,"156":21599,"Ġmechanic":21600,"002":21601,"lins":21602,"Ġsmoked":21603,"Pos":21604,"Ġslowing":21605,"Ġlav":21606,"Texas":21607,"Ġcheating":21608,"ĠMetropolitan":21609,"ethyl":21610,"Ġdiscovering":21611,"asse":21612,"Ġpencil":21613,"ĠPyongyang":21614,"Ġcloset":21615,"ĠSheet":21616,"ĠEntry":21617,"oustic":21618,"Ġmyst":21619,"erate":21620,"ariat":21621,"Ġminerals":21622,"Ġmusician":21623,"ĠPul":21624,"ĠMaz":21625,"249":21626,"Ġpermissions":21627,"Ġiv":21628,"enary":21629,"ickers":21630,"ĠBing":21631,"hea":21632,"enable":21633,"Ġgriev":21634,"Ġasserted":21635,"ĠColonel":21636,"Ġaffidav":21637,"wo":21638,"Ġseated":21639,"ĠRide":21640,"Ġpaintings":21641,"ĠPix":21642,"Ġ137":21643,"ishi":21644,"umbai":21645,"gotten":21646,"ĠEarl":21647,"Ġinning":21648,"Ġcensus":21649,"Ġtravelled":21650,"ĠConsult":21651,"185":21652,"bind":21653,"Ġsimplicity":21654,"Ġoverlooked":21655,"ĠHelpful":21656,"Ġmonkey":21657,"Ġoverwhelmingly":21658,"Blood":21659,"ĠFlint":21660,"ĠJama":21661,"ĠPresent":21662,"ĠRage":21663,"ĠTA":21664,"ptive":21665,"Ġturnout":21666,"wald":21667,"ĠDolphins":21668,"ĠVPN":21669,"Ġonion":21670,"Ġcrafting":21671,"mma":21672,"ĠMercury":21673,"Ġarrange":21674,"Ġalerts":21675,"ĠOT":21676,"zbollah":21677,"Ġgases":21678,"ĠRichardson":21679,"sal":21680,"lar":21681,"Ġfrost":21682,"Ġlowering":21683,"Ġacclaim":21684,"Ġstartups":21685,"ĠGain":21686,"essment":21687,"Ġguardian":21688,"人":21689,"ĠPie":21690,"ĠLinks":21691,"Ġmerits":21692,"Ġawake":21693,"Ġparental":21694,"Ġexceeds":21695,"Ġidle":21696,"ĠPilot":21697,"ĠeBay":21698,"ĠAccept":21699,"ipeg":21700,"Cam":21701,"ĠKot":21702,"Ġtraders":21703,"olitics":21704,"unker":21705,"ĠPale":21706,"osi":21707,"anmar":21708,"Ġ1947":21709,"ĠFell":21710,"estial":21711,"itating":21712,"GF":21713,"ĠSr":21714,"ifted":21715,"Ġconnector":21716,"ĠBone":21717,"illes":21718,"260":21719,"hma":21720,"Ġoverlap":21721,"ĠGitHub":21722,"Ġcleaner":21723,"ĠBaptist":21724,"ĠWAS":21725,"Ġlungs":21726,"Ñģ":21727,"ĠBUT":21728,"Ġcite":21729,"Ġpitched":21730,"reatment":21731,"Ġtrophies":21732,"ĠNu":21733,"386":21734,"ĠPride":21735,"Ġattendees":21736,"[]":21737,"179":21738,"Ġspatial":21739,"Ġprizes":21740,"ĠReligion":21741,"Ġshowcase":21742,"ĠCategory":21743,"vidia":21744,"Target":21745,"Property":21746,"?,":21747,"Ġfusion":21748,"pie":21749,"ĠUCLA":21750,"Ġsoundtrack":21751,"Ġprincess":21752,"ĠCaval":21753,"should":21754,"Ġlimbs":21755,"Background":21756,"Ġlonely":21757,"Ġcores":21758,"ĠTail":21759,"sheet":21760,"Ġ132":21761,"Ra":21762,"ãĤ«":21763,"ĠBolt":21764,"Ġbooked":21765,"Ġadminister":21766,"Ġequals":21767,"wy":21768,"Ġobserving":21769,"ĠBaron":21770,"ĠAdobe":21771,"Ġvirgin":21772,"ĠSocialist":21773,"Move":21774,"ghazi":21775,"ĠLinda":21776,"212":21777,"Ġbrewing":21778,"Ġmerchants":21779,"burse":21780,"Ġdivor":21781,"Ġmetals":21782,"ĠNer":21783,"Ġsums":21784,"ĠEnemy":21785,"Ġenvision":21786,"Ġgranting":21787,"ĠHoney":21788,"ĠSkyrim":21789,"Ġsocio":21790,"graded":21791,"Ġselective":21792,"WASHINGTON":21793,"Ġ1948":21794,"ĠSirius":21795,"ĠGross":21796,"activity":21797,"ĠIvan":21798,"Ġfurious":21799,"BSD":21800,"ĠPrevious":21801,"Ġresponsive":21802,"Ġcharitable":21803,"Ġleaning":21804,"ĠPew":21805,"Ġviolates":21806,"\\\\\\\\\\\\\\\\":21807,"ĠComing":21808,"wire":21809,"Ġpoet":21810,"Ġresolutions":21811,"command":21812,"ĠPortuguese":21813,"Ġnickname":21814,"Ġdeaf":21815,"February":21816,"Ġrecognise":21817,"Ġentirety":21818,"Ġseasonal":21819,"placed":21820,"ĠTelegraph":21821,"Ġmicrophone":21822,"ouring":21823,"Ġgrains":21824,"Ġgoverned":21825,"Ġpostp":21826,"ĠWaters":21827,"inement":21828,"Ġundocumented":21829,"ĠComcast":21830,"Ġfox":21831,"Ġassaults":21832,"reon":21833,"many":21834,"ĠJenkins":21835,"ĠAnyway":21836,"Ġassessments":21837,"Ġdowns":21838,"ĠMouse":21839,"Ġsuperb":21840,"kt":21841,"ĠDow":21842,"Ġtaxation":21843,"401":21844,"Ġsmiles":21845,"Ġundertaken":21846,"Ġexh":21847,"Ġenthusiastic":21848,"Ġtwent":21849,"Ġgovernmental":21850,"Ġautonomy":21851,"ĠTechnologies":21852,"ĠChain":21853,"Ġprevalent":21854,"fb":21855,"Ġnicotine":21856,"ogram":21857,"job":21858,"Ġawaiting":21859,"ĠMenu":21860,"Ġdeputies":21861,"kov":21862,"ishops":21863,"Button":21864,"ĠShanghai":21865,"Ġdiesel":21866,"ĠDuck":21867,"Ryan":21868,"ĠPCs":21869,"NF":21870,"jury":21871,"ente":21872,"Ġinaccurate":21873,"eddy":21874,"Whatever":21875,"Ġshowc":21876,"ĠNad":21877,"odus":21878,"etr":21879,"Ġplaintiffs":21880,"ĠWOR":21881,"ĠAssange":21882,"Ġprivat":21883,"Ġpremiums":21884,"Ġtam":21885,"URL":21886,"Ġelites":21887,"ĠRanger":21888,"ottenham":21889,"ĠHoff":21890,"ĠAthens":21891,"Ġdefinite":21892,"Ġsighed":21893,"Ġevenly":21894,"211":21895,"ĠAmber":21896,"akia":21897,"Ġmailing":21898,"Ġcrashing":21899,"ĠConfederate":21900,"rugged":21901,"Wal":21902,"ĠDepths":21903,"Ġjuvenile":21904,"Ġreactor":21905,"Introduction":21906,"ĠDeluxe":21907,"1995":21908,"ĠSanchez":21909,"ĠMead":21910,"ivable":21911,":-":21912,"ĠPlanning":21913,"ĠTrap":21914,"quin":21915,"ĠProtect":21916,"vered":21917,"Information":21918,"Ġkidney":21919,"innamon":21920,"las":21921,"Ġpolicing":21922,"Ġtolerate":21923,"ĠQi":21924,"Ġbiased":21925,"Fort":21926,"ĠKi":21927,"save":21928,"Ġprivileged":21929,"Ġbeasts":21930,"ĠGlas":21931,"ĠCinem":21932,"Ġcomeback":21933,"Sunday":21934,"Ġextinction":21935,"hops":21936,"Ġtransmit":21937,"Ġdoubles":21938,"ĠFlat":21939,"167":21940,"Ġdisputed":21941,"Ġinjustice":21942,"foo":21943,"Vict":21944,"roleum":21945,"ĠJulie":21946,"Context":21947,"ĠRarity":21948,"issue":21949,"Component":21950,"Ġcounseling":21951,"anne":21952,"dark":21953,"Ġobjections":21954,"uilt":21955,"Ġgast":21956,"Ġplac":21957,"Ġunused":21958,"ãĥĩ":21959,"ĠTrial":21960,"ĠJas":21961,"hedral":21962,"obb":21963,"Ġtemporal":21964,"ĠPRO":21965,"ĠNW":21966,"ĠAnniversary":21967,"Large":21968,"Ġtherm":21969,"Ġdavid":21970,"Ġsystemic":21971,"ĠShir":21972,"mut":21973,"ĠNept":21974,"address":21975,"Ġscanning":21976,"Ġunderstandable":21977,"Ġcanvas":21978,"Cat":21979,"ĠZoo":21980,"Ġangels":21981,"LO":21982,"ĠStatement":21983,"ĠSig":21984,"ovable":21985,"ĠAway":21986,"sharing":21987,"ocrats":21988,"stated":21989,"Ġweighing":21990,"Nor":21991,"wild":21992,"Bey":21993,"Ġastonishing":21994,"ĠReynolds":21995,"Ġopener":21996,"Ġtrainer":21997,"Ġsurgical":21998,"pn":21999,"Ġadjusting":22000,"wheel":22001,"Ġfrown":22002,"ervative":22003,"Ġsuspend":22004,"Within":22005,"tein":22006,"Ġobstacle":22007,"Ġliberties":22008,"ymes":22009,"Ġuranium":22010,"ansom":22011,"anol":22012,"uba":22013,"ĠLoss":22014,"Ġarous":22015,"ĠHenderson":22016,"Wow":22017,"spl":22018,"cur":22019,"ĠÂŃ":22020,"Ġtheirs":22021,"Damage":22022,"Ġdownloading":22023,"Ġdiscern":22024,"ĠSto":22025,"ĠFla":22026,"Ġhath":22027,"ĠAj":22028,"Ġunpleasant":22029,"European":22030,"expensive":22031,"Ġscreenshot":22032,"ĠUV":22033,"Ġallied":22034,"ĠPersian":22035,"Ġmonopoly":22036,"Ġatom":22037,"ĠRedskins":22038,"\"><":22039,"Ġcancell":22040,"Ġcinema":22041,"131":22042,"fair":22043,"ĠAlfred":22044,"Ġduck":22045,"args":22046,"223":22047,"ĠISI":22048,"Ġsignaling":22049,"inar":22050,"Ġlaughs":22051,"Ġforwards":22052,"Ġreckless":22053,"Ġlisteners":22054,"ativity":22055,"Ġvastly":22056,"nant":22057,"Less":22058,"ĠHunting":22059,"ĠScientific":22060,"ITED":22061,"Ġknight":22062,"ĠHTC":22063,"usa":22064,"tmp":22065,"Ġrude":22066,"ĠLegendary":22067,"Ġarises":22068,"Bad":22069,"ĠClaim":22070,"peg":22071,"Ġrealities":22072,"Think":22073,"Ġ°":22074,"Ġrode":22075,"Ġstrive":22076,"Ġanecd":22077,"Ġshorts":22078,"Ġhypothes":22079,"Ġcoordinated":22080,"ĠGandhi":22081,"ĠFPS":22082,"RED":22083,"Ġsusceptible":22084,"Ġshrink":22085,"ĠChart":22086,"Help":22087,"Ġion":22088,"deep":22089,"ribes":22090,"ĠKai":22091,"ĠCustomer":22092,"Summary":22093,"Ġcough":22094,"wife":22095,"Ġlend":22096,"Ġpositioning":22097,"Ġlottery":22098,"ĠCanyon":22099,"Ġfade":22100,"Ġbronze":22101,"ĠKenny":22102,"Ġboasts":22103,"ĠEnhanced":22104,"record":22105,"Ġemergence":22106,"Ġakin":22107,"ĠBert":22108,"itous":22109,"âĸij":22110,"Ġstip":22111,"Ġexchanged":22112,"omore":22113,"alsh":22114,"Ġreservoir":22115,"Ġstandpoint":22116,"WM":22117,"Ġinitiate":22118,"Ġdecay":22119,"Ġbrewery":22120,"Ġterribly":22121,"Ġmortal":22122,"levard":22123,"Ġrevis":22124,"NI":22125,"elo":22126,"Ġconfess":22127,"ĠMSNBC":22128,"Ġsubmissions":22129,"Controller":22130,"Ġ202":22131,"ĠRuth":22132,"});":22133,"ĠAzure":22134,"Ġ.\"":22135,"206":22136,"ĠMarketing":22137,"Ġlaund":22138,"iencies":22139,"Ġrenowned":22140,"ĠTrou":22141,"ĠNGO":22142,"blems":22143,"Ġterrified":22144,"Ġwarns":22145,"Ġpert":22146,"Ġunsure":22147,"480":22148,"alez":22149,"ultz":22150,"ĠOutside":22151,"Ġstyl":22152,"ĠUnderground":22153,"Ġpanc":22154,"Ġdictionary":22155,"Ġfoe":22156,"riminal":22157,"ĠNorwegian":22158,"Ġjailed":22159,"Ġmaternal":22160,"ée":22161,"ĠLucy":22162,"cop":22163,"Cho":22164,"Ġunsigned":22165,"ĠZelda":22166,"ĠInsider":22167,"ĠContinued":22168,"Ġ133":22169,"ĠNaruto":22170,"ĠMajority":22171,"169":22172,"ĠWo":22173,"ãĤĵ":22174,"Ġpastor":22175,"Ġinformal":22176,"н":22177,"anthrop":22178,"join":22179,"ãģĹ":22180,"itational":22181,"NP":22182,"ĠWriting":22183,"fn":22184,"ĠBever":22185,"195":22186,"Ġyelling":22187,"Ġdrastically":22188,"Ġeject":22189,"Ġneut":22190,"Ġthrive":22191,"ĠFrequ":22192,"oux":22193,"Ġpossesses":22194,"ĠSenators":22195,"ĠDES":22196,"ĠShakespeare":22197,"ĠFranco":22198,"ĠLB":22199,"uchi":22200,"Ġincarn":22201,"Ġfounders":22202,"Function":22203,"Ġbrightness":22204,"ĠBT":22205,"Ġwhale":22206,"ĠTheater":22207,"mass":22208,"ĠDoll":22209,"Something":22210,"Ġechoed":22211,"ĠHex":22212,"crit":22213,"afia":22214,"Ġgoddess":22215,"Ġeleven":22216,"ĠPreview":22217,"ĠAurora":22218,"Ġ401":22219,"ulsive":22220,"ĠLogan":22221,"inburgh":22222,"ĠCenters":22223,"ĠONLY":22224,"ĠAid":22225,"Ġparadox":22226,"Ġhurd":22227,"ĠLC":22228,"Due":22229,"court":22230,"Ġoffended":22231,"Ġevaluating":22232,"ĠMatthews":22233,"Ġtomb":22234,"Ġpayroll":22235,"Ġextraction":22236,"ĠHands":22237,"ifi":22238,"Ġsupernatural":22239,"ĠCOMM":22240,"]=":22241,"dogs":22242,"Ġ512":22243,"ĠMeeting":22244,"Richard":22245,"ĠMaximum":22246,"Ġideals":22247,"Things":22248,"mand":22249,"ĠRegardless":22250,"Ġhumili":22251,"buffer":22252,"Little":22253,"ĠDani":22254,"ĠNak":22255,"Ġliberation":22256,"ĠAbe":22257,"ĠOL":22258,"Ġstuffed":22259,"aca":22260,"inda":22261,"raphic":22262,"Ġmosqu":22263,"Ġcampaigning":22264,"Ġoccupy":22265,"Squ":22266,"rina":22267,"ĠWel":22268,"ĠVS":22269,"Ġphysic":22270,"Ġpuls":22271,"rint":22272,"oaded":22273,"ETF":22274,"ĠArchives":22275,"Ġvenues":22276,"hner":22277,"ĠTurbo":22278,"Ġlust":22279,"Ġappealed":22280,"quez":22281,"ilib":22282,"ĠTimothy":22283,"Ġomn":22284,"dro":22285,"Ġobsession":22286,"ĠSavage":22287,"1996":22288,"Global":22289,"Jes":22290,"214":22291,"Ġsliding":22292,"Ġdisappro":22293,"ĠMagical":22294,"Ġvoluntarily":22295,"gb":22296,"aney":22297,"Ġprophet":22298,"ĠRein":22299,"ĠJulia":22300,"ĠWorth":22301,"aurus":22302,"Ġbounds":22303,"ieu":22304,")))":22305,"Ġcrore":22306,"ĠCitizen":22307,"Sky":22308,"Ġcolumnist":22309,"Ġseekers":22310,"ondo":22311,"ISA":22312,"ĠLength":22313,"Ġnostalg":22314,"Ġnewcom":22315,"Ġdetrim":22316,"entric":22317,"375":22318,"ĠGE":22319,"Ġautop":22320,"Ġacademics":22321,"AppData":22322,"ĠShen":22323,"Ġidiot":22324,"ĠTransit":22325,"Ġteaspoon":22326,"Wil":22327,"KO":22328,"ĠComedy":22329,">,":22330,"Ġpopulated":22331,"WD":22332,"Ġpigs":22333,"ĠOculus":22334,"Ġsympathetic":22335,"Ġmarathon":22336,"198":22337,"Ġseizure":22338,"sided":22339,"Ġdop":22340,"irtual":22341,"Land":22342,"ĠFloor":22343,"osaurs":22344,"...]":22345,"Ġlos":22346,"Ġsubsidiary":22347,"EY":22348,"ĠParts":22349,"ĠStef":22350,"ĠJudiciary":22351,"Ġ134":22352,"Ġmirrors":22353,"Ġket":22354,"times":22355,"Ġneurolog":22356,"Ġcav":22357,"ĠGuest":22358,"Ġtumor":22359,"scill":22360,"ĠLloyd":22361,"Est":22362,"Ġclearer":22363,"Ġstereotypes":22364,"Ġdur":22365,"nothing":22366,"Reddit":22367,"Ġnegotiated":22368,"------------------------":22369,"235":22370,"Ġflown":22371,"ĠSeoul":22372,"ĠResident":22373,"ĠSCH":22374,"Ġdisappearance":22375,"ĠVince":22376,"grown":22377,"Ġgrabs":22378,"ril":22379,"ĠInfinite":22380,"ĠTwenty":22381,"Ġpedestrian":22382,"Ġjersey":22383,"ĠFur":22384,"ĠInfinity":22385,"ĠElliott":22386,"Ġmentor":22387,"Ġmorally":22388,"Ġobey":22389,"secure":22390,"iffe":22391,"Ġantibiotics":22392,"angled":22393,"ĠFreeman":22394,"ĠIntroduction":22395,"Jun":22396,"Ġmarsh":22397,"icans":22398,"ĠEVENTS":22399,"ochond":22400,"Wall":22401,"iculty":22402,"Ġmisdemeanor":22403,"Ġly":22404,"Thomas":22405,"ĠResolution":22406,"Ġanimations":22407,"ĠDry":22408,"Ġintercourse":22409,"ĠNewcastle":22410,"ĠHog":22411,"ĠEquipment":22412,"177":22413,"Ġterritorial":22414,"Ġarchives":22415,"203":22416,"Filter":22417,"ĠMunich":22418,"Ġcommanded":22419,"ĠWand":22420,"Ġpitches":22421,"ĠCroat":22422,"Ġratios":22423,"ĠMits":22424,"Ġaccumulated":22425,"ĠSpecifically":22426,"Ġgentleman":22427,"acerb":22428,"Ġpenn":22429,"Ġaka":22430,"ĠFuk":22431,"Ġintervene":22432,"ĠRefuge":22433,"ĠAlzheimer":22434,"Ġsuccession":22435,"ohan":22436,"does":22437,"Lord":22438,"Ġseparat":22439,"Ġcorrespondence":22440,"Ġshiny":22441,"Prior":22442,"Ġsulf":22443,"Ġmiserable":22444,"Ġdedication":22445,"().":22446,"Ġspecialists":22447,"Ġdefects":22448,"ĠCult":22449,"ĠXia":22450,"Ġjeopard":22451,"ĠOre":22452,"Ability":22453,"Ġlear":22454,"Ġambitions":22455,"ĠBMI":22456,"ĠArabs":22457,"Ġ1942":22458,"Ġpreservation":22459,"ificate":22460,"Ġashamed":22461,"loss":22462,"ĠRestaur":22463,"Ġresemble":22464,"Ġenrich":22465,"ĠKN":22466,"ĠClan":22467,"float":22468,"Ġplayable":22469,"ITT":22470,"Ġharmony":22471,"arrison":22472,"ĠWeinstein":22473,"were":22474,"Ġpoisoning":22475,"ĠComput":22476,"ĠWordPress":22477,"major":22478,"ĠValve":22479,"Fan":22480,"ĠThrow":22481,"ĠRomans":22482,"ĠDepression":22483,"ados":22484,"Ġtortured":22485,"Ġbalancing":22486,"bottom":22487,"Ġacquiring":22488,"ĠMonte":22489,"ardi":22490,"Ġaura":22491,"Ġ##":22492,"ĠStanding":22493,"ĠAtlas":22494,"CF":22495,"Ġintrins":22496,"ĠBenghazi":22497,"Ġcamping":22498,"Ġtapped":22499,"blade":22500,"strous":22501,"ĠRabb":22502,"ĠWritten":22503,"tip":22504,"ĠNeigh":22505,"sterdam":22506,"ĠAllow":22507,"ĠHealing":22508,"ĠRhod":22509,"num":22510,"Ġcaffeine":22511,"ĠPercent":22512,"Ġboo":22513,"Ġapples":22514,"305":22515,"Ġwelcoming":22516,"Ġapplaud":22517,"Ġausterity":22518,"±":22519,"ĠReality":22520,"efe":22521,"å®":22522,"Ġsucks":22523,"Ġtabs":22524,"ĠPayPal":22525,"Ġbackpack":22526,"Ġgifted":22527,"abulary":22528,"ĠScout":22529,"irteen":22530,"Ġchin":22531,"Ġomitted":22532,"Ġnegatively":22533,"Ġaccessing":22534,"ĠEarn":22535,"Ġambulance":22536,"Ġheadphones":22537,"Ġ205":22538,"ĠRefresh":22539,"president":22540,"ĠKitchen":22541,"ĠEntered":22542,"ĠSnyder":22543,"005":22544,"omical":22545,"Ġborrowed":22546,"ĠNem":22547,"Ġaviation":22548,"Ġstall":22549,"rimination":22550,"Ġuniforms":22551,"itime":22552,"ĠSimmons":22553,"energy":22554,"ablished":22555,"yy":22556,"qualified":22557,"Ġrallies":22558,"ĠStuart":22559,"flight":22560,"Ġgangs":22561,"rag":22562,"Ġvault":22563,"lux":22564,"ĠCompar":22565,"Ġdesignation":22566,"209":22567,"ĠJos":22568,"dollar":22569,"zero":22570,"Ġwells":22571,"303":22572,"Ġconstituents":22573,"Ġheck":22574,"Ġcows":22575,"Ġcommanders":22576,"Ġdifferential":22577,"ĠCatherine":22578,"299":22579,"Ġvalve":22580,"Ġbrace":22581,"Ġperspectives":22582,"cert":22583,"fact":22584,"icularly":22585,"ĠMcN":22586,"planes":22587,"Ġintric":22588,"Ġpeas":22589,"ovan":22590,"Ġtossed":22591,"retch":22592,"ĠLopez":22593,"Ġunfamiliar":22594,"death":22595,"ĠApart":22596,"ĠChang":22597,"Ġrelieved":22598,"rophe":22599,"Ġairports":22600,"Ġfreak":22601,"util":22602,"Mill":22603,"ĠChin":22604,"ĠOwen":22605,"male":22606,"ĠBroken":22607,"ĠWinds":22608,"rob":22609,"rising":22610,"Ġfirefighters":22611,"Ġauthoritarian":22612,"Ġ148":22613,"Bitcoin":22614,"external":22615,"Ġbrowsers":22616,"ichever":22617,"orian":22618,"Ġunb":22619,"Ġpoke":22620,"ĠZot":22621,"Mid":22622,"ĠPopular":22623,"Ġcovert":22624,"Ġcontributes":22625,"Ġ650":22626,"Ġcontention":22627,"Gate":22628,"Ġconsoles":22629,"Ġchromos":22630,"ĠIX":22631,"Ġvisually":22632,"ĠEisen":22633,"Ġjewelry":22634,"Ġdelegation":22635,"Ġaccelerate":22636,"ĠRiley":22637,"Ġslope":22638,"Ġindoor":22639,"itially":22640,"Ġhugely":22641,"Ġtunnels":22642,"Ġfined":22643,"Ġdirective":22644,"Ġforehead":22645,"ustomed":22646,"Ġskate":22647,"Music":22648,"gas":22649,"Ġrecognizing":22650,"ambo":22651,"Ġoverweight":22652,"ĠGrade":22653,"ÙĬ":22654,"Ġsounding":22655,"Ġlocking":22656,"ĠREM":22657,"Store":22658,"Ġexcav":22659,"ĠLikewise":22660,"ĠLights":22661,"Ġelbow":22662,"ĠSupply":22663,"wic":22664,"Ġhandsome":22665,"1994":22666,"Coll":22667,"Ġadequately":22668,"ĠAssociate":22669,"Ġstrips":22670,"Ġcrackdown":22671,"Ġmarvel":22672,"ĠKun":22673,"Ġpassages":22674,"@@@@":22675,"ĠTall":22676,"Ġthoughtful":22677,"namese":22678,"Ġprostitution":22679,"business":22680,"Ġballistic":22681,"personal":22682,"cig":22683,"izational":22684,"Round":22685,"ĠÂłĠÂłĠÂłĠÂł":22686,"ĠColeman":22687,"Ġadmitting":22688,"ĠPlug":22689,"Ġbitcoins":22690,"ĠSuz":22691,"Ġfairness":22692,"Ġsupplier":22693,"Ġcatastrophic":22694,"ĠHelen":22695,"oqu":22696,"Marc":22697,"ĠArticles":22698,"gie":22699,"Ġendangered":22700,"Ġdestiny":22701,"ĠVolt":22702,"olia":22703,"axis":22704,"Ġcheat":22705,"Ġunified":22706,"ICO":22707,"quote":22708,"302":22709,"ĠSed":22710,"Ġsuppression":22711,"Ġanalyzing":22712,"Ġsquat":22713,"Ġfiguring":22714,"Ġcoordinates":22715,"Ġchunks":22716,"Ġ1946":22717,"Ġsubp":22718,"Ġwiki":22719,"ĠForbes":22720,"ĠJupiter":22721,"ĠErik":22722,"imer":22723,"ĠCommercial":22724,"\\)":22725,"Ġlegitimacy":22726,"Ġdental":22727,"ĠMean":22728,"Ġdeficits":22729,"550":22730,"Originally":22731,"ĠHorror":22732,"Ġcontamination":22733,"llah":22734,"Ġconfisc":22735,"ĠClare":22736,"TB":22737,"ĠFailed":22738,"aned":22739,"Ġruler":22740,"ĠController":22741,"Ġfeminists":22742,"Fix":22743,"gay":22744,"207":22745,"Ġrabbit":22746,"Third":22747,"owntown":22748,"Ġglue":22749,"Ġvolatile":22750,"Ġshining":22751,"Ġfoll":22752,"Ġimpaired":22753,"Ġsupers":22754,"æĪ":22755,"Ġclutch":22756,"ļéĨĴ":22757,"Ġprolet":22758,"Ġ(!":22759,"Ġyelled":22760,"ĠKiev":22761,"ĠErn":22762,"ĠShock":22763,"KB":22764,"Ġsituated":22765,"query":22766,"ĠNas":22767,"Ġannex":22768,"character":22769,"ĠHoliday":22770,"Ġautomation":22771,"ĠJill":22772,"ĠRemastered":22773,"Ġlinem":22774,"Ġwilderness":22775,"ĠHorizon":22776,"ĠGuinea":22777,"AZ":22778,"Ġmainland":22779,"Ġsecrecy":22780,"LEASE":22781,"Ġpunk":22782,"ĠProvince":22783,"(),":22784,"Speed":22785,"Ġhanding":22786,"ĠSebast":22787,"Sir":22788,"rase":22789,"Ġjournals":22790,"Ġcongest":22791,"ĠTut":22792,"irrel":22793,"Ġschizophrenia":22794,"Ġmisogyn":22795,"healthy":22796,"Iron":22797,"Ġreacted":22798,"-$":22799,"252":22800,"Ġplural":22801,"Ġplum":22802,"Ġbargain":22803,"Ġgrounded":22804,"finder":22805,"Ġdisse":22806,"ĠLaz":22807,"OOD":22808,"Ġatroc":22809,"Factory":22810,"Ġminions":22811,"Ġori":22812,"ĠBrave":22813,"ĠPRE":22814,"ĠMyanmar":22815,"ĠHod":22816,"Ġexpedition":22817,"Ġexplode":22818,"ĠCoord":22819,"Ġextr":22820,"ĠBrief":22821,"ĠADHD":22822,"Ġhardcore":22823,"feeding":22824,"Ġdile":22825,"ĠFruit":22826,"Ġvaccination":22827,"ĠMao":22828,"osphere":22829,"Ġcontests":22830,"-|":22831,"Ġfren":22832,"isphere":22833,"Rom":22834,"ĠSharp":22835,"ĠTrend":22836,"Ġdisconnect":22837,"âĢ¢âĢ¢":22838,"Ġpersecution":22839,"Earth":22840,"Ġhealthier":22841,"384":22842,"Ġcob":22843,"ĠTrinity":22844,"OWS":22845,"ANN":22846,"Ġspecialty":22847,"Ġgru":22848,"Ġcooperative":22849,"why":22850,"Starting":22851,"ĠIssues":22852,"stre":22853,"ensor":22854,"Ġ185":22855,"Adv":22856,"!?":22857,"ĠRevel":22858,"emia":22859,"ĠHulk":22860,"Ġcelebrations":22861,"ĠSou":22862,"raud":22863,"ĠKlein":22864,"Ġunreal":22865,"context":22866,"Ġpartnerships":22867,"Ġadopting":22868,"tical":22869,"Ġsplash":22870,"ĠHezbollah":22871,"category":22872,"cyclop":22873,"xton":22874,"ĠDot":22875,"urdy":22876,"tz":22877,"Ġenvelope":22878,"ĠNL":22879,"âķ":22880,"Ġwherein":22881,"Spec":22882,"184":22883,"Ġtelev":22884,"aliation":22885,"Ġmyths":22886,"å°":22887,"Ġrigorous":22888,"Ġcommunicating":22889,"Ġobserver":22890,"Ġrehe":22891,"ĠWash":22892,"Ġapologized":22893,"ĠTin":22894,"Ġexpenditures":22895,"workers":22896,"document":22897,"Ġhesitate":22898,"ĠLenin":22899,"Ġunpredictable":22900,"Ġrenewal":22901,"cler":22902,"okia":22903,"ĠCONT":22904,"Ġpostseason":22905,"Tokens":22906,"Ġexacerb":22907,"Ġbetting":22908,"Ġ147":22909,"Ġelevation":22910,"Wood":22911,"ĠSolomon":22912,"194":22913,"004":22914,"output":22915,"Ġredund":22916,"ĠMumbai":22917,"ĠpH":22918,"Ġreproduce":22919,"ĠDuration":22920,"MAX":22921,"Ġbog":22922,"CBS":22923,"ĠBalance":22924,"ĠSgt":22925,"ĠRecent":22926,"Ġcd":22927,"Ġpopped":22928,"Ġincompet":22929,"prop":22930,"ayan":22931,"guy":22932,"Pacific":22933,"Ġtyr":22934,"Ġ{{":22935,"ĠMystic":22936,"ĠDana":22937,"Ġmasturb":22938,"Ġgeometry":22939,"â":22940,"ĠCorrect":22941,"Ġtrajectory":22942,"Ġdistracted":22943,"Ġfoo":22944,"ĠWelsh":22945,"Luc":22946,"mith":22947,"Ġrugby":22948,"Ġrespiratory":22949,"Ġtriangle":22950,"Ġ215":22951,"Ġundergraduate":22952,"ĠSuperior":22953,"changing":22954,"_-":22955,"Ġrightly":22956,"Ġreferee":22957,"Ġlucrative":22958,"Ġunauthorized":22959,"Ġresembles":22960,"ĠGNU":22961,"ĠDerby":22962,"Ġpathways":22963,"ĠLed":22964,"Ġendurance":22965,"Ġstint":22966,"Ġcollector":22967,"Fast":22968,"Ġdots":22969,"Ġnationals":22970,"ĠSecurities":22971,"Ġwhip":22972,"Param":22973,"Ġlearns":22974,"Magic":22975,"Ġdetailing":22976,"moon":22977,"Ġbroadcasting":22978,"Ġbaked":22979,"265":22980,"holm":22981,"ĠSah":22982,"ĠHussein":22983,"ĠCourtesy":22984,"174":22985,"Ġ146":22986,"Ġgeographic":22987,"peace":22988,"Ġjudging":22989,"ĠStern":22990,"Bur":22991,"Ġstoryline":22992,"Gun":22993,"ĠStick":22994,"245":22995,"307":22996,"ãĤ´ãĥ³":22997,"ĠAdministrator":22998,"Ġburnt":22999,"Ġpave":23000,"choes":23001,"Exec":23002,"Ġcampuses":23003,"Result":23004,"Ġmutations":23005,"ĠCharter":23006,"Ġcaptures":23007,"Ġcompares":23008,"Ġbadge":23009,"Scient":23010,"Ġerad":23011,"iery":23012,"oi":23013,"ettes":23014,"ĠEstate":23015,"Ġstrap":23016,"Ġproudly":23017,"Ġfried":23018,"Ġwithdrawn":23019,"ĠVoy":23020,"phony":23021,"Items":23022,"ĠPierce":23023,"bard":23024,"Ġannotation":23025,"anton":23026,"illon":23027,"Impro":23028,"...)":23029,"Ġhappier":23030,"------":23031,"adjust":23032,"Ġstaffers":23033,"Ġactivism":23034,"Ġperf":23035,"Ġalright":23036,"Need":23037,"Ġcommence":23038,"Ġopioid":23039,"ĠAmanda":23040,"Es":23041,"ĠPars":23042,"ĠKaw":23043,"Works":23044,"248":23045,"Ġindo":23046,"tc":23047,"endant":23048,"ĠMoto":23049,"Ġlegalization":23050,"OTE":23051,"Ġtasked":23052,"Ġtsp":23053,"ĠACTIONS":23054,"166":23055,"Ġrefreshing":23056,"ĠNR":23057,"ĠPerez":23058,"Ġinfringement":23059,"SY":23060,"Listen":23061,"inning":23062,"ku":23063,"Ġrotate":23064,"program":23065,"arah":23066,"Design":23067,"Ġ(£":23068,"Ġstoring":23069,"Ġwarrants":23070,"Ġjudgement":23071,"ĠBrist":23072,"usually":23073,"photo":23074,"ĠRan":23075,"ĠPine":23076,"Ġoutrageous":23077,"ĠValentine":23078,"luence":23079,"ĠEverybody":23080,"Altern":23081,"Ġrelevance":23082,"Ġterminated":23083,"Ġdessert":23084,"Ġfulfilled":23085,"Ġprosecuted":23086,"ĠWords":23087,"Ġmigrant":23088,"Ġcultivation":23089,"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ":23090,"idelity":23091,"ĠVern":23092,"ĠLogin":23093,"Ġmetaphor":23094,"ĠTip":23095,"Ġrecruits":23096,"ĠPig":23097,"ribing":23098,"Ġenthusiasts":23099,"exper":23100,"Ġfrightening":23101,"ĠHair":23102,"anson":23103,"strate":23104,"Ġhi":23105,"Height":23106,"Ġowning":23107,"none":23108,"Ġdislike":23109,"Ġknives":23110,"pherd":23111,"Ġloudly":23112,"ĠAPIs":23113,"Display":23114,"ĠLac":23115,"ĠUSS":23116,"abl":23117,"verages":23118,"Jew":23119,"Ġ172":23120,"ĠHistorical":23121,"atoon":23122,"ĠPhysics":23123,"intern":23124,"Ġwarmth":23125,"Ġtopp":23126,"DM":23127,"Ġgunman":23128,"Ġemperor":23129,"odi":23130,"ãĥ£":23131,"inatory":23132,"ĠRib":23133,"Ġ131":23134,"ĠSaturn":23135,"ĠShining":23136,"Ġwaking":23137,"Quotes":23138,"Ġcomedian":23139,"enberg":23140,"½":23141,"Ġbelievers":23142,"Ġpaperwork":23143,"custom":23144,"Ġlev":23145,"Ġlament":23146,"Ġpouring":23147,"222":23148,"political":23149,"ĠSupplement":23150,"maid":23151,"Ġcruelty":23152,"Ġtread":23153,"ysics":23154,"Aw":23155,"rites":23156,"Ġmodifier":23157,"ĠPosition":23158,"Adam":23159,"lb":23160,"ubs":23161,"Ġimperfect":23162,"Ġclusters":23163,"ĠEngineer":23164,"ĠCherry":23165,"Ġinauguration":23166,"ĠSau":23167,"Ġembodiment":23168,"ĠUncle":23169,"Ġoverr":23170,"Ġexplosions":23171,"cule":23172,"ĠPrinceton":23173,"ĠAndrea":23174,"Ġincorrectly":23175,"Ġearnest":23176,"Ġpilgr":23177,"ĠSprint":23178,"Ġsleeve":23179,"Ġhears":23180,"ĠAmazing":23181,"Ġbrowsing":23182,"agin":23183,"Ġhomeland":23184,"Ġhaw":23185,"Ġdiving":23186,"istered":23187,"178":23188,"Ġbargaining":23189,"ĠArcade":23190,"Ġdelegate":23191,"terson":23192,"................................................................":23193,"ĠJacksonville":23194,"275":23195,"Ġstagn":23196,"Ġadam":23197,"ĠSherman":23198,"CB":23199,"Ġsuburb":23200,"ĠFoods":23201,"Ġconverting":23202,"ĠArist":23203,"Ġchambers":23204,"love":23205,"Ġamino":23206,"ĠGan":23207,"Ġmadness":23208,"mc":23209,"ĠUSE":23210,"defined":23211,"Ġultr":23212,"indust":23213,"Ġwolves":23214,"lance":23215,"Additionally":23216,"Ġcracks":23217,"asia":23218,"ĠReason":23219,"ĠPump":23220,"Ġaccidental":23221,"ĠLaser":23222,"ĠRid":23223,"Ġinitialized":23224,"elli":23225,"Ġunnamed":23226,"Ġnoun":23227,"ĠPassed":23228,"Ġhostage":23229,"ĠEthiop":23230,"shirts":23231,"Ġunrel":23232,"ĠEmbassy":23233,"Ġ1941":23234,"Ġatoms":23235,"Ġpurported":23236,"164":23237,"ĠFi":23238,"Ġgallons":23239,"ĠMonica":23240,"Ġpg":23241,"enment":23242,"Ġsorted":23243,"ĠGospel":23244,"Ġheights":23245,"Ġtraced":23246,"Ġundergoing":23247,"Shell":23248,"Ġsacks":23249,"Ġproportions":23250,"Ġhalluc":23251,"Font":23252,"acet":23253,"Ġwarmer":23254,"ĠINTER":23255,"Ġgrabbing":23256,"Plug":23257,"Ġrealization":23258,"ĠBurke":23259,"Ġenchant":23260,"ATER":23261,"ĠSeed":23262,"Ġabundant":23263,"FM":23264,"Ġcivic":23265,"Vs":23266,"isi":23267,"Ġvow":23268,"Ġreper":23269,"ĠPartnership":23270,"Ġpenetration":23271,"Ġaxe":23272,"Ġshattered":23273,"ĠZombies":23274,"Ġvinyl":23275,"ĠAlert":23276,"eon":23277,"Ġobliged":23278,"ĠIllust":23279,"ĠPlaza":23280,"ĠFrontier":23281,"Ġdavidjl":23282,"ĠSerial":23283,"ĠHav":23284,"ĠNutrition":23285,"Bi":23286,"ĠâĸĪ":23287,"ĠJays":23288,"linux":23289,"Ġhurry":23290,"Ġvoy":23291,"Ġhopeless":23292,"ĠStealth":23293,"Ġãģ":23294,"essors":23295,"ttle":23296,"borg":23297,"ĠSafari":23298,"fell":23299,"Ġwary":23300,"due":23301,"ĠAbove":23302,"Ha":23303,"ELL":23304,"Ġnotor":23305,"ĠWon":23306,"Too":23307,"Ġoccupations":23308,"Ġpossessions":23309,"Ġinviting":23310,"Ġpredators":23311,"Ġaccelerated":23312,"Ġ157":23313,"uterte":23314,"ĠCube":23315,"east":23316,"account":23317,"Give":23318,"Ġtransplant":23319,"redients":23320,"idable":23321,"Ġscreenshots":23322,"ĠGund":23323,"ĠFS":23324,"Ġtravelers":23325,"Ġsensory":23326,"ĠFiat":23327,"ĠRockets":23328,"İĭ":23329,"_{":23330,"Friend":23331,"Ġcharming":23332,"ALS":23333,"Ġenjoyment":23334,"mph":23335,"Ġ5000":23336,"ĠREG":23337,"ÙĨ":23338,"bia":23339,"Ġcompilation":23340,"rost":23341,"ĠVP":23342,"ĠSchne":23343,"2019":23344,"Ġcopying":23345,"MORE":23346,"ĠFlore":23347,"falls":23348,"215":23349,"total":23350,"Ġdisciples":23351,"double":23352,"Ġexceeding":23353,"Ġsmashed":23354,"Ġconceptual":23355,"ĠRomania":23356,"ĠBrent":23357,"ĠICE":23358,"ĠTou":23359,"Ġgrap":23360,"Ġnails":23361,"189":23362,"ãĥĺ":23363,"Ġprocure":23364,"eur":23365,"Ġconfirming":23366,"ĠCec":23367,"awi":23368,"ĠEden":23369,"Ġng":23370,"Ġengineered":23371,"atics":23372,"Ġhooked":23373,"Ġdisgusting":23374,"ĠMurder":23375,"ãĤ¿":23376,"Library":23377,"Ġ168":23378,"Almost":23379,"hematic":23380,"Menu":23381,"ĠNotre":23382,"ĠJur":23383,"Ġkidnapped":23384,"Ġhacker":23385,"ĠJade":23386,"Ġcreepy":23387,"Ġdrawings":23388,"ĠSponsor":23389,"Ġcyclists":23390,"ĠGoblin":23391,"Ġoptimized":23392,"Ġstaged":23393,"ĠMcD":23394,"between":23395,"Age":23396,"eno":23397,"Sex":23398,"ĠWide":23399,"nings":23400,"avis":23401,"Ġincapable":23402,"ĠKob":23403,"Ġrewarding":23404,"ĠLone":23405,"olescent":23406,"Ġcontracted":23407,"Ġsticky":23408,"Jose":23409,"Ball":23410,"fest":23411,"ĠInput":23412,"ĠRecently":23413,"Ġtomat":23414,"square":23415,"Application":23416,"Ġnitrogen":23417,"Ġduplicate":23418,"ĠRecon":23419,"ĠDear":23420,"London":23421,"Ġintra":23422,"Ġdock":23423,"Ġoutreach":23424,"ĠMillion":23425,"Ġmammals":23426,"ampton":23427,"VAL":23428,"Ġsnaps":23429,"Ġdos":23430,"ĠWhole":23431,"ĠReady":23432,"Try":23433,"ĠWinnipeg":23434,"earance":23435,"Ġincurred":23436,"renched":23437,"ĠNSW":23438,"ilot":23439,"raine":23440,"Ġcube":23441,"got":23442,"Ġrunway":23443,"etermined":23444,"ĠHawks":23445,"Ġsurvivor":23446,"ĠWish":23447,"ĠDin":23448,"ĠDEF":23449,"ĠVault":23450,"187":23451,"Ġmushrooms":23452,"Ġcrisp":23453,"bey":23454,"ĠDiscovery":23455,"Ġdevelopmental":23456,"Ġparadigm":23457,"Ġchaotic":23458,"ĠTsu":23459,"Ġ333":23460,"bons":23461,"Ġbacterial":23462,"Ġcommits":23463,"Ġcosmic":23464,"Ġmega":23465,"ocative":23466,"ĠPaint":23467,"ophobic":23468,"Ġvain":23469,"Ġcarved":23470,"ĠThief":23471,"ĠGul":23472,"owship":23473,"Ġcites":23474,"ĠEdinburgh":23475,"Ġdiminished":23476,"Ġacknowledges":23477,"ĠKills":23478,"Ġmicrow":23479,"ĠHera":23480,"Ġseniors":23481,"Ġwhereby":23482,"Hop":23483,"atron":23484,"Ġunavailable":23485,"ĠNate":23486,"Ġ480":23487,"Ġslated":23488,"ĠRebecca":23489,"ĠBattery":23490,"Ġgrammar":23491,"Ġheadset":23492,"Ġcursor":23493,"Ġexcluding":23494,"anye":23495,"aundering":23496,"ebin":23497,"Ġfeasible":23498,"ĠPublishing":23499,"ĠLabs":23500,"ĠCliff":23501,"ĠFerrari":23502,"Ġpac":23503,"visible":23504,"marked":23505,"pell":23506,"Ġpolite":23507,"Ġstaggering":23508,"ĠGalactic":23509,"Ġsuperst":23510,"Ġparan":23511,"ĠOfficers":23512,"ãĢģ":23513,"Ġspecifics":23514,"ulus":23515,"239":23516,"ĠPaste":23517,"AMP":23518,"ĠPanama":23519,"ĠDelete":23520,"anguard":23521,"restrial":23522,"Ġheroic":23523,"ĠDy":23524,"اÙĦ":23525,"Ġincumbent":23526,"Ġcrunch":23527,"tro":23528,"Ġscoop":23529,"Ġblogger":23530,"Ġsellers":23531,"uren":23532,"Ġmedicines":23533,"ĠCaps":23534,"ĠAnimation":23535,"oxy":23536,"Ġoutward":23537,"Ġinquiries":23538,"229":23539,"Ġpsychologist":23540,"ĠSask":23541,"evil":23542,"Ġcontaminated":23543,"ãĤ¨":23544,"herence":23545,"Ġbranded":23546,"ĠAbdul":23547,"zh":23548,"Ġparagraphs":23549,"Ġmins":23550,"Ġcorrelated":23551,"erb":23552,"Ġimpart":23553,"Ġmilestone":23554,"ĠSolutions":23555,"otle":23556,"Ġundercover":23557,"Ġmarched":23558,"ĠChargers":23559,"fax":23560,"ĠSecrets":23561,"Ġruth":23562,"weather":23563,"Ġfeminine":23564,"Ġsham":23565,"Ġprestigious":23566,"iggins":23567,"Ġsung":23568,"history":23569,"ettle":23570,"ggie":23571,"Ġoutdated":23572,"oland":23573,"Ġperceptions":23574,"ĠSession":23575,"ĠDodgers":23576,"uj":23577,"ĠEND":23578,"Doc":23579,"Ġdeficiency":23580,"Grand":23581,"ĠJoker":23582,"Ġretrospect":23583,"Ġdiagnostic":23584,"Ġharmless":23585,"Ġrogue":23586,"ĠAval":23587,"Equ":23588,"Ġtransc":23589,"ĠRobertson":23590,"ĠDepending":23591,"ĠBurns":23592,"ivo":23593,"Ġhostility":23594,"Features":23595,"ĵĺ":23596,"Ġdiscomfort":23597,"ĠLCD":23598,"specified":23599,"ĠExpect":23600,"340":23601,"Ġimperative":23602,"ĠRegular":23603,"Chinese":23604,"Ġstatewide":23605,"Ġsymm":23606,"Ġloops":23607,"Ġautumn":23608,"Nick":23609,"Ġshaping":23610,"Ġquot":23611,"Ġcherry":23612,"ĠCrossref":23613,"è¦ļéĨĴ":23614,"Standard":23615,"heed":23616,"ĠDell":23617,"ĠVietnamese":23618,"Ġost":23619,"ĠValkyrie":23620,"OA":23621,"Assad":23622,"Ġrebound":23623,"ĠTraffic":23624,"places":23625,"æĺ":23626,"ĠBuc":23627,"172":23628,"Ġshelters":23629,"Ġinsisting":23630,"ĠCertainly":23631,"ĠKenneth":23632,"ĠTCP":23633,"Ġpenal":23634,"ĠReplay":23635,"heard":23636,"Ġdialect":23637,"iza":23638,"ĠFY":23639,"itcher":23640,"ĠDL":23641,"Ġspiral":23642,"Ġquarterbacks":23643,"Ġhull":23644,"Ġgoogle":23645,"Ġtodd":23646,"ĠSterling":23647,"ĠPlate":23648,"Ġspying":23649,"mbol":23650,"ĠRealm":23651,"ĠProced":23652,"ĠCrash":23653,"Ġterminate":23654,"Ġprotesting":23655,"Center":23656,"guided":23657,"Ġuncover":23658,"Ġboycott":23659,"Ġrealizes":23660,"sound":23661,"Ġpretending":23662,"ĠVas":23663,"1980":23664,"Ġframed":23665,"Ġ139":23666,"Ġdescended":23667,"Ġrehabilitation":23668,"Ġborrowing":23669,"ĠBuch":23670,"Ġblur":23671,"Ron":23672,"ĠFrozen":23673,"enza":23674,"Chief":23675,"ĠPoor":23676,"Ġtranslates":23677,"MIN":23678,"Ġ212":23679,"JECT":23680,"Ġerupted":23681,"Ġsuccesses":23682,"SEC":23683,"Ġplague":23684,"Ġgems":23685,"doms":23686,"Ġstretches":23687,"ĠSpy":23688,"Ġstorytelling":23689,"Credit":23690,"ĠPush":23691,"Ġtraction":23692,"Ġineffective":23693,"ĠLuna":23694,"Ġtapes":23695,"Ġanalytics":23696,"ercise":23697,"Ġprogrammes":23698,"ĠCarbon":23699,"Ġbehold":23700,"heavy":23701,"ĠConservation":23702,"ĠFIR":23703,"Ġsack":23704,"termin":23705,"ricks":23706,"Ġhoused":23707,"Ġunusually":23708,"Ice":23709,"Ġexecuting":23710,"ĠMoroc":23711,"eday":23712,"Ġeditions":23713,"Ġsmarter":23714,"ĠBA":23715,"Ġoutlaw":23716,"Ġvanished":23717,"iba":23718,"ALSE":23719,"ĠSilva":23720,"238":23721,"Could":23722,"Ġphilosopher":23723,"Ġevacuated":23724,"Secret":23725,"142":23726,"Ġvisas":23727,"ãĤ¬":23728,"ĠMalt":23729,"ĠClearly":23730,"ĠNiger":23731,"ĠCairo":23732,"ĠFist":23733,"380":23734,"ĠXML":23735,"auto":23736,"itant":23737,"Ġreinforced":23738,"Record":23739,"ĠSurvivor":23740,"GHz":23741,"Ġscrews":23742,"parents":23743,"Ġoceans":23744,"mares":23745,"Ġbrakes":23746,"vasive":23747,"Ġhello":23748,"ĠSIM":23749,"rimp":23750,"Ġore":23751,"ĠArmour":23752,"247":23753,"Ġterrific":23754,"Ġtones":23755,"141":23756,"ĠMinutes":23757,"Episode":23758,"Ġcurves":23759,"Ġinflammatory":23760,"Ġbatting":23761,"ĠBeautiful":23762,"Lay":23763,"Ġunpop":23764,"vable":23765,"Ġriots":23766,"ĠTactics":23767,"baugh":23768,"ĠCock":23769,"Ġorgasm":23770,"ĠSas":23771,"Ġconstructor":23772,"etz":23773,"Gov":23774,"Ġantagon":23775,"Ġtheat":23776,"Ġdeeds":23777,"hao":23778,"cuts":23779,"ĠMcCl":23780,"Ġum":23781,"ĠScientists":23782,"Ġgrassroots":23783,"yssey":23784,"\"]=>":23785,"Ġsurfaced":23786,"Ġshades":23787,"Ġneighbours":23788,"Ġadvertis":23789,"oya":23790,"Ġmerged":23791,"Upon":23792,"Ġgad":23793,"Ġanticipate":23794,"Anyway":23795,"Ġslogan":23796,"Ġdisrespect":23797,"Iran":23798,"ĠTB":23799,"acted":23800,"Ġsubpoen":23801,"mediately":23802,"OOOO":23803,"Ġwaiver":23804,"Ġvulnerabilities":23805,"ottesville":23806,"ĠHuffington":23807,"Josh":23808,"ĠDH":23809,"Monday":23810,"ĠEllen":23811,"Know":23812,"xon":23813,"items":23814,"228":23815,"Ġfills":23816,"ĠNike":23817,"Ġcumulative":23818,"andals":23819,"Ir":23820,"Ġì":23821,"Ġfriction":23822,"igator":23823,"Ġscans":23824,"ĠVienna":23825,"ldom":23826,"Ġperformers":23827,"Prim":23828,"Ġbidding":23829,"Mur":23830,"Ġleaned":23831,"ĠPrix":23832,"alks":23833,"Ġ[â̦]":23834,"ĠTwitch":23835,"ĠDeveloper":23836,"ĠGir":23837,"Ġcallback":23838,"Abstract":23839,"Ġaccustomed":23840,"Ġfreedoms":23841,"ĠPG":23842,"uracy":23843,"Ġlump":23844,"isman":23845,",,,,":23846,"1992":23847,"ĠRED":23848,"Ġworm":23849,"Match":23850,"ĠPlatinum":23851,"IJ":23852,"ĠOwner":23853,"Trivia":23854,"compl":23855,"Ġnewborn":23856,"Ġfantas":23857,"Own":23858,"Ġ1959":23859,"Ġsympath":23860,"Ġubiqu":23861,"Ġoutputs":23862,"Ġallev":23863,"Ġprag":23864,"Kevin":23865,"Ġfavors":23866,"Ġburial":23867,"Ġnurt":23868,"solete":23869,"cache":23870,"Ġ156":23871,"Ġunlocks":23872,"techn":23873,"Making":23874,"Ġconquer":23875,"adic":23876,"æĸ":23877,"Ġelf":23878,"Ġelectorate":23879,"ĠKurds":23880,"ĠStack":23881,"ĠSamurai":23882,"Ġâĺħ":23883,"Ġ{}":23884,"ĠSaid":23885,"ĠFallout":23886,"Ġkindness":23887,"ĠCustoms":23888,"ĠBoulevard":23889,"Ġhelicopters":23890,"otics":23891,"ĠVeget":23892,"comment":23893,"Ġcriticised":23894,"Ġpolished":23895,"ĠRemix":23896,"ĠCultural":23897,"Ġrecons":23898,"Ġdoi":23899,"atem":23900,"Screen":23901,"Ġbarred":23902,"Comments":23903,"ĠGenerally":23904,"Ġslap":23905,"720":23906,"Vari":23907,"pine":23908,"Ġempt":23909,"Ġhats":23910,"ĠPlaying":23911,"lab":23912,"average":23913,"forms":23914,"ĠCotton":23915,"Ġcans":23916,"ĠDON":23917,"ĠSomalia":23918,"Crypt":23919,"ĠIncreases":23920,"Ever":23921,"modern":23922,"Ġsurgeon":23923,"3000":23924,"Ġrandomized":23925,"================================================================":23926,"Bern":23927,"impl":23928,"ĠCOR":23929,"Ġproclaim":23930,"thouse":23931,"Ġtoes":23932,"Ġample":23933,"Ġpreserving":23934,"Ġdisbel":23935,"grand":23936,"Besides":23937,"Ġsilk":23938,"ĠPattern":23939,"hm":23940,"Ġenterprises":23941,"Ġaffidavit":23942,"ĠAdvisory":23943,"Ġadvertised":23944,"ĠReligious":23945,"sections":23946,"psych":23947,"ĠFields":23948,"aways":23949,"Ġhashtag":23950,"ĠNightmare":23951,"Ġvampire":23952,"Ġforensic":23953,"rossover":23954,"nar":23955,"Ġnavy":23956,"Ġvacant":23957,"ĠDuel":23958,"Ġhallway":23959,"Ġfacebook":23960,"identally":23961,"ĠNRA":23962,"Ġmatt":23963,"Ġhurricane":23964,"ĠKirby":23965,"ĠPuzzle":23966,"Ġskirt":23967,"oust":23968,"dullah":23969,"Ġanalogy":23970,"inion":23971,"Ġtomatoes":23972,"ĠNV":23973,"ĠPeak":23974,"ĠMeyer":23975,"Ġappointments":23976,"Ġmasc":23977,"Ġalley":23978,"rehend":23979,"Ġcharities":23980,"Ġundo":23981,"Ġdestinations":23982,"ĠTesting":23983,"\">\"":24618,"cats":24619,"*.":24620,"Ġgestures":24621,"general":24622,"League":24623,"Ġpackets":24624,"ĠInspector":24625,"ĠBerg":24626,"Ġfraudulent":24627,"Ġcriticize":24628,"Fun":24629,"Ġblaming":24630,"ndra":24631,"Ġslash":24632,"ĠEston":24633,"Ġproposing":24634,"Ġwhales":24635,"Ġtherapist":24636,"Ġsubset":24637,"Ġleisure":24638,"ELD":24639,"ĠCVE":24640,"ĠActivity":24641,"Ġculmin":24642,"shop":24643,"ĠDAY":24644,"ischer":24645,"ĠAdmiral":24646,"ĠAttacks":24647,"Ġ1958":24648,"Ġmemoir":24649,"Ġfolded":24650,"Ġsexist":24651,"Ġ153":24652,"ĠLI":24653,"Ġreadings":24654,"Ġembarrassment":24655,"ĠEmployment":24656,"wart":24657,"chin":24658,"Ġcontinuation":24659,"lia":24660,"Recently":24661,"Ġduel":24662,"Ġevacuation":24663,"ĠKashmir":24664,"Ġdisposition":24665,"ĠRig":24666,"Ġbolts":24667,"Ġinsurers":24668,"467":24669,"Mex":24670,"Ġretaliation":24671,"Ġmisery":24672,"Ġunreasonable":24673,"raining":24674,"Imm":24675,"ĠPU":24676,"emer":24677,"Ġgenital":24678,"ãĤ³":24679,"ĠCandy":24680,"Ġonions":24681,"ĠPatt":24682,"liner":24683,"Ġconceded":24684,"Ġfa":24685,"Ġforc":24686,"ĠHernandez":24687,"ĠGeoff":24688,"debian":24689,"ĠTeams":24690,"Ġcries":24691,"Ġhomeowners":24692,"237":24693,"ABC":24694,"Ġstitch":24695,"Ġstatistic":24696,"Ġheaders":24697,"ĠBiology":24698,"Ġmotors":24699,"ĠGEN":24700,"ĠLip":24701,"Ġhates":24702,"Ġheel":24703,"Self":24704,"ipl":24705,"EDIT":24706,"orting":24707,"Ġannot":24708,"ĠSpeech":24709,"oldemort":24710,"ĠJavascript":24711,"ĠLeBron":24712,"Ġfootprint":24713,"Ġfn":24714,"Ġseizures":24715,"nas":24716,"hide":24717,"Ġ1954":24718,"ĠBee":24719,"ĠDeclaration":24720,"ĠKatie":24721,"Ġreservations":24722,"NR":24723,"female":24724,"Ġsaturated":24725,"Ġbiblical":24726,"Ġtrolls":24727,"Device":24728,"photos":24729,"Ġdrums":24730,"ãĥīãĥ©ãĤ´ãĥ³":24731,"Night":24732,"fighter":24733,"ĠHak":24734,"riber":24735,"Ġcush":24736,"Ġdisciplinary":24737,"baum":24738,"ĠGH":24739,"ĠSchmidt":24740,"ilibrium":24741,"Ġsixty":24742,"ĠKushner":24743,"rots":24744,"Ġpund":24745,"ĠRac":24746,"Ġsprings":24747,"Ġconve":24748,"Business":24749,"Fall":24750,"Ġqualifications":24751,"Ġverses":24752,"Ġnarciss":24753,"ĠKoh":24754,"ĠWow":24755,"ĠCharlottesville":24756,"edo":24757,"Ġinterrogation":24758,"ĠWool":24759,"365":24760,"Brian":24761,"Ġâľĵ":24762,"Ġalleges":24763,"onds":24764,"idation":24765,"ĠJackie":24766,"yu":24767,"Ġlakes":24768,"Ġworthwhile":24769,"Ġcrystals":24770,"ĠJuda":24771,"Ġcomprehend":24772,"Ġflush":24773,"Ġabsorption":24774,"ĠOC":24775,"Ġfrightened":24776,"ĠChocolate":24777,"Martin":24778,"Ġbuys":24779,"Ġbucks":24780,"Ġappell":24781,"ĠChampionships":24782,"Ġlistener":24783,"ĠDefensive":24784,"Ġcz":24785,"uds":24786,"ĠMate":24787,"Ġreplay":24788,"Ġdecorated":24789,"Ġsunk":24790,"ĠVIP":24791,"ĠAnk":24792,"Ġ195":24793,"aaaa":24794,"Nobody":24795,"ĠMilk":24796,"ĠGur":24797,"ĠMk":24798,"ĠSara":24799,"Ġseating":24800,"ĠWid":24801,"Track":24802,"Ġemploys":24803,"Ġgigantic":24804,"APP":24805,"ãĤ§":24806,"inventory":24807,"Ġtowel":24808,"atche":24809,"lasting":24810,"ĠTL":24811,"Ġlatency":24812,"Ġkne":24813,"Ber":24814,"meaning":24815,"Ġupheld":24816,"Ġplayground":24817,"Ġmant":24818,"Side":24819,"Ġstereo":24820,"Ġnorthwest":24821,"Ġexceptionally":24822,"Ġrays":24823,"Ġrecurring":24824,"Drive":24825,"Ġupright":24826,"Ġabduct":24827,"ĠMarathon":24828,"Ġgoodbye":24829,"Ġalphabet":24830,"hp":24831,"Ġcourtroom":24832,"rington":24833,"othing":24834,"Tag":24835,"Ġdiplomats":24836,"Ġbarbar":24837,"ĠAqua":24838,"183":24839,"3333":24840,"Ġmaturity":24841,"Ġinstability":24842,"ĠApache":24843,"Ġ===":24844,"Ġfasting":24845,"ĠGrid":24846,"ModLoader":24847,"Ġ152":24848,"Abs":24849,"ĠOperating":24850,"etti":24851,"Ġacquaint":24852,"Donnell":24853,"ĠKem":24854,"ĠForge":24855,"Ġarmored":24856,"Mil":24857,"Ġphilosophers":24858,"invest":24859,"Players":24860,"âĪ":24861,"Ġmyriad":24862,"Ġcomrades":24863,"Rot":24864,"Ġremembering":24865,"Ġcorresponds":24866,"Ġprogrammers":24867,"ĠLynn":24868,"Ġolig":24869,"Ġcoherent":24870,"ynchron":24871,"ĠChemical":24872,"Ġjugg":24873,"pair":24874,"posts":24875,"Eye":24876,"ĠInner":24877,"Ġsemester":24878,"ottest":24879,"ĠEmirates":24880,"ricanes":24881,"orously":24882,"mits":24883,"ĠWis":24884,"Ġdodge":24885,"location":24886,"Ġfaded":24887,"Amazon":24888,"ĠProceed":24889,"ĠINFO":24890,"journal":24891,"ĠTruck":24892,"Ten":24893,"Ġ217":24894,"Ġstatutes":24895,"mobile":24896,"ĠTypes":24897,"Recomm":24898,"buster":24899,"pex":24900,"Ġlegends":24901,"Ġheadache":24902,"faced":24903,"ĠWiFi":24904,"ifty":24905,"ĠHER":24906,"Ġcircuits":24907,"ERROR":24908,"226":24909,"olin":24910,"Ġcylinder":24911,"ospace":24912,"ikers":24913,"Prem":24914,"Quant":24915,"Ġconflicting":24916,"Ġslightest":24917,"Ġforged":24918,"ionage":24919,"Stephen":24920,"ĠKub":24921,"ĠOpportun":24922,"ĠHeal":24923,"Ġblo":24924,"Ġrulers":24925,"Ġhuh":24926,"Ġsubmarine":24927,"fy":24928,"asser":24929,"Ġallowance":24930,"ĠKasich":24931,"ĠTas":24932,"ĠAustralians":24933,"ForgeModLoader":24934,"ĠâĨij":24935,"ĠMatrix":24936,"amins":24937,"Ġ1200":24938,"ĠAcqu":24939,"236":24940,"Document":24941,"ĠBreaking":24942,"193":24943,"ĠSubst":24944,"ĠRoller":24945,"ĠProperties":24946,"ĠNI":24947,"tier":24948,"Ġcrushing":24949,"Ġadvocating":24950,"Furthermore":24951,"keepers":24952,"Ġsexism":24953,"xd":24954,"Ġcaller":24955,"ĠSense":24956,"chieve":24957,"ĠTF":24958,"Ġfueled":24959,"Ġreminiscent":24960,"Ġobsess":24961,"urst":24962,"Ġuphold":24963,"ĠFans":24964,"hetics":24965,"ĠâĹ":24966,"ĠBath":24967,"Ġbeverage":24968,"Ġoscill":24969,"254":24970,"Ġpoles":24971,"Ġgradual":24972,"Ġexting":24973,"ĠSuff":24974,"ĠSuddenly":24975,"Ġliking":24976,"Ġ1949":24977,"unciation":24978,"amination":24979,"ĠOmar":24980,"ĠLV":24981,"ĠConsequently":24982,"Ġsynthes":24983,"ĠGIF":24984,"Ġpains":24985,"Ġinteracting":24986,"uously":24987,"incre":24988,"Ġrumor":24989,"ĠScientology":24990,"197":24991,"ĠZig":24992,"Ġspelling":24993,"ĠASS":24994,"Ġextingu":24995,"mson":24996,"Ġgh":24997,"Ġremarked":24998,"ĠStrategic":24999,"ĠMON":25000,"å¥":25001,"gae":25002,"ĠWHAT":25003,"Eric":25004,"ĠCampus":25005,"Ġmethane":25006,"Ġimagin":25007,"JUST":25008,"ĠAlm":25009,"XT":25010,"iq":25011,"ĠRSS":25012,"Ġwrongdoing":25013,"atta":25014,"Ġbigot":25015,"Ġdemonstrators":25016,"ĠCalvin":25017,"ĠVilla":25018,"Ġmembrane":25019,"ĠAwesome":25020,"Ġbenefic":25021,"268":25022,"Ġmagnificent":25023,"ĠLots":25024,"Greg":25025,"ĠBoris":25026,"Ġdetainees":25027,"ĠHerman":25028,"Ġwhispered":25029,"Ġawe":25030,"Professor":25031,"funding":25032,"Ġphysiological":25033,"ĠDestruction":25034,"Ġlimb":25035,"Ġmanipulated":25036,"Ġbubbles":25037,"Ġpseud":25038,"Ġhydra":25039,"ĠBristol":25040,"Ġstellar":25041,"ĠExpansion":25042,"ĠKell":25043,"ĠInterestingly":25044,"Ġmans":25045,"Ġdragging":25046,"Ġecological":25047,"ĠFit":25048,"Ġgent":25049,"Ġbenefited":25050,"ĠHaiti":25051,"Ġpolyg":25052,"ãĥİ":25053,"Ġ2030":25054,"Ġprow":25055,"Ġreconstruction":25056,"Ġwast":25057,"Ġpsychic":25058,"ĠGreeks":25059,"Handler":25060,"162":25061,"ĠPulse":25062,"Ġsolicit":25063,"Ġsys":25064,"Ġinflux":25065,"ĠGentle":25066,"percent":25067,"Ġproliferation":25068,"Ġtaxable":25069,"Ġdisregard":25070,"Ġescaping":25071,"Ġginger":25072,"Ġwithstand":25073,"Ġdevastated":25074,"ĠDew":25075,"series":25076,"Ġinjected":25077,"elaide":25078,"Ġturnover":25079,"heat":25080,"ĻĤ":25081,"Happy":25082,"ĠSilent":25083,"ãĤŃ":25084,"ivism":25085,"Ġirrational":25086,"AMA":25087,"Ġreef":25088,"rub":25089,"Ġ162":25090,"Ġbankers":25091,"ĠEthics":25092,"vv":25093,"Ġcriticisms":25094,"Kn":25095,"186":25096,"Movie":25097,"ĠTories":25098,"Ġnood":25099,"Ġdistortion":25100,"False":25101,"odore":25102,"Ġtasty":25103,"Research":25104,"ĠUID":25105,"-)":25106,"Ġdivorced":25107,"ĠMU":25108,"ĠHayes":25109,"ĠIsn":25110,"iani":25111,"ĠHQ":25112,"Ġ\"#":25113,"ignant":25114,"Ġtraumatic":25115,"ĠLing":25116,"Hun":25117,"Ġsabot":25118,"online":25119,"random":25120,"Ġrenamed":25121,"rared":25122,"KA":25123,"dead":25124,"ét":25125,"ĠAssistance":25126,"Ġseaf":25127,"++++++++":25128,"Ġseldom":25129,"ĠWebb":25130,"Ġboolean":25131,"ulet":25132,"Ġrefrain":25133,"ĠDIY":25134,"rule":25135,"Ġshutting":25136,"Ġutilizing":25137,"loading":25138,"ĠParam":25139,"coal":25140,"ooter":25141,"Ġattracting":25142,"ĠDol":25143,"Ġhers":25144,"agnetic":25145,"ĠReach":25146,"imo":25147,"Ġdiscarded":25148,"ĠPip":25149,"015":25150,"ür":25151,"Ġmug":25152,"Imagine":25153,"COL":25154,"Ġcursed":25155,"ĠShows":25156,"ĠCurtis":25157,"ĠSachs":25158,"speaking":25159,"ĠVista":25160,"ĠFramework":25161,"ongo":25162,"Ġsubreddit":25163,"Ġcrus":25164,"ĠOval":25165,"Row":25166,"growing":25167,"Ġinstallment":25168,"Ġglac":25169,"ĠAdvance":25170,"ECK":25171,"ĠLGBTQ":25172,"LEY":25173,"Ġacet":25174,"Ġsuccessive":25175,"ĠNicole":25176,"Ġ1957":25177,"Quote":25178,"Ġcircumstance":25179,"ackets":25180,"Ġ142":25181,"ortium":25182,"Ġguessed":25183,"ĠFrame":25184,"Ġperpetrators":25185,"ĠAviation":25186,"ĠBench":25187,"Ġhandc":25188,"Ap":25189,"Ġ1956":25190,"259":25191,"rand":25192,"NetMessage":25193,"din":25194,"urtles":25195,"hig":25196,"ĠVIII":25197,"ffiti":25198,"ĠSwords":25199,"bial":25200,"Ġkidnapping":25201,"device":25202,"Ġbarn":25203,"ĠEli":25204,"aucas":25205,"Send":25206,"Constructed":25207,"Ġ½":25208,"Ġneedles":25209,"Ġadvertisements":25210,"Ġvou":25211,"Ġexhibited":25212,"ĠFortress":25213,"Ask":25214,"Berry":25215,"TYPE":25216,"Ġcancers":25217,"umping":25218,"ĠTerritory":25219,"Ġprud":25220,"Ġnas":25221,"Ġatheist":25222,"Ġbalances":25223,"ãģŁ":25224,"ĠShawn":25225,"&&":25226,"Ġlandsc":25227,"ĠRGB":25228,"Ġpetty":25229,"Ġexcellence":25230,"Ġtranslations":25231,"Ġparcel":25232,"ĠChev":25233,"East":25234,"ĠOutput":25235,"imi":25236,"Ġambient":25237,"ĠThreat":25238,"Ġvillains":25239,"Ġ550":25240,"ICA":25241,"Ġtaller":25242,"Ġleaking":25243,"cup":25244,"Ġpolish":25245,"Ġinfectious":25246,"ĠKC":25247,"Ġ@@":25248,"background":25249,"Ġbureaucracy":25250,"ĠSai":25251,"unless":25252,"itious":25253,"ĠSkype":25254,"Atl":25255,"IDENT":25256,"008":25257,"Ġhypocr":25258,"Ġpitchers":25259,"Ġguessing":25260,"ĠFINAL":25261,"Between":25262,"Ġvillagers":25263,"Ġ252":25264,"fashion":25265,"ĠTunis":25266,"Beh":25267,"ĠExc":25268,"ĠMID":25269,"288":25270,"ĠHaskell":25271,"196":25272,"ĠNOR":25273,"Ġspecs":25274,"Ġinvari":25275,"Ġglut":25276,"ĠCars":25277,"Ġimpulse":25278,"Ġhonors":25279,"gel":25280,"Ġjurisdictions":25281,"ĠBundle":25282,"ulas":25283,"California":25284,"ĠIncrease":25285,"Ġpear":25286,"Ġsingles":25287,"Ġcues":25288,"Ġunderwent":25289,"ĠWS":25290,"Ġexaggerated":25291,"Ġdubious":25292,"Ġflashing":25293,"LOG":25294,")].":25295,"Journal":25296,"tg":25297,"Van":25298,"ĠIstanbul":25299,"ĠInsp":25300,"ĠFranken":25301,"Draw":25302,"Ġsadness":25303,"Ġironic":25304,"ĠFry":25305,"xc":25306,"Ġ164":25307,"isch":25308,"Way":25309,"ĠProtestant":25310,"horn":25311,"Ġunaff":25312,"ĠViv":25313,"illas":25314,"ĠProductions":25315,"ĠHogan":25316,"Ġperimeter":25317,"ĠSisters":25318,"Ġspontaneous":25319,"Ġdownside":25320,"Ġdescendants":25321,"Ġorn":25322,"worm":25323,"Japanese":25324,"Ġ1955":25325,"Ġ151":25326,"ĠDoing":25327,"elsen":25328,"umbles":25329,"Ġradically":25330,"ĠDrum":25331,"ĠBach":25332,"Ġliabilities":25333,"ĠOB":25334,"ĠElementary":25335,"Ġmeme":25336,"ynes":25337,"Ġfingerprint":25338,"ĠGrab":25339,"Ġundertake":25340,"Members":25341,"ĠReader":25342,"ĠSims":25343,"god":25344,"Ġhypothetical":25345,"scient":25346,"ĠAJ":25347,"Ġcharism":25348,"Ġadmissions":25349,"ĠMissile":25350,"trade":25351,"Ġexercising":25352,"ĠBackground":25353,"Written":25354,"Ġvocals":25355,"whether":25356,"Ġvi":25357,"ĠWinner":25358,"Ġlitter":25359,"ĠShooting":25360,"STEM":25361,"ãĤ¡":25362,"ĠAFL":25363,"Ġvariability":25364,"Ġeats":25365,"ĠDPS":25366,"brow":25367,"Ġelephants":25368,"Ġstrat":25369,"ĠÅ":25370,"Ġsettlers":25371,"Matthew":25372,"Ġinadvert":25373,"HI":25374,"ĠIMF":25375,"ĠGoal":25376,"Ġnerves":25377,"Johnson":25378,"eye":25379,"ablishment":25380,"Thursday":25381,"BILITY":25382,"Had":25383,"amoto":25384,"hetamine":25385,"eps":25386,"Ġmitochond":25387,"Ġcompressed":25388,"ĠTrevor":25389,"ĠAnimals":25390,"Tool":25391,"Lock":25392,"Ġtweak":25393,"Ġpinch":25394,"Ġcancellation":25395,"Pot":25396,"Ġfocal":25397,"ĠAstron":25398,"173":25399,"ĠASC":25400,"ĠOTHER":25401,"umni":25402,"Ġdemise":25403,"dl":25404,"Ùħ":25405,"Semitism":25406,"Ġcracking":25407,"Ġcollaborative":25408,"Ġexplores":25409,"sql":25410,"Ġherbs":25411,"Ġconfigurations":25412,"mis":25413,"ĠResult":25414,"acey":25415,"ĠSmoke":25416,"Ġsanct":25417,"elia":25418,"Ġdegener":25419,"Ġdeepest":25420,"Ġscreamed":25421,"Ġnap":25422,"Software":25423,"ĠSTAR":25424,"EF":25425,"ĠXin":25426,"sponsored":25427,"manship":25428,"233":25429,"Ġprimaries":25430,"Ġfiltering":25431,"Ġassemble":25432,"mil":25433,"ĠMyers":25434,"bows":25435,"Ġpunched":25436,"Mic":25437,"Ġinnovations":25438,"Ġfunc":25439,"ando":25440,"Ġfracking":25441,"ĠVul":25442,"оÐ":25443,"oshop":25444,"ĠImmun":25445,"Ġsettling":25446,"Ġadolescents":25447,"Ġrebuilding":25448,"Ġtransforming":25449,"Ġparole":25450,"Ġharbor":25451,"Ġbooking":25452,"otional":25453,"ongevity":25454,"ĠYo":25455,"bug":25456,"Ġemerges":25457,"ĠMethods":25458,"ĠChu":25459,"Pres":25460,"ĠDungeons":25461,"Ġtrailing":25462,"ĠRum":25463,"ĠHugh":25464,"天":25465,"ĠEra":25466,"ĠBattles":25467,"Results":25468,"ĠTrading":25469,"Ġversa":25470,"css":25471,"axies":25472,"heet":25473,"Ġgreed":25474,"1989":25475,"Ġgardens":25476,"Ġcontingent":25477,"Park":25478,"ĠLeafs":25479,"hook":25480,"robe":25481,"Ġdiplomacy":25482,"ĠFuel":25483,"ĠInvasion":25484,"Ġupgrading":25485,"Male":25486,"Ġelic":25487,"Ġrelentless":25488,"ĠCovenant":25489,"apesh":25490,"ĠTrop":25491,"Ty":25492,"production":25493,"arty":25494,"Ġpunches":25495,"ako":25496,"cyclopedia":25497,"ĠRabbit":25498,"ĠHDMI":25499,"Ġ141":25500,"Ġfoil":25501,"ItemImage":25502,"ĠFG":25503,"Ġimplementations":25504,"ĠPom":25505,"ixtures":25506,"Ġawait":25507,"Ġ330":25508,"amus":25509,"Ġumbrella":25510,"Ġforesee":25511,"separ":25512,"Ġcircumcision":25513,"Ġperipheral":25514,"Say":25515,"ĠExpert":25516,"Inc":25517,"Ġwithdrew":25518,"ĠAnders":25519,"fried":25520,"Ġradioactive":25521,"ĠOpening":25522,"Ġboarding":25523,"ĠND":25524,"Ġoverthrow":25525,"Activ":25526,"WP":25527,"ĠActs":25528,"×Ļ":25529,"Ġmotions":25530,"vic":25531,"ĠMighty":25532,"ĠDefender":25533,"aer":25534,"Ġthankful":25535,"ĠKilling":25536,"ĠBris":25537,"moil":25538,"Ġpredicting":25539,"266":25540,"choice":25541,"Ġkillers":25542,"Ġincub":25543,"ĠChest":25544,"athering":25545,"Ġproclaimed":25546,"flower":25547,"ossom":25548,"umbledore":25549,"ĠCycling":25550,"ĠOccupy":25551,"AGES":25552,"Pen":25553,"ĠYug":25554,"Ġpackaged":25555,"Ġheightened":25556,"cot":25557,"stack":25558,"Cond":25559,"Ġstamps":25560,"mage":25561,"Ġpersuaded":25562,"Ġensl":25563,"ĠCardinal":25564,"Ġsolitary":25565,"Ġpossessing":25566,"ĠCork":25567,"Ġevid":25568,"ĠTay":25569,"Ġblues":25570,"Ġextremism":25571,"Ġlunar":25572,"Ġclown":25573,"Techn":25574,"Ġfestivals":25575,"ĠPvP":25576,"ĠLar":25577,"Ġconsequently":25578,"present":25579,"Ġsomeday":25580,"çİĭ":25581,"ĠMeteor":25582,"Ġtouring":25583,"culture":25584,"Ġbeaches":25585,"Ship":25586,"cause":25587,"ĠFlood":25588,"ãĥ¯":25589,"Ġpurity":25590,"those":25591,"Ġemission":25592,"bolt":25593,"Ġchord":25594,"ĠScripture":25595,"Lu":25596,"Ġ${":25597,"created":25598,"Others":25599,"258":25600,"Ġelemental":25601,"Ġannoyed":25602,"ĠAE":25603,"dan":25604,"ĠSag":25605,"Researchers":25606,"Ġfairy":25607,"âĢĵâĢĵ":25608,"============":25609,"Smart":25610,"GGGG":25611,"Ġskeletons":25612,"Ġpupils":25613,"linked":25614,"Ġurgency":25615,"enabled":25616,"ĠFuck":25617,"Ġcouncill":25618,"rab":25619,"UAL":25620,"TI":25621,"Ġlifes":25622,"Ġconfessed":25623,"Bug":25624,"Ġharmon":25625,"ĠCONFIG":25626,"ĠNeutral":25627,"Double":25628,"Ġstaple":25629,"ĠSHA":25630,"British":25631,"ĠSNP":25632,"ATOR":25633,"oco":25634,"Ġswinging":25635,"gex":25636,"oleon":25637,"plain":25638,"ĠMissing":25639,"ĠTrophy":25640,"vari":25641,"ranch":25642,"Ġ301":25643,"440":25644,"0000000000000000":25645,"Ġrestoring":25646,"Ġhaul":25647,"ucing":25648,"nerg":25649,"Ġfutures":25650,"Ġstrategist":25651,"question":25652,"Ġlateral":25653,"ĠBard":25654,"Ġsor":25655,"ĠRhodes":25656,"ĠDowntown":25657,"?????-":25658,"ĠLit":25659,"ĠBened":25660,"Ġcoil":25661,"street":25662,"ĠPortal":25663,"FILE":25664,"ĠGru":25665,"*,":25666,"231":25667,"neum":25668,"Ġsucked":25669,"Ġrapper":25670,"Ġtendencies":25671,"ĠLauren":25672,"cellaneous":25673,"267":25674,"Ġbrowse":25675,"Ġoverc":25676,"header":25677,"oise":25678,"Ġbeet":25679,"ĠGle":25680,"Stay":25681,"Ġmum":25682,"Ġtyped":25683,"Ġdiscounts":25684,"Talk":25685,"ĠOg":25686,"existing":25687,"ĠSell":25688,"uph":25689,"CI":25690,"ĠAustrian":25691,"ĠWarm":25692,"Ġdismissal":25693,"Ġaverages":25694,"camera":25695,"Ġallegiance":25696,"LAN":25697,"=\"#":25698,"Ġcommentators":25699,"ĠSetting":25700,"ĠMidwest":25701,"Ġpharmac":25702,"ĠEXP":25703,"Ġstainless":25704,"Chicago":25705,"Ġtan":25706,"244":25707,"Ġcountryside":25708,"ĠVac":25709,"295":25710,"Ġpinned":25711,"Ġcrises":25712,"Ġstandardized":25713,"Task":25714,"ĠJail":25715,"ĠDocker":25716,"colored":25717,"forth":25718,"\"},":25719,"Ġpatrons":25720,"Ġspice":25721,"Ġmourn":25722,"ĠMood":25723,"Ġlaundry":25724,"Ġequip":25725,"ĠMole":25726,"yll":25727,"ĠTHC":25728,"nation":25729,"ĠSherlock":25730,"Ġissu":25731,"ĠKre":25732,"ĠAmericas":25733,"ĠAAA":25734,"Ġsystematically":25735,"Ġcontra":25736,"ĠSally":25737,"Ġrationale":25738,"Ġcarriage":25739,"Ġpeaks":25740,"Ġcontradiction":25741,"ensation":25742,"ĠFailure":25743,"Ġprops":25744,"Ġnamespace":25745,"Ġcove":25746,"fields":25747,"ãĤĭ":25748,"Ġwool":25749,"ĠCatch":25750,"Ġpresumed":25751,"ĠDiana":25752,"ragon":25753,"igi":25754,"Ġhamm":25755,"Ġstunt":25756,"ĠGUI":25757,"ĠObservatory":25758,"ĠShore":25759,"Ġsmells":25760,"annah":25761,"Ġcockpit":25762,"ĠDuterte":25763,"850":25764,"Ġoppressed":25765,"breaker":25766,"ĠContribut":25767,"ĠPeru":25768,"ĠMonsanto":25769,"ĠAttempt":25770,"Ġcommanding":25771,"Ġfridge":25772,"ĠRin":25773,"ĠChess":25774,"uality":25775,"Ġol":25776,"Republican":25777,"ĠGlory":25778,"ĠWIN":25779,".......":25780,"agent":25781,"reading":25782,"Ġinh":25783,"Jones":25784,"Ġclicks":25785,"alan":25786,"Ġ[];":25787,"ĠMajesty":25788,"ĠCed":25789,"opus":25790,"atel":25791,"ê":25792,"ARC":25793,"ĠEcuador":25794,"ãĥł":25795,"ĠKuro":25796,"Ġrituals":25797,"Ġcaptive":25798,"Ġounce":25799,"Ġdisagreement":25800,"Ġslog":25801,"fuel":25802,"Pet":25803,"Mail":25804,"Ġexercised":25805,"Ġsolic":25806,"Ġrainfall":25807,"Ġdevotion":25808,"ĠAssessment":25809,"Ġrobotic":25810,"options":25811,"ĠRP":25812,"ĠFamilies":25813,"ĠFlames":25814,"Ġassignments":25815,"007":25816,"akedown":25817,"Ġvocabulary":25818,"Reilly":25819,"Ġcaval":25820,"gars":25821,"Ġsuppressed":25822,"ĠSET":25823,"ĠJohns":25824,"Ġwarp":25825,"broken":25826,"Ġstatues":25827,"Ġadvocated":25828,"Ġ275":25829,"Ġperil":25830,"omorph":25831,"ĠFemin":25832,"perfect":25833,"Ġhatch":25834,"Lib":25835,"512":25836,"Ġlifelong":25837,"313":25838,"Ġcheeks":25839,"Ġnumbered":25840,"ĠMug":25841,"Body":25842,"ravel":25843,"Weight":25844,"ĠJak":25845,"ĠHeath":25846,"Ġkissing":25847,"ĠJUST":25848,"Ġwaving":25849,"upload":25850,"Ġinsider":25851,"ĠProgressive":25852,"ĠFilter":25853,"tta":25854,"ĠBeam":25855,"Ġviolently":25856,"ipation":25857,"Ġskepticism":25858,"Ġ1918":25859,"ĠAnnie":25860,"ĠSI":25861,"Ġgenetics":25862,"Ġonboard":25863,"atl":25864,"ĠFriedman":25865,"ĠBri":25866,"ceptive":25867,"Ġpirate":25868,"ĠReporter":25869,"278":25870,"Ġmythology":25871,"Ġeclipse":25872,"Ġskins":25873,"Ġglyph":25874,"ingham":25875,"Files":25876,"Cour":25877,"women":25878,"Ġregimes":25879,"Ġphotographed":25880,"Kat":25881,"ĠMAX":25882,"Officials":25883,"Ġunexpectedly":25884,"Ġimpressions":25885,"Front":25886,";;;;;;;;":25887,"Ġsupremacy":25888,"Ġsang":25889,"Ġaggravated":25890,"Ġabruptly":25891,"ĠSector":25892,"Ġexcuses":25893,"Ġcosting":25894,"idepress":25895,"Stack":25896,"ĠRNA":25897,"obil":25898,"Ġghosts":25899,"ldon":25900,"atibility":25901,"Topics":25902,"Ġreimburse":25903,"ĠHM":25904,"ĠDeg":25905,"Ġthief":25906,"yet":25907,"ogenesis":25908,"leaning":25909,"ĠKol":25910,"ĠBasketball":25911,"Ġfi":25912,"ĠSeeing":25913,"Ġrecycling":25914,"Ġ[-":25915,"Congress":25916,"Ġlectures":25917,"Psy":25918,"Ġnep":25919,"Ġmaid":25920,"Ġoriented":25921,"AX":25922,"Ġrespectful":25923,"rene":25924,"flush":25925,"ĠUnloaded":25926,"request":25927,"grid":25928,"ĠAlternatively":25929,"ĠHugo":25930,"Ġdecree":25931,"ĠBuddhism":25932,"andum":25933,"Android":25934,"ĠCongo":25935,"ĠJoyce":25936,"Ġacknowledging":25937,"hesive":25938,"ĠTomorrow":25939,"ĠHiro":25940,"thren":25941,"ĠMaced":25942,"Ġhoax":25943,"ĠIncreased":25944,"ĠPradesh":25945,"Wild":25946,"______":25947,"161":25948,"Ġaunt":25949,"Ġdistributing":25950,"ĠTucker":25951,"ĠSSL":25952,"ĠWolves":25953,"Building":25954,"oult":25955,"ĠLuo":25956,"ĠYas":25957,"ĠSpir":25958,"ĠShape":25959,"ĠCambod":25960,"ĠIPv":25961,"Ġml":25962,"Ġextrad":25963,"390":25964,"ĠPenny":25965,"dream":25966,"Ġstationed":25967,"optional":25968,"eworthy":25969,".":26700,"ĠWorkshop":26701,"ĠRetail":26702,"ĠAvatar":26703,"625":26704,"Na":26705,"ĠVC":26706,"ĠSecure":26707,"MY":26708,"1988":26709,"ossip":26710,"Ġprostate":26711,"Ġunden":26712,"Ġgamer":26713,"ĠContents":26714,"ĠWarhammer":26715,"ĠSentinel":26716,"310":26717,"Ġsegregation":26718,"ĠFlex":26719,"ĠMAY":26720,"Ġdrills":26721,"ĠDrugs":26722,"Islamic":26723,"Ġspur":26724,"Ġcafe":26725,"Ġimaginary":26726,"Ġguiding":26727,"Ġswings":26728,"ĠTheme":26729,"oby":26730,"Ġnud":26731,"Ġbegging":26732,"Ġstrongh":26733,"Ġrejecting":26734,"Ġpedestrians":26735,"ĠProspect":26736,"Rare":26737,"sle":26738,"Ġconcessions":26739,"ĠConstitutional":26740,"Ġbeams":26741,"Ġfibers":26742,"poon":26743,"Ġinstincts":26744,"property":26745,"ĠBIG":26746,"Sanders":26747,"imates":26748,"Ġcoating":26749,"Ġcorpses":26750,"ĠTRUE":26751,"checked":26752,"Ġ166":26753,"Ash":26754,"ĠJS":26755,"ĠFiction":26756,"Ġcommunal":26757,"Ġenergetic":26758,"oooooooo":26759,"Ġnowadays":26760,"ILD":26761,"ibo":26762,"ĠSUV":26763,"Ren":26764,"Ġdwelling":26765,"Silver":26766,"Ġtally":26767,"ĠMoving":26768,"Ġcoward":26769,"Ġgenerals":26770,"Ġhorns":26771,"Ġcirculated":26772,"Ġrobbed":26773,"ĠUnlimited":26774,"Ġharassed":26775,"Ġinhibit":26776,"Ġcomposer":26777,"ĠSpotify":26778,"Ġspreads":26779,"364":26780,"Ġsuicidal":26781,"Ġnoises":26782,"ĠStur":26783,"Ġsaga":26784,"ĠKag":26785,"iso":26786,"Ġtheoretically":26787,"Money":26788,"Ġsimilarity":26789,"Ġsliced":26790,"utils":26791,"inges":26792,"\"-":26793,"Ġanth":26794,"Ġimped":26795,"Module":26796,"Throughout":26797,"Ġmenus":26798,"committee":26799,"andi":26800,"obj":26801,"inav":26802,"fired":26803,"ĠAbdullah":26804,"Ġundead":26805,"Ġfonts":26806,"Hold":26807,"ENG":26808,"Ġsustainability":26809,"Ġflick":26810,"Ġrazor":26811,"ĠFest":26812,"ĠCharacters":26813,"Ġwording":26814,"Ġpopulist":26815,"Ġcriticizing":26816,"Ġmuse":26817,"vine":26818,"Ġcardboard":26819,"Ġkindly":26820,"Ġfringe":26821,"ĠTheft":26822,"icultural":26823,"Ġgovernors":26824,"Ġ����":26825,"Ġ163":26826,"Ġtimeout":26827,"ĠAuth":26828,"Children":26829,"AU":26830,"Ġredemption":26831,"ĠAlger":26832,"Ġ1914":26833,"Ġwaved":26834,"Ġastronauts":26835,"ograms":26836,"Ġswamp":26837,"ĠFinnish":26838,"Ġcandle":26839,"Ġtonnes":26840,"utm":26841,"Ġray":26842,"Ġspun":26843,"Ġfearful":26844,"articles":26845,"Ġcaus":26846,"orically":26847,"ĠRequires":26848,"ĠGol":26849,"Ġpope":26850,"Ġinaugural":26851,"Ġgle":26852,"ADA":26853,"ĠISIL":26854,"ĠOffensive":26855,"Ġwatchdog":26856,"Ġbalcon":26857,"entity":26858,"ĠHoo":26859,"Ġgallon":26860,"ACC":26861,"Ġdoubling":26862,"Ġimplication":26863,"ĠSight":26864,"Ġdoctr":26865,"-------":26866,"Ġ\\\\":26867,"Ġmalt":26868,"Roll":26869,"Ġâī¥":26870,"Ġrecap":26871,"adding":26872,"uces":26873,"ĠBend":26874,"figure":26875,"Ġturkey":26876,"Ġsocietal":26877,"ĠTickets":26878,"Ġcommercially":26879,"Ġspicy":26880,"Ġ216":26881,"ĠRamp":26882,"Ġsuperiority":26883,"ï":26884,"ĠTracker":26885,"Carl":26886,"ĠCoy":26887,"ĠPatriot":26888,"Ġconsulted":26889,"Ġlistings":26890,"Ġslew":26891,"reenshot":26892,"ĠGone":26893,"Ġ[...]":26894,"309":26895,"Ġhottest":26896,"ر":26897,"Ġrocky":26898,"ĠDiaz":26899,"Ġmassage":26900,"Ġparaly":26901,"Ġpony":26902,"Az":26903,"Ġcartridge":26904,"ĠNZ":26905,"Ġsnack":26906,"ĠLamar":26907,"plement":26908,"ĠLeslie":26909,"Ġmater":26910,"Ġsnipp":26911,"246":26912,"Ġjointly":26913,"ĠBrisbane":26914,"ĠiPod":26915,"Ġpumping":26916,"Ġgoat":26917,"ĠSharon":26918,"ealing":26919,"Ġcoron":26920,"Ġanomal":26921,"rahim":26922,"ĠConnection":26923,"Ġsculpture":26924,"Ġscheduling":26925,"ĠDaddy":26926,"athing":26927,"Ġeyebrows":26928,"Ġcurved":26929,"Ġsentiments":26930,"Ġdrafting":26931,"Drop":26932,"([":26933,"Ġnominal":26934,"ĠLeadership":26935,"ĠGrow":26936,"Ġ176":26937,"Ġconstructive":26938,"ivation":26939,"Ġcorrupted":26940,"gerald":26941,"ĠCros":26942,"ĠChester":26943,"ĠLap":26944,"ãģª":26945,"OTH":26946,"DATA":26947,"Ġalmond":26948,"probably":26949,"Imp":26950,"Ġfeast":26951,"ĠWarcraft":26952,"Flor":26953,"Ġcheckpoint":26954,"Ġtranscription":26955,"Ġ204":26956,"Ġtweaks":26957,"Ġrelieve":26958,"Science":26959,"Ġperformer":26960,"Zone":26961,"Ġturmoil":26962,"igated":26963,"hibit":26964,"ĠCafe":26965,"themed":26966,"Ġfluor":26967,"bench":26968,"Ġdecom":26969,"ĠUnt":26970,"ĠBarrett":26971,"ĠFacts":26972,"Ġtasting":26973,"ĠPTSD":26974,"ĠSeal":26975,"ĠJudaism":26976,"ĠDynamic":26977,"ĠCors":26978,"Ve":26979,"ĠMing":26980,"ĠTransform":26981,"von":26982,"ĠDefenders":26983,"ĠTactical":26984,"ĠVon":26985,"ĠUnivers":26986,"Ġdistorted":26987,"ĠBreath":26988,"?'\"":26989,"Ġagon":26990,"ĠDeadly":26991,"Ġlan":26992,"ĠCycle":26993,"orned":26994,"Ġreliably":26995,"Ġglor":26996,"ĠMonkey":26997,"ãĥ¡":26998,"Ġadren":26999,"Ġmicrowave":27000,"ĠAlban":27001,"ircraft":27002,"digit":27003,"smart":27004,"ĠDread":27005,"¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯":27006,"{{":27007,"ĠRochester":27008,"Ġsimplified":27009,"Ġinflicted":27010,"Ġtakeover":27011,"Ġyourselves":27012,"aditional":27013,"Ġmuscular":27014,"KS":27015,"Ġingen":27016,"Tax":27017,"ĠFeature":27018,"277":27019,"Ġcruc":27020,"Ġcrate":27021,"Ġunidentified":27022,"Ġacclaimed":27023,"ĠManga":27024,"ĠFrances":27025,"ĠNepal":27026,"ĠGerald":27027,"ĠKuwait":27028,"Ġslain":27029,"ĠHeb":27030,"ĠGoku":27031,"ã쮿":27032,"286":27033,"Mrs":27034,"ĠCody":27035,"ĠSanctuary":27036,"016":27037,"Ġdismant":27038,"Ġdataset":27039,"ĠHond":27040,"buck":27041,"ĠPatterson":27042,"Ġpalette":27043,"ĠGD":27044,"icol":27045,"ĠLodge":27046,"Ġplanetary":27047,"akin":27048,"ĠRegistered":27049,"abwe":27050,"ĠPetersburg":27051,"Ġhailed":27052,"ĠPiece":27053,"Sche":27054,"ĠDOJ":27055,"Ġenumer":27056,"181":27057,"ĠObserver":27058,"ĠBold":27059,"founded":27060,"commerce":27061,"Ġexploits":27062,"ĠFinding":27063,"URN":27064,"ĠSne":27065,"ĠAcid":27066,"ayette":27067,"ĠValues":27068,"Ġdrastic":27069,"Ġarchitectural":27070,"Ġ\".":27071,"×ķ":27072,"umped":27073,"Ġwrapping":27074,"Ġwidow":27075,"ĠSlayer":27076,"lace":27077,"once":27078,"Germany":27079,"avoid":27080,"Ġtemples":27081,"PAR":27082,"ô":27083,"ĠLucifer":27084,"ĠFlickr":27085,"lov":27086,"forces":27087,"Ġscouting":27088,"Ġlouder":27089,"tesy":27090,"Ġbeforehand":27091,"Äĵ":27092,"ĠNeon":27093,"ĠWol":27094,"ĠTypically":27095,"ĠPolitico":27096,"-+-+":27097,"Ġbuilder":27098,"Ġderive":27099,"Kill":27100,"Ġpoker":27101,"Ġambiguous":27102,"Ġlifts":27103,"Ġcyt":27104,"Ġribs":27105,"oodle":27106,"ĠSounds":27107,"hair":27108,"ĠSyndrome":27109,"tf":27110,"Ġproportional":27111,"uid":27112,"Ġpertaining":27113,"ĠKindle":27114,"ĠNegro":27115,"Ġreiterated":27116,"ĠTonight":27117,"oths":27118,"ĠCornell":27119,"Ġowing":27120,"Ġ208":27121,"elfare":27122,"ocating":27123,"ĠBirds":27124,"Subscribe":27125,"Ġessays":27126,"Ġburdens":27127,"Ġillustrations":27128,"arious":27129,"ERAL":27130,"ĠCalcul":27131,"Ġxen":27132,"ĠLinkedIn":27133,"ĠJung":27134,"Ġredesign":27135,"Connor":27136,"296":27137,"Ġreversal":27138,"ĠAdelaide":27139,"ĠLL":27140,"Ġsinking":27141,"Ġgum":27142,"USH":27143,"capt":27144,"ĠGrimm":27145,"Ġfootsteps":27146,"ĠCBD":27147,"ispers":27148,"Ġprose":27149,"Wednesday":27150,"ĠMovies":27151,"edin":27152,"Ġoverturned":27153,"Ġcontentious":27154,"USB":27155,"~~~~~~~~~~~~~~~~":27156,"ĠCopper":27157,"Ġpointless":27158,"NV":27159,"values":27160,"olphin":27161,"dain":27162,"Ġdeposited":27163,"ĠGW":27164,"Ġpreceded":27165,"ĠCla":27166,"ĠGolem":27167,"ĠNim":27168,"Ġβ":27169,"ĠEngineers":27170,"middle":27171,"Ġflatt":27172,"operative":27173,"Ġcouncils":27174,"imbabwe":27175,"elin":27176,"Ġstressful":27177,"ĠLD":27178,"Ġresh":27179,"lake":27180,"Ġwheelchair":27181,"ĠAlternative":27182,"Ġoptimize":27183,"operation":27184,"Ġpeek":27185,"Ġoneself":27186,"igil":27187,"Ġtransitions":27188,"opathy":27189,"blank":27190,"Ġ169":27191,"171":27192,"________________________________________________________________":27193,"Ġlaundering":27194,"Enc":27195,"ĠDEC":27196,"Ġworkouts":27197,"Ġspikes":27198,"Ġdinosaurs":27199,"Ġdiscriminatory":27200,"Pool":27201,"Rather":27202,"385":27203,"RNA":27204,"testers":27205,"eto":27206,"ĠIdentity":27207,"Ġvein":27208,"ĠBurton":27209,"Ġarcade":27210,"420":27211,"Ultimately":27212,"ĠSadly":27213,"ð":27214,"pill":27215,"Ġcubic":27216,"ĠSpectrum":27217,"these":27218,"states":27219,"Ġunofficial":27220,"hawks":27221,"ĠEVERY":27222,"Ġrainbow":27223,"Ġincarceration":27224,"anding":27225,"Ġsyll":27226,"ĠEverton":27227,"Ġ179":27228,"ĠSerbia":27229,"Ġ189":27230,"meter":27231,"ĠMickey":27232,"Ġantiqu":27233,"Ġfactual":27234,"neck":27235,"ĠNare":27236,"norm":27237,"must":27238,"Ġhighways":27239,"Ġglam":27240,"Ġdividing":27241,"ĠSquadron":27242,"ĠMartha":27243,"Ġbirths":27244,"Cover":27245,"////////////////":27246,"ĠWong":27247,"Phot":27248,"ĠALS":27249,"rio":27250,"ĠNonetheless":27251,"ĠLemon":27252,"Ġ206":27253,"ĠEE":27254,"Ġderivative":27255,"ĠWWII":27256,"vote":27257,"Ġtherein":27258,"Ġseparating":27259,"446":27260,"sync":27261,"ĠStreets":27262,"Ġratt":27263,"Ġmunicipality":27264,"ĠShortly":27265,"Ġmonk":27266,"),\"":27267,"Ġscrub":27268,"Ġoperatives":27269,"Neither":27270,"Place":27271,"ĠLimit":27272,"Female":27273,"ĠActor":27274,"Character":27275,"Ġconstituted":27276,"357":27277,"Ġprotested":27278,"ĠStraw":27279,"ĠHeight":27280,"ilda":27281,"ĠTyph":27282,"Ġfloods":27283,"Ġcosmetic":27284,"WAY":27285,"perture":27286,"upon":27287,"tons":27288,"essing":27289,"ĠPocket":27290,"Ġrooft":27291,"ĠCaucas":27292,"Ġantidepress":27293,"Ġincompatible":27294,"ECD":27295,"Ġopera":27296,"ĠContest":27297,"Ġgenerators":27298,"lime":27299,"Defense":27300,"1987":27301,"forum":27302,"Ġsavage":27303,"ĠHungarian":27304,"nz":27305,"Ġmetallic":27306,"Ġexpelled":27307,"Ġresidency":27308,"Ġdresses":27309,"666":27310,"ĠClement":27311,"fires":27312,"Category":27313,"Ġgeek":27314,"alis":27315,"Ġcemetery":27316,"educated":27317,"Ġcrawl":27318,"ĠUnable":27319,"ĠTyson":27320,"akis":27321,"Ġpardon":27322,"ĠWra":27323,"Ġstrengthened":27324,"ĠFors":27325,"335":27326,"ĠHC":27327,"ĠMond":27328,"Ġvisuals":27329,"ĠBeatles":27330,"ettlement":27331,"Ġï":27332,"gro":27333,"Ġbash":27334,"Ġpoorest":27335,"Ġexcel":27336,"Ġaspirations":27337,"ĠMunicip":27338,"ensible":27339,"Ġceremonies":27340,"Ġintimidation":27341,"ĠCONTR":27342,"beck":27343,"ĠKap":27344,"asu":27345,"Ġtrademarks":27346,"ĠSew":27347,"ĠCompetition":27348,"network":27349,"ĠArri":27350,"ĠTet":27351,"Roaming":27352,"WC":27353,"Dat":27354,"Ġsob":27355,"Ġpairing":27356,"Ġoverdose":27357,"SAY":27358,"aber":27359,"Ġrevolt":27360,"ĠFah":27361,"acting":27362,"eq":27363,"estation":27364,"Fight":27365,"ĠMarks":27366,"273":27367,"Ġ178":27368,"Raw":27369,"ãģĭ":27370,"349":27371,"blocks":27372,"Ġverge":27373,"estine":27374,"ĠPodesta":27375,"Ġinvasive":27376,"Ġprofoundly":27377,"ĠAo":27378,"each":27379,"Ġlest":27380,"interpret":27381,"Ġshrinking":27382,"Ġerrone":27383,"Ġchees":27384,"lys":27385,"ĠIvy":27386,"ĠDirectory":27387,"Ġhinted":27388,"VICE":27389,"Ġcontacting":27390,"ĠGent":27391,"hei":27392,"Ġlabeling":27393,"Ġmercury":27394,"ĠLite":27395,"Ġexpires":27396,"Ġdestabil":27397,"ritis":27398,"cu":27399,"Ġfeathers":27400,"Ġsteer":27401,"Ġprogrammed":27402,"ĠVader":27403,"Going":27404,"ĠElim":27405,"Ġyo":27406,"ĠMiche":27407,"Ġ203":27408,"Ġsleeves":27409,"Ġbully":27410,"ĠHumans":27411,"368":27412,"Ġcompress":27413,"ĠBanner":27414,"ARS":27415,"Ġawhile":27416,"Ġcalib":27417,"Ġsponsorship":27418,"ĠDifficulty":27419,"ĠPapers":27420,"Ġidentifier":27421,"}.":27422,"Ġyog":27423,"ĠShia":27424,"Ġcleanup":27425,"Ġvibe":27426,"introdu":27427,"imming":27428,"Australia":27429,"Ġoutlines":27430,"ĠYoutube":27431,"train":27432,"ĠMakes":27433,"Ġdeported":27434,"Ġcentr":27435,"ĠDug":27436,"ĠBoulder":27437,"ĠBuffy":27438,"Ġinjunction":27439,"ĠHarley":27440,"ĠGroups":27441,"ĠDumbledore":27442,"ĠClara":27443,"Ġ\"-":27444,"Ġsacrificed":27445,"eph":27446,"Shadow":27447,"ibling":27448,"Ġfreelance":27449,"Ġevidently":27450,"phal":27451,"Ġretains":27452,"Mir":27453,"Ġfinite":27454,"dar":27455,"ĠCous":27456,"Ġrepaired":27457,"Ġperiodic":27458,"Ġchampionships":27459,"Ġasteroid":27460,"blind":27461,"Ġexpressly":27462,"ĠAstros":27463,"Ġscaled":27464,"Ġgeographical":27465,"ĠRapids":27466,"Enjoy":27467,"Ġelastic":27468,"ĠMohamed":27469,"Market":27470,"begin":27471,"Ġdiscovers":27472,"Ġtelecommunications":27473,"Ġscanner":27474,"Ġenlarge":27475,"Ġsharks":27476,"Ġpsychedel":27477,"ĠRouge":27478,"Ġsnapshot":27479,"isine":27480,"XP":27481,"Ġpesticides":27482,"ĠLSD":27483,"ĠDistribution":27484,"really":27485,"Ġdegradation":27486,"Ġdisguise":27487,"Ġbiom":27488,"ĠEXT":27489,"Ġequations":27490,"Ġhazards":27491,"ĠCompared":27492,")*":27493,"Ġvirtues":27494,"Ġelders":27495,"Ġenhancing":27496,"ĠAcross":27497,"eros":27498,"angling":27499,"Ġcombust":27500,"ucci":27501,"Ġconcussion":27502,"Ġcontraception":27503,"ĠKang":27504,"Ġexpresses":27505,"Ġaux":27506,"ĠPione":27507,"Ġexhibits":27508,"Debug":27509,"OTAL":27510,"ĠAlready":27511,"ĠWheeler":27512,"Ġexpands":27513,"?:":27514,"Ġreconciliation":27515,"Ġpirates":27516,"Ġpurse":27517,"Ġdiscourage":27518,"Ġspectacle":27519,"Rank":27520,"Ġwraps":27521,"ĠThought":27522,"Ġimpending":27523,"Opp":27524,"ĠAnglo":27525,"ĠEUR":27526,"Ġscrewed":27527,"retched":27528,"Ġencouragement":27529,"models":27530,"Ġconfuse":27531,"mmm":27532,"ĠVitamin":27533,"âĸijâĸij":27534,"Cru":27535,"Ġknights":27536,"Ġdiscard":27537,"Ġbishops":27538,"ĠWear":27539,"ĠGarrett":27540,"kan":27541,"ãĥŁ":27542,"Ġmasculine":27543,"capital":27544,"ĠAus":27545,"Ġfatally":27546,"thanks":27547,"ĠAU":27548,"ĠGut":27549,"1200":27550,"Ġ00000000":27551,"Ġsurrog":27552,"ĠBIOS":27553,"raits":27554,"ĠWatts":27555,"Ġresurrection":27556,"ĠElectoral":27557,"ĠTips":27558,"4000":27559,"Ġnutrient":27560,"Ġdepicting":27561,"Ġsprink":27562,"Ġmuff":27563,"ĠLIM":27564,"ĠSample":27565,"psc":27566,"ibi":27567,"generated":27568,"Ġspecimens":27569,"Ġdissatisf":27570,"Ġtailored":27571,"Ġholdings":27572,"ĠMonthly":27573,"ĠEat":27574,"poons":27575,"Ġnec":27576,"ĠCage":27577,"ĠLotus":27578,"ĠLantern":27579,"Ġfrontier":27580,"Ġpensions":27581,"Ġjoked":27582,"ĠHardy":27583,"=-=-=-=-":27584,"rade":27585,"UID":27586,"Ġrails":27587,"Ġemit":27588,"Ġslate":27589,"Ġsmug":27590,"Ġspit":27591,"ĠCalls":27592,"ĠJacobs":27593,"feat":27594,"ĠUE":27595,"Ġrestruct":27596,"Ġregeneration":27597,"Ġenergies":27598,"ĠConnor":27599,"OHN":27600,"ĠCheese":27601,"Ġger":27602,"Ġresurrect":27603,"management":27604,"NW":27605,"Ġpresently":27606,"ĠBruins":27607,"Member":27608,"ĠMang":27609,"idan":27610,"Ġboosting":27611,"wyn":27612,"+.":27613,"requisite":27614,"ĠNYPD":27615,"ĠMegan":27616,"ĠConditions":27617,"Ġpics":27618,"nesium":27619,"ĠRash":27620,"Ġ174":27621,"ĠDucks":27622,"Ġembro":27623,"zu":27624,"onian":27625,"religious":27626,"Ġcraz":27627,"ĠACA":27628,"ĠZucker":27629,"EMA":27630,"ĠPros":27631,"Weapon":27632,"ĠKnox":27633,"ĠArduino":27634,"Ġstove":27635,"Ġheavens":27636,"ĠPurchase":27637,"Ġherd":27638,"Ġfundraiser":27639,"Digital":27640,"5000":27641,"Ġproponents":27642,"/âĢĭ":27643,"Ġjelly":27644,"ĠVisa":27645,"Ġmonks":27646,"Ġadvancement":27647,"ĠWer":27648,"Ġ187":27649,"eus":27650,"ertility":27651,"Ġfetal":27652,"Ġ1936":27653,"Lo":27654,"Ġoutfits":27655,"Ġstaircase":27656,"bomb":27657,"Ġcustomized":27658,"clair":27659,"Tree":27660,"Ġmapped":27661,"ĠConsidering":27662,"ĠTorres":27663,"Ġmethyl":27664,"Ġapproximate":27665,"Ġdoom":27666,"ĠHansen":27667,"Ġcrossover":27668,"Ġstandalone":27669,"ä¼":27670,"Ġinvites":27671,"Ġgraveyard":27672,"Ġhp":27673,"DonaldTrump":27674,"Ġescort":27675,"Gar":27676,"Ġpredecessors":27677,"Ġhay":27678,"Ġenzyme":27679,"ĠStraight":27680,"visors":27681,"Ing":27682,"aneously":27683,"ĠApplied":27684,"Ġfec":27685,"ĠDurant":27686,"Ġoutspoken":27687,"orb":27688,"Ġzeal":27689,"Ġdisgrace":27690,"').":27691,"ĠCheng":27692,"289":27693,"ĠRena":27694,"ĠSuicide":27695,"294":27696,"Ġoutraged":27697,"ĠNewman":27698,"ĠNvidia":27699,"ĠAber":27700,"ĠBers":27701,"Ġrecreation":27702,"Window":27703,"ĠDP":27704,"xe":27705,"Ġpedoph":27706,"Ġfallout":27707,"amboo":27708,"Ġpresentations":27709,"ĠApps":27710,"Ġhtml":27711,"345":27712,"ĠXXX":27713,"Ġrubbing":27714,"ĠLeather":27715,"Ġhumidity":27716,"seys":27717,"established":27718,"ĠUnits":27719,"646":27720,"Ġrespectable":27721,"Auto":27722,"Ġthriving":27723,"ĠInnovation":27724,"angs":27725,"Extra":27726,"regulation":27727,"298":27728,"pick":27729,"Examples":27730,"ĠCJ":27731,"Attack":27732,"Ġdracon":27733,"LT":27734,"Ġsticker":27735,"rers":27736,"Ġsunny":27737,"Iss":27738,"regulated":27739,"dim":27740,"ĠAbstract":27741,"Ġhusbands":27742,"Office":27743,"omination":27744,"itars":27745,"ANGE":27746,"ascal":27747,"ĠKris":27748,"ĠInfantry":27749,"Ġmalf":27750,"ĠAthe":27751,"ĠRally":27752,"balanced":27753,"........................":27754,"OUP":27755,"Ġmolecule":27756,"metics":27757,"ĠSplit":27758,"ĠInstructions":27759,"ĠNights":27760,"cards":27761,"Ġtug":27762,"Ġcone":27763,"åŃ":27764,"Ġtx":27765,"ĠDiscussion":27766,"Ġcatastrophe":27767,"ppe":27768,"gio":27769,"Ġcommunism":27770,"Ġhalted":27771,"ĠGuant":27772,"clean":27773,"ĠSched":27774,"ĠKanye":27775,"Ġwander":27776,"ĠSeriously":27777,"Ġ188":27778,"ennial":27779,"follow":27780,"productive":27781,"ĠFlow":27782,"ĠSail":27783,"Ġcraw":27784,"Ġsimulations":27785,"oru":27786,"angles":27787,"ĠNolan":27788,"Ġmenstru":27789,"470":27790,"Ġ207":27791,"aja":27792,"Ġcasually":27793,"boarding":27794,"Ġ222":27795,"ovy":27796,"ĠNumbers":27797,"umat":27798,"OE":27799,"287":27800,"ĠClemson":27801,"Ġcerts":27802,"Ġslid":27803,"ĠTribe":27804,"Ġtoast":27805,"Ġfortunes":27806,"Ġfals":27807,"ĠCommittees":27808,"Ġgp":27809,"Ġfiery":27810,"ĠNets":27811,"ĠAnime":27812,"Package":27813,"ĠCompare":27814,"laughter":27815,"infect":27816,"Ġatrocities":27817,"Ġjustices":27818,"Ġinsults":27819,"ĠVernon":27820,"Ġshaken":27821,"Ġpersona":27822,"estamp":27823,"367":27824,"brain":27825,"Ġexperimenting":27826,"Ken":27827,"ĠElectronics":27828,"Ġ161":27829,"domain":27830,"Ġgraphical":27831,"bishop":27832,"Ġwhopping":27833,"ĠEvangel":27834,"Ġadvertisers":27835,"ĠSpear":27836,"Ġbids":27837,"Ġdestroys":27838,"utz":27839,"Ġundersc":27840,"ĠADD":27841,"Ġants":27842,"ĠCum":27843,"ipples":27844,"ĠFill":27845,"Ġglanced":27846,"Ġindicted":27847,"ĠEff":27848,"Ġmiscon":27849,"ĠDesktop":27850,"Ġabide":27851,"ãĥĢ":27852,"ĠIo":27853,"ĠCoul":27854,"Ġcapsule":27855,"ĠChrys":27856,"MON":27857,"Ġundes":27858,"ĠIRA":27859,"Ġcitation":27860,"Ġdictate":27861,"ĠNetworks":27862,"ĠConflict":27863,"ĠStuff":27864,"xa":27865,"isec":27866,"ĠChemistry":27867,"Ġquarterly":27868,"Williams":27869,"anan":27870,"Opt":27871,"ĠAlexandria":27872,"outheastern":27873,"ĠSpringfield":27874,"ĠBlacks":27875,"Ġgeography":27876,"242":27877,"Ġutmost":27878,"ĠExxon":27879,"abouts":27880,"EVA":27881,"ĠEnable":27882,"ĠBarr":27883,"Ġdisagreed":27884,"ĠCyprus":27885,"Ġdementia":27886,"Ġlabs":27887,"Ġubiquitous":27888,"ĠLOVE":27889,"Ġconsolidated":27890,"sr":27891,"Ġcreamy":27892,"ĠTimber":27893,"Regardless":27894,"ĠCertificate":27895,"Ġ\"...":27896,"ogenous":27897,"Captain":27898,"Ġinsulting":27899,"ĠSoros":27900,"ĠInstr":27901,"ĠBulgaria":27902,"better":27903,"Ġsucking":27904,"ĠDavidson":27905,"atz":27906,"Ġcollateral":27907,"gif":27908,"Ġplagued":27909,"ĠCancel":27910,"ĠGardner":27911,"RB":27912,"Ġsixteen":27913,"Remove":27914,"uristic":27915,"cook":27916,"Rod":27917,"Ġcomprising":27918,"fle":27919,")âĢĶ":27920,"ĠViking":27921,"growth":27922,"agonal":27923,"Ġsrf":27924,"afety":27925,"mot":27926,"Nearly":27927,"stown":27928,"ĠFactor":27929,"Ġautomobile":27930,"Ġprocedural":27931,"mask":27932,"ampires":27933,"Ġdisappears":27934,"jab":27935,"315":27936,"Ġ1951":27937,"needed":27938,"Ġdaring":27939,"leader":27940,"Ġpodium":27941,"Ġunhealthy":27942,"Ġmund":27943,"Ġpyramid":27944,"ocre":27945,"Ġkissed":27946,"Ġdreamed":27947,"ĠFantastic":27948,"ĠGly":27949,"åĬ":27950,"Ġgreatness":27951,"Ġspices":27952,"Ġmetropolitan":27953,"Ġcompuls":27954,"iets":27955,"1016":27956,"ĠSham":27957,"ĠPyr":27958,"flies":27959,"ĠMidnight":27960,"Ġswallowed":27961,"Ġgenres":27962,"ĠLucky":27963,"ĠRewards":27964,"Ġdispatch":27965,"ĠIPA":27966,"ĠApply":27967,"Ġaven":27968,"alities":27969,"312":27970,"things":27971,"Ġ().":27972,"Ġmates":27973,"ĠSz":27974,"ĠCOP":27975,"olate":27976,"OFF":27977,"Ġrecharge":27978,"caps":27979,"ĠYorker":27980,"icone":27981,"Ġgalaxies":27982,"ileaks":27983,"Dave":27984,"ĠPuzz":27985,"ĠCeltic":27986,"ĠAFC":27987,"276":27988,"ĠSons":27989,"Ġaffirmative":27990,"Hor":27991,"Ġtutorials":27992,"ĠCITY":27993,"ĠRosa":27994,"ĠExtension":27995,"Series":27996,"Ġfats":27997,"Ġrab":27998,"lis":27999,"Ġunic":28000,"Ġeve":28001,"ĠSpin":28002,"Ġadulthood":28003,"typ":28004,"Ġsectarian":28005,"Ġcheckout":28006,"ĠCycl":28007,"Single":28008,"Ġmartyr":28009,"Ġchilling":28010,"888":28011,"oufl":28012,"Ġ];":28013,"Ġcongestion":28014,"mk":28015,"ĠWhereas":28016,"Ġ1938":28017,"urrencies":28018,"erion":28019,"Ġboast":28020,"ĠPatients":28021,"Ġchap":28022,"ĠBD":28023,"realDonaldTrump":28024,"Ġexamines":28025,"hov":28026,"Ġstartling":28027,"ĠBabylon":28028,"wid":28029,"omew":28030,"brance":28031,"ĠOdyssey":28032,"wig":28033,"Ġtorch":28034,"ĠVox":28035,"ĠMoz":28036,"ĠTroll":28037,"ĠAns":28038,"Similarly":28039,"ĠFul":28040,"006":28041,"Unless":28042,"ĠAlone":28043,"stead":28044,"ĠPublisher":28045,"rights":28046,"tu":28047,"ĠDoesn":28048,"Ġprofessionally":28049,"Ġclo":28050,"icz":28051,"Ġsteals":28052,"Ġá":28053,"1986":28054,"Ġsturdy":28055,"ĠJohann":28056,"Ġmedals":28057,"Ġfilings":28058,"ĠFraser":28059,"done":28060,"Ġmultinational":28061,"Ġfeder":28062,"Ġworthless":28063,"Ġpest":28064,"Yesterday":28065,"ankind":28066,"Ġgays":28067,"Ġborne":28068,"ĠPOS":28069,"Picture":28070,"Ġpercentages":28071,"251":28072,"rame":28073,"Ġpotions":28074,"AMD":28075,"ĠLebanese":28076,"Ġrang":28077,"ĠLSU":28078,"ongs":28079,"Ġpeninsula":28080,"ĠClause":28081,"ALK":28082,"oha":28083,"ĠMacBook":28084,"Ġunanimous":28085,"Ġlenders":28086,"Ġhangs":28087,"Ġfranchises":28088,"orers":28089,"ĠUpdates":28090,"Ġisolate":28091,"andro":28092,"Soon":28093,"Ġdisruptive":28094,"ĠSurve":28095,"Ġstitches":28096,"ĠScorp":28097,"ĠDominion":28098,"Ġsupplying":28099,"Arg":28100,"Ġturret":28101,"ĠLuk":28102,"Ġbrackets":28103,"*)":28104,"ĠRevolutionary":28105,"ĠHonest":28106,"Ġnoticing":28107,"ĠShannon":28108,"Ġafforded":28109,"Ġtha":28110,"ĠJanet":28111,"!--":28112,"ĠNarendra":28113,"ĠPlot":28114,"Hol":28115,"sever":28116,"eenth":28117,"Ġobstruction":28118,"Ġ1024":28119,"staff":28120,"jas":28121,"orget":28122,"scenes":28123,"laughs":28124,"ĠFargo":28125,"crime":28126,"Ġorchestr":28127,"Ġdelet":28128,"iliary":28129,"rieved":28130,"Ġmilitar":28131,"ĠGreene":28132,"âĹı":28133,"ãģ¦":28134,"ĠGuards":28135,"Ġunleashed":28136,"ĠWeber":28137,"Ġadjustable":28138,"Ġcaliber":28139,"Ġmotivations":28140,"ĠÃł":28141,"mAh":28142,"ĠLanka":28143,"handle":28144,"Ġpent":28145,"ĠRav":28146,"ĠAngular":28147,"ĠKau":28148,"umbing":28149,"Ġphilanthrop":28150,"Ġdehyd":28151,"Ġtoxicity":28152,"eer":28153,"ĠYORK":28154,"witz":28155,"å¼":28156,"ĠIE":28157,"community":28158,"ĠAH":28159,"Ġretali":28160,"Ġmassively":28161,"ĠDaniels":28162,"ĠDEL":28163,"Ġcarcin":28164,"Url":28165,"Ġrouting":28166,"ĠNPCs":28167,"ĠRAF":28168,"ryce":28169,"Ġwaived":28170,"ĠGuatem":28171,"Everybody":28172,"Ġcovenant":28173,"Ġ173":28174,"Ġrelaxing":28175,"Ġquart":28176,"almost":28177,"Ġguarded":28178,"ĠSoldiers":28179,"ĠPLAY":28180,"Ġoutgoing":28181,"LAND":28182,"Ġrewrite":28183,"ĠMOV":28184,"ĠImper":28185,"ĠSolution":28186,"Ġphenomenal":28187,"Ġlongevity":28188,"Ġimpat":28189,"ĠNissan":28190,"irie":28191,"Ġodor":28192,"ĠZar":28193,"oks":28194,"Ġmilitias":28195,"ĠSPEC":28196,"Ġtolerated":28197,"arser":28198,"ĠBradford":28199,"+,":28200,"Ġsurreal":28201,"sf":28202,"Canadian":28203,"Ġresemblance":28204,"Ġcarbohydrate":28205,"VIEW":28206,"Ġaccessory":28207,"meal":28208,"largest":28209,"iegel":28210,"Someone":28211,"Ġtoughest":28212,"oso":28213,"Ġfunnel":28214,"Ġcondemnation":28215,"luent":28216,"Ġwired":28217,"ĠSunset":28218,"Jesus":28219,"ĠPST":28220,"ĠPages":28221,"ĠTycoon":28222,"ĠPF":28223,"Ġselections":28224,"Ġà¤":28225,"partisan":28226,"Ġhighs":28227,"ĠRune":28228,"Ġcrafts":28229,"lead":28230,"ĠParents":28231,"Ġreclaim":28232,"eker":28233,"ĠAllied":28234,"aeper":28235,"Ġlooming":28236,"Ġbeneficiaries":28237,"ĠHull":28238,"Students":28239,"Jewish":28240,"dj":28241,"Ġpact":28242,"template":28243,"ĠOfficials":28244,"ĠBaylor":28245,"Ġhemp":28246,"Ġyouths":28247,"ĠLevels":28248,"ĠXiao":28249,"ĠChes":28250,"Ġendeavor":28251,"ĠRemoved":28252,"Ġhippocamp":28253,"Hell":28254,"ãĤĬ":28255,"805":28256,"Ġdinosaur":28257,"ĠWrath":28258,"ĠIndonesian":28259,"Ġcalculator":28260,"ĠDictionary":28261,"Ġ420":28262,"ĠMAG":28263,"(_":28264,"!,":28265,"tarians":28266,"Ġrestricting":28267,"racuse":28268,"Ġweekday":28269,"OUNT":28270,"Ġshrugged":28271,"leground":28272,"Ġbald":28273,"ĠDoctors":28274,"Ġtouted":28275,"ĠMaxwell":28276,"Ġ214":28277,"Ġdiplomat":28278,"Ġrepression":28279,"Ġconstituency":28280,"vice":28281,"ranked":28282,"ĠNapoleon":28283,"gang":28284,"ĠForever":28285,"tun":28286,"Ġbulb":28287,"ĠPDT":28288,"ĠCisco":28289,"VEN":28290,"Ġresumed":28291,"Steven":28292,"ĠManitoba":28293,"Ġfabulous":28294,"ĠAgents":28295,"1984":28296,"Ġamusing":28297,"ĠMysteries":28298,"Ġorthodox":28299,"floor":28300,"Ġquestionnaire":28301,"Ġpenetrate":28302,"Ġfilmmakers":28303,"ĠUnc":28304,"Ġstamped":28305,"Ġthirteen":28306,"Ġoutfield":28307,"Ġforwarded":28308,"Ġappra":28309,"Ġaided":28310,"try":28311,"Ġunfocused":28312,"ĠLiz":28313,"ĠWendy":28314,"ĠScene":28315,"Charg":28316,"Ġrejects":28317,"Ġleftist":28318,"ĠProvidence":28319,"ĠBrid":28320,"regn":28321,"Ġprophecy":28322,"ĠLIVE":28323,"499":28324,"Ġforge":28325,"ĠFML":28326,"Ġintrinsic":28327,"ĠFrog":28328,"Ġwont":28329,"ĠHolt":28330,"Ġfamed":28331,"CLUS":28332,"aepernick":28333,"ĠHate":28334,"ĠCay":28335,"Ġregistering":28336,"ortality":28337,"ropy":28338,"ocalyptic":28339,"aan":28340,"nav":28341,"Ġfascist":28342,"IFIED":28343,"Ġimplicated":28344,"ĠResort":28345,"ĠChandler":28346,"ĠBrick":28347,"Pin":28348,"ysc":28349,"Usage":28350,"ĠHelm":28351,"usra":28352,"âĺħâĺħ":28353,"ĠAbbas":28354,"Ġunanimously":28355,"Ġkeeper":28356,"Ġaddicted":28357,"???":28358,"Ġhelmets":28359,"Ġantioxid":28360,"apsed":28361,"808":28362,"giene":28363,"Ġwaits":28364,"Ġminion":28365,"raved":28366,"ĠPorsche":28367,"Ġdreaming":28368,"Ġ171":28369,"ĠCain":28370,"Ġunfor":28371,"asso":28372,"ĠConfiguration":28373,"kun":28374,"hardt":28375,"Ġnested":28376,"ĠLDS":28377,"LES":28378,"Ġtying":28379,"enos":28380,"Ġcue":28381,"ĠMarqu":28382,"skirts":28383,"Ġclicked":28384,"Ġexpiration":28385,"ĠAccordingly":28386,"ĠWC":28387,"Ġblessings":28388,"Ġaddictive":28389,"ĠNarr":28390,"yx":28391,"ĠJaguars":28392,"Ġrents":28393,"ĠSiber":28394,"Ġtipped":28395,"ousse":28396,"ĠFitzgerald":28397,"Ġhierarch":28398,"outine":28399,"Ġwavelength":28400,">.":28401,"chid":28402,"ĠProcessing":28403,"/+":28404,"ranking":28405,"Easy":28406,"ĠConstruct":28407,"Ġtet":28408,"insured":28409,"HUD":28410,"Ġquoting":28411,"Ġcommunicated":28412,"inx":28413,"Ġinmate":28414,"Ġerected":28415,"ĠAbsolutely":28416,"ĠSurely":28417,"Ġunim":28418,"ĠThrone":28419,"heid":28420,"Ġclaws":28421,"Ġsuperstar":28422,"ĠLenn":28423,"ĠWhis":28424,"Uk":28425,"abol":28426,"Ġsket":28427,"ĠNiet":28428,"Ġperks":28429,"Ġaffinity":28430,"Ġopenings":28431,"phasis":28432,"Ġdiscriminate":28433,"Tip":28434,"vc":28435,"Ġgrinding":28436,"ĠJenny":28437,"Ġasthma":28438,"holes":28439,"ĠHomer":28440,"Ġregisters":28441,"ĠGlad":28442,"Ġcreations":28443,"Ġlithium":28444,"Ġapplause":28445,"until":28446,"Justice":28447,"ĠTurks":28448,"Ġscandals":28449,"Ġbake":28450,"tank":28451,"Mech":28452,"ĠMeans":28453,"ĠMaid":28454,"Republicans":28455,"isal":28456,"windows":28457,"ĠSantos":28458,"Ġvegetation":28459,"338":28460,"tri":28461,"Ġflux":28462,"insert":28463,"Ġclarified":28464,"Ġmortg":28465,"ĠChim":28466,"ĠTort":28467,"Ġdisclaim":28468,"metal":28469,"ĠAside":28470,"Ġinduction":28471,"Ġinfl":28472,"Ġatheists":28473,"amph":28474,"Ġether":28475,"ĠVital":28476,"ĠBuilt":28477,"Mind":28478,"Ġweaponry":28479,"SET":28480,"Ġ186":28481,"admin":28482,"gam":28483,"contract":28484,"afa":28485,"Ġderivatives":28486,"Ġsnacks":28487,"Ġchurn":28488,"Econom":28489,"Ġcapped":28490,"ĠUnderstanding":28491,"ĠHers":28492,"ĠIz":28493,"Ġduct":28494,"IENT":28495,"aughty":28496,"ĠâľĶ":28497,"ĠNP":28498,"Ġsailing":28499,"Initialized":28500,"Ġted":28501,"Ġreactors":28502,"ĠLomb":28503,"Ġchoke":28504,"ĠWorm":28505,"Ġadmiration":28506,"Ġswung":28507,"ensibly":28508,"Ġrash":28509,"ĠGoals":28510,"ĠImportant":28511,"Shot":28512,"ĠRas":28513,"Ġtrainers":28514,"ĠBun":28515,"Working":28516,"Ġharmed":28517,"ĠPandora":28518,"ĠLTE":28519,"Ġmushroom":28520,"ĠCHAR":28521,"ĠFee":28522,"ĠMoy":28523,"Born":28524,"oliberal":28525,"ĠMartial":28526,"Ġgentlemen":28527,"Ġlingering":28528,"Official":28529,"Ġgraffiti":28530,"ĠNames":28531,"Der":28532,"Ġquint":28533,"istrate":28534,"azeera":28535,"ĠNOTICE":28536,"ĠFlorence":28537,"Ġpayable":28538,"Ġdepicts":28539,"ĠSpecies":28540,"Heart":28541,"âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ":28542,"Ġenclosed":28543,"Increases":28544,"Daily":28545,"ĠLis":28546,"Ġenactment":28547,"ĠBacon":28548,"ĠSteele":28549,"demand":28550,"Ġ183":28551,"Ġmouths":28552,"Ġstranded":28553,"Ġenhancement":28554,"011":28555,"ĠWhats":28556,"Ġhealed":28557,"eny":28558,"ĠRab":28559,"Ġ340":28560,"ĠLabyrinth":28561,"roach":28562,"ĠYosh":28563,"ĠClippers":28564,"Ġconcerts":28565,"Internet":28566,"355":28567,"Ġstickers":28568,"Ġtermed":28569,"ĠAxe":28570,"Ġgrandparents":28571,"France":28572,"ĠClim":28573,"ĠUh":28574,"ulic":28575,"Ġthrill":28576,"centric":28577,"ĠOverview":28578,"ĠConduct":28579,"Ġsubstantive":28580,"Ġ182":28581,"mur":28582,"Ġstray":28583,"ĠCoff":28584,"Ġrepetitive":28585,"ĠForgotten":28586,"Ġqualification":28587,"ewitness":28588,"ĠZimbabwe":28589,"Ġsimulated":28590,"ĠJD":28591,"253":28592,"ĠWare":28593,"Ġunsc":28594,"Times":28595,"Ġsummons":28596,"Ġdisconnected":28597,"Ġ184":28598,"cius":28599,"ĠGujar":28600,"odka":28601,"Ġerase":28602,"ĠTobacco":28603,"elected":28604,"Ġuncont":28605,"ĠShepard":28606,"ĠLamp":28607,"Ġalerted":28608,"Ġoperative":28609,"arna":28610,"uint":28611,"Ġnegligence":28612,"acements":28613,"Ġsupra":28614,"Ġprevail":28615,"ĠShark":28616,"Ġbelts":28617,"ãģ«":28618,"Ġtighter":28619,"Engineers":28620,"Ġinactive":28621,"Ġexponent":28622,"ĠWillie":28623,"aples":28624,"Ġheir":28625,"ĠHits":28626,"iann":28627,"ĠSays":28628,"Ġcurrents":28629,"ĠBengal":28630,"Ġarist":28631,"Buffer":28632,"Ġbreeze":28633,"ĠWesley":28634,"Cola":28635,"Ġpronoun":28636,"Ġdeed":28637,"ĠKling":28638,"Ġoft":28639,"Ġinflict":28640,"Ġpunishing":28641,"Ġnm":28642,"iku":28643,"ODUCT":28644,"014":28645,"Ġsubsidy":28646,"ĠDEA":28647,"ĠHerbert":28648,"ĠJal":28649,"Bank":28650,"Ġdeferred":28651,"Ġshipment":28652,"Bott":28653,"Ġalle":28654,"bearing":28655,"HTML":28656,"Offline":28657,"Ġ213":28658,"Ġscrolling":28659,"Ġscanned":28660,"ĠLibyan":28661,"ĠTOP":28662,"chrom":28663,"dt":28664,"column":28665,"PsyNetMessage":28666,"Zero":28667,"Ġtorso":28668,"050":28669,"âķIJ":28670,"Ġimperson":28671,"ĠSchwartz":28672,"udic":28673,"Ġpissed":28674,"ĠSapp":28675,"257":28676,"ĠISPs":28677,"ogl":28678,"Ġsupervised":28679,"Ġadolescent":28680,"Ġattained":28681,"ĠDelivery":28682,"ĠBunny":28683,"Ġ1937":28684,"Ġminiature":28685,"Ġos":28686,"Ġ370":28687,"608":28688,"ĠMourinho":28689,"Ġinnate":28690,"Ġtempo":28691,"ĠNM":28692,"ĠFallen":28693,"009":28694,"Ġprovocative":28695,"Streamer":28696,"ĠBenedict":28697,"ĠBolshe":28698,"Ġturtle":28699,"ĠPCB":28700,"ĠEqual":28701,"Director":28702,"ĠRend":28703,"Ġfluids":28704,"Authorities":28705,"Ġcousins":28706,"requency":28707,"ĠNeighbor":28708,"sets":28709,"shared":28710,"Charles":28711,"password":28712,"Ġgears":28713,"Ġ211":28714,"ĠHardware":28715,"rika":28716,"Ġupstream":28717,"Hom":28718,"Ġdisproportionately":28719,"ivities":28720,"Ġundefined":28721,"Ġelectrons":28722,"Ġcommemor":28723,"Eventually":28724,"Ġ><":28725,"Ġirresponsible":28726,"218":28727,"ĠReleased":28728,"ĠOVER":28729,"ĠIGN":28730,"ĠBread":28731,"stellar":28732,"ĠSage":28733,"tted":28734,"damage":28735,"edition":28736,"ĠPrec":28737,"Ġlime":28738,"Ġconfinement":28739,"Ġcalorie":28740,"weapon":28741,"Ġdiffering":28742,"ĠSina":28743,"mys":28744,"amd":28745,"Ġintricate":28746,"kk":28747,"ĠPAT":28748,"ão":28749,"stones":28750,"links":28751,"Ġranch":28752,"Semitic":28753,"Ġdifferentiate":28754,"ĠSinger":28755,"occupied":28756,"Ġfortress":28757,"cmd":28758,"Ġinterception":28759,"ĠAnkara":28760,"Ġrept":28761,"ĠSolitaire":28762,"Ġremake":28763,"pred":28764,"Ġdared":28765,"autions":28766,"ĠBACK":28767,"Running":28768,"Ġdebugging":28769,"Ġgraphs":28770,"399":28771,"ĠNigel":28772,"Ġbun":28773,"Ġpillow":28774,"Ġprogressed":28775,"fashioned":28776,"Ġobedience":28777,"ERN":28778,"Ġrehears":28779,"Cell":28780,"tl":28781,"Sher":28782,"Ġherald":28783,"ĠPayment":28784,"ĠCory":28785,"ĠDept":28786,"Ġrepent":28787,"ĠWeak":28788,"uckland":28789,"Ġpleasing":28790,"Ġshortages":28791,"Ġjurors":28792,"ĠKab":28793,"qqa":28794,"Anti":28795,"Ġwow":28796,"ĠRCMP":28797,"Ġtsun":28798,"ĠSic":28799,"Ġcomprises":28800,"Ġspies":28801,"Ġprecinct":28802,"nu":28803,"Ġurges":28804,"Ġtimed":28805,"Ġstripes":28806,"ĠBoots":28807,"Ġyen":28808,"Advanced":28809,"Ġdiscrete":28810,"ĠArchangel":28811,"employment":28812,"Diff":28813,"Ġmonuments":28814,"Ġ209":28815,"worker":28816,"Ġ196":28817,"ĠIg":28818,"utterstock":28819,"TPS":28820,"Jac":28821,"Ġhomelessness":28822,"Ġcommentator":28823,"Ġracially":28824,"fing":28825,"seed":28826,"Ele":28827,"ellation":28828,"Ġethanol":28829,"Ġparish":28830,"ĠDong":28831,"ĠAwakening":28832,"Ġdeviation":28833,"ĠBearing":28834,"ĠTsuk":28835,"Ġrecess":28836,"Ġlymph":28837,"ĠCannabis":28838,"åľ":28839,"ĠNEWS":28840,"Ġdra":28841,"ĠStefan":28842,"ĠWrong":28843,"ĠSAM":28844,"Ġloosely":28845,"Ġinterpreter":28846,"ĠPlain":28847,"Government":28848,"Ġbigotry":28849,"Ġgrenades":28850,"avez":28851,"pictured":28852,"Ġmandated":28853,"ĠMonk":28854,"ĠPedro":28855,"Ġlava":28856,"274":28857,"Ġcynical":28858,"ĠScrolls":28859,"locks":28860,"Mp":28861,"Ġcongregation":28862,"ornings":28863,"phil":28864,"ĠIbid":28865,"Ġferv":28866,"Ġdisappearing":28867,"Ġarrogant":28868,"syn":28869,"ĠMaver":28870,"ĠSuit":28871,"241":28872,"Ġabbre":28873,"ackers":28874,"Pa":28875,"ĠYel":28876,"Whenever":28877,"Ġ235":28878,"ĠVine":28879,"ĠAnat":28880,"Ġextinct":28881,"LET":28882,"Ġexecutable":28883,"VERS":28884,"oxide":28885,"DNA":28886,"ĠPrel":28887,"Ġresentment":28888,"Ġcomprise":28889,"ĠAviv":28890,"Ġinterceptions":28891,"Ġprolific":28892,"INA":28893,"ĠErin":28894,"thought":28895,"219":28896,"ĠPsychiatry":28897,"unky":28898,"chemist":28899,"Ho":28900,"ĠMcCoy":28901,"Ġbricks":28902,"Los":28903,"rily":28904,"ĠUSSR":28905,"Ġrud":28906,"Ġlaud":28907,"ĠWise":28908,"ĠEmerald":28909,"Ġrevived":28910,"Ġdamned":28911,"ĠRepair":28912,"idem":28913,"ctica":28914,"Ġpatriarch":28915,"ĠNurs":28916,"meg":28917,"Ġcheapest":28918,"reements":28919,"empty":28920,"ĠCelebr":28921,"Ġdeprivation":28922,"chanted":28923,"ĠThumbnails":28924,"Energy":28925,"ĠEthan":28926,"ĠQing":28927,"Ġopposes":28928,"WIND":28929,"vik":28930,"ĠMau":28931,"ĠSUB":28932,"667":28933,"GRE":28934,"ĠVolunte":28935,"nton":28936,"Cook":28937,"åIJ":28938,"esque":28939,"Ġplummet":28940,"Ġsuing":28941,"Ġpronounce":28942,"Ġresisting":28943,"ĠFishing":28944,"ĠTrials":28945,"Ġyell":28946,"Ġ310":28947,"Ġinduct":28948,"Ġpersonalized":28949,"often":28950,"Reb":28951,"EMBER":28952,"Ġviewpoint":28953,"Ġexistential":28954,"())":28955,"remove":28956,"MENTS":28957,"lasses":28958,"Ġevapor":28959,"Ġaisle":28960,"meta":28961,"Ġreflective":28962,"Ġentitlement":28963,"Ġdevised":28964,"music":28965,"ascade":28966,"Ġwinding":28967,"offset":28968,"Ġaccessibility":28969,"kered":28970,"Better":28971,"ĠJohnston":28972,"thinking":28973,"Snow":28974,"ĠCroatia":28975,"ĠAtomic":28976,"271":28977,"348":28978,"Ġtextbook":28979,"ĠSixth":28980,"ĠاÙĦ":28981,"Ġslider":28982,"ĠBurger":28983,"bol":28984,"Sync":28985,"Ġgrandchildren":28986,"Ġcerv":28987,"+)":28988,"Ġeternity":28989,"Ġtweeting":28990,"Ġspeculative":28991,"Ġpivotal":28992,"ĠWP":28993,"ĠTER":28994,"ynamic":28995,"Ġupl":28996,"ĠCats":28997,"perhaps":28998,"Ġclassmates":28999,"Ġblatant":29000,"'-":29001,"Ġlakh":29002,"antine":29003,"ĠBorg":29004,"iom":29005,"/(":29006,"ĠAthletic":29007,"Ġsar":29008,"OTA":29009,"ĠHoffman":29010,"Nevertheless":29011,"Ġadorable":29012,"Ġspawned":29013,"Associated":29014,"ĠDomestic":29015,"Ġimplant":29016,"ĠLuxem":29017,"ĠKens":29018,"Ġpumps":29019,"ĠSAT":29020,"Attributes":29021,"509":29022,"avour":29023,"Ġcentralized":29024,"ĠTN":29025,"Ġfreshly":29026,"ĠAchieve":29027,"Ġoutsiders":29028,"herty":29029,"ĠRee":29030,"ĠTowers":29031,"ĠDart":29032,"akable":29033,"Ġmp":29034,"ĠHeavenly":29035,"Ġripe":29036,"ĠCaroline":29037,"ryan":29038,"Ġclassics":29039,"Ġretiring":29040,"Ġ228":29041,"Ġah":29042,"Ġdealings":29043,"Ġpunching":29044,"ĠChapman":29045,"Options":29046,"maxwell":29047,"volume":29048,"Ġstal":29049,"Ġexported":29050,"ĠQuite":29051,"Ġnumerical":29052,"Burn":29053,"Fact":29054,"ĠKeystone":29055,"Ġtrending":29056,"Ġaltering":29057,"ĠAfricans":29058,"478":29059,"ĠMN":29060,"ĠKnock":29061,"Ġtemptation":29062,"Ġprestige":29063,"Overview":29064,"ĠTraditional":29065,"ĠBahrain":29066,"Private":29067,"ĠHOU":29068,"Ġbarr":29069,"ĠTat":29070,"Cube":29071,"USD":29072,"ĠGrande":29073,"ĠGat":29074,"ĠFlo":29075,"Ġresides":29076,"Ġindec":29077,"volent":29078,"Ġperpetual":29079,"ubes":29080,"Ġworldview":29081,"ĠQuantum":29082,"Ġfiltered":29083,"Ġensu":29084,"orgetown":29085,"ERSON":29086,"ĠMild":29087,"379":29088,"OTT":29089,"Ã¥":29090,"Ġvitamins":29091,"Ġribbon":29092,"Ġsincerely":29093,"ĠHin":29094,"Ġeighteen":29095,"Ġcontradictory":29096,"Ġglaring":29097,"Ġexpectancy":29098,"Ġconspir":29099,"Ġmonstrous":29100,"Ġ380":29101,"reci":29102,"Ġhandic":29103,"Ġpumped":29104,"Ġindicative":29105,"Ġrapp":29106,"Ġavail":29107,"ĠLEGO":29108,"ĠMarijuana":29109,"1985":29110,"erton":29111,"Ġtwentieth":29112,"################################":29113,"ĠSwamp":29114,"Ġvaluation":29115,"Ġaffiliates":29116,"adjusted":29117,"ĠFacility":29118,"262":29119,"Ġenzymes":29120,"itudinal":29121,"Ġimprint":29122,"Site":29123,"Ġinstaller":29124,"ĠTRA":29125,"mology":29126,"linear":29127,"ĠCollective":29128,"igating":29129,"ĠToken":29130,"Ġspeculated":29131,"KN":29132,"ĠCly":29133,"ority":29134,"Ġdefer":29135,"Ġinspectors":29136,"approved":29137,"RM":29138,"ĠSuns":29139,"Ġinforming":29140,"ĠSyracuse":29141,"ibli":29142,"765":29143,"Ġglove":29144,"Ġauthorize":29145,"â̦â̦â̦â̦â̦â̦â̦â̦":29146,"ĠCruise":29147,"Ġcontracting":29148,"shell":29149,"IFE":29150,"ĠJewel":29151,"pract":29152,"ĠPhotoshop":29153,"ĠKnowing":29154,"harm":29155,"Ġattractions":29156,"adan":29157,"etus":29158,"018":29159,"wagen":29160,"Alt":29161,"Ġmultiply":29162,"Ġequilibrium":29163,":{":29164,"ĠFighters":29165,"ĠEdgar":29166,"Ġfourteen":29167,"Govern":29168,"Ġmisuse":29169,"Ġabusing":29170,"Ġancestry":29171,"ramer":29172,"644":29173,"Ġworms":29174,"Ġthicker":29175,"ĠCombine":29176,"Ġpeasants":29177,"Ġvind":29178,"Ġconquest":29179,"Ġmocked":29180,"Ġcinnamon":29181,"ĠCald":29182,"ĠGallup":29183,"Ġavoidance":29184,"Ġincarnation":29185,"ĠStrat":29186,"Ġtasted":29187,"enta":29188,"ĠNeal":29189,"pared":29190,"Ġterminology":29191,"jection":29192,"Scientists":29193,"ĠINS":29194,"ĠDee":29195,"Ġdirectories":29196,"Road":29197,"ĠShap":29198,"bright":29199,"ĠDirectors":29200,"ĠColumn":29201,"Ġbob":29202,"Ġpreferably":29203,"Ġglitch":29204,"furt":29205,"Ġeg":29206,"idis":29207,"CBC":29208,"Ġsurrendered":29209,"Ġtestament":29210,"336":29211,"uggest":29212,"ĠNil":29213,"another":29214,"Ġpathetic":29215,"ĠDonna":29216,"Ġ218":29217,"ĠAvery":29218,"Ġwhiskey":29219,"Ġfixture":29220,"ĠConquest":29221,"Ġbets":29222,"Occ":29223,"ĠLeicester":29224,"].\"":29225,"Ġ));":29226,"Ġflashes":29227,"456":29228,"Ġmasked":29229,"gebra":29230,"Ġcomputed":29231,"chel":29232,"auder":29233,"Ġdefeats":29234,"ĠLiberation":29235,"ĠOsama":29236,"ĠVive":29237,"Changes":29238,"Channel":29239,"Ġtariffs":29240,"Ġmage":29241,"ĠSax":29242,"Ġinadvertently":29243,"ĠCRE":29244,"ĠReaper":29245,"inky":29246,"grading":29247,"Ġstereotyp":29248,"Ġcurl":29249,"ĠFANT":29250,"Ġframeworks":29251,"Mom":29252,"ĠAnch":29253,"Ġflavour":29254,"carbon":29255,"Ġpermitting":29256,"letcher":29257,"ĠMozilla":29258,"ĠParking":29259,"ĠChamp":29260,"Scroll":29261,"Ġmurderer":29262,"Ġrested":29263,"Ġowes":29264,"ĠPoss":29265,"ADD":29266,"IFF":29267,"resolution":29268,"ĠMining":29269,"Ġcomparative":29270,"Dim":29271,"Ġneighbouring":29272,"ĠAST":29273,"ĠToxic":29274,"Ġbiases":29275,"Ġgunfire":29276,"urous":29277,"ĠMoment":29278,"1983":29279,"Ġpervasive":29280,"ttp":29281,"ĠNormally":29282,"rir":29283,"Sarah":29284,"ĠAlbany":29285,"Ġunsett":29286,"ĠSMS":29287,"ipers":29288,"layer":29289,"ĠWhites":29290,"uple":29291,"Ġturbo":29292,"ĠLeeds":29293,"Ġthats":29294,"ĠMiner":29295,"MER":29296,"ĠReign":29297,"Ġperme":29298,"ĠBlitz":29299,"Ġ1934":29300,"Ġintimidating":29301,"tube":29302,"Ġeccentric":29303,"abolic":29304,"boxes":29305,"ĠAssociates":29306,"votes":29307,"Ġsimulate":29308,"umbo":29309,"astery":29310,"Ġshipments":29311,"FFFF":29312,"anth":29313,"Ġseasoned":29314,"Ġexperimentation":29315,"âĸł":29316,"laws":29317,"Meet":29318,"iddles":29319,"antics":29320,"Rating":29321,"ISIS":29322,"hift":29323,"Ġfronts":29324,"buf":29325,"017":29326,"Ġunatt":29327,"ĠDil":29328,"leases":29329,"ĠGardens":29330,"777":29331,"touch":29332,"vell":29333,"458":29334,"Ġ=====":29335,"saving":29336,"Ġerosion":29337,"ĠQuin":29338,"Ġearns":29339,"Ġaccomplishment":29340,"ĠWei":29341,"Ġ<[":29342,"_____":29343,"Ġirrig":29344,"ĠTeddy":29345,"Ġconquered":29346,"ĠArmored":29347,"Ġasserts":29348,"Ġmanipulating":29349,"ré":29350,"Ġtranscripts":29351,"Gallery":29352,"Ġplotting":29353,"Neil":29354,"Ġbetrayal":29355,"loader":29356,"ĠSul":29357,"Ġdisplacement":29358,"Ġroyalty":29359,"ĠWI":29360,"heit":29361,"ĠDevices":29362,"allel":29363,"Ġmunicipalities":29364,"Ġcanal":29365,"Stars":29366,"ĠUAE":29367,"Ġ\"â̦":29368,"ĠCU":29369,"above":29370,"Ġresonance":29371,"ĠguiActiveUn":29372,"added":29373,"ĠBraves":29374,"ĠIbn":29375,"Ġhereby":29376,"ĠBRE":29377,"Ġshareholder":29378,"ĠHir":29379,"ĠJi":29380,"Ġstrangely":29381,"Ġadmired":29382,"Ġplight":29383,"Ġbachelor":29384,"ĠPole":29385,"ciplinary":29386,"Tony":29387,"ĠArmenian":29388,"Ġunman":29389,"ĠZionist":29390,"Stage":29391,"iscover":29392,"Ġautomotive":29393,"Ġsidelines":29394,"Ġslick":29395,"ĠRenaissance":29396,"ĠFUN":29397,"Images":29398,"ĠHaj":29399,"Ġping":29400,"Ġshortcut":29401,"ĠBlvd":29402,"ĠLooks":29403,"Ġbursts":29404,"Ġclamp":29405,"Ġmish":29406,"Ġsorting":29407,"Ġpatriot":29408,"Ġcorrectness":29409,"ĠScandinav":29410,"ĠCavaliers":29411,"python":29412,"azar":29413,"Ġ375":29414,"ĠJaune":29415,"409":29416,"Ġdetrimental":29417,"Ġstabbing":29418,"Ġpoisoned":29419,"Ġfountain":29420,"ocent":29421,"orst":29422,"ĠMari":29423,"Ġrains":29424,"ĠOvers":29425,"ĠInstitution":29426,"udget":29427,"AMY":29428,"tale":29429,"ĠKR":29430,"ĠPrices":29431,"Ġheadaches":29432,"Ġlandsl":29433,"ĠAura":29434,"Bonus":29435,"ĠZhao":29436,"ĠHip":29437,"Ġhops":29438,"ĠKurdistan":29439,"Ġexploiting":29440,"ryn":29441,"Ġhypocrisy":29442,"opening":29443,"Ġgunshot":29444,"Ġwed":29445,"interstitial":29446,"Interstitial":29447,"Ġamen":29448,"Breaking":29449,"Ġmarketed":29450,"Wire":29451,"ĠCrowd":29452,"Continue":29453,"ĠKnown":29454,"ĠEffective":29455,"orean":29456,"izons":29457,"Joseph":29458,"Ġescalation":29459,"username":29460,"Ġcurtain":29461,"ATES":29462,"ĠPAR":29463,"ĠMiy":29464,"Ġcounterfe":29465,"lene":29466,"Ġcontenders":29467,"daily":29468,"ĠAsc":29469,"ĠPhillip":29470,"mostly":29471,"Ġfilename":29472,"hene":29473,"Ġresembling":29474,"Ġstaging":29475,"ĠChloe":29476,"Ġwiring":29477,"Hon":29478,"ĠRenew":29479,"ottage":29480,"ĠHybrid":29481,"much":29482,"Ġstrokes":29483,"Ġpolicymakers":29484,"APTER":29485,"ĠArkham":29486,"plot":29487,"Ġassistants":29488,"Ġdeport":29489,"ĠSega":29490,"Ġinfluenza":29491,"ĠCursed":29492,"ĠKobe":29493,"Ġskinny":29494,"Provider":29495,"ĠRip":29496,"Ġincremental":29497,"products":29498,"BF":29499,"Ġdome":29500,"ĠCredits":29501,"Ġlosers":29502,"ints":29503,"ĠBetty":29504,"ĠTalent":29505,"ĠDAM":29506,"Lv":29507,"Ess":29508,"Ġdens":29509,"temp":29510,"Judge":29511,"odic":29512,"Ġ'(":29513,"URES":29514,"etsk":29515,"VO":29516,"Ġretrieved":29517,"Ġarchitects":29518,"Ùĩ":29519,"Ġethic":29520,"ĠSecondary":29521,"stocks":29522,"adia":29523,"Ġ325":29524,"ĠOpinion":29525,"Ġsimultaneous":29526,"Ġdizz":29527,"ulp":29528,"Ġsmuggling":29529,"ippery":29530,"Random":29531,"facing":29532,"ĠDas":29533,"Ġstockp":29534,"Ġdisclosures":29535,"pointer":29536,"Ġcoral":29537,"ĠSelection":29538,"ĠPike":29539,"ivalent":29540,"Ġruthless":29541,"ĠRim":29542,"Ġensuing":29543,"ĠExperiment":29544,"Ġcongressman":29545,"Ġbeliever":29546,"Ġunspecified":29547,"ĠMord":29548,"Ġknowledgeable":29549,"ĠVERY":29550,"TX":29551,"Ġstraps":29552,"Ġturf":29553,"apeshifter":29554,"Ġmarital":29555,"Ġflock":29556,"ãģĨ":29557,"263":29558,"AMES":29559,"ĠOpposition":29560,"Ġtreasures":29561,"ĠGOD":29562,"Ġmodeled":29563,"ĠWORLD":29564,"Ġ([":29565,"ĠUsage":29566,"HF":29567,"Ġ$(":29568,"ussed":29569,"Ġpioneer":29570,"Eight":29571,"parse":29572,"bread":29573,"ritz":29574,"ĠMiranda":29575,"ĠKant":29576,"++)":29577,"oren":29578,"Ġprovoked":29579,"Ġbreeds":29580,"ĠIncludes":29581,"ĠPastebin":29582,"ĠFlip":29583,"Java":29584,"Ġbrink":29585,"Ġrumored":29586,"Ġunseen":29587,"Ġgarnered":29588,"ĠDefin":29589,"alted":29590,"Ġtattoos":29591,"Ġhesitation":29592,"isitions":29593,"ĠWeaver":29594,"ĠReporting":29595,"Ġtherapies":29596,"Ġconsultants":29597,"Ġresidual":29598,"ĠMali":29599,"ĠRoma":29600,"iago":29601,"ĠResidents":29602,"ubi":29603,"Ġremedies":29604,"Ġadaptive":29605,"ĠAlive":29606,"ĠBarcl":29607,"Ġwallets":29608,"crypt":29609,"etermination":29610,"ĠPelosi":29611,"Ġslipping":29612,"otonin":29613,"Ġalliances":29614,"patrick":29615,"iris":29616,"Ġorth":29617,"ĠPerkins":29618,"ĠDeV":29619,"ĠGets":29620,"Ġdrying":29621,"gee":29622,"forest":29623,"ĠForget":29624,"orem":29625,"339":29626,"Ġvaguely":29627,"ĠDion":29628,"ĠPorn":29629,"ĠHOW":29630,"Ġpneum":29631,"Ġrubble":29632,"ĠTaste":29633,"encia":29634,"ĠGel":29635,"Ġdst":29636,"Ġ245":29637,"ĠMorocco":29638,"inflamm":29639,"ĠTwins":29640,"Ġbots":29641,"daughter":29642,"ĠBalk":29643,"Ġbrethren":29644,"Ġlogos":29645,"Ġgobl":29646,"fps":29647,"Ġsubdivision":29648,"Ġpawn":29649,"Ġsqueezed":29650,"Ġmorale":29651,"ĠDW":29652,"'\"":29653,"Ġknot":29654,"ooky":29655,"Ġdivisive":29656,"Ġboosted":29657,"chy":29658,"ãĥIJ":29659,"ifact":29660,"Ġnewcomers":29661,"ĠWrestling":29662,"Ġscouts":29663,"wolves":29664,"Rat":29665,"Ġnineteenth":29666,"ĠOsborne":29667,"Stats":29668,"Ġempowered":29669,"Ġpsychopath":29670,"ĠOEM":29671,"uggage":29672,"ĠPK":29673,"ĠMohammad":29674,"Pak":29675,"Ġanarchists":29676,"ĠExtract":29677,"esthes":29678,"ĠStockholm":29679,"loo":29680,"ĠGraph":29681,"Ġdeploying":29682,"ĠStranger":29683,"ĠMold":29684,"Ġstaffer":29685,"Ġdiscounted":29686,"uckle":29687,"please":29688,"ĠLanding":29689,"ÃŃa":29690,"Ġ193":29691,"Ġante":29692,"Ġrepetition":29693,"Ġ+/-":29694,"Ġparody":29695,"Ġlively":29696,"AAA":29697,"ĠHorus":29698,"Ġpits":29699,"inders":29700,"LOC":29701,"ĠVenice":29702,"406":29703,"ĠDiscover":29704,"âĨ":29705,"ellectual":29706,"Ġpens":29707,"Ġeyel":29708,"iguous":29709,"Impl":29710,"Ġjoking":29711,"Ġinval":29712,"ĠBelfast":29713,"Ġcreditors":29714,"ĠSkywalker":29715,"ovsky":29716,"Ġceasefire":29717,"Ġseals":29718,"isoft":29719,")).":29720,"ĠFelix":29721,"ITS":29722,"Ġtresp":29723,"ĠBlockchain":29724,"eware":29725,"ĠSchwar":29726,"enne":29727,"mounted":29728,"ĠBeacon":29729,"lesh":29730,"Ġimmensely":29731,"Ġcheering":29732,"Employ":29733,"scene":29734,"ishly":29735,"atchewan":29736,"ĠNicolas":29737,"Ġdrained":29738,"ĠExit":29739,"ĠAzerb":29740,"jun":29741,"Ġfloated":29742,"uania":29743,"Deep":29744,"Ġsuperv":29745,"Ġmystical":29746,"ĠDollar":29747,"ĠApostle":29748,"ĠREL":29749,"ĠProvided":29750,"ĠBucks":29751,"ãĥ´":29752,"cutting":29753,"Ġenhancements":29754,"ĠPenguins":29755,"ĠIsaiah":29756,"Ġjerk":29757,"ĠWyn":29758,"Ġstalled":29759,"Ġcryptocurrencies":29760,"ĠRoland":29761,"single":29762,"Ġlumin":29763,"ĠFellow":29764,"ĠCapacity":29765,"ĠKazakh":29766,"WN":29767,"Ġfinanced":29768,"389":29769,"Ġtid":29770,"Ġcollusion":29771,"ĠMyr":29772,"îĢ":29773,"Senator":29774,"Ġpediatric":29775,"Ġneatly":29776,"Ġsandwiches":29777,"ĠArchitecture":29778,"Ġtucked":29779,"Ġbalcony":29780,"Ġearthquakes":29781,"quire":29782,"Future":29783,"Ġhefty":29784,"éĹ":29785,"Ġspecializes":29786,"Ġstresses":29787,"Ġsender":29788,"Ġmisunderstanding":29789,"Ġepile":29790,"Ġprovoke":29791,"ĠColors":29792,"Ġdismay":29793,"uko":29794,"[_":29795,"586":29796,"neutral":29797,"Ġdonating":29798,"ĠRandall":29799,"Multi":29800,"Ġconveniently":29801,"ĠSung":29802,"ĠCoca":29803,"Ġtents":29804,"ĠAcceler":29805,"Ġpartnered":29806,"272":29807,"irming":29808,"ĠBAS":29809,"sometimes":29810,"Ġobjected":29811,"ubric":29812,"posed":29813,"LCS":29814,"grass":29815,"Ġattributable":29816,"VIS":29817,"Israeli":29818,"Ġrepeats":29819,"ĠRM":29820,"vag":29821,"uta":29822,"inous":29823,"Ġinert":29824,"ĠMiguel":29825,"æŃ":29826,"ĠHawaiian":29827,"Board":29828,"Ġartific":29829,"ĠAzerbai":29830,"asio":29831,"ĠRent":29832,"AIN":29833,"Ġappliances":29834,"Ġnationality":29835,"Ġasshole":29836,"ĠNeb":29837,"Ġnotch":29838,"hani":29839,"ĠBride":29840,"Availability":29841,"Ġintercepted":29842,"Ġcontinental":29843,"Ġswelling":29844,"ĠPerspect":29845,"bies":29846,".<":29847,"ithmetic":29848,"ĠLara":29849,"Ġtempting":29850,"addr":29851,"Ġoverseeing":29852,"clad":29853,"ĠDV":29854,"ĠGingrich":29855,"Ġmun":29856,"ĠAppropri":29857,"Ġalterations":29858,"ĠPatreon":29859,"Ġhavoc":29860,"Ġdisciplines":29861,"Ġnotoriously":29862,"akuya":29863,"ieri":29864,"?).":29865,"ĠWent":29866,"Ġsilicon":29867,"Ġtremb":29868,"Container":29869,"Known":29870,"Ġmortar":29871,"este":29872,"icka":29873,"Arthur":29874,"ĠPreviously":29875,"ĠMarty":29876,"Ġsparse":29877,"gins":29878,"Ġinward":29879,"ĠParticipant":29880,"Copy":29881,"ĠMisc":29882,"Ġantibiotic":29883,"ĠRetro":29884,"Ġelusive":29885,"Ġassail":29886,"ĠBattalion":29887,"ĠBought":29888,"Ġdiminish":29889,"ĠEuropa":29890,"session":29891,"ĠDangerous":29892,"iesel":29893,"Ġdisbelief":29894,"Ġblasts":29895,"extreme":29896,"ĠBoyd":29897,"ĠProjects":29898,"ĠGuys":29899,"Ġundergone":29900,"Ġgrill":29901,"ĠDwight":29902,"Ġ197":29903,"USER":29904,"Ġfilesystem":29905,"Ġclocks":29906,"Taylor":29907,"Ġwrapper":29908,"Ġfolding":29909,"ousand":29910,"ĠPhilippine":29911,"ATIONAL":29912,"ĠPerth":29913,"Ġashes":29914,"Ġaccumulate":29915,"ĠGateway":29916,"Shop":29917,"orkshire":29918,"Han":29919,"ĠBarrel":29920,"ĠLeh":29921,"ĠXV":29922,"Ġwhim":29923,"Ġrepo":29924,"ĠCG":29925,"ĠMam":29926,"Ġincorporating":29927,"Ġbailout":29928,"Ġlinguistic":29929,"Ġdisinteg":29930,"CLE":29931,"Ġcinematic":29932,"ĠFiber":29933,"Syn":29934,"ilion":29935,"ĠCompos":29936,"chens":29937,"Ġneoc":29938,"Ġboiled":29939,"FINE":29940,"ono":29941,"uncle":29942,"iken":29943,"ĠBM":29944,"ι":29945,"Ġreceipts":29946,"Ġdisposed":29947,"ĠThirty":29948,"ĠRough":29949,"ĠABS":29950,"Ġnotwithstanding":29951,"ollen":29952,"#$":29953,"Ġunreliable":29954,"Ġbloom":29955,"Ġmediocre":29956,"Ġtram":29957,"ĠTasman":29958,"Ġshakes":29959,"Ġmanifesto":29960,"ĠMW":29961,"Ġsatisfactory":29962,"Ġshores":29963,"Ġcomputation":29964,"Ġassertions":29965,"ormons":29966,"arag":29967,"abit":29968,"Democrats":29969,"ĠLoot":29970,"ĠVolks":29971,"haired":29972,"Ġgravitational":29973,"Sing":29974,"ĠMiz":29975,"Ġthrottle":29976,"Ġtyranny":29977,"ĠViews":29978,"Ġrobber":29979,"ĠMinority":29980,"Ġshrine":29981,"scope":29982,"purpose":29983,"Ġnucleus":29984,"ourcing":29985,"ĠUSDA":29986,"ĠDHS":29987,"wra":29988,"ĠBowie":29989,"Scale":29990,"ĠBEL":29991,"xi":29992,"Iter":29993,"Ġ(),":29994,"wright":29995,"Ġsailors":29996,"oused":29997,"NASA":29998,"ĠProof":29999,"ĠMineral":30000,"token":30001,"ĠFD":30002,"Rew":30003,"Ġell":30004,"630":30005,"Ġchancellor":30006,"ĠGos":30007,"Ġamounted":30008,"ĠRecre":30009,"omez":30010,"ĠOptim":30011,"ĠOlive":30012,"Ġtracker":30013,"owler":30014,"ĠUnique":30015,"Root":30016,"Ġmaritime":30017,"ĠQuran":30018,"ĠAdapt":30019,"Ġecosystems":30020,"ĠRepeat":30021,"ĠSoy":30022,"ĠIMP":30023,"Ġgraduating":30024,"andem":30025,"Pur":30026,"ĠReset":30027,"ĠTrick":30028,"ĠPhilly":30029,"ĠTue":30030,"ĠMalaysian":30031,"Ġclimax":30032,"Ġbury":30033,"Ġconspic":30034,"ĠSouthampton":30035,"ĠFlowers":30036,"Ġescorted":30037,"ĠEducational":30038,"ĠIRC":30039,"Ġbrutally":30040,"eating":30041,"Ġpillar":30042,"ĠSang":30043,"ĠJude":30044,"arling":30045,"ĠAmnesty":30046,"Ġreminding":30047,"ĠAdministrative":30048,"hesda":30049,"Ġflashed":30050,"ĠPBS":30051,"perate":30052,"feature":30053,"Ġswipe":30054,"Ġgraves":30055,"oultry":30056,"261":30057,"breaks":30058,"ĠGuer":30059,"Ġshrimp":30060,"ĠVoting":30061,"quist":30062,"Ġanalytical":30063,"Ġtablespoons":30064,"ĠSOU":30065,"Ġresearched":30066,"Ġdisrupted":30067,"Ġjour":30068,"Ġreplica":30069,"Ġcartoons":30070,"bians":30071,"})":30072,"copy":30073,"Got":30074,"ouched":30075,"PUT":30076,"Ġswarm":30077,"notations":30078,"said":30079,"Ġrebuilt":30080,"Ġcollaborate":30081,"Ġraging":30082,"Ġnar":30083,"Ġdemographics":30084,"ĠDDR":30085,"Ġdistrust":30086,"ossier":30087,"ĠKro":30088,"Ġpumpkin":30089,"Ġregrets":30090,"Ġfatalities":30091,"ĠLens":30092,"ĠOle":30093,"pd":30094,"Ġpuppet":30095,"ĠOutlook":30096,"ĠStam":30097,"Ol":30098,"Fair":30099,"UU":30100,"Ġrewritten":30101,"ı":30102,"Ġfascinated":30103,"Ġvectors":30104,"Ġtribunal":30105,"uay":30106,"ĠMats":30107,"ĠCoins":30108,"[[":30109,"Ġ181":30110,"Ġrenders":30111,"ĠKaepernick":30112,"Ġespionage":30113,"Ġsumm":30114,"Ġditch":30115,"Account":30116,"Ġspreadsheet":30117,"Ġmutant":30118,"past":30119,"407":30120,"Ġdye":30121,"Ġinitiation":30122,"Ġ4000":30123,"Ġpunishable":30124,"Ġthinner":30125,"ĠKhal":30126,"Ġintermedi":30127,"Dun":30128,"ĠGotham":30129,"Ġeagerly":30130,"Ġvaginal":30131,"powers":30132,"VW":30133,"ĠWATCHED":30134,"Ġpredator":30135,"amsung":30136,"Ġdisparity":30137,"Ġ[*":30138,"Ġamph":30139,"Ġoutskirts":30140,"ĠSpirits":30141,"Ġskeletal":30142,"л":30143,"ĠRear":30144,"Ġissuance":30145,"ĠLogic":30146,"released":30147,"ZZ":30148,"ĠBound":30149,"Entry":30150,"Ġexits":30151,"isol":30152,"ĠFounder":30153,"Ġwre":30154,"ĠGreenland":30155,"ĠMMO":30156,"taker":30157,"INC":30158,"ãģ¾":30159,"Ġhourly":30160,"henko":30161,"Ġfantasies":30162,"Ġdisob":30163,"Ġdemolition":30164,"ãĥĭ":30165,"Ġenlisted":30166,"ratulations":30167,"Ġmisguided":30168,"Ġensured":30169,"Ġdiscouraged":30170,"mort":30171,"Ġflank":30172,"Ġcess":30173,"Ġreacts":30174,"ĠSere":30175,"sensitive":30176,"ĠSerpent":30177,"assad":30178,"Ġ247":30179,"Ġcalmly":30180,"busters":30181,"Ġbleed":30182,"ĠStro":30183,"Ġamusement":30184,"ĠAntarctica":30185,"Ġscept":30186,"ĠGaw":30187,"aq":30188,"asonic":30189,"Ġsprawling":30190,"native":30191,"aturated":30192,"ĠBattlefield":30193,"IVERS":30194,"EB":30195,"ĠGems":30196,"ĠNorthwestern":30197,"ĠFilms":30198,"ĠAutomatic":30199,"Ġapprehend":30200,"ãģ¨":30201,"ĠguiName":30202,"Ġbackend":30203,"Ġevidenced":30204,"geant":30205,"012":30206,"ĠSiege":30207,"ĠexternalTo":30208,"ĠunfocusedRange":30209,"ĠguiActiveUnfocused":30210,"ĠguiIcon":30211,"ĠexternalToEVA":30212,"ĠexternalToEVAOnly":30213,"Fri":30214,"chard":30215,"enaries":30216,"Ġchiefs":30217,"Ġcf":30218,"ĠHUD":30219,"Ġcorrobor":30220,"ĠdB":30221,"ĠTaken":30222,"ĠPatricia":30223,"rail":30224,"ĠCharm":30225,"ĠLibertarian":30226,"rieve":30227,"Personal":30228,"ĠOUR":30229,"geries":30230,"Ġdumping":30231,"Ġneurological":30232,"itimate":30233,"ĠClintons":30234,"rafted":30235,"ĠMolly":30236,"Ġterminals":30237,"register":30238,"Ġflare":30239,"Ġencoded":30240,"Ġautopsy":30241,"pel":30242,"machine":30243,"Ġexemptions":30244,"ĠRoyals":30245,"distance":30246,"Ġdrafts":30247,"Ġlame":30248,"ĠCunning":30249,"Ġspouses":30250,"ĠMarkets":30251,"ĠCarrier":30252,"Ġimplying":30253,"ĠYak":30254,"sid":30255,"Ġloser":30256,"Ġvigilant":30257,"Ġimpeachment":30258,"Ġaugmented":30259,"ĠEmployees":30260,"Ġunintended":30261,"ternally":30262,"ĠWatt":30263,"Ġrecognizable":30264,"essim":30265,"æĿ":30266,"Ġcoated":30267,"rha":30268,"Ġlieutenant":30269,"ĠLegislation":30270,"published":30271,"444":30272,"013":30273,"Ġideally":30274,"ĠPassword":30275,"Ġsimplify":30276,"ĠMeta":30277,"ĠMRI":30278,"Ġpleading":30279,"organized":30280,"handler":30281,"Ġunravel":30282,"correct":30283,"Ġicy":30284,"Ġparanoid":30285,"Ġpasser":30286,"Ġinspections":30287,"ofer":30288,"ĠHealthcare":30289,"283":30290,"ĠBrut":30291,"iola":30292,"forge":30293,"ĠMedieval":30294,"MSN":30295,"ievers":30296,"ĠProgramming":30297,"åī":30298,"Ġ223":30299,"mu":30300,"ĠCLE":30301,"uga":30302,"Ġshoppers":30303,"Ġinformative":30304,"ĠPlans":30305,"Ġsupplementation":30306,"ĠTests":30307,"tyard":30308,"ocytes":30309,"ĠVega":30310,"ĠGujarat":30311,"ermanent":30312,"Except":30313,"ĠLOT":30314,"alla":30315,"ĠCumm":30316,"ĠOsw":30317,"Ġvenom":30318,"ĠDebt":30319,"ĠDOWN":30320,"Ġreunion":30321,"Ġmuc":30322,"ĠRelief":30323,"Ġgeop":30324,"ĠðŁĺ":30325,"alogue":30326,"Anth":30327,"echo":30328,"Ġcorros":30329,"Ġreplication":30330,"ĠBlazing":30331,"ĠDaughter":30332,"Ġinflic":30333,"ĠLindsey":30334,"ÙĪ":30335,"284":30336,"Exit":30337,"Ġgloom":30338,"TAIN":30339,"Ġundermining":30340,"Ġadvising":30341,"hidden":30342,"Ġoverflow":30343,"Ġgor":30344,"urdue":30345,"Ġechoes":30346,"enhagen":30347,"Ġimpuls":30348,"drug":30349,"cash":30350,"Ġasync":30351,"Ġmirac":30352,"atts":30353,"punk":30354,"Ġpivot":30355,"ĠLegislative":30356,"Ġbloggers":30357,"ĠClaw":30358,"sburg":30359,"dyl":30360,"ĠRecommend":30361,"Ġverte":30362,"Ġprohibiting":30363,"ĠPanther":30364,"Jonathan":30365,"Ġomin":30366,"Ġhateful":30367,"281":30368,"ĠOrche":30369,"ĠMurdoch":30370,"downs":30371,"Ġasymm":30372,"GER":30373,"Always":30374,"Ġinforms":30375,"ĠWM":30376,"ĠPony":30377,"ĠAppendix":30378,"ĠArlington":30379,"Jam":30380,"Ġmedicinal":30381,"ĠSlam":30382,"ITIES":30383,"Ġreaff":30384,"ĠRi":30385,"FG":30386,"Spring":30387,"bool":30388,"Ġthighs":30389,"Ġmarkings":30390,"ĠRaqqa":30391,"ĠLak":30392,"poll":30393,"tsky":30394,"ĠMorty":30395,"ĠDefinition":30396,"Ġdebunk":30397,"endered":30398,"ĠLeone":30399,"avers":30400,"Ġmortgages":30401,"Apparently":30402,"Nic":30403,"haus":30404,"ĠThousands":30405,"auld":30406,"Ġmash":30407,"shoot":30408,"Ġdiarr":30409,"Ġconsciously":30410,"Hero":30411,"eas":30412,"ĠNaturally":30413,"ĠDestroyer":30414,"Ġdashboard":30415,"services":30416,"Rog":30417,"Ġmillennials":30418,"Ġinvade":30419,"-(":30420,"Ġcommissions":30421,"ĠAuckland":30422,"Ġbroadcasts":30423,"Ġfrontal":30424,"Ġcrank":30425,"ĠHistoric":30426,"Ġrumours":30427,"CTV":30428,"Ġsteril":30429,"Ġbooster":30430,"rocket":30431,"ãĤ¼":30432,"utsche":30433,"ĠPI":30434,"Ġ233":30435,"ĠProducer":30436,"ĠAnalytics":30437,"Ġinvaluable":30438,"Ġunintention":30439,"ĠCY":30440,"Ġscrutin":30441,"Ġgigg":30442,"Ġengulf":30443,"Ġproletariat":30444,"Ġhacks":30445,"ĠHew":30446,"arak":30447,"ĠSlime":30448,"ielding":30449,"agher":30450,"ĠElliot":30451,"Ġtelecom":30452,"Ġ219":30453,"ultan":30454,"ĠArbor":30455,"ĠScouts":30456,"Ban":30457,"Ġlifespan":30458,"Ġblasp":30459,"388":30460,"Ġjudiciary":30461,"ĠContinental":30462,"asking":30463,"McC":30464,"LED":30465,"Ġbaggage":30466,"ĠSorcerer":30467,"Ġremnants":30468,"ĠGriffith":30469,"etsu":30470,"ĠSubaru":30471,"ĠPersonality":30472,"designed":30473,"ushima":30474,"agnar":30475,"Ġrecoil":30476,"Ġpassions":30477,"\\\":":30478,"Ġtee":30479,"Ġabolition":30480,"ĠCreating":30481,"jac":30482,"Ġ194":30483,"019":30484,"Ġpillars":30485,"riched":30486,"/\"":30487,"tk":30488,"Ġlivelihood":30489,"Ġroasted":30490,"ahon":30491,"ĠHutch":30492,"assert":30493,"Ġdividend":30494,"Ġknit":30495,"Ġdaunting":30496,"Ġdisturbance":30497,"Ġshale":30498,"Ġcultivated":30499,"Ġrefrigerator":30500,"LB":30501,"ĠNET":30502,"Ġcommercials":30503,"Ġthinkers":30504,"455":30505,"Ġchop":30506,"Broad":30507,"Ġsuspicions":30508,"Ġtagged":30509,"lifting":30510,"Ġstylish":30511,"ĠShields":30512,"Shortly":30513,"Ġtails":30514,"Auth":30515,"STE":30516,"ĠGAME":30517,"Ġseism":30518,"ĠKis":30519,"ologne":30520,"Ġcowork":30521,"Ġforcibly":30522,"Ġthyroid":30523,"ĠPB":30524,"ANE":30525,"married":30526,"horse":30527,"Ġpolymer":30528,"ĠChal":30529,"odor":30530,"DEBUG":30531,"ĠContext":30532,"Ġbliss":30533,"Ġpinpoint":30534,"ĠMathemat":30535,"legram":30536,"ĠWeekend":30537,"Ġlabelled":30538,"Ġbart":30539,"itles":30540,"Ġestrogen":30541,"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ":30542,"\"'":30543,"Ġvisibly":30544,"Ġoutsider":30545,"aida":30546,"Area":30547,"Ġdissemin":30548,"Ġdishonest":30549,"ĠClosed":30550,"ĠBulletin":30551,"ĠRamsey":30552,"sword":30553,"ĠXI":30554,"ourced":30555,"Same":30556,"346":30557,"ĠRepe":30558,"ĠKou":30559,"cake":30560,"emis":30561,"Cache":30562,"ĠMeaning":30563,"ĠEnlight":30564,"onomy":30565,"Ġmanifestation":30566,"sworth":30567,"Jay":30568,"Ġchore":30569,"ör":30570,"Dream":30571,"Ġsanctioned":30572,"Ġculturally":30573,"ĠAra":30574,"Nav":30575,"Ġtheological":30576,"Ġstrut":30577,"ĠVO":30578,"ĠHandbook":30579,"Ġconstructing":30580,"Ġ¶":30581,"ĠBenefits":30582,"ĠPsychological":30583,"sac":30584,"å¸":30585,"policy":30586,"ĠMatters":30587,"ĠReported":30588,"ĠByte":30589,"Ġvitro":30590,"ĠMaiden":30591,"Ġlam":30592,"ĠJennings":30593,"Ġgarment":30594,"ĠRutgers":30595,"ĠStafford":30596,"ĠWellington":30597,"Ġintermitt":30598,"Ġnpm":30599,"Ġordeal":30600,"Ġplugged":30601,"ooming":30602,"inished":30603,"framework":30604,"Ġtimber":30605,"Ġcass":30606,"Ġ850":30607,"iless":30608,"ĠRedux":30609,"768":30610,"Stre":30611,"Ġsurpassed":30612,"whel":30613,"Ġparallels":30614,"Ġveil":30615,"ĠGI":30616,"ĠREST":30617,"Ġreadiness":30618,"sort":30619,"Ġmodifying":30620,"ĠSlate":30621,"ruff":30622,"Ġmarble":30623,"Ġinfrared":30624,"Ġauditor":30625,"ĠFANTASY":30626,"ĠPoverty":30627,"ĠSPD":30628,"Ġ\"(":30629,"Ky":30630,"RAY":30631,"Ġexecutions":30632,"ĠBeverly":30633,"ĠMarxism":30634,"ĠBurst":30635,"ĠKali":30636,"estones":30637,"Clearly":30638,"Ell":30639,"ãģ§":30640,"ĠProceedings":30641,"Token":30642,"IFIC":30643,"ña":30644,"Central":30645,"ĠHaley":30646,"ĠDrama":30647,"Ġformations":30648,"ORN":30649,"Books":30650,"Ġdominating":30651,"ĠFlyers":30652,"ĠCompanion":30653,"Ġdisciplined":30654,"ĠYugoslav":30655,"ĠSpells":30656,"Ġvengeance":30657,"Ġlandlords":30658,"Len":30659,"ĠOgre":30660,"anoia":30661,"Ġpiercing":30662,"Ġcongreg":30663,"Ġscorer":30664,"obia":30665,"Ġnickel":30666,"ĠLearns":30667,"Ġrejo":30668,"Ġmasterpiece":30669,"Flash":30670,"Ġinhabited":30671,"ĠOpenGL":30672,"ĠDud":30673,"ĠICO":30674,"Ġarter":30675,"Ġplur":30676,"Ġmastery":30677,"Ġlongstanding":30678,"sted":30679,"Ġwines":30680,"Ġtelevised":30681,"ĠShrine":30682,"ĠBayern":30683,"Ġâĵĺ":30684,"Ġenclosure":30685,"john":30686,"Ġprophets":30687,"ĠResurrection":30688,"ĠOrders":30689,"Ġuneven":30690,"rals":30691,"Ġdwind":30692,"ĠLah":30693,"ĠSloven":30694,"378":30695,"Ġinsistence":30696,"affle":30697,"ĠClone":30698,"Ġhardship":30699,"ĠCongressman":30700,"Ġplead":30701,"Ġreviewers":30702,"Ġcured":30703,"Ġ1935":30704,"asley":30705,"fake":30706,"ĠThinking":30707,"ydia":30708,"PART":30709,"ĠDota":30710,"oit":30711,"Ġwhipped":30712,"Ġbouncing":30713,"ĠHispanics":30714,"comings":30715,"Ġcannabin":30716,"ĠChambers":30717,"ĠZack":30718,"Optional":30719,"Ġcoats":30720,"Ġprowess":30721,"ĠNorton":30722,"Ġplainly":30723,"Ġfreight":30724,"Ġinhibition":30725,"Ġclam":30726,"Ġ303":30727,"kef":30728,"aleigh":30729,"Luke":30730,"Ġpsycho":30731,"atorium":30732,"MED":30733,"Ġtreaties":30734,"Ġindisc":30735,"Ġdc":30736,"OPS":30737,"Ġresilient":30738,"ĠInterstate":30739,"Ġslack":30740,"Ġmundane":30741,"Ġestablishes":30742,"359":30743,"Ġstrained":30744,"Ġnond":30745,"Sus":30746,"Ġcaste":30747,"arate":30748,"ieving":30749,"Ġunfairly":30750,"Ġparser":30751,"onial":30752,"ursive":30753,"Via":30754,"ĠOtto":30755,"ĠAuthorities":30756,"stroke":30757,"KR":30758,"ĠMercy":30759,"Ġfurnished":30760,"Ġoutset":30761,"Ġmetic":30762,"1982":30763,"olithic":30764,"ĠTent":30765,"ogical":30766,"ĠAircraft":30767,"Ġhides":30768,"ĠBecame":30769,"Ġeducators":30770,"reaching":30771,"Ġvolatility":30772,"Ġtoddler":30773,"ĠNASCAR":30774,"ĠTwelve":30775,"ĠHighlights":30776,"Ġgrape":30777,"Ġsplits":30778,"Ġpeasant":30779,"Ġreneg":30780,"ĠMSI":30781,"Temp":30782,"stars":30783,"Ġtrek":30784,"ĠHyde":30785,"binding":30786,"Ġrealism":30787,"Ġoxide":30788,"ĠHos":30789,"Ġmounts":30790,"Ġbiting":30791,"Ġcollapsing":30792,"Ġpostal":30793,"Ġmuseums":30794,"Ġdetached":30795,"Ġrespecting":30796,"Ġmonopol":30797,"Ġworkflow":30798,"ĠCake":30799,"Template":30800,"ĠOrganisation":30801,"Ġpersistence":30802,"369":30803,"Coming":30804,"Brad":30805,"Ġredundant":30806,"ĠGTA":30807,"Ġbending":30808,"Ġrevoked":30809,"Ġoffending":30810,"Ġframing":30811,"Ġprintf":30812,"Commun":30813,"members":30814,"Outside":30815,"Ġconstrued":30816,"Ġcoded":30817,"FORE":30818,"Ġchast":30819,"Chat":30820,"Indian":30821,"ĠYard":30822,"?!\"":30823,"ĠPorts":30824,"ĠXavier":30825,"ĠRET":30826,"'.\"":30827,"ĠBoat":30828,"ivated":30829,"icht":30830,"umerable":30831,"Ds":30832,"ĠDunn":30833,"Ġcoffin":30834,"Ġsecurely":30835,"ĠRaptors":30836,"ĠBes":30837,"Installation":30838,"Ġinception":30839,"ĠHealthy":30840,"endants":30841,"Ġpsychologists":30842,"ĠSheikh":30843,"cultural":30844,"ĠBlackBerry":30845,"shift":30846,"Fred":30847,"oche":30848,"Ġcakes":30849,"ĠSEO":30850,"ĠGian":30851,"ĠAsians":30852,"ogging":30853,"element":30854,"Ġpundits":30855,"ĠVaugh":30856,"ĠGavin":30857,"Ġhitter":30858,"Ġdrowned":30859,"Ġchalk":30860,"ĠZika":30861,"Ġmeasles":30862,"802":30863,"â̦..":30864,"ĠAWS":30865,"]\"":30866,"Ġdistort":30867,"ĠMast":30868,"Ġantibodies":30869,"ĠMash":30870,"Memory":30871,"ĠUganda":30872,"ĠProb":30873,"Ġvomiting":30874,"ĠTurns":30875,"Ġoccupying":30876,"Ġevasion":30877,"ĠTherapy":30878,"Ġpromo":30879,"Ġelectr":30880,"Ġblueprint":30881,"ĠDre":30882,"priced":30883,"ĠDepot":30884,"Ġalleviate":30885,"ĠSomali":30886,"marg":30887,"nine":30888,"Ġnostalgia":30889,"ĠShepherd":30890,"Ġcavalry":30891,"Ġtorped":30892,"ĠBloody":30893,"xb":30894,"Ġsank":30895,"Ġgoalt":30896,"reportprint":30897,"embedreportprint":30898,"cloneembedreportprint":30899,"ĠInitially":30900,"ĠFischer":30901,"Ġnoteworthy":30902,"cern":30903,"Ġinefficient":30904,"rawdownload":30905,"rawdownloadcloneembedreportprint":30906,"cation":30907,"ĠDynasty":30908,"lag":30909,"DES":30910,"Ġdistinctly":30911,"ĠEstonia":30912,"Ġopenness":30913,"Ġgossip":30914,"ruck":30915,"Width":30916,"ĠIbrahim":30917,"Ġpetroleum":30918,"Ġavatar":30919,"ĠHed":30920,"atha":30921,"ĠHogwarts":30922,"Ġcaves":30923,"678":30924,"Ġsafeguard":30925,"ĠMog":30926,"isson":30927,"ĠDurham":30928,"slaught":30929,"ĠGraduate":30930,"Ġsubconscious":30931,"ĠExcellent":30932,"ĠDum":30933,"-----":30934,"Ġpiles":30935,"ĠWORK":30936,"ĠGarn":30937,"ĠFol":30938,"ĠATM":30939,"Ġavoids":30940,"ĠTul":30941,"Ġbleak":30942,"ELY":30943,"ivist":30944,"lightly":30945,"Pers":30946,"ĠDob":30947,"ĠLS":30948,"Ġinsanity":30949,"ε":30950,"atalie":30951,"Enlarge":30952,"Ġtwists":30953,"Ġfaulty":30954,"Ġpiracy":30955,"Ġimpover":30956,"Ġrugged":30957,"ĠFashion":30958,"Ġsands":30959,"'?":30960,"swick":30961,"Ġnatives":30962,"Ġhen":30963,"ĠNoise":30964,"ãĥĹ":30965,"Ġgreens":30966,"Ġfreezer":30967,"Ġdynasty":30968,"ĠFathers":30969,"ĠNewark":30970,"Ġarchaeological":30971,"Ġot":30972,"obar":30973,"Ġblockade":30974,"Ġallerg":30975,"LV":30976,"Ġdebit":30977,"ĠRFC":30978,"ĠMilton":30979,"ĠPressure":30980,"Ġwillingly":30981,"Ġdisproportionate":30982,"Ġoppressive":30983,"Ġdiamonds":30984,"Ġbelongings":30985,"1970":30986,"Ġbells":30987,"Ġimperialism":30988,"Ġ227":30989,"Ġexploding":30990,"ĠEclipse":30991,"Ġ1919":30992,"Ġrant":30993,"Ġnominations":30994,"347":30995,"Ġpeacefully":30996,"rica":30997,"ĠFUCK":30998,"Ġvibration":30999,"malink":31000,"Ġropes":31001,"ĠIvanka":31002,"ĠBrewery":31003,"ĠBooker":31004,"ĠOwens":31005,"goers":31006,"Services":31007,"ĠSnape":31008,"Ġ191":31009,"395":31010,"Ġ299":31011,"justice":31012,"Ġbri":31013,"Ġdiscs":31014,"Ġprominently":31015,"Ġvulgar":31016,"Ġskipping":31017,"lves":31018,"Ġtsunami":31019,"374":31020,"ĠUrug":31021,"ĠEid":31022,"recated":31023,"phen":31024,"Ġfaults":31025,"ĠStarted":31026,"950":31027,"Ġpi":31028,"Ġdetector":31029,"Ġbastard":31030,"Ġvalidated":31031,"SpaceEngineers":31032,"OURCE":31033,"Ġ(~":31034,"Ġunsur":31035,"Ġaffirmed":31036,"Ġfascism":31037,"Ġresolving":31038,"ĠChavez":31039,"ĠCyn":31040,"Ġdetract":31041,"Lost":31042,"Ġrigged":31043,"Ġhomage":31044,"ĠBruno":31045,"555":31046,"eca":31047,"Ġpresses":31048,"Ġhumour":31049,"Ġspacing":31050,"Ġ'/":31051,"olkien":31052,"Coun":31053,"OPER":31054,"Tre":31055,"Son":31056,"ĠCambodia":31057,"ierre":31058,"mong":31059,"ozy":31060,"Ġliquidity":31061,"ĠSoviets":31062,"ĠFernando":31063,"Ġ229":31064,"Ġslug":31065,"ĠCatalan":31066,"electric":31067,"Ġscenery":31068,"ĠHearth":31069,"Ġconstrained":31070,"Ġgoalie":31071,"ĠGuidelines":31072,"ĠAmmo":31073,"ĠPearson":31074,"Ġtaxed":31075,"Ġfetus":31076,"Response":31077,"ĠAlexis":31078,"thia":31079,"Guy":31080,"Ġreconstruct":31081,"Ġextremes":31082,"Ġconcluding":31083,"ĠPeg":31084,"ooks":31085,"Ġdeductions":31086,"Rose":31087,"Ġgroundbreaking":31088,"ĠTarg":31089,"ãĥģ":31090,"ĠReve":31091,"resource":31092,"Ġmoons":31093,"Ġelectromagnetic":31094,"Ġamidst":31095,"ĠViktor":31096,"NESS":31097,"BACK":31098,"Ġcommute":31099,"ĠAnaheim":31100,"Ġfluctuations":31101,"640":31102,"Ġnoodles":31103,"ĠCopenhagen":31104,"ĠTide":31105,"ĠGrizz":31106,"ĠSEE":31107,"Ġpipelines":31108,"Ġscars":31109,"endo":31110,"agus":31111,"ĠETF":31112,"/#":31113,"ĠBecome":31114,"448":31115,"Ġvisc":31116,"ĠRecommended":31117,"Ġjumper":31118,"Ġcognition":31119,"Ġassassin":31120,"Ġwitnessing":31121,"ĠSetup":31122,"Ġlac":31123,"vim":31124,"ISM":31125,"pages":31126,"SSL":31127,"358":31128,"Ġadject":31129,"industrial":31130,"lore":31131,"chery":31132,"Ġglitter":31133,"Ġcalf":31134,"Florida":31135,"Ġspoilers":31136,"Ġsucceeds":31137,"Ġchanting":31138,"Ġslogans":31139,"ĠTracy":31140,"Visit":31141,"rology":31142,"Ġmornings":31143,"Ġlineage":31144,"Ġsip":31145,"Ġintensely":31146,"Ġflourish":31147,"ĠSleeping":31148,"ĠFem":31149,"orpor":31150,"ĠKlan":31151,"ĠDarth":31152,"hack":31153,"ĠNielsen":31154,"Ġtumors":31155,"Ġprocurement":31156,"ĠYorkshire":31157,"Ġraided":31158,"KY":31159,"Anna":31160,"Ġ//[":31161,"ĠDisorder":31162,"ĠMustang":31163,"ĠWen":31164,"ĠTrying":31165,"sq":31166,"Ġdeliveries":31167,"Ġshutter":31168,"Ġcerebral":31169,"Ġbipolar":31170,"ĠCN":31171,"lass":31172,"jet":31173,"Ġdebating":31174,">:":31175,"Ġeagle":31176,"grades":31177,"ĠDixon":31178,"UGC":31179,"MAS":31180,"ĠDraco":31181,"ĠMachines":31182,"affer":31183,"Ġeman":31184,"²":31185,"pron":31186,"ĠGym":31187,"Ġcomparatively":31188,"ĠTribunal":31189,"PRO":31190,"Ġlex":31191,"Ġfertile":31192,"Ġdepressing":31193,"Ġsuperficial":31194,"essential":31195,"ĠHunters":31196,"gp":31197,"Ġprominence":31198,"Liber":31199,"ĠAncest":31200,"otechnology":31201,"Ġmocking":31202,"ĠTraff":31203,"ĸļ":31204,"Medium":31205,"Iraq":31206,"Ġpsychiatrist":31207,"Quantity":31208,"ĠLect":31209,"Ġnoisy":31210,"520":31211,"GY":31212,"Ġslapped":31213,"ĠMTV":31214,"Ġpara":31215,"pull":31216,"Multiple":31217,"asher":31218,"Ġnour":31219,"ĠSeg":31220,"Spell":31221,"vous":31222,"ordial":31223,"Senior":31224,"ĠGoldberg":31225,"ĠPlasma":31226,"need":31227,"Ġmessenger":31228,"eret":31229,"Ġteamed":31230,"Ġliteracy":31231,"ĠLeah":31232,"ĠDoyle":31233,"Ġemitted":31234,"UX":31235,"Ġevade":31236,"Ġmaze":31237,"Ġwrongly":31238,"ĠLars":31239,"Ġstereotype":31240,"Ġpledges":31241,"Ġaroma":31242,"ĠMET":31243,"Ġacre":31244,"ĠOD":31245,"Ġff":31246,"Ġbreweries":31247,"ĠHilton":31248,"undle":31249,"ĠKak":31250,"ĠThankfully":31251,"ĠCanucks":31252,"inctions":31253,"ĠAppears":31254,"Ġcoer":31255,"Ġundermined":31256,"rovers":31257,"Andre":31258,"Ġblaze":31259,"umers":31260,"Ġfamine":31261,"amphetamine":31262,"ulkan":31263,"Amount":31264,"Ġdesperation":31265,"wikipedia":31266,"development":31267,"ĠCorinth":31268,"ussia":31269,"Jackson":31270,"LI":31271,"Native":31272,"Rs":31273,"Ohio":31274,"ĠKathleen":31275,"Fortunately":31276,"Ġattendant":31277,"ĠPreferred":31278,"ĠDidn":31279,"ĠVs":31280,"Mis":31281,"Ġrespondent":31282,"Ġboun":31283,"stable":31284,"Ġpaved":31285,"Ġunexpl":31286,"ĠCheney":31287,"LM":31288,"ĠCull":31289,"blown":31290,"Ġconfronting":31291,"ocese":31292,"serving":31293,"Wi":31294,"ĠLithuania":31295,"anni":31296,"Ġstalk":31297,"hd":31298,"Ġvener":31299,"APH":31300,"ynchronous":31301,"URR":31302,"umably":31303,"historic":31304,"Half":31305,"Hay":31306,"Ġresilience":31307,"spection":31308,"Ġabandoning":31309,"Obs":31310,"ĠDebbie":31311,"Ġgradient":31312,"ĠPlaint":31313,"ĠCanal":31314,"ARCH":31315,"Ġexpansive":31316,"Ġfung":31317,"Ġbounced":31318,"Und":31319,"Ġprecautions":31320,"Ġclarification":31321,"Ġdagger":31322,"Ġgrips":31323,"Ġµ":31324,"ĠRivera":31325,"ĠUndead":31326,"isites":31327,"ĠFIRST":31328,"ño":31329,"audi":31330,"Ġhostages":31331,"Ġcompliant":31332,"Ġalumni":31333,"Seven":31334,"Ġcybersecurity":31335,"either":31336,"Collect":31337,"Ġinvariably":31338,"ĠSoci":31339,"Ġlawmaker":31340,"Ġale":31341,"ĠPersonally":31342,"Nazi":31343,"Ġcustomization":31344,"ĠProc":31345,"ĠSaskatchewan":31346,"eaturing":31347,"Ġspared":31348,"Ġdiscontinued":31349,"Ġcomputational":31350,"ĠMotorola":31351,"Ġsupremacist":31352,"governmental":31353,"Ġparadise":31354,"ĠDowning":31355,"ĠNikon":31356,"Ġcatalyst":31357,"berra":31358,"Toronto":31359,"875":31360,"beta":31361,"ĠMacron":31362,"Ġunrealistic":31363,"vector":31364,"ĠVehicles":31365,"itiveness":31366,"ĠRV":31367,"ĠColbert":31368,"sin":31369,"oji":31370,"entin":31371,"ĠKrish":31372,"hello":31373,"ffield":31374,"oky":31375,"ĠTate":31376,"Ġmaple":31377,"Ġaids":31378,"chemical":31379,"334":31380,"nuts":31381,"ĠWarp":31382,"Ġxx":31383,"ĠRobb":31384,"umerous":31385,"_-_":31386,"ftime":31387,"ĠVW":31388,"Ġwinger":31389,"ĠDome":31390,"tools":31391,"ĠPV":31392,"ĠGeorgetown":31393,"Ġgeared":31394,"Ġjihadists":31395,"Ġcp":31396,"Ġsteroids":31397,"Mother":31398,"clerosis":31399,"ĠDRM":31400,"nesia":31401,"Ġlinger":31402,"Ġimmersive":31403,"ĠCOUN":31404,"Ġoutweigh":31405,"ensual":31406,"Band":31407,"Ġtransforms":31408,"matched":31409,"psons":31410,"ĠJudicial":31411,"factor":31412,"Ġreferral":31413,"Ġoddly":31414,"ĠWenger":31415,"Bring":31416,"ĠBows":31417,"602":31418,"ICLE":31419,"Ġlions":31420,"ĠAcademic":31421,"ĠThorn":31422,"ĠRaider":31423,"kefeller":31424,"Storage":31425,"Lower":31426,"ĠOrt":31427,"ĠEquality":31428,"ALT":31429,"ĠSOC":31430,"Types":31431,"Ġlyn":31432,"ĠAsset":31433,"coat":31434,"TPP":31435,"CVE":31436,"ĠPioneer":31437,"application":31438,"Modern":31439,"ĠHK":31440,"Environment":31441,"Alright":31442,"Rain":31443,"IPP":31444,"ĠShiite":31445,"Ġmound":31446,"ĠAbilities":31447,"condition":31448,"Staff":31449,"Ġcompetence":31450,"ĠMoor":31451,"ĠDiablo":31452,"Ġwithheld":31453,"Ġostensibly":31454,"ĠBrom":31455,"Ġmsg":31456,"Ġdenomin":31457,"ĠReferences":31458,"ĠFP":31459,"Ġplunged":31460,"Ġpamph":31461,"moving":31462,"central":31463,"Ġdownright":31464,"Ġfading":31465,"Tal":31466,"Typ":31467,"ĠThy":31468,"ukes":31469,"ithe":31470,"Ġove":31471,"Ġbattled":31472,"Ġseafood":31473,"Ġfigur":31474,"ĠRD":31475,"crop":31476,"Ġsquads":31477,"{\\":31478,"à¹":31479,"ĠEh":31480,"Ġinterviewing":31481,"ĠQin":31482,"Ġaspiring":31483,"PLIC":31484,"Ġclauses":31485,"ĠGast":31486,"ĠNir":31487,"Ġluggage":31488,"Ġhose":31489,"Ġsystemd":31490,"Ġdescending":31491,"ĠRevised":31492,"ĠRails":31493,"align":31494,"709":31495,"337":31496,"Ġfug":31497,"charging":31498,"tags":31499,"Ġuter":31500,"kish":31501,"WARNING":31502,"490":31503,"profits":31504,"Ġvoyage":31505,"Ġace":31506,"ĠVanguard":31507,"ĠTanks":31508,"ĠMuk":31509,"Ġ226":31510,"Safe":31511,"Armor":31512,"Ġvolcanic":31513,"Ġwomb":31514,"ĠMIL":31515,"Ġbeginner":31516,"ĠRecogn":31517,"ĠAAP":31518,"PLAY":31519,")!":31520,"Ġdetecting":31521,"cn":31522,"Ġbreaches":31523,"Basically":31524,"ĠPag":31525,"ĠMunicipal":31526,"ĠIndie":31527,"ĠLaf":31528,"ĠDisable":31529,"ĠOlson":31530,"Ġrestrained":31531,"Ġrulings":31532,"Ġhumane":31533,"events":31534,"ĠCinema":31535,"displayText":31536,"ĠHatch":31537,"actionDate":31538,"onnaissance":31539,"Ġassaulting":31540,"ĠLug":31541,"CHAT":31542,"Ġvigorous":31543,"ĠPerse":31544,"Ġintolerance":31545,"ĠSnapchat":31546,"ĠSharks":31547,"Ġdummy":31548,"ĠDiagn":31549,"ĠGuitar":31550,"imeters":31551,"403":31552,"REG":31553,"Ax":31554,"Ġseparates":31555,"ĠMahm":31556,"Ġtv":31557,"jah":31558,"OOL":31559,"Circ":31560,"ĠWindsor":31561,"ussian":31562,"Ġintuition":31563,"Ġdisdain":31564,"ĠDonovan":31565,"Ġ221":31566,"Emb":31567,"Ġcondemning":31568,"Ġgenerosity":31569,"zzy":31570,"Ġpanties":31571,"ĠPrevent":31572,"ActionCode":31573,"ANA":31574,"342":31575,"externalActionCode":31576,"Ġspecifying":31577,"Ġcrystall":31578,"Jere":31579,"Ġrupt":31580,"ĠApprentice":31581,"Ġprofiling":31582,"к":31583,"Strike":31584,"Ġsideline":31585,"Ġobligated":31586,"Ġoccult":31587,"Ġbureaucratic":31588,"antically":31589,"rupted":31590,"negative":31591,"ĠEthiopia":31592,"ĠCivic":31593,"Ġinsiders":31594,"eligible":31595,"ĠTVs":31596,"ĠBAR":31597,"ĠTI":31598,"iologist":31599,"ĠAIR":31600,"Ġsubstituted":31601,"Arab":31602,"ĠSaul":31603,"ĠYog":31604,"prem":31605,"Ġbuilders":31606,"Ġstationary":31607,"Ġdoubtful":31608,"Ġvigorously":31609,"Ġthrilling":31610,"Physical":31611,"ĠCarey":31612,"ĠHydra":31613,"geoning":31614,"ĠSly":31615,"yton":31616,"Ġborrowers":31617,"ĠParkinson":31618,"Ġë":31619,"ĠJamaica":31620,"Ġsatir":31621,"Ġinsurgents":31622,"ĠFirm":31623,"Ġisot":31624,"ĠKarn":31625,"ourning":31626,"akens":31627,"docs":31628,"little":31629,"ĠMonaco":31630,"CLASS":31631,"Turkey":31632,"Ly":31633,"ĠConan":31634,"assic":31635,"Ġstarred":31636,"ĠPacers":31637,"eties":31638,"Ġtipping":31639,"Moon":31640,"ĠRw":31641,"same":31642,"Ġcavity":31643,"Ġgoof":31644,"ĠZo":31645,"Shock":31646,"ummer":31647,"Ġemphasizes":31648,"Ġregrett":31649,"Ġnovelty":31650,"Ġenvy":31651,"ĠPassive":31652,"rw":31653,"505":31654,"Ġindifferent":31655,"ĠRica":31656,"ĠHimself":31657,"ĠFreddie":31658,"Ġadip":31659,"ä¸Ģ":31660,"Ġbreakout":31661,"Ġhurried":31662,"ĠHuang":31663,"ĠDisk":31664,"Ġroaming":31665,"?????-?????-":31666,"UV":31667,"ĠRicky":31668,"ĠSigma":31669,"Ġmarginalized":31670,"Ġedits":31671,"Ġ304":31672,"memory":31673,"Ġspecimen":31674,"293":31675,"ãģ¯":31676,"Ġvertically":31677,"Ġaudition":31678,"ĠHeck":31679,"Ġcaster":31680,"ĠHoldings":31681,"adal":31682,"ĠCron":31683,"ĠLiam":31684,"Ġdeflect":31685,"Pick":31686,"ĠDebug":31687,"REF":31688,"Ġversatility":31689,"othes":31690,"classified":31691,"ĠMahar":31692,"ĠHort":31693,"Counter":31694,"stasy":31695,"noticed":31696,"331":31697,"ĠShim":31698,"fuck":31699,"ĠBie":31700,"Ġairing":31701,"ĠProtein":31702,"ĠHolding":31703,"Ġspectators":31704,"iliated":31705,"ĠThatcher":31706,"nosis":31707,"ãĥ¼ãĥ³":31708,"Tele":31709,"Boston":31710,"ĠTempl":31711,"stay":31712,"Ġdeclarations":31713,"479":31714,"Volume":31715,"ĠDesigner":31716,"ĠOverwatch":31717,"idae":31718,"Ġonwards":31719,"Ġnets":31720,"ĠManila":31721,"particularly":31722,"Ġpolitic":31723,"oother":31724,"Ġportraits":31725,"Ġpavement":31726,"cffff":31727,"Ġsaints":31728,"Ġbeginners":31729,"ESPN":31730,"Ġshortcomings":31731,"âķIJâķIJ":31732,"Ġcomet":31733,"ĠOrganic":31734,"quel":31735,"Ġhospitalized":31736,"Break":31737,"Ġpeel":31738,"dylib":31739,"aspx":31740,"urances":31741,"ĠTIM":31742,"Pg":31743,"Ġreadable":31744,"ĠMalik":31745,"Ġmuzzle":31746,"Ġbenchmarks":31747,"dal":31748,"ĠVacc":31749,"ĠHicks":31750,"609":31751,"ĠBiblical":31752,"heng":31753,"Ġoverload":31754,"ĠCivilization":31755,"Ġimmoral":31756,"Ġfries":31757,"ãĤĴ":31758,"Ġreproduced":31759,"Ġformulation":31760,"jug":31761,"irez":31762,"gear":31763,"Ġcoached":31764,"MpServer":31765,"ĠSJ":31766,"ĠKw":31767,"Init":31768,"deal":31769,"ĠOro":31770,"ĠLoki":31771,"ĠSongs":31772,"Ġ232":31773,"ĠLouise":31774,"asionally":31775,"Ġuncond":31776,"ollywood":31777,"Ġprogressives":31778,"ĠEnough":31779,"ĠDoe":31780,"Ġwreckage":31781,"Ġbrushed":31782,"ĠBaseType":31783,"Ġzoning":31784,"ishable":31785,"hetically":31786,"ĠCaucus":31787,"ĠHue":31788,"Ġkarma":31789,"ĠSporting":31790,"Ġtrader":31791,"Ġseeming":31792,"ĠCapture":31793,"430":31794,"bish":31795,"Ġtunes":31796,"Ġindoors":31797,"ĠSphere":31798,"ĠDancing":31799,"TERN":31800,"Ġnob":31801,"ĠGST":31802,"maps":31803,"Ġpeppers":31804,"Fit":31805,"Ġoversees":31806,"ĠRabbi":31807,"ĠRuler":31808,"vertising":31809,"office":31810,"xxx":31811,"Ġraft":31812,"Changed":31813,"Ġtextbooks":31814,"Links":31815,"ĠOmn":31816,"ãĢij":31817,"Ġinconvenience":31818,"ĠDonetsk":31819,"=~":31820,"Ġimplicitly":31821,"Ġboosts":31822,"ĠBones":31823,"ĠBoom":31824,"Courtesy":31825,"Ġsensational":31826,"ANY":31827,"Ġgreedy":31828,"eden":31829,"Ġinexper":31830,"ĠLer":31831,"ĠVale":31832,"Ġtighten":31833,"ĠEAR":31834,"ĠNum":31835,"Ġancestor":31836,"Sent":31837,"ĠHorde":31838,"urgical":31839,"allah":31840,"Ġsap":31841,"amba":31842,"ĠSpread":31843,"twitch":31844,"Ġgrandson":31845,"Ġfracture":31846,"Ġmoderator":31847,"ĠSeventh":31848,"ĠReverse":31849,"Ġestimation":31850,"Choose":31851,"Ġparach":31852,"Ġbarric":31853,"ãĢIJ":31854,"Ġcompass":31855,"Ġallergic":31856,"âĢķ":31857,"OTHER":31858,"errilla":31859,"Ġwagon":31860,"Ġzinc":31861,"Ġrubbed":31862,"ĠFuller":31863,"ĠLuxembourg":31864,"ĠHoover":31865,"Ġliar":31866,"ĠEvening":31867,"ĠCobb":31868,"esteem":31869,"Ġselector":31870,"ĠBrawl":31871,"isance":31872,"ĠEk":31873,"Ġtroop":31874,"Ġguts":31875,"ĠAppeal":31876,"ĠTibetan":31877,"Ġroutines":31878,"ĠMent":31879,"Ġsummarized":31880,"steamapps":31881,"Ġtranqu":31882,"Ġ1929":31883,"oran":31884,"ĠAuthent":31885,"Ġgmaxwell":31886,"Ġapprehens":31887,"Ġpoems":31888,"Ġsausage":31889,"ĠWebster":31890,"urus":31891,"Ġthemed":31892,"Ġlounge":31893,"Ġcharger":31894,"Spoiler":31895,"Ġspilled":31896,"hog":31897,"ĠSunder":31898,"ĠAin":31899,"ĠAngry":31900,"Ġdisqual":31901,"ĠFrequency":31902,"ĠEthernet":31903,"Ġhelper":31904,"Percent":31905,"Ġhorrifying":31906,"Ġail":31907,"ĠAllan":31908,"EEE":31909,"ĠCrossing":31910,"449":31911,"Ġholog":31912,"ĠPuzzles":31913,"ĠGoes":31914,"erenn":31915,"604":31916,"ãģı":31917,"ĠRafael":31918,"Ġatten":31919,"ĠEmanuel":31920,"Ġupro":31921,"ĠSusp":31922,"Psych":31923,"ĠTrainer":31924,"ĠNES":31925,"ĠHunts":31926,"becue":31927,"Ġcounselor":31928,"Rule":31929,"Ġtoxins":31930,"Ġbanners":31931,"rifice":31932,"Ġgreeting":31933,"Ġfrenzy":31934,"Ġallocate":31935,"Ġ*)":31936,"expr":31937,"503":31938,"ĠChick":31939,"ĠTorn":31940,"Ġconsolidation":31941,"ĠFletcher":31942,"switch":31943,"frac":31944,"clips":31945,"ĠMcKin":31946,"ĠLunar":31947,"Month":31948,"ITCH":31949,"Ġscholarly":31950,"raped":31951,"398":31952,"Ġ1910":31953,"Ġegreg":31954,"Ġinsecure":31955,"Ġvictorious":31956,"cffffcc":31957,"Ġsingled":31958,"Ġelves":31959,"ĠWond":31960,"burst":31961,"Ġcamoufl":31962,"ĠBLACK":31963,"Ġconditioned":31964,"çī":31965,"answered":31966,"Ġcompulsory":31967,"ascist":31968,"Ġpodcasts":31969,"ĠFrankfurt":31970,"bnb":31971,"Ġneoliberal":31972,"ĠKeyboard":31973,"ĠBelle":31974,"warm":31975,"Ġtrusts":31976,"Ġinsured":31977,"ĠBucc":31978,"usable":31979,"607":31980,"ĠPlains":31981,"Ġ1890":31982,"Ġsabotage":31983,"Ġlodged":31984,"felt":31985,"Ġga":31986,"ĠNarc":31987,"ĠSalem":31988,"Ġseventy":31989,"ĠBlank":31990,"pocket":31991,"Ġwhisper":31992,"Ġmating":31993,"omics":31994,"ĠSalman":31995,"ĠKad":31996,"Ġangered":31997,"Ġcollisions":31998,"Ġextraordinarily":31999,"Ġcoercion":32000,"Ghost":32001,"birds":32002,"èĢ":32003,"kok":32004,"Ġpermissible":32005,"avorable":32006,"Ġpointers":32007,"Ġdissip":32008,"aci":32009,"Ġtheatrical":32010,"ĠCosmic":32011,"Ġforgetting":32012,"Ġfinalized":32013,"大":32014,"yout":32015,"library":32016,"Ġbooming":32017,"ĠBelieve":32018,"ĠTeacher":32019,"ĠLiv":32020,"ĠGOODMAN":32021,"ĠDominican":32022,"ORED":32023,"ĠParties":32024,"Ġprecipitation":32025,"ĠSlot":32026,"Roy":32027,"ĠCombined":32028,"Ġintegrating":32029,"Ġchrome":32030,"Ġintestinal":32031,"ĠRebell":32032,"Ġmatchups":32033,"Ġblockbuster":32034,"ĠLoren":32035,"ĠLevy":32036,"Ġpreaching":32037,"ĠSending":32038,"ĠPurpose":32039,"rax":32040,"fif":32041,"Ġauthoritative":32042,"ĠPET":32043,"astical":32044,"Ġdishon":32045,"Ġchatting":32046,"Ġ\"$:/":32047,"Connection":32048,"Ġrecreate":32049,"Ġdelinqu":32050,"Ġbroth":32051,"ĠDirty":32052,"ĠAdmin":32053,"zman":32054,"Ġscholarships":32055,"Ġ253":32056,"contact":32057,"alsa":32058,"767":32059,"creen":32060,"abbage":32061,"Ġ1915":32062,"Ġblended":32063,"Ġalarmed":32064,"Language":32065,"356":32066,"Ġblends":32067,"ĠChanged":32068,"Wolf":32069,"Ġhepat":32070,"Creating":32071,"Ġpersecut":32072,"Ġsweetness":32073,"arte":32074,"Ġforfeiture":32075,"ĠRoberto":32076,"impro":32077,"NFL":32078,"ĠMagnet":32079,"Detailed":32080,"Ġinsignificant":32081,"ĠPOLIT":32082,"ĠBBQ":32083,"ĠCPS":32084,"Ġseaw":32085,"aminer":32086,"mL":32087,"endif":32088,"finals":32089,"Ġ265":32090,"uish":32091,"Ġ})":32092,"ĠProblems":32093,"Ġemblem":32094,"Ġseriousness":32095,"Ġparsing":32096,"Ġsubstitution":32097,"Ġpressured":32098,"Ġrecycled":32099,"aleb":32100,"Ruby":32101,"Ġproficiency":32102,"Driver":32103,"ĠWester":32104,":'":32105,"AFTA":32106,"Ġmantle":32107,"ĠClayton":32108,"flag":32109,"Ġpractitioner":32110,"covered":32111,"ĠStruct":32112,"addafi":32113,"425":32114,"ĠTownship":32115,"ĠHydro":32116,"Louis":32117,"343":32118,"Ġcondo":32119,"ĠTao":32120,"Ġutilization":32121,"Ġnausea":32122,"ĠDems":32123,"ridges":32124,"pause":32125,"Ġformulas":32126,"Ġchallenger":32127,"376":32128,"Ġdefective":32129,"ĠRailway":32130,"ĠPubMed":32131,"Ġyogurt":32132,"lbs":32133,"ĠNorfolk":32134,"OPE":32135,"ĠMoody":32136,"Ġdistributor":32137,"Ġscrolls":32138,"Ġextracts":32139,"Stan":32140,"Ġviability":32141,"Ġexposes":32142,"Ġstarvation":32143,"ĠSteps":32144,"ĠDodd":32145,"few":32146,"STD":32147,"332":32148,"Ġclosures":32149,"Ġcomplementary":32150,"ĠSasha":32151,"umpy":32152,"Ġmonet":32153,"Ġarticulate":32154,"ĠDoct":32155,"killer":32156,"Ġscrim":32157,"Ġ264":32158,"Ġprostitutes":32159,"Ġsevered":32160,"Ġattachments":32161,"Ġcooled":32162,"Lev":32163,"ĠFalk":32164,"fail":32165,"Ġpoliceman":32166,"ĠDag":32167,"Ġprayed":32168,"ĠKernel":32169,"Ġclut":32170,"Ġcath":32171,"Ġanomaly":32172,"Storm":32173,"emaker":32174,"ĠBreakfast":32175,"uli":32176,"oire":32177,"JJ":32178,"hz":32179,"Operation":32180,"ĠSick":32181,"354":32182,"ĠGuatemala":32183,"Rate":32184,"Ġexposures":32185,"faces":32186,"ĠArchae":32187,"raf":32188,"ĠMia":32189,"Ġ2025":32190,"Ġopaque":32191,"Ġdisguised":32192,"ĠHeadquarters":32193,"Sah":32194,"Ġpots":32195,"978":32196,"ĠMalf":32197,"Ġfrowned":32198,"Ġpoisonous":32199,"ĠConvers":32200,"eeks":32201,"Ġcrab":32202,".\"\"":32203,"Ġtreason":32204,"Ġranc":32205,"Ġescalating":32206,"Ġwarr":32207,"Ġmobs":32208,"Ġlamps":32209,"ĠSunshine":32210,"ĠBrunswick":32211,"Phones":32212,"Ġspelled":32213,"ĠSkip":32214,"Ġ2050":32215,"Ġ1911":32216,"ĠPluto":32217,"ĠAmend":32218,"Ġmeats":32219,"387":32220,"Ġstomp":32221,"ĠZhou":32222,"ĠLeviathan":32223,"ĠHazard":32224,"adv":32225,"ĠOrwell":32226,"Ġaloud":32227,"Ġbumper":32228,"ĠAnarch":32229,"ubuntu":32230,"ĠSerious":32231,"fitting":32232,"ĠOptional":32233,"ĠCecil":32234,"REAM":32235,"Ġserotonin":32236,"Ġcultivate":32237,"agogue":32238,"}\\":32239,"Ġmosques":32240,"ĠSunny":32241,"Ġreactive":32242,"revolution":32243,"ĠLup":32244,"ĠFedora":32245,"Ġdefenseman":32246,"ĠVID":32247,"istine":32248,"Ġdrowning":32249,"ĠBroadcasting":32250,"Ġthriller":32251,"ĠScy":32252,"Ġaccelerating":32253,"Ġdirects":32254,"odied":32255,"bike":32256,"duration":32257,"Ġpainfully":32258,"Redd":32259,"Ġproductions":32260,"Ġgag":32261,"Ġwhist":32262,"Ġsock":32263,"Ġinfinitely":32264,"ĠConcern":32265,"ĠCitadel":32266,"Ġlieu":32267,"Ġcandles":32268,"ogeneous":32269,"arger":32270,"Ġheavenly":32271,"inflammatory":32272,"Performance":32273,"Cs":32274,"ructose":32275,"azaki":32276,"Ġpessim":32277,"Ġinference":32278,"Ġpowd":32279,"ĠZoe":32280,"Ġpaints":32281,"Ġdazz":32282,"pta":32283,"-----------":32284,"Ġinspir":32285,"ĠExperimental":32286,"ĠKnife":32287,"regor":32288,"bors":32289,"Ġshowers":32290,"romeda":32291,"Ġsaint":32292,"Ġbenign":32293,"ĠJiang":32294,"Ġenvisioned":32295,"Ġshroud":32296,"IFT":32297,"HO":32298,"Ġshuff":32299,"ĠICC":32300,"Ġsegreg":32301,"Ġrevisit":32302,"ighthouse":32303,"Li":32304,"Ġsubstrate":32305,"ĠSeas":32306,"ĠReward":32307,"ĠHep":32308,"ĠBrass":32309,"sbm":32310,"Ġeliminates":32311,"Ġstamina":32312,"ĠVAT":32313,"ĠLoan":32314,"Ġconstraint":32315,"Ġappropriated":32316,"Ġpes":32317,"ĠALE":32318,"ranging":32319,"Ġ404":32320,"392":32321,"Ġintellectuals":32322,"achu":32323,"Ġrestructuring":32324,"ĠLevin":32325,"Ġrunes":32326,"Ġdelightful":32327,"Ġcarbohydrates":32328,"ĠModels":32329,"ĠExpo":32330,"Ġtransporting":32331,"alloc":32332,"Ġringing":32333,"Samsung":32334,"Ġscarcely":32335,"ĠURLs":32336,"ĠMAS":32337,"Ġprototypes":32338,"Ġnarrator":32339,"ĠCPUs":32340,"cdn":32341,"ĠBarton":32342,"Ġdecidedly":32343,"ĠShu":32344,"ixir":32345,"ocious":32346,"ĠMyst":32347,"Nintendo":32348,"Ġreuse":32349,"Ġforgiven":32350,"Few":32351,"inical":32352,"nat":32353,"Ġseamless":32354,"ĠEva":32355,"ĠEVE":32356,"ĠJO":32357,"landers":32358,"Ġsofter":32359,"negie":32360,"Ġtransient":32361,"Ġorbital":32362,"Ġfulfil":32363,"ĠKom":32364,"Hopefully":32365,"Ġdynamically":32366,"ĠHunger":32367,"åĽ":32368,"ĠArmenia":32369,"elman":32370,"berto":32371,"Ġpige":32372,"ĠIDs":32373,"limit":32374,"Ġveins":32375,"Ġsoaring":32376,"packs":32377,"Golden":32378,"ĠCrab":32379,"istor":32380,"ĠRPM":32381,"Ġ$$":32382,"gression":32383,"Ġjihadist":32384,"Ġgamble":32385,"Ġcareg":32386,"Ġinflated":32387,"Face":32388,"ĠFirearms":32389,"ĠEmmanuel":32390,"âĿ":32391,"Ġshocks":32392,"grab":32393,"Ġsplend":32394,"ĠHPV":32395,"abortion":32396,"Above":32397,"Entity":32398,"players":32399,"Ġcommenced":32400,"ulence":32401,"Ġfulfillment":32402,"Ġembodiments":32403,"ĠWelfare":32404,"Ġhail":32405,"Ġ<@":32406,"tten":32407,"Ġcatcher":32408,"ĠJazeera":32409,"Ġvolcano":32410,"Ġstabilize":32411,"ĠHandler":32412,"Ġintensified":32413,"ĠAbrams":32414,"Ġhumiliation":32415,"paced":32416,"605":32417,"ĠCentOS":32418,"Specific":32419,"Ġheed":32420,"ĠCAM":32421,"ĠGalile":32422,"Die":32423,"Ġabolished":32424,"ĠThomson":32425,"ĠTeachers":32426,"ĠWass":32427,"jong":32428,"ĠISBN":32429,"ĠAllies":32430,"shake":32431,"å·":32432,"vict":32433,"Howard":32434,"Ġdeem":32435,"Ġexceedingly":32436,"ĠSmartstocks":32437,"ibe":32438,"Ġdoorway":32439,"Ġcompeted":32440,"igmat":32441,"Ġnationalists":32442,"Ġgroom":32443,"ĠKeen":32444,"Ġdisposable":32445,"decl":32446,"ĠTolkien":32447,"ĠScheme":32448,"Ġbiod":32449,"Ġavid":32450,"ĠElon":32451,"agar":32452,"ĠTSA":32453,"Roman":32454,"Ġartificially":32455,"Ġadvisors":32456,"XL":32457,"ĠInferno":32458,"366":32459,"Ġtedious":32460,"ĠPhotography":32461,"ĠCarrie":32462,"Ġtrope":32463,"ĠSandra":32464,"Ġdecimal":32465,"Queen":32466,"ĠGundam":32467,"ĠOM":32468,"otech":32469,"NBA":32470,"Ġ1932":32471,"Ġentrenched":32472,"ĠMarion":32473,"Ġfraternity":32474,"Labour":32475,"Henry":32476,"Ġlatitude":32477,"Either":32478,"Ġenhances":32479,"ĠPotential":32480,"Ġshines":32481,"idad":32482,"Ġbreadth":32483,"Ġcapacities":32484,"ĠðŁĻĤ":32485,"ĠBronx":32486,"Ġsexes":32487,"Ġdifferentiation":32488,"Ġheavyweight":32489,"ĠTaj":32490,"dra":32491,"Ġmigrate":32492,"Ġexhaustion":32493,"ĠRUN":32494,"elsius":32495,"ĠCuomo":32496,"Ġguitars":32497,"Ġclones":32498,"ĠSomew":32499,"ĠPry":32500,"-------------":32501,"Ġwarranted":32502,"cycles":32503,"Ġsalvage":32504,"Ġdisks":32505,"RANT":32506,"ĠNGOs":32507,"ĠMartian":32508,"\":[{\"":32509,"Ġaddicts":32510,"ojure":32511,"illet":32512,"Ġamazingly":32513,"artments":32514,"pixel":32515,"ĠGPUs":32516,"Layout":32517,"è£":32518,"ĠTamil":32519,"ĠBasil":32520,"Ġimpartial":32521,"ĠStructure":32522,"fork":32523,"bryce":32524,"Ġridge":32525,"ĠHamburg":32526,"rious":32527,"Ġblitz":32528,"cigarettes":32529,"Ġcanned":32530,"402":32531,"Ġironically":32532,"Ġcompassionate":32533,"ĠHawkins":32534,".#":32535,"ĠCathedral":32536,"Ġrallied":32537,"internal":32538,"Ġquota":32539,"stakes":32540,"TEXT":32541,"mom":32542,"Ġcompletes":32543,"Ġ238":32544,"Ġshrug":32545,"ãĥij":32546,"ĠNinth":32547,"Ġrevise":32548,"ĠProvider":32549,"Ġtreacher":32550,"Ġquasi":32551,"ĠPRES":32552,"Ġdeposition":32553,"Ġconfidentiality":32554,"issors":32555,"Ġimbalance":32556,"Ġspanning":32557,"Ġangular":32558,"ĠCul":32559,"communication":32560,"ĠNora":32561,"ĠGenius":32562,"opter":32563,"Ġsacked":32564,"Spot":32565,"Ġfinely":32566,"ĠCHR":32567,"282":32568,"waves":32569,"Palest":32570,"ĠRohing":32571,"NL":32572,"è¿":32573,"Ġshitty":32574,"ĠScalia":32575,"475":32576,"Progress":32577,"Ġreferencing":32578,"Ġclassrooms":32579,"abee":32580,"Ġsod":32581,"hesion":32582,"708":32583,"ĠZuckerberg":32584,"ĠFinish":32585,"ĠScotia":32586,"ĠSavior":32587,"ĠInstallation":32588,"antha":32589,"(-":32590,"Ġ302":32591,"ĠPunk":32592,"Ġcrater":32593,"youtu":32594,"Ġroast":32595,"Ġinfluencing":32596,"Ġdup":32597,"ĠJR":32598,"ĠGrav":32599,"Ġstature":32600,"Ġbathrooms":32601,"Aside":32602,"Wiki":32603,"mean":32604,"ĠZak":32605,"ĠOnes":32606,"ĠNath":32607,"Ġhypert":32608,"Ġcommencement":32609,"Civil":32610,"Ġmoderately":32611,"Ġdistributors":32612,"Ġbreastfeeding":32613,"Ġ980":32614,"ĠSik":32615,"ĠCig":32616,"ĠAMER":32617,"RIP":32618,"ĠCareer":32619,"usting":32620,"Ġmessed":32621,"Ġeh":32622,"ĠJensen":32623,"/$":32624,"Ġblackmail":32625,"Ġconversions":32626,"Ġscientifically":32627,"Ġmantra":32628,"paying":32629,"Ġivory":32630,"ĠCourts":32631,"OUGH":32632,"auntlet":32633,"Serial":32634,"Brow":32635,"ĠHundreds":32636,"323":32637,"Ġpee":32638,"Ġlinux":32639,"Ġsubmer":32640,"ĠPrincipal":32641,"485":32642,"ĠDSL":32643,"ĠCousins":32644,"Ġdoctrines":32645,"ĠAthletics":32646,"Ġ315":32647,"ĠKarma":32648,"Ġattent":32649,"urger":32650,"Ġprescribe":32651,"Ġencaps":32652,"ĠCame":32653,"Ġsecretive":32654,"ĠCrimes":32655,"dn":32656,"Clean":32657,"ĠEgyptians":32658,"ĠCarpenter":32659,"Ġll":32660,"Hum":32661,"ĠMilo":32662,"Ġcapitalists":32663,"Ġbriefed":32664,"Twe":32665,"ĠBasin":32666,"elvet":32667,"Mos":32668,"Ġplunge":32669,"ĠKaiser":32670,"ĠFuj":32671,"illin":32672,"Ġsafeguards":32673,"Ġoste":32674,"ĠOpportunity":32675,"ĠMafia":32676,"ĠCalling":32677,"apa":32678,"urban":32679,"brush":32680,"illard":32681,"cé":32682,"intelligence":32683,"ĠLob":32684,"ĠDruid":32685,"Ġsmoother":32686,"Ġfooting":32687,"Ġmotorists":32688,"arcity":32689,"Ġmasculinity":32690,"Ġmism":32691,"Ġabdominal":32692,"ĠTavern":32693,"ĠRoh":32694,"Ġescapes":32695,"signed":32696,"Anthony":32697,"Ġsacrificing":32698,"Ġintimacy":32699,"Ġanterior":32700,"ĠKod":32701,"Ġmotif":32702,"Ġgraz":32703,"Ġvisualization":32704,"Ġguitarist":32705,"ĠTrotsky":32706,"magic":32707,"Dar":32708,"ĠMori":32709,"Ġwards":32710,"Ġtoilets":32711,"lest":32712,"Ġteleport":32713,"ĠSundays":32714,"ĠPlat":32715,"ETS":32716,"ĠeSports":32717,"Patrick":32718,"ĠKatherine":32719,"enko":32720,"Ġhassle":32721,"ĠMick":32722,"ggles":32723,"Ġhob":32724,"aintain":32725,"Ġairborne":32726,"Ġspans":32727,"Ġchili":32728,"Ġaperture":32729,"Ġvolunteered":32730,"ĠIncident":32731,"ĠFres":32732,"ĠVeteran":32733,"aughtered":32734,"ingo":32735,"Ġuninsured":32736,"CLOSE":32737,"Ġfuse":32738,"Ġerotic":32739,"Ġadvertise":32740,"raising":32741,"Texture":32742,"Ġattends":32743,"ĠREAL":32744,"uddled":32745,"Ġsmoot":32746,"Ġ305":32747,"ĠWillis":32748,"Ġblond":32749,"Analysis":32750,"ĠVT":32751,"onica":32752,"Ġstronghold":32753,"RF":32754,"NM":32755,".>>":32756,"Ġprosperous":32757,"Ġboasted":32758,"292":32759,"ĠManufacturing":32760,"PRESS":32761,"gren":32762,"Ġpharmacy":32763,"ĠRockefeller":32764,"kai":32765,"Ġthumbs":32766,"ĠHut":32767,"Ġmotherboard":32768,"Ġguardians":32769,"ĠAlter":32770,"llular":32771,"Ġshack":32772,"Ġwisely":32773,"Ġbackbone":32774,"erva":32775,"Ġsuicides":32776,"ĠMcGregor":32777,"ijah":32778,"Emer":32779,"ĠBrav":32780,"Ġdesignate":32781,"POST":32782,"produced":32783,"Ġcleansing":32784,"irlwind":32785,"existent":32786,"ĠHumph":32787,"ĠPayne":32788,"Ġvested":32789,"Å¡":32790,"Ġstringent":32791,"iona":32792,"Ġunsub":32793,"Ġsummed":32794,"ĠHercules":32795,"subject":32796,"ĠRagnar":32797,"ĠNos":32798,"Ġcharacterization":32799,"Ġsavvy":32800,"ĠDawson":32801,"ĠCasino":32802,"Ġfri":32803,"ĠBarrier":32804,"Ġmisinformation":32805,"Ġinsulation":32806,"Ġcorridors":32807,"Ġairplanes":32808,"ĠNoct":32809,"ahi":32810,"Ġ1916":32811,"kb":32812,"armac":32813,"Ġshun":32814,"Ġschema":32815,"Ġhorrified":32816,"Ġ239":32817,"aunders":32818,"NB":32819,"iates":32820,"erity":32821,"ĠShard":32822,"Ġrarity":32823,"Ġgrouped":32824,"ĠGhana":32825,"against":32826,"ĠBiological":32827,"ĠAware":32828,"owell":32829,"ÏĦ":32830,"ĠBeau":32831,"shaw":32832,"Hack":32833,"ĠJulius":32834,"USS":32835,"olson":32836,"auna":32837,"cru":32838,"ĠMaurice":32839,"ĠIk":32840,"Ġsequencing":32841,"Ġradicals":32842,"Ġ(?,":32843,"virtual":32844,"Ġanyways":32845,"Ġreperc":32846,"Ġhandlers":32847,"Ġhesitant":32848,"éĥ":32849,"ĠMF":32850,"plementation":32851,"associated":32852,"Ġcampaigned":32853,"ĠYue":32854,"utations":32855,"ĠYoga":32856,"Ġsimmer":32857,"Ġrods":32858,"Ġmelody":32859,"Ġconvoy":32860,"videos":32861,"Ġscreened":32862,"Neg":32863,"ochemical":32864,"Ġ())":32865,"Ġultras":32866,"Ġantip":32867,"ĠIslanders":32868,"704":32869,"Ġfetish":32870,"Ġridiculously":32871,"ĠKart":32872,"Ġmitochondrial":32873,"Ġinterfering":32874,"Builder":32875,"Ġoverfl":32876,"Ġacne":32877,"ĠMud":32878,"ĠKerr":32879,"flex":32880,"ĠPostal":32881,"ĠBaltic":32882,"477":32883,"ĠPersons":32884,"ourage":32885,"HB":32886,"ĠMuse":32887,"ĠImmortal":32888,"ĠDriving":32889,"Ġpetitions":32890,"Ġsubscript":32891,"Ġsorce":32892,"ĠProcessor":32893,"uton":32894,"Sony":32895,"Ġphon":32896,"Ġraced":32897,"ĠAnthrop":32898,"Ġdaytime":32899,"ĠExercise":32900,"Adding":32901,"Ġengages":32902,"ĠQualcomm":32903,"Ġmiracles":32904,"Ġmemes":32905,"ĠDrink":32906,"ĠOrioles":32907,"Ġhairs":32908,"ĠPolar":32909,"athom":32910,"Ġslippery":32911,"ĠRemy":32912,"Ġcaramel":32913,"ĠYEAR":32914,"Ġalk":32915,"Ign":32916,"aution":32917,"ĠMerlin":32918,"ĠCran":32919,"Ġapologies":32920,"Ġ410":32921,"Ġouting":32922,"ĠMemories":32923,"appointed":32924,"Ġcountered":32925,"uld":32926,"posing":32927,"Ġfirewall":32928,"ĠWast":32929,"ĠWet":32930,"worked":32931,"seller":32932,"Ġrepealed":32933,"ereo":32934,"assuming":32935,"BLIC":32936,"mite":32937,"ĠCEOs":32938,"ĠChapel":32939,"elligent":32940,"________________________":32941,"Dog":32942,"Ġwart":32943,"Ġsubscriber":32944,"sports":32945,"Ġbegged":32946,"ĠMV":32947,"Ġsemif":32948,"ethical":32949,"Ġpreach":32950,"Ġrevital":32951,"Ġpunitive":32952,"Ġshortcuts":32953,"Ġinstituted":32954,"ĠWarsaw":32955,"Ġabdomen":32956,"ĠKING":32957,"Ġsuperintendent":32958,"Ġfry":32959,"ĠGeo":32960,"TOR":32961,"Ġcontradictions":32962,"aptic":32963,"Ġlandscapes":32964,"bugs":32965,"Ġclust":32966,"Ġvolley":32967,"cribed":32968,"Ġtandem":32969,"Ġrobes":32970,"WHAT":32971,"Ġpromoter":32972,"Ġeloqu":32973,"reviewed":32974,"ĠDK":32975,"ĠPlato":32976,"Ġfps":32977,"Tank":32978,"ĠDerrick":32979,"Ġprioritize":32980,"asper":32981,"ĠHonduras":32982,"ĠCompleted":32983,"nec":32984,"Ġmog":32985,"nir":32986,"ĠMayo":32987,"DEF":32988,"stall":32989,"inness":32990,"ĠVolkswagen":32991,"Ġprecaution":32992,"ĠMell":32993,"iak":32994,"istries":32995,"Ġ248":32996,"Ġoverlapping":32997,"Senate":32998,"ĠEnhance":32999,"resy":33000,"racial":33001,"ORTS":33002,"ĠMormons":33003,"Strong":33004,"ĠCoch":33005,"Mexico":33006,"ĠMaduro":33007,"Ġjars":33008,"Ġcane":33009,"Wik":33010,"olla":33011,"ifference":33012,"Ġphysicist":33013,"ĠMaggie":33014,"Ġ285":33015,"Ġdepiction":33016,"ĠMcLaren":33017,"Ju":33018,"Ġslows":33019,"Ġcommissioners":33020,"ĠWillow":33021,"ĠExplos":33022,"hovah":33023,"Ġtechnician":33024,"Ġhomicides":33025,"ĠFlav":33026,"ĠTruman":33027,"Ġ10000":33028,"uctor":33029,"Ġshader":33030,"Newsletter":33031,"457":33032,"Ġrever":33033,"Ġhardened":33034,"Ġwhereabouts":33035,"Ġredevelop":33036,"Ġcarbs":33037,"Ġtravers":33038,"Ġsquirrel":33039,"Ġfollower":33040,"Ġsings":33041,"508":33042,"Ġrabbits":33043,"emonium":33044,"Ġdocumenting":33045,"Ġmisunderstood":33046,")'":33047,"Rick":33048,"ggies":33049,"Ġpremie":33050,"Ġskating":33051,"Ġpassports":33052,"Ġfists":33053,"ageddon":33054,"Haw":33055,"ACP":33056,"080":33057,"ĠThoughts":33058,"ĠCarlson":33059,"Ġpriesthood":33060,"hua":33061,"Ġdungeons":33062,"ĠLoans":33063,"Ġantis":33064,"Ġfamiliarity":33065,"ĠSabb":33066,"opal":33067,"ĠInk":33068,"strike":33069,"Ġcram":33070,"Ġlegalized":33071,"Ġcuisine":33072,"Ġfibre":33073,"Travel":33074,"ĠMonument":33075,"ODY":33076,"ethy":33077,"Ġinterstate":33078,"ĠPUR":33079,"emporary":33080,"ĠArabian":33081,"developed":33082,"Ġsaddle":33083,"Ġgithub":33084,"ĠOffer":33085,"ĠISP":33086,"rolet":33087,"ĠSUPER":33088,"ĠDenis":33089,"Ġmultiplier":33090,"Ġstirred":33091,"Interestingly":33092,"Ġcustomary":33093,"Ġbilled":33094,"hex":33095,"Ġmultiplied":33096,"Ġflipping":33097,"ĠCrosby":33098,"Ġfundamentals":33099,"iae":33100,"ĠPlayed":33101,"ĠAtom":33102,"amazon":33103,"ĠFlam":33104,"eez":33105,"activated":33106,"Ġtablespoon":33107,"Ġliberalism":33108,"ĠPalin":33109,"ĠPatel":33110,"Num":33111,"ĠTAM":33112,"Ġsurn":33113,"ĠReloaded":33114,"Ġcoined":33115,"\"],":33116,"ĠClash":33117,"ĠAgu":33118,"Ġpragmatic":33119,"ĠActivate":33120,"Ġ802":33121,"Ġtrailers":33122,"Ġsilhou":33123,"Ġprobes":33124,"Ġcircus":33125,"ĠBain":33126,"ĠLindsay":33127,"ĠAbbey":33128,"Delivery":33129,"Ġconcession":33130,"Ġgastro":33131,"ĠSprite":33132,"ÄŁ":33133,"andel":33134,"Ġgimm":33135,"Ġautobi":33136,"ĠTurtle":33137,"Ġwonderfully":33138,"ĠHaram":33139,"ĠWorldwide":33140,"ĠHandle":33141,"Ġtheorists":33142,"Ġsleek":33143,"ĠZhu":33144,"ographically":33145,"EGA":33146,"ĠOwners":33147,"aths":33148,"ĠAntarctic":33149,"natal":33150,"=\"\"":33151,"flags":33152,"````":33153,"Ġsul":33154,"Kh":33155,"Ġpotassium":33156,"Ġlineman":33157,"Ġcereal":33158,"ĠSeasons":33159,"Ġ2022":33160,"Ġmathematic":33161,"Ġastronomers":33162,"professional":33163,"Ġfares":33164,"cknowled":33165,"Ġchi":33166,"Ġyoungsters":33167,"Ġmistakenly":33168,"Ġhemisphere":33169,"ĠDivinity":33170,"rone":33171,"Ġ\",":33172,"rings":33173,"Ġattracts":33174,"vana":33175,"å¹":33176,"CAP":33177,"Ġplaylist":33178,"Ġporch":33179,"ãģ£":33180,"Ġincorporates":33181,"Ġsoak":33182,"Ġasserting":33183,"ĠTerrorism":33184,"ĠPablo":33185,"Ja":33186,"cester":33187,"Ġfearing":33188,"ĠPrayer":33189,"Ġescalated":33190,"GW":33191,"Ġrobe":33192,"ĠBrighton":33193,"acists":33194,"ĠSymphony":33195,"ĠDwarf":33196,"ĠParade":33197,"ĠLego":33198,"Ġinexpl":33199,"Ġlords":33200,"leaf":33201,"RAG":33202,"liber":33203,"Ġcigars":33204,"ĠJehovah":33205,"606":33206,"WINDOWS":33207,"ĠLiberia":33208,"ebus":33209,"Heavy":33210,"Ġlubric":33211,"ĠRW":33212,"anguages":33213,"Ġnarrowed":33214,"computer":33215,"ĠEmber":33216,"Ġmurdering":33217,"Ġdownstream":33218,"ĠTuls":33219,"ĠTables":33220,"Topic":33221,"ĠAccuracy":33222,"=/":33223,"lost":33224,"ĠRei":33225,"Ġprogresses":33226,"bear":33227,"Ġestablishments":33228,"Justin":33229,"ĠPeach":33230,"ĠGomez":33231,"å¿":33232,"ĠTriangle":33233,"Ident":33234,"ĠHive":33235,"Resources":33236,"Ġmixes":33237,"ĠAssuming":33238,"Mu":33239,"Ġhypoc":33240,"Ġsane":33241,"ĠWan":33242,"idious":33243,"Success":33244,"Ġio":33245,"Angel":33246,"Ġdangerously":33247,"ĠCreature":33248,"WORK":33249,":[":33250,"ĠKatrina":33251,"Listener":33252,"Miller":33253,"ĠIdlib":33254,"hang":33255,"Ġcircumvent":33256,"href":33257,"Ġcelestial":33258,"ĠWeeks":33259,"ĠPug":33260,"ĠDalton":33261,"Ġsubpoena":33262,"uku":33263,"Ġpersisted":33264,"pei":33265,"olding":33266,"ĠDocuments":33267,"ĠHast":33268,"ĠCENT":33269,"Ġprimer":33270,"Ġsynonymous":33271,"Ġnib":33272,"ombs":33273,"Ġnotation":33274,"ĠDish":33275,"ĠAtmosp":33276,"Ġforbid":33277,"ĠANG":33278,"pattern":33279,"los":33280,"Ġprojectiles":33281,"brown":33282,".\",":33283,"ĠVenom":33284,"Ġfiercely":33285,"ublished":33286,"ĠUran":33287,"ĠNicarag":33288,"410":33289,"ĠCAL":33290,"OTOS":33291,"ĠMiracle":33292,"ĠEnchant":33293,"Ġguarding":33294,"append":33295,"Attach":33296,"Ġleveled":33297,"Ġcondoms":33298,"ihilation":33299,"649":33300,"Ġnightmares":33301,"ĠTHEY":33302,"ĠSTART":33303,"ĠKinn":33304,"Ġroommate":33305,"Ġhygiene":33306,"opping":33307,"Job":33308,"Ġlvl":33309,"ĠVER":33310,"ĠKeeping":33311,"abetic":33312,"Ġformatting":33313,"erala":33314,"Ġrevisions":33315,"Ġresurg":33316,"Tel":33317,"ĠGoodman":33318,"353":33319,"pod":33320,"Ġindisp":33321,"ĠTranslation":33322,"Ġgown":33323,"ĠMund":33324,"Ġcis":33325,"Ġbystand":33326,"collect":33327,"ĠPunjab":33328,"actively":33329,"ĠGamb":33330,"tell":33331,"Ġimporting":33332,"gencies":33333,"Ġlocom":33334,"ĠBrill":33335,"Holy":33336,"ĠBerger":33337,"Ġshowdown":33338,"Ġresponders":33339,"ILY":33340,"Ġtakedown":33341,"leted":33342,"Ġmattered":33343,"Ġpredictive":33344,"Ġoverlay":33345,"GPU":33346,"ĠVick":33347,"Ġconveyed":33348,"Tab":33349,"peer":33350,"Scan":33351,"Ġdefensively":33352,"vae":33353,"Ġapproving":33354,"Ġtiers":33355,"ĠVia":33356,"querade":33357,"ĠSaudis":33358,"Ġdemolished":33359,"ĠProphe":33360,"Ġmono":33361,"Ġhospitality":33362,"HAM":33363,"ĠAriel":33364,"MOD":33365,"ĠTorah":33366,"Ġblah":33367,"ĠBelarus":33368,"erential":33369,"ĠTuc":33370,"Ġbanker":33371,"397":33372,"Ġmosquit":33373,"ĠScientist":33374,"ĠMusical":33375,"Ġhust":33376,"Shift":33377,"Ġtorment":33378,"Ġstandoff":33379,"Educ":33380,"ĠFog":33381,"Ġamplifier":33382,"Shape":33383,"Instance":33384,"ĠCritics":33385,"Ġdaemon":33386,"Houston":33387,"Ġmattress":33388,"ĠIDF":33389,"Ġobscene":33390,"ĠAmer":33391,"hetti":33392,"Ġcompiling":33393,"352":33394,"verett":33395,"ĠReduction":33396,"istration":33397,"ĠBlessed":33398,"ĠBachelor":33399,"316":33400,"Ġprank":33401,"ĠVulcan":33402,"dding":33403,"Ġmourning":33404,"ĠQuint":33405,"ĠBlaster":33406,"testing":33407,"Ġsediment":33408,">>>":33409,"ĠEternity":33410,"ĠWHERE":33411,"ĠMaze":33412,"Ġreacting":33413,"ĠAlv":33414,"omsday":33415,"ĠCRA":33416,"Ġtranslator":33417,"Ġbogus":33418,"atu":33419,"Website":33420,"olls":33421,"Ġbaptism":33422,"Ġsibling":33423,"ĠAutumn":33424,"vez":33425,"ãģ®é":33426,"guards":33427,"Georg":33428,"assadors":33429,"ĠFreud":33430,"Ġcontinents":33431,"ĠRegistry":33432,"Bernie":33433,"ĸļ士":33434,"Ġtolerant":33435,"ĠUW":33436,"Ġhorribly":33437,"995":33438,"ĠMIDI":33439,"Ġimpatient":33440,"ocado":33441,"eri":33442,"ĠWorst":33443,"ĠNorris":33444,"ĠTalking":33445,"Ġdefends":33446,"ensable":33447,"Ġ2021":33448,"Ġanatomy":33449,"Lew":33450,"Ġdrawer":33451,"ĠCanberra":33452,"Ġpatriotic":33453,"é¾įåĸļ士":33454,"ĠAvg":33455,"ARM":33456,"Ġundisclosed":33457,"Ġfarewell":33458,"459":33459,"bable":33460,"ĠAllison":33461,"OLOG":33462,"Ġconco":33463,"tight":33464,"ĠACPI":33465,"ĠMines":33466,"lich":33467,"ĠâĶľ":33468,"represented":33469,"200000":33470,"Ġenthusiast":33471,"OTS":33472,"bil":33473,"ĠIngredients":33474,"Ġinventor":33475,"ĠMySQL":33476,"³³³":33477,"ĠABOUT":33478,"within":33479,"Ġmk":33480,"Bul":33481,"ĠFake":33482,"Ġdraconian":33483,"Wa":33484,"helm":33485,"ĠTerran":33486,"erville":33487,"Ġcommonplace":33488,"SIZE":33489,"Ġ\"<":33490,"replace":33491,"ographs":33492,"ĠSELECT":33493,"incible":33494,"ĠMostly":33495,"ĠSheffield":33496,"ĠIDE":33497,"uggle":33498,"Ġcitations":33499,"hurst":33500,"ĠUnix":33501,"Ġunleash":33502,"ĠPiper":33503,"ĠNano":33504,"Ġsuccumb":33505,"Ġreluctance":33506,"Ġ2500":33507,"ĠMerchant":33508,"Ġwiret":33509,"Ġcombos":33510,"ĠBirthday":33511,"Ġcharcoal":33512,"ĠUPS":33513,"ĠFairfax":33514,"Ġdriveway":33515,"ĠTek":33516,"ĠPitch":33517,"overe":33518,"Ġtechnicians":33519,"ĠActual":33520,"flation":33521,"ĠFiscal":33522,"ĠEmpty":33523,"anamo":33524,"Ġmagnesium":33525,"Ġslut":33526,"Ġgrowers":33527,"Investigators":33528,"():":33529,"ĠSatellite":33530,"ĠKeynes":33531,"missive":33532,"lane":33533,"Ġborough":33534,"344":33535,"ĠTEAM":33536,"ĠBethesda":33537,"CV":33538,"hower":33539,"ĠRAD":33540,"Ġchant":33541,"ĠRiy":33542,"Ġcompositions":33543,"Ġmildly":33544,"Ġmeddling":33545,"Ġagility":33546,"aneers":33547,"501":33548,"Ġsynth":33549,"linger":33550,"291":33551,"Ġexclaimed":33552,"Party":33553,"Ġcontamin":33554,"ĠManor":33555,"ĠRespond":33556,"Ġpraising":33557,"Ġmanners":33558,"fleet":33559,"Summer":33560,"ĠLynd":33561,"ĠDefinitely":33562,"grim":33563,"Ġbowling":33564,"stri":33565,"çĽ":33566,"ynt":33567,"Ġmandates":33568,"DIV":33569,"Ġreconcile":33570,"views":33571,"ĠDamon":33572,"vette":33573,"Flo":33574,"ĠGreatest":33575,"ilon":33576,"icia":33577,"Ġportrayal":33578,"Ġcushion":33579,"504":33580,"1979":33581,"ossal":33582,"Applic":33583,"scription":33584,"Ġmitigation":33585,"ATS":33586,"pac":33587,"Ġerased":33588,"Ġdeficiencies":33589,"ĠHollande":33590,"ĠXu":33591,"Ġbred":33592,"Ġpregnancies":33593,"femin":33594,"Ġemph":33595,"Ġplanners":33596,"Ġoutper":33597,"uttering":33598,"Ġperpetrator":33599,"Ġmotto":33600,"ĠEllison":33601,"ĠNEVER":33602,"Ġadmittedly":33603,"ARI":33604,"ĠAzerbaijan":33605,"Ġmillisec":33606,"Ġcombustion":33607,"ĠBottle":33608,"ĠLund":33609,"ĠPs":33610,"ĠDress":33611,"Ġfabricated":33612,"Ġbattered":33613,"Ġsidel":33614,"ĠNotting":33615,"Foreign":33616,"ĠJerome":33617,"020":33618,"ĠArbit":33619,"Ġknots":33620,"ĠRIGHT":33621,"Moving":33622,"ãģĻ":33623,"Ġsurgeries":33624,"Ġcourthouse":33625,"Ġmastered":33626,"Ġhovering":33627,"ĠBran":33628,"ĠAlison":33629,"Ġsafest":33630,"military":33631,"Ġbullied":33632,"Ġbarrage":33633,"Reader":33634,"ESE":33635,"ĠGeographic":33636,"Tools":33637,"314":33638,"ĠGeek":33639,"roth":33640,"glers":33641,"ĠFIN":33642,"Ïģ":33643,"ĠAston":33644,"altern":33645,"488":33646,"Ġveterin":33647,"Gamer":33648,"Ġintel":33649,"renches":33650,"Shield":33651,"Ġamnesty":33652,"ĠBhar":33653,"Ġpiled":33654,"Ġhonorable":33655,"ĠInstitutes":33656,"Ġsoaked":33657,"Ġcoma":33658,"ĠEFF":33659,"341":33660,"bytes":33661,"ĠGmail":33662,"lein":33663,"ĠCanadiens":33664,"material":33665,"Il":33666,"Ġinstructors":33667,"ĠKY":33668,"Ġconceive":33669,"ubb":33670,"ĠPossible":33671,"Ġeasing":33672,"ĠChristina":33673,"Ġcaric":33674,"ĠHDR":33675,"ROM":33676,"Ġshovel":33677,"delete":33678,"Ġpuff":33679,"ĠChanging":33680,"Ġseamlessly":33681,"Attribute":33682,"Ġacquisitions":33683,"akery":33684,"ĠEF":33685,"Ġautistic":33686,"ĠTakes":33687,"ĠPowder":33688,"ĠStir":33689,"510":33690,"ĠBubble":33691,"settings":33692,"ĠFowler":33693,"Ġmustard":33694,"Ġmoreover":33695,"Ġcopyrighted":33696,"ĠLEDs":33697,"1500":33698,"æī":33699,"ĠHIS":33700,"enf":33701,"Ġcustod":33702,"ĠHuck":33703,"Gi":33704,"Ġimg":33705,"Answer":33706,"Ct":33707,"jay":33708,"ĠInfrastructure":33709,"Ġfederally":33710,"Loc":33711,"Ġmicrobes":33712,"Ġoverrun":33713,"dds":33714,"otent":33715,"adiator":33716,">>>>>>>>":33717,"Ġtornado":33718,"Ġadjud":33719,"Ġintrigued":33720,"Ġsi":33721,"ĠRevelation":33722,"progress":33723,"Ġburglary":33724,"ĠSaiyan":33725,"ĠKathy":33726,"Ġserpent":33727,"ĠAndreas":33728,"Ġcompel":33729,"essler":33730,"ĠPlastic":33731,"ĠAdvent":33732,"ĠPositive":33733,"ĠQt":33734,"ĠHindus":33735,"registered":33736,"ularity":33737,"Ġrighteousness":33738,"Ġdemonic":33739,"uitive":33740,"ĠBDS":33741,"ĠGregg":33742,"cia":33743,"ĠCrusade":33744,"ĠSinai":33745,"WARE":33746,"+(":33747,"Ġmell":33748,"Ġderail":33749,"yards":33750,"Ast":33751,"Ġnoticeably":33752,"ĠOber":33753,"Ram":33754,"Ġunnoticed":33755,"Ġseq":33756,"avage":33757,"Ts":33758,"Ġ640":33759,"Ġconcede":33760,"Ġ])":33761,"Fill":33762,"Ġcaptivity":33763,"ĠImprovement":33764,"ĠCrusader":33765,"araoh":33766,"MAP":33767,"æĹ":33768,"Ġstride":33769,"always":33770,"Fly":33771,"Nit":33772,"Ġalgae":33773,"ĠCooking":33774,"ĠDoors":33775,"Malley":33776,"Ġpolicemen":33777,"ãģį":33778,"Ġastronaut":33779,"accessible":33780,"495":33781,"ĠRAW":33782,"cliffe":33783,"udicrous":33784,"Ġdepended":33785,"alach":33786,"Ġventures":33787,"rake":33788,"Ġtits":33789,"ĠHou":33790,"Ġcondom":33791,"ormonal":33792,"Ġindent":33793,"Ġuploading":33794,"Footnote":33795,"Important":33796,"Ġ271":33797,"Ġmindful":33798,"Ġcontends":33799,"Cra":33800,"Ġcalibr":33801,"ĠOECD":33802,"plugin":33803,"Fat":33804,"ĠISS":33805,"ĠDynamics":33806,"ansen":33807,"686":33808,"'),":33809,"Ġsprite":33810,"Ġhandheld":33811,"ĠHipp":33812,"=~=~":33813,"Trust":33814,"Ġsemantics":33815,"ĠBundes":33816,"ĠReno":33817,"ĠLiterature":33818,"sense":33819,"Gary":33820,"ĠAeg":33821,"ĠTrin":33822,"EEK":33823,"Ġcleric":33824,"ĠSSH":33825,"Ġchrist":33826,"Ġinvading":33827,"ibu":33828,"Ġenum":33829,"aura":33830,"Ġallege":33831,"ĠIncredible":33832,"BBC":33833,"Ġthru":33834,"Ġsailed":33835,"Ġemulate":33836,"Ġinsecurity":33837,"Ġcrou":33838,"Ġaccommodations":33839,"Ġincompetent":33840,"Ġslips":33841,"ĠEarthqu":33842,"sama":33843,"ILLE":33844,"ĠiPhones":33845,"asaki":33846,"Ġbye":33847,"Ġard":33848,"Ġextras":33849,"Ġslaughtered":33850,"Ġcrowdfunding":33851,"resso":33852,"Ġfilib":33853,"ĠERROR":33854,"ĠTLS":33855,"egg":33856,"ĠItal":33857,"Ġenlist":33858,"ĠCatalonia":33859,"ĠScots":33860,"Ġsergeant":33861,"Ġdissolve":33862,"NH":33863,"Ġstandings":33864,"rique":33865,"IQ":33866,"Ġbeneficiary":33867,"Ġaquarium":33868,"YouTube":33869,"ĠPowerShell":33870,"Ġbrightest":33871,"ĠWarrant":33872,"Sold":33873,"Writing":33874,"Ġbeginnings":33875,"ĠReserved":33876,"ĠLatinos":33877,"heading":33878,"Ġ440":33879,"Ġrooftop":33880,"ATING":33881,"Ġ390":33882,"VPN":33883,"Gs":33884,"kernel":33885,"turned":33886,"Ġpreferable":33887,"Ġturnovers":33888,"ĠHels":33889,"Sa":33890,"ĠShinji":33891,"veh":33892,"ĠMODULE":33893,"Viol":33894,"Ġexiting":33895,"Ġjab":33896,"ĠVanilla":33897,"Ġacron":33898,"ĠGap":33899,"bern":33900,"Ak":33901,"ĠMcGu":33902,"Ġendlessly":33903,"ĠFarage":33904,"ĠNoel":33905,"Va":33906,"MK":33907,"Ġbrute":33908,"ĠKru":33909,"ĠESV":33910,"ĠOlivia":33911,"âĢł":33912,"ĠKaf":33913,"Ġtrusting":33914,"Ġhots":33915,"324":33916,"Ġmalaria":33917,"Ġjson":33918,"Ġpounding":33919,"ortment":33920,"Country":33921,"Ġpostponed":33922,"Ġunequiv":33923,"?),":33924,"ĠRooney":33925,"udding":33926,"ĠLeap":33927,"urrence":33928,"shapeshifter":33929,"ĠHAS":33930,"osate":33931,"Ġcavern":33932,"Ġconservatism":33933,"ĠBAD":33934,"Ġmileage":33935,"Ġarresting":33936,"Vaults":33937,"Ġmixer":33938,"Democratic":33939,"ĠBenson":33940,"Ġauthored":33941,"8000":33942,"Ġproactive":33943,"ĠSpiritual":33944,"tre":33945,"Ġincarcerated":33946,"ĠSort":33947,"Ġpeaked":33948,"Ġwielding":33949,"reciation":33950,"×Ļ×":33951,"Patch":33952,"ĠEmmy":33953,"Ġexqu":33954,"tto":33955,"ĠRatio":33956,"ĠPicks":33957,"ĠGry":33958,"phant":33959,"Ġfret":33960,"Ġethn":33961,"Ġarchived":33962,"%-":33963,"cases":33964,"ĠBlaze":33965,"Ġimb":33966,"cv":33967,"yss":33968,"imony":33969,"Ġcountdown":33970,"Ġawakening":33971,"ĠTunisia":33972,"ĠRefer":33973,"ĠMJ":33974,"Ġunnatural":33975,"ĠCarnegie":33976,"izen":33977,"ĠNuggets":33978,"hess":33979,"Ġevils":33980,"647":33981,"Ġintroductory":33982,"loving":33983,"ĠMcMahon":33984,"Ġambiguity":33985,"Label":33986,"ĠAlmighty":33987,"Ġcoloring":33988,"ĠClaus":33989,"setting":33990,"NULL":33991,"ĠFavorite":33992,"ĠSIG":33993,">(":33994,"ĠShiva":33995,"ĠMayer":33996,"Ġstormed":33997,"ĠCoverage":33998,"weapons":33999,"igham":34000,"Ġunanswered":34001,"Ġleve":34002,"Ġcoy":34003,"cas":34004,"bags":34005,"asured":34006,"Seattle":34007,"ĠSantorum":34008,"serious":34009,"Ġcourageous":34010,"ĠSoup":34011,"Ġconfiscated":34012,"Ġ///":34013,"Ġunconventional":34014,"Ġmoms":34015,"ĠRohingya":34016,"ĠOrchestra":34017,"ĠPotion":34018,"Ġdiscredit":34019,"ĠFIL":34020,"fixed":34021,"ĠDeer":34022,"doi":34023,"ĠDimension":34024,"Ġbureaucrats":34025,"eteen":34026,"ĠactionGroup":34027,"ohm":34028,"Ġbumps":34029,"ĠUtility":34030,"Ġsubmarines":34031,"renheit":34032,"research":34033,"ĠShapiro":34034,"Ġsketches":34035,"Ġdeceptive":34036,"ĠVil":34037,"esame":34038,"ĠEssentially":34039,"Ġrampage":34040,"isky":34041,"Ġmuttered":34042,"thritis":34043,"Ġ236":34044,"fet":34045,"bars":34046,"Ġpupil":34047,"ĠThou":34048,"oS":34049,"song":34050,"Ġfractured":34051,"Ġrevert":34052,"picture":34053,"Ġcriterion":34054,"usher":34055,"Ġrepercussions":34056,"ĠVintage":34057,"ĠSuperintendent":34058,"Officers":34059,"Ġflagged":34060,"Ġblames":34061,"Ġinverse":34062,"ographers":34063,"Ġmakeshift":34064,"Ġdevoid":34065,"Ġfossils":34066,"ĠAristotle":34067,"ĠFunds":34068,"Ġdepleted":34069,"ĠFlu":34070,"ĠYuan":34071,"Ġwoes":34072,"Ġlipid":34073,"Ġsitu":34074,"requisites":34075,"Ġfurnish":34076,"ĠSamar":34077,"Ġshameful":34078,"Ġadversely":34079,"Ġadept":34080,"Ġremorse":34081,"Ġmurderous":34082,"uckles":34083,"ĠESL":34084,"Ġ314":34085,"sent":34086,"Ġredef":34087,"ĠCache":34088,"ĠPurs":34089,"igans":34090,"Ġ460":34091,"Ġprescriptions":34092,"Ġfres":34093,"Fuck":34094,"ocrates":34095,"Twenty":34096,"ĠWeird":34097,"ĠToggle":34098,"ĠCalled":34099,"itizens":34100,"Ġpoultry":34101,"Ġharvesting":34102,"ãĤ¦ãĤ¹":34103,"Bottom":34104,"Ġcautioned":34105,"tn":34106,"396":34107,"ĠNikki":34108,"Ġevaluations":34109,"Ġharassing":34110,"Ġbindings":34111,"ĠMonetary":34112,"Ġhitters":34113,"Ġadversary":34114,"unts":34115,"Ġsetback":34116,"Ġencrypt":34117,"ĠCait":34118,"Ġlows":34119,"enges":34120,"ĠNorn":34121,"Ġbulbs":34122,"Ġbottled":34123,"ĠVoyager":34124,"317":34125,"Ġspheres":34126,"politics":34127,"Ġsubtract":34128,"Ġsensations":34129,"Ġappalling":34130,"Ġ316":34131,"Ġenvironmentally":34132,"ĠSTEM":34133,"Ġpublishes":34134,"560":34135,"Ġdiligence":34136,"484":34137,"Ġadvises":34138,"Ġpetrol":34139,"Ġimagining":34140,"Ġpatrols":34141,"ĠInteger":34142,"ĠAshes":34143,"actus":34144,"ĠRadiant":34145,"ĠLT":34146,"itability":34147,"htaking":34148,"Setting":34149,"Ġnuanced":34150,"ĠReef":34151,"ĠDevelopers":34152,"Ni":34153,"pieces":34154,"990":34155,"License":34156,"Ġlowers":34157,"ĠOttoman":34158,"327":34159,"ooo":34160,"Ġquitting":34161,"markets":34162,"Behind":34163,"Ġbasin":34164,"Ġdocs":34165,"anie":34166,"flash":34167,"ctl":34168,"Ġcivilized":34169,"ĠFukushima":34170,"\"],\"":34171,"ĠKS":34172,"ĠHonestly":34173,"arat":34174,"Ġconstructs":34175,"ĠLans":34176,"ĠDire":34177,"ĠLIKE":34178,"ĠTrouble":34179,"Ġwithholding":34180,"ĠOblivion":34181,"Ġsanity":34182,"anya":34183,"Const":34184,"Ġgrocer":34185,"ĠCelsius":34186,"Ġrecounted":34187,"ĠWife":34188,"Border":34189,"atered":34190,"happy":34191,"Ġspoiler":34192,"Ġlogically":34193,"Hall":34194,"Ġsucceeding":34195,"Ġpolymorph":34196,"Ġaxes":34197,"ĠShotgun":34198,"ĠSlim":34199,"ĠPrinciples":34200,"ĠLeth":34201,"arta":34202,"Ġscor":34203,"Screenshot":34204,"Ġrelaxation":34205,"#$#$":34206,"Ġdeterrent":34207,"iddy":34208,"Ġpowerless":34209,"Ġlesbians":34210,"Ġchords":34211,"ĠEdited":34212,"selected":34213,"Ġseparatists":34214,"0002":34215,"Ġairspace":34216,"Ġturnaround":34217,"Ġcunning":34218,"PATH":34219,"Poly":34220,"Ġbombed":34221,"Ġtion":34222,"xs":34223,"Ġwithhold":34224,"Ġwaged":34225,"ĠLiberties":34226,"Flag":34227,"Ġcomforting":34228,"454":34229,"ĠIris":34230,"arers":34231,"Ġrag":34232,"Ġrelocated":34233,"ĠGuarant":34234,"Ġstrategically":34235,"Ġgamma":34236,"uberty":34237,"ĠLockheed":34238,"gres":34239,"Ġgrilled":34240,"ĠLowe":34241,"stats":34242,"ĠRocks":34243,"Ġsensing":34244,"Ġrenting":34245,"ĠGeological":34246,"اØ":34247,"otrop":34248,"Ġsew":34249,"Ġimproperly":34250,"486":34251,"Ġâĸł":34252,"Ġstarving":34253,"ĠBj":34254,"Discussion":34255,"328":34256,"ĠCombo":34257,"ĠFixes":34258,"NAT":34259,"Ġstriving":34260,"thora":34261,"Ġharvested":34262,"ĠPing":34263,"Ġplayful":34264,"Ġavenues":34265,"Ġoccupational":34266,"Ġwakes":34267,"ĠCourier":34268,"Ġdrummer":34269,"ĠBrowser":34270,"ĠHouth":34271,"itu":34272,"Ġapparel":34273,"paste":34274,"Ġhunted":34275,"ĠSecondly":34276,"lain":34277,"XY":34278,"ĠPIN":34279,"icons":34280,"Ġcocktails":34281,"Ġsizable":34282,"Ġhurdles":34283,"estinal":34284,"ĠRecreation":34285,"Ġeco":34286,"648":34287,"ĠDied":34288,"mint":34289,"Ġfingerprints":34290,"Ġdispose":34291,"ĠBosnia":34292,"tsy":34293,"2200":34294,"Ġinspected":34295,"ĠFou":34296,"Ġfuss":34297,"Ġambush":34298,"ĠRak":34299,"Ġmanifested":34300,"Prosecut":34301,"Ġsuffice":34302,"rences":34303,"Ġcompensated":34304,"ĠCyrus":34305,"Ġgenus":34306,"ĠWolverine":34307,"ĠTrends":34308,"Ġhikes":34309,"ĠSeen":34310,"Ġenrol":34311,"Cold":34312,"Ġpolitely":34313,"ĠSlav":34314,"ĠRupert":34315,"Ġeyewitness":34316,"ĠAlto":34317,"Ġuncomp":34318,"Ġposterior":34319,"Must":34320,"ĠHerz":34321,"Ġprogressively":34322,"Ġ234":34323,"Ġindifference":34324,"ĠCunningham":34325,"Ġacademia":34326,"Ġsewer":34327,"Ġastounding":34328,"ĠAES":34329,"rather":34330,"Ġeldest":34331,"Ġclimbs":34332,"ĠAdds":34333,"Ġoutcry":34334,"Ġcontag":34335,"ĠHouses":34336,"Ġpept":34337,"ĠMelania":34338,"interested":34339,"ĠUCH":34340,"ĠRoots":34341,"ĠHubbard":34342,"ĠTBD":34343,"ĠRomanian":34344,"filename":34345,"Stone":34346,"ĠImpl":34347,"Ġchromosome":34348,"Cle":34349,"dx":34350,"Ġscrambled":34351,"ĠPt":34352,"Ġ242":34353,"OPLE":34354,"Ġtremendously":34355,"Street":34356,"Ġcraving":34357,"Ġbundled":34358,"ĠRG":34359,"pipe":34360,"Ġinjuring":34361,"Ġarcane":34362,"Particip":34363,"ĠHeroic":34364,"sty":34365,"Ġtopping":34366,"ĠTempest":34367,"rentices":34368,"bh":34369,"Ġparanoia":34370,"ĠUnicode":34371,"Ġegregious":34372,"Ġ\\'":34373,"ĠOswald":34374,"Ġgravel":34375,"ĠSimpsons":34376,"Ġbland":34377,"ĠGuantanamo":34378,"Writer":34379,"liners":34380,"ĠDice":34381,"JC":34382,"Ġparity":34383,"Ġsided":34384,"Ġ237":34385,"ĠPyrrha":34386,"atters":34387,"dk":34388,"Fine":34389,"compan":34390,"Ġformulated":34391,"ĠIdol":34392,"ilers":34393,"hemoth":34394,"ĠFav":34395,"Ġintrusion":34396,"Ġcarrots":34397,"ĠLayer":34398,"ĠHacker":34399,"Ġ----------------":34400,"Ġmoderation":34401,"éģ":34402,"ococ":34403,"Ġcharacterize":34404,"ĠTeresa":34405,"Ġsocioeconomic":34406,"Ġperk":34407,"ĠParticipation":34408,"training":34409,"ĠPaulo":34410,"phys":34411,"Ġtrustworthy":34412,"Ġembodied":34413,"ĠMerch":34414,"currency":34415,"ĠPriority":34416,"Ġteasing":34417,"Ġabsorbing":34418,"Ġunfinished":34419,"ĠComparison":34420,"Ġdisple":34421,"writers":34422,"Ġprofessions":34423,"ĠPenguin":34424,"Ġangrily":34425,"ĠLINK":34426,"688":34427,"ĠCorrespond":34428,"Ġprevailed":34429,"Ġcartel":34430,"lp":34431,"asms":34432,"ĠRedemption":34433,"ĠIslamists":34434,"effects":34435,"dose":34436,"ĠLatter":34437,"ĠHalifax":34438,"Ġvas":34439,"ĠTopics":34440,"ĠNamed":34441,"advertising":34442,"zza":34443,"ICES":34444,"Ġretarded":34445,"achable":34446,"ĠPuppet":34447,"ĠItemLevel":34448,"Ġretract":34449,"Ġidentifiable":34450,"Aaron":34451,"ĠBuster":34452,"sol":34453,"helle":34454,"assemb":34455,"Hope":34456,"ranged":34457,"Ba":34458,"ĠPurch":34459,"éĢ":34460,"ĠSiri":34461,"Ġarrivals":34462,"Ġ1912":34463,"Ġshortened":34464,"Ġ312":34465,"Ġdiscrepancy":34466,"ĠTemperature":34467,"ĠWalton":34468,"Ġkinderg":34469,"polit":34470,"Ġremix":34471,"Ġconnectors":34472,"ãĥĺãĥ©":34473,"ĠKazakhstan":34474,"dominated":34475,"Ġsugars":34476,"imble":34477,"ĠPanic":34478,"ĠDemand":34479,"ĠColony":34480,"onen":34481,"ĠMER":34482,"775":34483,"uria":34484,"azaar":34485,"ĠDegree":34486,"Pri":34487,"Ġsunshine":34488,"Ġ251":34489,"Ġpsychedelic":34490,"Ġdigitally":34491,"ĠBraun":34492,"Ġshimmer":34493,"Ġshave":34494,"ĠTelesc":34495,"ĠAstral":34496,"ĠVenezuelan":34497,"ĠOG":34498,"Ġcrawling":34499,"Integ":34500,"ĠFeather":34501,"Ġunfolding":34502,"Ġappropriation":34503,"Ġè£ıè":34504,"ĠMobility":34505,"ĠNey":34506,"-.":34507,"bilt":34508,"LIN":34509,"ĠTube":34510,"ĠConversely":34511,"Ġkeyboards":34512,"ĠCao":34513,"Ġoverth":34514,"Ġlaure":34515,">>\\":34516,"ĠViper":34517,"acha":34518,"Offset":34519,"ĠRaleigh":34520,"ĠJae":34521,"Jordan":34522,"jp":34523,"Ġtotalitarian":34524,"Connector":34525,"Ġobserves":34526,"ĠSpartan":34527,"ĠImmediately":34528,"ĠScal":34529,"Cool":34530,"Ġtaps":34531,"Ġroar":34532,"Past":34533,"Ġchars":34534,"ĠBender":34535,"ĠSheldon":34536,"Ġpainter":34537,"Ġbeacon":34538,"ĠCreatures":34539,"Ġdownturn":34540,"Ġhinder":34541,"ĠAndromeda":34542,"ÃĽ":34543,"ccoli":34544,"ĠFitness":34545,"etrical":34546,"Ġutilizes":34547,"Ġsenate":34548,"Ġensemble":34549,"Ġcheers":34550,"TW":34551,"Ġaffluent":34552,"kil":34553,"rylic":34554,"ordering":34555,"Computer":34556,"Ġgruesome":34557,"ostics":34558,"ĠUbisoft":34559,"ĠKelley":34560,"Ġwrench":34561,"Ġbourgeoisie":34562,"IBLE":34563,"ĠPreston":34564,"worn":34565,"arist":34566,"reating":34567,"Ġstained":34568,"arine":34569,"Ġslime":34570,"ENN":34571,"Ġchests":34572,"Ġgroundwater":34573,"annot":34574,"ĠTray":34575,"ĠLocke":34576,"ĠCTR":34577,"Ġdudes":34578,"ĠExternal":34579,"ĠDecoder":34580,"Ġparamed":34581,"ĠMedline":34582,"809":34583,"ĠDinner":34584,"rupal":34585,"gz":34586,"ĠGum":34587,"ĠDemo":34588,"jee":34589,"Ġdh":34590,"berman":34591,"archs":34592,"Ġenqu":34593,"ĠEpstein":34594,"Ġdevastation":34595,"Ġfriendships":34596,"ĠArd":34597,"Ġ231":34598,"ĠRubin":34599,"ĠDistance":34600,"Ġspurred":34601,"Ġdossier":34602,"Ġoverlooking":34603,"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":34604,"Forest":34605,"ĠComes":34606,"\\\",":34607,"ĠIranians":34608,"Ġfixtures":34609,"Laughs":34610,"Ġcurry":34611,"ĠKingston":34612,"Ġsquash":34613,"Ġcatalogue":34614,"Ġabnormalities":34615,"Ġdigestive":34616,".........":34617,"Ġsubordinate":34618,"ogly":34619,"Ġ249":34620,"Middle":34621,"Ġmassac":34622,"Ġburgers":34623,"Ġdownstairs":34624,"Ġ1931":34625,"394":34626,"ĠVG":34627,"Ġlasers":34628,"ĠSikh":34629,"ĠAlexa":34630,"derived":34631,"Ġcyclist":34632,"ãģ®éŃĶ":34633,"oneliness":34634,"!!!!!!!!":34635,"Ġbuffs":34636,"legate":34637,"Ġraping":34638,"Ġrecommending":34639,"rored":34640,"Ġmulticultural":34641,"unique":34642,"Ġbusinessmen":34643,"Ġuneasy":34644,"ĠMAP":34645,"Ġdispersed":34646,"cipline":34647,"Jess":34648,"ĠKerala":34649,"å§":34650,"Ġabstraction":34651,"Surv":34652,"Uh":34653,"Ġprinters":34654,"ija":34655,"owder":34656,"Ġanalogous":34657,"ĠASP":34658,"afer":34659,"Ġunfolded":34660,"Ġleveling":34661,"Ġbreached":34662,"ĠHearing":34663,"Ġnat":34664,"Ġtranslating":34665,"critical":34666,"Ġantagonist":34667,"ĠYesterday":34668,"Ġfuzzy":34669,"wash":34670,"mere":34671,"Ġbewild":34672,"ĠMae":34673,"Virgin":34674,"phrase":34675,"Ġsignaled":34676,"ĠHIGH":34677,"Ġprotester":34678,"Ġgarner":34679,"unknown":34680,"Ġkay":34681,"Ġabducted":34682,"Ġstalking":34683,"amn":34684,"Ġdeserving":34685,"ĠRiv":34686,"ĠJorge":34687,"Ġscratching":34688,"ĠSaving":34689,"iping":34690,"Ġtease":34691,"Ġmissionary":34692,"ĠMorrow":34693,"TIME":34694,"Present":34695,"Ġchemotherapy":34696,"terness":34697,"ĠHomes":34698,"ĠPurdue":34699,"Ġstaunch":34700,"ĠWhitney":34701,"ĠTHERE":34702,"μ":34703,"iatus":34704,"ĠErnest":34705,"ĠDeploy":34706,"Ġcoveted":34707,"FML":34708,"ĠDialogue":34709,"Ġexited":34710,"fruit":34711,"Ġnerd":34712,"\":\"\",\"":34713,"Ġvivo":34714,"ruly":34715,"460":34716,"ĠAmen":34717,"rehensible":34718,"Ġâĺ":34719,"DIR":34720,"Ġadherence":34721,"Ġchew":34722,"ĠCoke":34723,"ĠSergei":34724,"digital":34725,"ĠNeck":34726,"gently":34727,"enthal":34728,"/)":34729,"Ġweary":34730,"Ġguise":34731,"ĠConcord":34732,"ĠOnion":34733,"atcher":34734,"Ġbinge":34735,"ĠDirective":34736,"Ġmanned":34737,"ansk":34738,"Ġillusions":34739,"Ġbillionaires":34740,"383":34741,"olyn":34742,"odynamic":34743,"ĠWheat":34744,"ĠAlic":34745,"Ġcoloured":34746,"ĠNAFTA":34747,"abo":34748,"Ġmacros":34749,"independent":34750,"sweet":34751,"Ġspac":34752,"ĠKabul":34753,"ĠÄ":34754,"eme":34755,"Ġdictated":34756,"Ġshouts":34757,"={":34758,"Ġripping":34759,"ĠShay":34760,"ĠCricket":34761,"directed":34762,"Ġanalysed":34763,"ĠWARRANT":34764,"agons":34765,"ĠBlazers":34766,"Ġcheered":34767,"Ġarithmetic":34768,"ĠTanz":34769,"373":34770,"ĠFlags":34771,"Ġ295":34772,"Ġwitches":34773,"ĠIncluded":34774,"ĠGained":34775,"ĠBlades":34776,"Gam":34777,"ĠSamantha":34778,"ĠAtlantis":34779,"ĠPratt":34780,"Ġspoiled":34781,"ĠIB":34782,"ĠRamirez":34783,"Probably":34784,"rero":34785,"ĠNg":34786,"ĠWarlock":34787,"tp":34788,"Ġoverhe":34789,"Ġadministrations":34790,"Ġtint":34791,"Ġregiment":34792,"Ġpistols":34793,"Ġblankets":34794,"Ġepist":34795,"Ġbowls":34796,"Ġhydraulic":34797,"Ġdean":34798,"Ġjung":34799,"Ġascend":34800,"705":34801,"ĠSantiago":34802,"î":34803,"Ġunavoid":34804,"ĠShaman":34805,"reb":34806,"Ġstemming":34807,"998":34808,"ĠMG":34809,"sticks":34810,"esthesia":34811,"ERO":34812,"Ġmorbid":34813,"ĠGrill":34814,"ĠPoe":34815,"anyl":34816,"Ġdeleting":34817,"ĠSurveillance":34818,"Ġdirectives":34819,"Ġiterations":34820,"ĠRox":34821,"ĠMilky":34822,"Father":34823,"Ġpatented":34824,"447":34825,"Ġprecursor":34826,"Ġmaiden":34827,"ĠPhen":34828,"ĠVegan":34829,"ĠPatent":34830,"Kelly":34831,"Redditor":34832,"Ġnods":34833,"Ġventilation":34834,"ĠSchwarz":34835,"Ġwizards":34836,"Ġominous":34837,"ĠHeads":34838,"ĠBG":34839,"Ġlumber":34840,"ĠSpiel":34841,"ĠisEnabled":34842,"Ġancestral":34843,"ĠShips":34844,"Ġwrestler":34845,"phi":34846,"Ġyuan":34847,"ĠRebellion":34848,"Ġiceberg":34849,"Ġmagically":34850,"Ġdiversion":34851,"arro":34852,"ythm":34853,"ĠRiders":34854,"ĠRobbie":34855,"ĠKara":34856,"ĠMaintenance":34857,"ĠHerb":34858,"Ġharms":34859,"packed":34860,"ĠFeinstein":34861,"Ġmarrying":34862,"Ġblending":34863,"ĠRates":34864,"Ġ1880":34865,"Ġwrink":34866,"ĠUnch":34867,"ĠTorch":34868,"described":34869,"Ġhumanoid":34870,"ilitating":34871,"ĠConv":34872,"ĠFeld":34873,"IGHTS":34874,"Ġwhistleblower":34875,"ortmund":34876,"etsy":34877,"arrett":34878,"ĠMono":34879,"ĠIke":34880,"ĠCNBC":34881,"ĠWAY":34882,"ĠMDMA":34883,"ĠIndividuals":34884,"Ġsupplemental":34885,"Ġpowerhouse":34886,"ĠStru":34887,"Focus":34888,"aphael":34889,"ĠColleg":34890,"atti":34891,"ZA":34892,"Ġperenn":34893,"ĠSignature":34894,"ĠRodney":34895,"Ġcubes":34896,"iddled":34897,"ĠDante":34898,"ĠINV":34899,"ilingual":34900,"ĠCth":34901,"Ġsofa":34902,"Ġintimidate":34903,"ĠRoe":34904,"ĠDiplom":34905,"ĠCountries":34906,"ayson":34907,"Ġextradition":34908,"Ġdisabling":34909,"ĠCardiff":34910,"Ġmemorandum":34911,"ĠTrace":34912,"Ġ???":34913,"sector":34914,"ĠRouhani":34915,"ĠYates":34916,"ĠFreeze":34917,"Ġbladder":34918,"Motor":34919,"ĠPromise":34920,"antasy":34921,"Ġforeseeable":34922,"ĠCologne":34923,"container":34924,"ĠTrees":34925,"ĠGors":34926,"ĠSinclair":34927,"Ġbarring":34928,"keye":34929,"Ġslashed":34930,"ĠStatistical":34931,"éĩ":34932,"Ġâĸº":34933,"Allows":34934,"Ġhumility":34935,"Ġdrilled":34936,"ĠFurn":34937,"443":34938,"Ġsewage":34939,"Ġhomepage":34940,"Ġcourtyard":34941,"Ġvile":34942,"Ġsubsidiaries":34943,"ajo":34944,"directory":34945,"Ġammon":34946,"Vers":34947,"charges":34948,"Ġ}}":34949,"ĠChains":34950,"Ġ246":34951,"nob":34952,"Ġpercept":34953,"Ġgrit":34954,"Ġfishermen":34955,"ĠIraqis":34956,"ĠDISTR":34957,"ĠFULL":34958,"ĠEvaluation":34959,"graph":34960,"atial":34961,"Ġcooperating":34962,"Ġmelan":34963,"Ġenlightened":34964,"Ġali":34965,"tailed":34966,"Ġsalute":34967,"Ġweakest":34968,"ĠBulldogs":34969,"UA":34970,"ĠAlloy":34971,"Ġsemen":34972,"ocene":34973,"ĠWilliamson":34974,"spr":34975,",âĢĶ":34976,"ĠGF":34977,"ittens":34978,"Beat":34979,"ĠJunk":34980,"iphate":34981,"ĠFarmers":34982,"ĠBitcoins":34983,"igers":34984,"dh":34985,"ĠLoyal":34986,"payer":34987,"Ġentertained":34988,"Ġpenned":34989,"Ġcoupon":34990,"Queue":34991,"Ġweakening":34992,"carry":34993,"Ġunderestimate":34994,"Ġshootout":34995,"Ġcharismatic":34996,"ĠProcedure":34997,"Ġprudent":34998,"inances":34999,"Ġriches":35000,"Ġcortical":35001,"Ġstrides":35002,"Ġdrib":35003,"ĠOilers":35004,"540":35005,"ĠPerform":35006,"ĠBangkok":35007,"Ġeuth":35008,"SER":35009,"Ġsimplistic":35010,"tops":35011,"campaign":35012,"Quality":35013,"Ġimpoverished":35014,"ĠEisenhower":35015,"Ġaugment":35016,"ĠHarden":35017,"Ġintervened":35018,"Ġlistens":35019,"ĠKok":35020,"Ġsage":35021,"Ġrubbish":35022,"ĠDed":35023,"Ġmull":35024,"pelling":35025,"Ġvideot":35026,"Production":35027,"DJ":35028,"miah":35029,"Ġadaptations":35030,"Ġmedically":35031,"Ġboarded":35032,"Ġarrogance":35033,"Ġscrapped":35034,"Ġoppress":35035,"FORMATION":35036,"Ġjunction":35037,"415":35038,"EEEE":35039,"Skill":35040,"Ġsubdu":35041,"ĠSuggest":35042,"ĠPett":35043,"Ġlett":35044,"ĠManip":35045,"ĠCaf":35046,"ĠCooperation":35047,"Ther":35048,"Ġregained":35049,"¶æ":35050,"reflect":35051,"Ġthugs":35052,"ĠShelby":35053,"Ġdictates":35054,"ĠWeiner":35055,"ĠHale":35056,"Ġbattleground":35057,"schild":35058,"Ġcondol":35059,"hunt":35060,"ositories":35061,"Ġaccuses":35062,"Filename":35063,"Ġshri":35064,"Ġmotivate":35065,"Ġreflections":35066,"Null":35067,"ĠLobby":35068,"¥µ":35069,"ĠSATA":35070,"ĠBackup":35071,"Ñĥ":35072,"nin":35073,"ĠCorrection":35074,"Ġjuicy":35075,"utra":35076,"ĠPric":35077,"Ġrestraining":35078,"ĠAirbnb":35079,"ĠArrest":35080,"Ġappropriations":35081,"Ġslopes":35082,"Ġmanslaughter":35083,"Ġworkings":35084,"ĠHuss":35085,"ĠFrey":35086,"Leave":35087,"ĠHarmony":35088,"ĠFeder":35089,"Ġ430":35090,"Ġtrench":35091,"Ġgladly":35092,"Ġbullpen":35093,"ĠGau":35094,"bones":35095,"Ġgroove":35096,"Ġpretext":35097,"ãħĭ":35098,"Ġtransmitter":35099,"ĠComponent":35100,"Ġunderage":35101,"ĠEmpires":35102,"Tile":35103,"Ġoy":35104,"ĠMarvin":35105,"ĠCAS":35106,"Ġbloss":35107,"Ġreplicated":35108,"ĠMariners":35109,"Marcus":35110,"ĠBlocks":35111,"Ġliberated":35112,"Ġbutterfly":35113,"Feel":35114,"Ġfermentation":35115,"Ġyoutube":35116,"Ġoffend":35117,"ĠTerm":35118,"resist":35119,"Ġcessation":35120,"Ġinsurgency":35121,"Ġbir":35122,"ĠRaise":35123,"595":35124,"Ġhypotheses":35125,"502":35126,"Ġplaque":35127,"ocrat":35128,"Ġjackets":35129,"ĠHuffPost":35130,"among":35131,"Ġconfer":35132,"487":35133,"ĠLilly":35134,"Ġadapting":35135,"ĠFay":35136,"Ġshoved":35137,"vec":35138,"Ġrefine":35139,"Ġgon":35140,"Ġgunmen":35141,"zai":35142,"ĠShuttle":35143,"ĠIzan":35144,"Ġ1913":35145,"Ġplethora":35146,"··":35147,"Ġ510":35148,"Ġpuberty":35149,"Ġ241":35150,"ĠWealth":35151,"ĠAlma":35152,"ĠMEM":35153,"ĠAdults":35154,"Cas":35155,"prison":35156,"Race":35157,"Ġwaterproof":35158,"Ġathleticism":35159,"Ġcapitalize":35160,"ĠJuice":35161,"Ġilluminated":35162,"ĠPascal":35163,"Ġirritation":35164,"ĠWitnesses":35165,"adle":35166,"ĠAstro":35167,"Ġfax":35168,"ĠElvis":35169,"Primary":35170,"ĠLich":35171,"ĠElves":35172,"Ġresiding":35173,"Ġstumble":35174,"319":35175,"ĠPKK":35176,"Ġadversaries":35177,"DOS":35178,"ĠRitual":35179,"Ġsmear":35180,"Ġarson":35181,"idental":35182,"Ġscant":35183,"Ġmonarchy":35184,"Ġhalftime":35185,"Ġresidue":35186,"Ġindign":35187,"ĠShaun":35188,"ĠElm":35189,"auri":35190,"Aff":35191,"WATCH":35192,"ĠLyon":35193,"helps":35194,"361":35195,"Ġlobbyist":35196,"Ġdiminishing":35197,"Ġoutbreaks":35198,"Ġgoats":35199,"favorite":35200,"ĠNah":35201,"sonian":35202,"ĠBooster":35203,"Ġsandbox":35204,"ĠFare":35205,"ĠMalta":35206,"ĠattRot":35207,"ĠMOR":35208,"lde":35209,"Ġnavigating":35210,"Touch":35211,"Ġuntrue":35212,"ĠDisaster":35213,"Ġludicrous":35214,"Password":35215,"ĠJFK":35216,"blogspot":35217,"416":35218,"ĠUNDER":35219,"ernal":35220,"Ġdelaying":35221,"TOP":35222,"Ġimplants":35223,"ĠAVG":35224,"ĠHuge":35225,"attr":35226,"Ġjournalistic":35227,"ĠPeyton":35228,"ĠIA":35229,"Rap":35230,"goal":35231,"ĠProgramme":35232,"Ġsmashing":35233,"wives":35234,"println":35235,"ĠPlague":35236,"inus":35237,"EEP":35238,"Ġcruiser":35239,"ĠParish":35240,"uminium":35241,"Ġoccupants":35242,"ĠJihad":35243,"mop":35244,"Ġpint":35245,"Ġhect":35246,"ĠMecca":35247,"director":35248,"ĠFunding":35249,"ĠMixed":35250,"Ġstag":35251,"Tier":35252,"Ġgust":35253,"Ġbrightly":35254,"orsi":35255,"Ġuphill":35256,"RD":35257,"Ġlesions":35258,"ĠBundy":35259,"livious":35260,"Ġbiologist":35261,"ĠFaculty":35262,"ĠAuthorization":35263,"Ġ244":35264,"Allow":35265,"ï¸":35266,"ĠGiul":35267,"Ġpertinent":35268,"otaur":35269,"esse":35270,"ĠRoof":35271,"Ġunmanned":35272,"351":35273,"ĠShak":35274,"ĠOrient":35275,"Ġendanger":35276,"Dir":35277,"Ġreplen":35278,"edient":35279,"Ġtailor":35280,"Ġgadgets":35281,"Ġaudible":35282,"âĺĨ":35283,"Nice":35284,"Ġbombard":35285,"ĠRape":35286,"Ġdefiance":35287,"ĠTWO":35288,"ĠFilipino":35289,"Ġunaffected":35290,"ervatives":35291,"Ġsoared":35292,"ĠBolton":35293,"Ġcompromising":35294,"ĠBrewers":35295,"RAL":35296,"ĠAHL":35297,"icycle":35298,"Ġvampires":35299,"Ġdipped":35300,"oyer":35301,"ĠXIII":35302,"Ġsideways":35303,"ĠWaste":35304,"ĠDiss":35305,"ĠâĶľâĶĢâĶĢ":35306,"$.":35307,"Ġhabitats":35308,"ĠBeef":35309,"truth":35310,"trained":35311,"split":35312,"Rus":35313,"Andy":35314,"ĠBram":35315,"REP":35316,"pid":35317,"è£ħ":35318,"ĠMutant":35319,"Anim":35320,"ĠMarina":35321,"Ġfutile":35322,"highest":35323,"frequency":35324,"Ġepilepsy":35325,"Ġcoping":35326,"Ġconcise":35327,"Ġtracing":35328,"ĠSUN":35329,"panel":35330,"ĠSophie":35331,"ĠCrowley":35332,"ĠAdolf":35333,"ĠShooter":35334,"Ġshaky":35335,"ĠIG":35336,"ĠLies":35337,"ĠBarber":35338,"pkg":35339,"Ġuptake":35340,"Ġpredatory":35341,"ULTS":35342,"/**":35343,"Ġintoxicated":35344,"ĠWestbrook":35345,"odder":35346,"hement":35347,"Ġbaseman":35348,"APD":35349,"storage":35350,"ĠFifty":35351,"editor":35352,"GEN":35353,"UTION":35354,"irting":35355,"Ġsewing":35356,"rift":35357,"Ġagony":35358,"ĠSands":35359,"Ġ254":35360,"Cash":35361,"Ġlodge":35362,"Ġpunt":35363,"Natural":35364,"ĠIdeas":35365,"Ġerroneous":35366,"ĠSensor":35367,"ĠHannity":35368,"Ġ1921":35369,"Ġmould":35370,"ĠGon":35371,"kaya":35372,"Ġanonymously":35373,"ĠKEY":35374,"Ġsimulator":35375,"Winter":35376,"Ġstreamed":35377,"507":35378,"?\",":35379,"Ġteased":35380,"Ġcoefficient":35381,"Ġwartime":35382,"ĠTHR":35383,"''.":35384,"ĠBanking":35385,"mpire":35386,"Ġfandom":35387,"Ġlia":35388,"Ga":35389,"Ġdownhill":35390,"Ġinterpreting":35391,"Individual":35392,"Norm":35393,"Ġjealousy":35394,"bitcoin":35395,"Ġpleasures":35396,"ĠToys":35397,"ĠChevrolet":35398,"ĠAdvisor":35399,"IZE":35400,"Ġreceptions":35401,"706":35402,"Cro":35403,"Ġ262":35404,"Ġcitrus":35405,"iru":35406,"Reviewer":35407,"jected":35408,"UES":35409,"anz":35410,"1981":35411,"ĠWorker":35412,"Ġcomplied":35413,"orescent":35414,"continental":35415,"Ton":35416,"ĠPrism":35417,"ĠSheep":35418,"Ġ288":35419,"nox":35420,"ĠVog":35421,"Ord":35422,"Ġrealms":35423,"tek":35424,"Ġirrigation":35425,"Ġbicycles":35426,"Ġelectronically":35427,"poly":35428,"tall":35429,"());":35430,"Ġaesthetics":35431,"ĠIntegrated":35432,"Explore":35433,"Ġdunk":35434,"476":35435,"pain":35436,"ĠJacques":35437,"ĠDmit":35438,"Frames":35439,"Ġreunited":35440,"Ġhumid":35441,"Dro":35442,"Political":35443,"Ġyouthful":35444,"Ġentails":35445,"Ġmosquito":35446,"363":35447,"species":35448,"Ġcoordinating":35449,"ĠMayhem":35450,"ĠMagnus":35451,"Mount":35452,"Improved":35453,"ĠSTATE":35454,"ATTLE":35455,"Ġflowed":35456,"Ġtackled":35457,"Ġfashioned":35458,"Ġreorgan":35459,"ivari":35460,"finger":35461,"Ġreluctantly":35462,"etting":35463,"ĠVand":35464,"young":35465,"ĠGarland":35466,"Ġpresumption":35467,"Ġamenities":35468,"ĠPleasant":35469,"onential":35470,"ĠOxy":35471,"Ġmorals":35472,"ĠYah":35473,"Ready":35474,"Simon":35475,"Enh":35476,"Demon":35477,"Ġclich":35478,"Monitor":35479,"ĠDU":35480,"Ġwelcomes":35481,"Ġstandout":35482,"Ġdreadful":35483,"Ġbananas":35484,"Ġballoons":35485,"hooting":35486,"basic":35487,"Ġsuffix":35488,"Ġduly":35489,"cano":35490,"Chain":35491,"atos":35492,"Ġgeopolitical":35493,"Ġ(&":35494,"ĠGemini":35495,"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ":35496,"Ġacquitted":35497,"Luck":35498,"protect":35499,"1024":35500,"Ġscarcity":35501,"Ġmindfulness":35502,"ecided":35503,"DN":35504,"prime":35505,"ĠPresidents":35506,"ĠVIDEO":35507,"Ġ(âĪĴ":35508,"addock":35509,"NOR":35510,"ĠPru":35511,"pun":35512,"ĠLOL":35513,"))))":35514,"ĠLiqu":35515,"ĠSAS":35516,"Ġstyling":35517,"Ġpunishments":35518,"Ġnumb":35519,"Ġascertain":35520,"ĠRockies":35521,"flu":35522,"Thumbnail":35523,"Ġperpetrated":35524,"ĠSemi":35525,"Ġdisarm":35526,"ĠOlder":35527,"ĠException":35528,"Ġexponentially":35529,"ĠCommunities":35530,"Ġabolish":35531,"ĠPartner":35532,"ptoms":35533,"Ġ777":35534,"ĠFoley":35535,"ĠCases":35536,"Ġgrease":35537,"ĠRebirth":35538,"Ground":35539,"Ġ;)":35540,"ĠDoctrine":35541,"ikini":35542,"Ye":35543,"ĠBlossom":35544,"Ġpersists":35545,"bill":35546,"Ġinfusion":35547,"Ġbuddies":35548,"911":35549,"ĠPatient":35550,"Ġdemos":35551,"Ġacquaintance":35552,"ĠPaw":35553,"atari":35554,"Ġxml":35555,"Ġfascination":35556,"ĠServe":35557,"ÏĤ":35558,"branded":35559,"Ġaz":35560,"Returns":35561,"Ġovershadow":35562,"Ġroam":35563,"Ġspeedy":35564,"numbered":35565,"helial":35566,"Ġdisciple":35567,"Ġassurances":35568,"given":35569,"pecting":35570,"ĠNatalie":35571,"çͰ":35572,"Ġmosquitoes":35573,"rotein":35574,"Ġnumeric":35575,"Ġindependents":35576,"Ġtransitional":35577,"Ġreactionary":35578,"ĠMechdragon":35579,"doctor":35580,"Ġshortest":35581,"Ġsequential":35582,"ĠBac":35583,"ĠAccounts":35584,"ãģĮ":35585,"achy":35586,"ractive":35587,"ĠRegiment":35588,"Ġbreathtaking":35589,"fficiency":35590,"ĠBates":35591,"Ġ311":35592,"Ġwardrobe":35593,"fts":35594,"ĠBerk":35595,"Simply":35596,"ĠRiverside":35597,"ivering":35598,"idential":35599,"lucent":35600,"Ġenriched":35601,"ĠConver":35602,"ĠGiving":35603,"ãĥĻ":35604,"Ġlegalize":35605,"ĠFTC":35606,"Ġfreaking":35607,"Mix":35608,"Ġterrestrial":35609,"esian":35610,"cients":35611,"Wing":35612,"LOAD":35613,"Ġledge":35614,"ĠViolent":35615,"ĠMetall":35616,"Ġ308":35617,"Ġsoutheastern":35618,"hetto":35619,"Meat":35620,"Ġslowdown":35621,"Ġretreated":35622,"Jeremy":35623,"endas":35624,"*****":35625,"eric":35626,"Ġreins":35627,"oppable":35628,"ĠHumanity":35629,"earances":35630,"rigan":35631,"Camera":35632,"Ġwaivers":35633,"soc":35634,"Ġalteration":35635,"transform":35636,"ĠCemetery":35637,"506":35638,"Ġindefinite":35639,"Ġstimulating":35640,"yg":35641,"603":35642,"ĠSop":35643,"Ġdescriptive":35644,"Phase":35645,"ĠEdmund":35646,"Ġpneumonia":35647,"ventus":35648,"Amb":35649,"Ġlaboratories":35650,"ĠExclusive":35651,"ugar":35652,"Were":35653,"Ġmalfunction":35654,"Ġhomosexuals":35655,"Ġ-------":35656,"uni":35657,"Ġturbines":35658,"ĠEquity":35659,"Du":35660,"Ġminded":35661,"ĠRH":35662,"ĠBlackhawks":35663,"Ġfeats":35664,"Ġ1700":35665,"repl":35666,"362":35667,"laden":35668,"Ġindispensable":35669,"lyss":35670,"tti":35671,"Ġreel":35672,"Ġdiverted":35673,"Ġlikeness":35674,"Ġsubscriptions":35675,"Ġfingert":35676,"Ġfilthy":35677,"destruct":35678,"draft":35679,"ĠBernardino":35680,"launch":35681,"Ġperplex":35682,"ĠSUM":35683,"carb":35684,"Ġsweater":35685,"ĠVenture":35686,"ĠJag":35687,"ĠCeleb":35688,"ĠVoters":35689,"Ġsteadfast":35690,"Ġathletics":35691,"ĠHanson":35692,"ĠDrac":35693,"Tracker":35694,"Ġcommend":35695,"ĠPresidency":35696,"ĠDID":35697,"informed":35698,"Ġwebpage":35699,"Pretty":35700,"Ġforcefully":35701,"ãĥĥãĤ¯":35702,"Ġrelocation":35703,"Ġsatire":35704,"âī":35705,"ĠSunderland":35706,"æĦ":35707,"Voice":35708,"????????":35709,"Ġinformant":35710,"Ġbowel":35711,"ĠUniform":35712,"Ġ...\"":35713,"Ġpurge":35714,"Ġpicnic":35715,"ĠUmb":35716,"ĠUPDATE":35717,"ĠSapphire":35718,"ĠStall":35719,"learn":35720,"Ġobjectively":35721,"Ġobliter":35722,"Ġloophole":35723,"Ġjourneys":35724,"Ġomission":35725,"Pros":35726,"ĠSidney":35727,"ploma":35728,"Ġsprayed":35729,"Ġguru":35730,"Ġtraitor":35731,"Ġtimet":35732,"Ġsnapping":35733,"ĠSevent":35734,"urnal":35735,"ĠUkip":35736,"Ġbowed":35737,"poral":35738,"liberal":35739,"Ros":35740,"Questions":35741,"iOS":35742,"Ġsummarize":35743,"STAT":35744,"Ġ1850":35745,"apest":35746,"Ġlender":35747,"ĠVariable":35748,"bringing":35749,"ĠLORD":35750,",)":35751,"Ġcollapses":35752,"xiety":35753,"ĠNed":35754,"YD":35755,"ĠScha":35756,"Ġantibody":35757,"Ġdisband":35758,"yre":35759,"illusion":35760,"Ġrover":35761,"shed":35762,"ĠHirosh":35763,"cci":35764,"Ġcalam":35765,"ĠMorton":35766,"Pinterest":35767,"Ġ1928":35768,"ĠEuras":35769,"ordes":35770,"Ġfences":35771,"ĠInventory":35772,"ĠValencia":35773,"ĠUd":35774,"ĠTiff":35775,"Ġsque":35776,"Ġquotation":35777,"Ġtroublesome":35778,"erker":35779,"QUEST":35780,"ĠKingdoms":35781,"south":35782,"Ġlevy":35783,"Prince":35784,"ĠSting":35785,"Ġnicknamed":35786,"Ġappe":35787,"Ġphotographic":35788,"Ġcorpus":35789,"reference":35790,"ĠTrog":35791,"Unt":35792,")=(":35793,"ĠLatvia":35794,"Ġactivating":35795,"Ġlicensee":35796,"Ġdisparities":35797,"ĠNewsletter":35798,"ãĥĥãĥĪ":35799,"Ġfreeing":35800,"ĠJeep":35801,"ĠPerception":35802,"insk":35803,"Ġsilicone":35804,"ĠHayden":35805,"Lean":35806,"ĠSuzuki":35807,"ibrarian":35808,"668":35809,"Ġspor":35810,"Ġcorrelations":35811,"aghetti":35812,"Ġtuber":35813,"ĠIPCC":35814,"ilus":35815,"ĠVu":35816,"Ġwealthiest":35817,"ĠCarbuncle":35818,"anza":35819,"Ġfooled":35820,"ĠZur":35821,"Ġdaddy":35822,"rano":35823,"ilian":35824,"Ġknockout":35825,"fman":35826,"required":35827,"ĠWikileaks":35828,"ĠDuffy":35829,"ONT":35830,"Ġinsol":35831,"ĠObjects":35832,"Ġbou":35833,"ĠNordic":35834,"ĠInsert":35835,"scan":35836,"Ġdancers":35837,"Ġidiots":35838,"majority":35839,"ĠNeville":35840,"ĠFreeBSD":35841,"Ġtart":35842,"panic":35843,"690":35844,"Ġcocoa":35845,"Ġsampled":35846,"Ġlookup":35847,"Indust":35848,"Ġinjections":35849,"genre":35850,"Ġau":35851,"Ġroadway":35852,"Ġgenitals":35853,"Kind":35854,"ĠExaminer":35855,"ĠYaz":35856,"Fresh":35857,"Ġparalysis":35858,"ĠAluminum":35859,"Ġreap":35860,"oké":35861,"Ġsloppy":35862,"ĠTunnel":35863,"posium":35864,"nery":35865,"enic":35866,"Ġherbal":35867,"ĠOuter":35868,"ĠBuilder":35869,"Ġincur":35870,"Ġideologies":35871,"Ġbackups":35872,"consuming":35873,"ĠDetect":35874,"deck":35875,"ĠKNOW":35876,"ĠGret":35877,"ĠMIC":35878,"Ġtoughness":35879,"ĠExhibit":35880,"Ġhive":35881,"Les":35882,"ĠSCHOOL":35883,"ĠAtari":35884,"alde":35885,"ĠNull":35886,"andestine":35887,"mouse":35888,"Ġbrigade":35889,"489":35890,"Ġrevol":35891,"ĠLawson":35892,"ĠWah":35893,"opoly":35894,"ebted":35895,"ĠSaunders":35896,"Ġ313":35897,"ĠWinc":35898,"Ġtaboo":35899,"ĠHelmet":35900,"Ġwedge":35901,"chip":35902,"ĠTina":35903,"bg":35904,"Ġinfuri":35905,"rn":35906,"Ġanomalies":35907,"ĠSync":35908,"ĠExam":35909,"ĠCommit":35910,"ĠDiary":35911,"ĠALSO":35912,"ĠDebor":35913,"omedical":35914,"Ġcomprehension":35915,"655":35916,"Ġempowering":35917,"Ġire":35918,"Ġjuices":35919,"ĠETH":35920,"ĠBoxing":35921,"=\"/":35922,"Ġfacilitated":35923,"poke":35924,"ĠParsons":35925,"ĠModer":35926,"travel":35927,"Ġcivilizations":35928,"Ġlibertarians":35929,"Ġrune":35930,"ĠClarks":35931,"athed":35932,"Ġcampaigners":35933,"ĠDispatch":35934,"ĠFahrenheit":35935,"ĠCapcom":35936,"----------":35937,"Ġlace":35938,"Ġdraining":35939,"Ġliner":35940,"ĠArtificial":35941,"én":35942,"task":35943,"]).":35944,"ĠGMO":35945,"ĠOperator":35946,"ordinary":35947,"ĠInfluence":35948,"ĠUps":35949,"Ġpotency":35950,"ussen":35951,"ospons":35952,"ĠSwim":35953,"ĠDeadline":35954,"Unity":35955,"Ġculinary":35956,"Ġenlightenment":35957,"Ġwearer":35958,"Ġmined":35959,"Ġply":35960,"Ġincest":35961,"ĠDVDs":35962,"Walk":35963,"BTC":35964,"Trade":35965,"Ġdeval":35966,"iband":35967,"ĠOversight":35968,"Palestinian":35969,"Ġdart":35970,"Ġmul":35971,"LR":35972,"Ġremovable":35973,"ĠRealms":35974,"ìĿ":35975,"Ġmiscar":35976,"ĠVulkan":35977,"685":35978,"ère":35979,"ĠSap":35980,"Ġmerging":35981,"ĠCarly":35982,"chester":35983,"Ġbrisk":35984,"Ġluxurious":35985,"ĠGenerator":35986,"Ġbitterness":35987,"Ġedible":35988,"Ġ243":35989,"TG":35990,"Ġrectangle":35991,"WithNo":35992,"below":35993,"Jenn":35994,"Ġdarkest":35995,"Ġhitch":35996,"Ġdosage":35997,"Ġscaven":35998,"ĠKeller":35999,"ĠIllustrated":36000,"Certainly":36001,"ĠMavericks":36002,"Marginal":36003,"Ġdiarrhea":36004,"Ġenormously":36005,"Ġ999":36006,"shr":36007,"quart":36008,"Ġadamant":36009,"ĠMew":36010,"Ġrenovation":36011,"Ġcervical":36012,"ĠPercentage":36013,"eners":36014,"ĠKimber":36015,"Ġfloats":36016,"Ġdex":36017,"ĠWitcher":36018,"ĠSwansea":36019,"dm":36020,"Ġsalty":36021,"yellow":36022,"Ġcape":36023,"ĠDrain":36024,"ĠPaula":36025,"ĠToledo":36026,"lesi":36027,"Magazine":36028,"ĠWick":36029,"ĠMn":36030,"ĠAck":36031,"ĠRiding":36032,"ASON":36033,"Ġhomophobic":36034,"ARP":36035,"Ġwandered":36036,"CPU":36037,"oodoo":36038,"ĠPipe":36039,"Ġtightening":36040,"ĠButt":36041,"318":36042,"Ġdeserted":36043,"Session":36044,"Ġfacilitating":36045,"Jump":36046,"Ġemergencies":36047,"OWER":36048,"Ġexhaustive":36049,"ĠAFTER":36050,"Ġheartbeat":36051,"ĠLabel":36052,"acky":36053,"ĠCertified":36054,"iltration":36055,"Ze":36056,"ĠUtt":36057,"Ġ1300":36058,"Ġpresume":36059,"ĠDisp":36060,"Ġsurged":36061,"Ġdolls":36062,"Columb":36063,"Ġchimpan":36064,"ĠRazor":36065,"Ġticks":36066,"Ġcouncillor":36067,"Ġpilgrimage":36068,"ĠRebels":36069,"ĠQC":36070,"ĠAuction":36071,"xia":36072,"ikk":36073,"bred":36074,"Ġinsertion":36075,"Ġcoarse":36076,"dB":36077,"SEE":36078,"ĠZap":36079,"ĠFoo":36080,"Ġcontempor":36081,"ĠQuarterly":36082,"otions":36083,"ĠAlchemist":36084,"ĠTrey":36085,"ĠDuo":36086,"Sweet":36087,"804":36088,"ĠGiov":36089,"Ġfunn":36090,"Nin":36091,"hoff":36092,"Ġramifications":36093,"Ġ1922":36094,"ĠExperts":36095,"azes":36096,"Ġgarments":36097,"arial":36098,"ĠNab":36099,"Ġ257":36100,"ĠVed":36101,"Ġhumorous":36102,"ĠPompe":36103,"Ġnylon":36104,"Ġlurking":36105,"ĠSergey":36106,"ĠMattis":36107,"Ġmisogyny":36108,"ĠComponents":36109,"ĠWatching":36110,"ĠFolk":36111,"ractical":36112,"Bush":36113,"Ġtaped":36114,"Ġgrouping":36115,"Ġbeads":36116,"Ġ2048":36117,"Ġcondu":36118,"querque":36119,"Reading":36120,"Ġgrievances":36121,"Ultra":36122,"Ġendpoint":36123,"Hig":36124,"ĠStatic":36125,"ĠScarborough":36126,"Lua":36127,"ĠMessi":36128,"aqu":36129,"ĠPsyNet":36130,"ĠRudd":36131,"Ġavenue":36132,"vp":36133,"Jer":36134,"Ġshady":36135,"ĠResist":36136,"ĠArtemis":36137,"Ġcareless":36138,"Ġbrokers":36139,"Ġtemperament":36140,"Ġ520":36141,"Tags":36142,"ĠTurning":36143,"Ġuttered":36144,"Ġpedd":36145,"Ġimprovised":36146,"Ġ:(":36147,"Ġtabl":36148,"Ġplains":36149,"1600":36150,"pressure":36151,"ĠEssence":36152,"margin":36153,"friends":36154,"ĠRestoration":36155,"Ġpollut":36156,"ĠPoker":36157,"ĠAugustine":36158,"ĠCIS":36159,"ĠSEAL":36160,"orama":36161,"Ġthwart":36162,"seek":36163,"Ġpagan":36164,"º":36165,"cpu":36166,"Ġgarn":36167,"Ġassortment":36168,"ĠILCS":36169,"tower":36170,"Recommended":36171,"Ġunborn":36172,"ĠRandomRedditor":36173,"ĠRandomRedditorWithNo":36174,"Ġparalyzed":36175,"Ġeruption":36176,"Ġintersect":36177,"ĠStoke":36178,"ĠSco":36179,"Bind":36180,"å¾":36181,"ĠPNG":36182,"ĠNegative":36183,"ĠNOAA":36184,"Leon":36185,"Ġalloy":36186,"ĠLama":36187,"ĠDiversity":36188,"575":36189,"Ġunderestimated":36190,"ĠScor":36191,"Ġmural":36192,"Ġbusted":36193,"soon":36194,"lif":36195,"Ġnonex":36196,"Ġallergy":36197,"ĠUnderworld":36198,"ĠRays":36199,"ĠBlasio":36200,"Ġhrs":36201,"ĠDir":36202,"Ġ327":36203,"byter":36204,"Ġreplacements":36205,"Ġactivates":36206,"rived":36207,"MH":36208,"Ġpans":36209,"ĠHI":36210,"Ġlongitudinal":36211,"Ġnuisance":36212,"aler":36213,"Ġswell":36214,"ĠSigned":36215,"sci":36216,"ĠIsles":36217,"ĠAGA":36218,"Ġdefiant":36219,"Ġsonic":36220,"ocon":36221,"KC":36222,"ĠAim":36223,"tie":36224,"ahah":36225,"ĠmL":36226,"DX":36227,"Ġbisc":36228,"ĠBillboard":36229,"ĠSYSTEM":36230,"NEY":36231,"gaard":36232,"Ġdistressed":36233,"formerly":36234,"Alan":36235,"Ġchefs":36236,"Ġoptics":36237,"ĠComet":36238,"ĠAMC":36239,"Ġredesigned":36240,"irmation":36241,"Ġsightings":36242,"382":36243,"311":36244,"ĠWB":36245,"Ġcontraction":36246,"ĠTOTAL":36247,"Dual":36248,"Ġstartled":36249,"Ġunderstandably":36250,"Ġsunglasses":36251,"ETHOD":36252,"Ġdocker":36253,"Ġsurfing":36254,"ĠHEL":36255,"ĠSlack":36256,"tones":36257,"Ġshalt":36258,"Visual":36259,"498":36260,"Department":36261,"cussion":36262,"Ġunrestricted":36263,"Ġtad":36264,"Ġrename":36265,"employed":36266,"Ġeducating":36267,"Ġgrinned":36268,"bedroom":36269,"ĠActivities":36270,"ĠVelvet":36271,"ĠSWAT":36272,"Ġshuffle":36273,"igor":36274,"Ġsaturation":36275,"Finding":36276,"cream":36277,"icter":36278,"Ġvodka":36279,"tracking":36280,"tec":36281,"Ġforeground":36282,"iesta":36283,"Ġvehement":36284,"ĠECB":36285,"ĠTie":36286,"Ey":36287,"Ġturtles":36288,"ĠRailroad":36289,"ĠKatz":36290,"ĠFrames":36291,"Ġmenace":36292,"ĠFellowship":36293,"ĠEssential":36294,"uggish":36295,"Ġdrip":36296,"chwitz":36297,"ĠKyoto":36298,"sb":36299,"ĠNina":36300,"Parameter":36301,"Ġalarms":36302,"ĠClaud":36303,"Ġpioneering":36304,"Ġchiefly":36305,"ĠScream":36306,"Collection":36307,"Ġthankfully":36308,"ĠRonaldo":36309,"åŃIJ":36310,"strip":36311,"ĠDisneyland":36312,"commercial":36313,"Seeing":36314,"Soul":36315,"Ġevacuate":36316,"Ġciv":36317,"ĠAshe":36318,"Ġdivides":36319,"ĠDagger":36320,"rehensive":36321,"Ġberries":36322,"ĠDF":36323,"Ġsushi":36324,"Ġplurality":36325,"WI":36326,"Ġdisadvantaged":36327,"Ġbattalion":36328,"obiles":36329,"451":36330,"Ġcling":36331,"Ġundeniable":36332,"ĠLounge":36333,"Ġhaunt":36334,"phe":36335,"Ġquantify":36336,"Ġdiffered":36337,"Ġ[*]":36338,"ĠViz":36339,"cum":36340,"slave":36341,"Ġvideog":36342,"Ġquar":36343,"Ġbundles":36344,"ĠAlonso":36345,"tackle":36346,"Ġneuronal":36347,"Ġlandslide":36348,"confirmed":36349,"ĠDepth":36350,"Ġrenewables":36351,"Bear":36352,"ĠMacedonia":36353,"Ġjerseys":36354,"Ġbunk":36355,"ĠSpawn":36356,"ĠControls":36357,"ĠBuchanan":36358,"Ġrobotics":36359,"Ġemphasizing":36360,"ĠTutorial":36361,"hyp":36362,"iston":36363,"Ġmonumental":36364,"æ°":36365,"ĠCarry":36366,"Ġtbsp":36367,"enance":36368,"Hill":36369,"arthed":36370,"Ġrotten":36371,"Dean":36372,"Ġtwisting":36373,"Ġgoodwill":36374,"Ġimmersion":36375,"Living":36376,"Ġbrushes":36377,"ĠCGI":36378,"ĠAtk":36379,"traditional":36380,"Ġphantom":36381,"ĠStamina":36382,"Ġexpansions":36383,"ĠMarin":36384,"Ġembarked":36385,"ĠEg":36386,"intestinal":36387,"ĠPEOPLE":36388,"ĠBooth":36389,"ĠAppalach":36390,"Ġrelegated":36391,"VT":36392,"MIT":36393,"Ġmuster":36394,"Ġwithdrawing":36395,"Ġmicroscope":36396,"ĠGathering":36397,"ĠCrescent":36398,"ĠArgentine":36399,"ĠDecre":36400,"ĠDominic":36401,"Ġbuds":36402,"antage":36403,"ĠIon":36404,"Ġwidened":36405,"ONSORED":36406,"ĠGloves":36407,"iannopoulos":36408,"razen":36409,"feel":36410,"Ġrepayment":36411,"Ġhindsight":36412,"ĠREALLY":36413,"ĠPistol":36414,"ĠBrah":36415,"Ġwatts":36416,"Ġsurvives":36417,"Ġflurry":36418,"issy":36419,"Alert":36420,"ĠUruguay":36421,"Phoenix":36422,"Slow":36423,"ĠGrave":36424,"ĠFir":36425,"Ġmanageable":36426,"Ġtariff":36427,"ĠUDP":36428,"ĠPistons":36429,"ĠNigerian":36430,"Ġstrikeouts":36431,"Ġcosmetics":36432,"whelming":36433,"fab":36434,"cape":36435,"proxy":36436,"Ġrethink":36437,"Ġovercoming":36438,"simple":36439,"Ġwoo":36440,"Ġdistracting":36441,"ĠStanton":36442,"ĠTulsa":36443,"ĠDock":36444,"659":36445,"Ġdiscord":36446,"ĠEmacs":36447,"ĠVes":36448,"ĠROB":36449,"Ġreassuring":36450,"Ġconsortium":36451,"Muslims":36452,"321":36453,"Ġprompts":36454,"sei":36455,"ĠHitch":36456,"imposed":36457,"ĠFool":36458,"Ġindiscrim":36459,"wrong":36460,"buquerque":36461,"Davis":36462,"!]":36463,"Ġtimeless":36464,"ĠNEED":36465,"Ġpesticide":36466,"Ġrallying":36467,"ĠCalder":36468,"Ġå¤":36469,"Ġxp":36470,"ĠUnle":36471,"ĠExport":36472,"luaj":36473,"Buff":36474,")[":36937,"Ġsqor":36938,"Saudi":36939,"Ġistg":36940,"Ġindulge":36941,"proc":36942,"Ġdisgusted":36943,"Ġcompounded":36944,"Ġnem":36945,"Ġschooling":36946,"ĠCure":36947,"processing":36948,"Sol":36949,"Ġproverb":36950,"itized":36951,"ĠAlvarez":36952,"Ġscarf":36953,"Ġrectangular":36954,"reve":36955,"Ġhormonal":36956,"ĠStress":36957,"itizen":36958,"Ġ425":36959,"girls":36960,"ĠNoir":36961,"ĠRapp":36962,"Ġmarches":36963,"church":36964,"ĠUses":36965,"Ġ405":36966,"ĠBerm":36967,"Ġordinances":36968,"ĠJudgment":36969,"Charges":36970,"ĠZin":36971,"Ġdusty":36972,"Ġstrawberries":36973,"Ġperce":36974,"ĠThur":36975,"ĠDeborah":36976,"netflix":36977,"ĠLambert":36978,"Ġamused":36979,"ĠGuang":36980,"YOU":36981,"RGB":36982,"ĠCCTV":36983,"Ġfiat":36984,"rang":36985,"Ġfederation":36986,"ĠMant":36987,"ĠBust":36988,"ĠMare":36989,"respective":36990,"ĠMigration":36991,"ĠBIT":36992,"590":36993,"Ġpatriotism":36994,"Ġoutlining":36995,"region":36996,"ĠJosé":36997,"Ġblasting":36998,"ĠEzra":36999,"Bs":37000,"Ġundermines":37001,"ĠSmooth":37002,"Ġclashed":37003,"radio":37004,"Ġtransitioning":37005,"ĠBuccaneers":37006,"ĠOwl":37007,"Ġplugs":37008,"Ġhiatus":37009,"ĠPinball":37010,"Ġmig":37011,"ĠNutr":37012,"ĠWolfe":37013,"Ġintegers":37014,"Ġorbits":37015,"ĠEdwin":37016,"ĠDirectX":37017,"bite":37018,"Ġblazing":37019,"vr":37020,"Edge":37021,"ĠPID":37022,"exit":37023,"ĠComed":37024,"ĠPathfinder":37025,"ĠGuid":37026,"ĠSigns":37027,"ĠZer":37028,"ĠAgenda":37029,"Ġreimbursement":37030,"Mesh":37031,"iPhone":37032,"ĠMarcos":37033,"ĠSites":37034,"hate":37035,"enburg":37036,"Ġsockets":37037,"pend":37038,"Batman":37039,"vir":37040,"ĠSHOW":37041,"Ġprovisional":37042,"conn":37043,"ĠDeaths":37044,"ATIVE":37045,"Profile":37046,"sym":37047,"JA":37048,"Ġninja":37049,"installed":37050,"idates":37051,"ebra":37052,"ĠOmaha":37053,"Ġseizing":37054,"ĠBeasts":37055,"Ġsalts":37056,"Mission":37057,"Generally":37058,"ĠTrilogy":37059,"heon":37060,"legates":37061,"Ġdime":37062,"Ġfaire":37063,"parable":37064,"Graph":37065,"Ġtotaling":37066,"Ġdiagrams":37067,"ĠYanuk":37068,"plet":37069,"ĠMeh":37070,"Ġmythical":37071,"ĠStephens":37072,"autical":37073,"ochemistry":37074,"Ġkilograms":37075,"Ġelbows":37076,"ancock":37077,"ĠBCE":37078,"ĠPrague":37079,"Ġimprov":37080,"ĠDevin":37081,"Ġ\"\\":37082,"paralle":37083,"Ġsupremacists":37084,"ĠBillion":37085,"Ġregimen":37086,"innacle":37087,"Ġrequisite":37088,"angan":37089,"ĠBurlington":37090,"ainment":37091,"ĠObjective":37092,"omsky":37093,"GV":37094,"Ġunilateral":37095,"Ġtc":37096,"Ġhires":37097,"mental":37098,"Ġinvoluntary":37099,"Ġtranspl":37100,"ĠASCII":37101,"¨":37102,"Events":37103,"Ġdoubted":37104,"ĠKaplan":37105,"ĠCourage":37106,"igon":37107,"ĠManaging":37108,"ĠTart":37109,"Ġfalsehood":37110,"ĠViolet":37111,"Ġairs":37112,"Ġfertilizer":37113,"Britain":37114,"Ġaquatic":37115,"ouf":37116,"Words":37117,"ĠHartford":37118,"Ġevenings":37119,"ĠVengeance":37120,"quite":37121,"Gall":37122,"ĠPret":37123,"Ġpdf":37124,"ĠLM":37125,"ĠSochi":37126,"ĠIntercept":37127,"920":37128,"Ġprofitability":37129,"ĠIdle":37130,"ĠMacDonald":37131,"ĠEstablishment":37132,"umsy":37133,"Ġgatherings":37134,"ĠNaj":37135,"Charlie":37136,"Ġascent":37137,"ĠProtector":37138,"Ġalgebra":37139,"Ġbios":37140,"forums":37141,"ELS":37142,"Introduced":37143,"Ġ335":37144,"Ġastronomy":37145,"Contribut":37146,"ĠPolic":37147,"Platform":37148,"Ġcontainment":37149,"wrap":37150,"Ġcoronary":37151,"ĠJelly":37152,"manager":37153,"Ġheartbreaking":37154,"cair":37155,"ĠChero":37156,"cgi":37157,"Medical":37158,"ĠAccountability":37159,"!!\"":37160,"ophile":37161,"Ġpsychotic":37162,"ĠRestrict":37163,"Ġequitable":37164,"issues":37165,"Ġ1905":37166,"ĠNek":37167,"cised":37168,"ĠTracking":37169,"Ġozone":37170,"Ġcooker":37171,"rosis":37172,"Ġreopen":37173,"Ġinfinity":37174,"ĠPharmaceutical":37175,"ensional":37176,"Attempt":37177,"ĠRory":37178,"Marco":37179,"Ġawaits":37180,"HOW":37181,"treated":37182,"Ġbolst":37183,"Ġrevered":37184,"Ġpods":37185,"oppers":37186,"0010":37187,"Ġamplitude":37188,"rican":37189,"SPONSORED":37190,"Ġtrousers":37191,"Ġhalves":37192,"ĠKaine":37193,"ĠCutler":37194,"ĠAUTH":37195,"Ġsplendid":37196,"Ġpreventive":37197,"ĠDudley":37198,"ifacts":37199,"uminati":37200,"ĠYin":37201,"Ġadmon":37202,"ĠVag":37203,"Ġinverted":37204,"Ġhastily":37205,"ĠHague":37206,"Lyn":37207,"Ġledger":37208,"Ġastronomical":37209,"getting":37210,"Ġcirca":37211,"ĠCic":37212,"ĠTennis":37213,"Limited":37214,"Ġdru":37215,"ĠBYU":37216,"Ġtravellers":37217,"Ġpane":37218,"ĠIntro":37219,"Ġpatiently":37220,"Ġaiding":37221,"Ġloos":37222,"ĠTough":37223,"Ġ293":37224,"Ġconsumes":37225,"SourceFile":37226,"Ġ\"\"\"":37227,"Ġbonding":37228,"Ġtilted":37229,"Ġmenstrual":37230,"ĠCelestial":37231,"ULAR":37232,"Plugin":37233,"Ġrisking":37234,"Naz":37235,"ĠRiyadh":37236,"Ġaccredited":37237,"Ġskirm":37238,"éĽ":37239,"Ġexaminer":37240,"Ġmessing":37241,"Ġnearing":37242,"ĠChern":37243,"ĠBeckham":37244,"Ġswapped":37245,"Ġgoose":37246,"Kay":37247,"Ġlofty":37248,"ĠWallet":37249,"Ġ['":37250,"Ġapocalypse":37251,"Ġbamboo":37252,"ĠSPACE":37253,"ĠElena":37254,"Ġ306":37255,"acons":37256,"Ġtightened":37257,"Ġadolescence":37258,"Ġrainy":37259,"Ġvandalism":37260,"ĠNewtown":37261,"Ġconject":37262,"cakes":37263,"Ġcheated":37264,"Ġmoderators":37265,"params":37266,"EFF":37267,"Ġdeceit":37268,"ĠSTL":37269,"ĠTanzania":37270,"ĠRI":37271,"Ġ1923":37272,"ĠExile":37273,"thel":37274,"Ġtheolog":37275,"Ġquirky":37276,"ĠIrvine":37277,"Ġneedy":37278,"oris":37279,"Um":37280,"Ka":37281,"Ġmailbox":37282,"322":37283,"Ġbos":37284,"ĠPetra":37285,"KING":37286,"Ġenlarged":37287,"Often":37288,"Ġbadass":37289,"Ġ343":37290,"ĠPlaces":37291,"ĠCAD":37292,"Ġpristine":37293,"Ġintervening":37294,"direction":37295,"Ġlaz":37296,"ĠDSM":37297,"Ġprojecting":37298,"ĠFunk":37299,"agog":37300,"payment":37301,"nov":37302,"Ġchatter":37303,"ARB":37304,"Ġexaminations":37305,"ĠHousehold":37306,"ĠGus":37307,"Ford":37308,"414":37309,"Boss":37310,"Ġmystic":37311,"Ġleaps":37312,"ĠBav":37313,"ulz":37314,"budget":37315,"Football":37316,"Ġsubsidized":37317,"Ġfirsthand":37318,"Ġcoincide":37319,"ocular":37320,"Conn":37321,"ĠCollabor":37322,"Ġfools":37323,"amura":37324,"ahar":37325,"rists":37326,"Ġswollen":37327,"Ġexpended":37328,"ĠPau":37329,"sup":37330,"Ġspar":37331,"Ġkeynote":37332,"suff":37333,"Ġunequal":37334,"Ġprogressing":37335,"strings":37336,"ĠGamergate":37337,"Disney":37338,"ĠEleven":37339,"omnia":37340,"Ġscripted":37341,"Ġearners":37342,"brother":37343,"ĠEnabled":37344,"æ³":37345,"Ġlarvae":37346,"ĠLOC":37347,"mess":37348,"Wilson":37349,"ĠTemplate":37350,"successfully":37351,"Ġparamount":37352,"Ġcamouflage":37353,"Ġbinds":37354,"ĠQuiet":37355,"ĠShutterstock":37356,"rush":37357,"Ġmascot":37358,"fortune":37359,"ĠColt":37360,"ĠBeyon":37361,"habi":37362,"Ġhairc":37363,"Ġ267":37364,"ĠDeus":37365,"Ġtwitch":37366,"Ġconcentrating":37367,"Ġnipples":37368,"cible":37369,"Ġgir":37370,"NZ":37371,"Math":37372,"nih":37373,"Required":37374,"Ġponder":37375,"ĠSAN":37376,"Ġweddings":37377,"Ġloneliness":37378,"NES":37379,"ĠMahjong":37380,"695":37381,"addle":37382,"ĠGarner":37383,"ĠCOUR":37384,"Bridge":37385,"Ġspree":37386,"ĠCaldwell":37387,"Ġbribery":37388,"Ġ��������":37389,"plugins":37390,"Ġracket":37391,"Ġchampagne":37392,"versible":37393,"Vote":37394,"Ġmodifiers":37395,"Mayor":37396,"680":37397,"Ġassemblies":37398,"ĠSultan":37399,"ĠNing":37400,"ĠLadies":37401,"Ġsulfur":37402,"Ġorbs":37403,"Ġ-----":37404,"_______":37405,"ĠJournalism":37406,"Ġesports":37407,"Ġlush":37408,"Ġhue":37409,"Ġspectral":37410,"Honest":37411,"ãĥı":37412,"Ġbushes":37413,"Ġreinforcement":37414,"Ġreopened":37415,"ĠWheels":37416,"ĠMorg":37417,"rieving":37418,"Ġauxiliary":37419,"ĠjQuery":37420,"ĠBAT":37421,"tesque":37422,"Ġvertex":37423,"pure":37424,"frey":37425,"ãĤº":37426,"dos":37427,"Ġtyph":37428,"Ġcull":37429,"Ġeq":37430,"Ġdecon":37431,"Ġtossing":37432,"Ġdisparate":37433,"ĠBrigham":37434,"printf":37435,"ledged":37436,"Ġsund":37437,"Ġcozy":37438,"Ġhepatitis":37439,"performing":37440,"Ġaval":37441,"ĠGG":37442,"future":37443,"Ġpetertodd":37444,"ĠKosovo":37445,"Ġmagnets":37446,"Already":37447,"ĠEdison":37448,"ĠCeres":37449,"ĠRAID":37450,"Ġbrilliance":37451,"576":37452,"Ġderives":37453,"Ġhypertension":37454,"ĠÎĶ":37455,"Ġlambda":37456,"Ġflair":37457,"Ġmissionaries":37458,"Ġrapes":37459,"ĠStarter":37460,"ĠMonths":37461,"Ġdefy":37462,"Ġseismic":37463,"ĠRaphael":37464,"Ġeurozone":37465,"656":37466,"zsche":37467,"Ġscratched":37468,"Ġbows":37469,"ĠLennon":37470,"ĠGaia":37471,"Ġdripping":37472,"facts":37473,"Ale":37474,"Ġfrogs":37475,"ĠBreast":37476,"ogeneity":37477,"ĠProsecutor":37478,"Ġamplified":37479,"ĠHodg":37480,"ĠFn":37481,"Thousands":37482,"ĠNIH":37483,"ĠMonitoring":37484,"FTWARE":37485,"ĠPriebus":37486,"ĠGrowing":37487,"hunter":37488,"Ġdiagnose":37489,"ĠMald":37490,"ĠLR":37491,"Ġcrowned":37492,"Ġbursting":37493,"Ġdissolution":37494,"javascript":37495,"Ġusefulness":37496,"ĠExecution":37497,":(":37498,"ĠIvory":37499,"aah":37500,"Ġpersecuted":37501,"violence":37502,"istas":37503,"ĠCrate":37504,"Ġimpulses":37505,"ĠSpani":37506,"edes":37507,"Handle":37508,"ĠZerg":37509,"thinkable":37510,"Lastly":37511,"Ġspontaneously":37512,"Ġinconvenient":37513,"Ġdismissing":37514,"Ġplotted":37515,"Ġeighty":37516,"Ġ737":37517,"rish":37518,"ĠThornton":37519,"atham":37520,"Ġsitcom":37521,"Ven":37522,"Recipe":37523,"tel":37524,"lund":37525,"Ġclears":37526,"ĠSasuke":37527,"Ġ258":37528,"Ġopting":37529,"Ġenraged":37530,"esthetic":37531,"ĠAe":37532,"uchs":37533,"Prep":37534,"Flow":37535,"Ġrunoff":37536,"ĠEating":37537,"ĠGiles":37538,"ĠActing":37539,"resources":37540,"ibaba":37541,"Ġrpm":37542,"Ġskewed":37543,"ĠBlanc":37544,"ĠSakuya":37545,"Ġhotter":37546,"Ġ1924":37547,"opian":37548,"cko":37549,"Ġcrumbling":37550,"Ġcaptains":37551,"ĠAppropriations":37552,"leaders":37553,"dropping":37554,"anuts":37555,"Ġreversing":37556,"ĠPose":37557,"ĠSek":37558,"Scot":37559,"ĠIdea":37560,"cise":37561,"ĠSlovenia":37562,"Ġ317":37563,"Doctor":37564,"Ġcrocod":37565,"aldi":37566,"Sea":37567,"ĠFarrell":37568,"Ġmercenaries":37569,"ĠRNC":37570,"ĠGuess":37571,"Ġpacing":37572,"Machine":37573,"StreamerBot":37574,"ĠCharity":37575,"Ġ298":37576,"Ġcannons":37577,"ĠToby":37578,"TPPStreamerBot":37579,"ĠPassion":37580,"cfg":37581,"Thom":37582,"Ġbadges":37583,"ĠBernstein":37584,".âĢĵ":37585,"ĠPOP":37586,"ĠConj":37587,"Ġinitialization":37588,"Ġbiodiversity":37589,"Dub":37590,"Ġfeudal":37591,"Ġdisclaimer":37592,"Ġcrow":37593,"Ġignition":37594,"arf":37595,"SHA":37596,"ĠkHz":37597,"hazard":37598,"ĠArtists":37599,"oeuv":37600,"679":37601,"ĠRudy":37602,"Nine":37603,"ĠRamadan":37604,"å½":37605,"itto":37606,"Ġadrenaline":37607,"Cert":37608,"Ġsmelled":37609,"Ġimpunity":37610,"Ġagendas":37611,"ĠReborn":37612,"ĠConcent":37613,"ĠSeems":37614,"Ġomega":37615,"ĠDustin":37616,"Ġbacker":37617,"ĠSauce":37618,"ĠBoyle":37619,"WIN":37620,"Ġspins":37621,"Ġpauses":37622,"upt":37623,"Ġshredded":37624,"Ġstrapped":37625,"ĠCorruption":37626,"Ġscratches":37627,"Ġni":37628,"Ġattire":37629,"ĠSAF":37630,"FactoryReloaded":37631,"ĠIPS":37632,"Ġ(%":37633,"Ġseminar":37634,"focus":37635,"civil":37636,"Ġ1860":37637,"intosh":37638,"Ġcontinual":37639,"Ġabbrevi":37640,"ĠSok":37641,"ocobo":37642,"XM":37643,"Ġfrantic":37644,"Ġunavoidable":37645,"Ġartery":37646,"Ġannotations":37647,"bath":37648,"Climate":37649,"Ġdors":37650,"ĠSlide":37651,"coord":37652,"ĠReload":37653,"ĠLDL":37654,"ĠLovecraft":37655,"Ġunimagin":37656,"Ġresembled":37657,"Ġbarracks":37658,"np":37659,"Ġsurrogate":37660,"Ġcategorized":37661,"ãĤ©":37662,"Ġvaccinated":37663,"Ġdrainage":37664,"Ġindist":37665,"ĠWhatsApp":37666,"Ġ1870":37667,"olerance":37668,"invoke":37669,"amorph":37670,"Ġreconnect":37671,"Ġemanc":37672,"Ġblindness":37673,"Ġ1280":37674,"internet":37675,"collar":37676,"Ġaltru":37677,"Ġabyss":37678,"ĠTRI":37679,"657":37680,"Ġinfused":37681,"HEAD":37682,"Ġforestry":37683,"ĠWoody":37684,"ĠCi":37685,"wi":37686,"sam":37687,"784":37688,"holiday":37689,"Ġmogul":37690,"ĠFees":37691,"ĠDEN":37692,"Internal":37693,"urbed":37694,"fusc":37695,"atom":37696,"ĠIllusion":37697,"Ġpolled":37698,"Ġflap":37699,"Ġcoax":37700,"LGBT":37701,"Analy":37702,"ĠSections":37703,"ĠCaliforn":37704,"emn":37705,"Ġhither":37706,"ĠNIGHT":37707,"Ġnailed":37708,"ĠPipeline":37709,"391":37710,"oof":37711,"ĠPrimal":37712,"verend":37713,"Ġslashing":37714,"Ġretri":37715,"aviour":37716,"Ġdeparting":37717,"gil":37718,"ISC":37719,"Ġmidway":37720,"Ġultrasound":37721,"Ġbehaving":37722,"ĠTara":37723,"classes":37724,"Virtual":37725,"ĠColonial":37726,"Ġstripping":37727,"Ġorchestrated":37728,"ĠGraves":37729,"452":37730,"ĠIronically":37731,"ĠWriters":37732,"Ġlends":37733,"ĠManz":37734,"Ġraven":37735,"Ġoxidative":37736,"Ġ266":37737,"ELF":37738,"actually":37739,"ascar":37740,"Draft":37741,"Ġfavourable":37742,"Ġhumiliating":37743,"Ġfidelity":37744,"ĠHof":37745,"ĠXuan":37746,"496":37747,"Ġlayered":37748,"atis":37749,"790":37750,"Ġpaycheck":37751,"iton":37752,"Kar":37753,"ĠVMware":37754,"ĠFarmer":37755,"Ġservic":37756,"glomer":37757,"Ġslump":37758,"ĠFabric":37759,"ĠDOC":37760,"esting":37761,"Ġreassure":37762,"Ġphyl":37763,"volt":37764,"itory":37765,"Rules":37766,"Ġoxidation":37767,"Ġprized":37768,"Ġmistress":37769,"ĠDjango":37770,"WARN":37771,"åij":37772,"Ġencode":37773,"ĠFeedback":37774,"Ġstupidity":37775,"Ian":37776,"ĠYugoslavia":37777,"ר":37778,"acl":37779,"UTE":37780,"1977":37781,"Ġqualifies":37782,"Ġpulses":37783,"pretty":37784,"Ġfroze":37785,"Ġss":37786,"Iterator":37787,"Ġurgently":37788,"Ġmailed":37789,"ĠCham":37790,"Ġsustaining":37791,"Ġbasil":37792,"Ġpuppies":37793,"ilant":37794,"ĠPLEASE":37795,"lap":37796,"aceous":37797,"Fear":37798,"ĠMastery":37799,"automatic":37800,"ĠTAG":37801,"Ġantim":37802,"agles":37803,"473":37804,"frames":37805,"Ġwhispers":37806,"ĠWhoever":37807,"Ġbravery":37808,"ĠUKIP":37809,"ractions":37810,"\"\"\"":37811,"Ġtame":37812,"Ġparted":37813,"everything":37814,"CONT":37815,"Ġindebted":37816,"Ġaddr":37817,"rek":37818,"IRED":37819,"Ġeminent":37820,"clinton":37821,"Ġousted":37822,"Ġreviewer":37823,"Ġmeltdown":37824,"Ġrearr":37825,"ĠYao":37826,"thereal":37827,"abyte":37828,"Ġstumbling":37829,"Ġbatches":37830,"Ġ259":37831,"Ġcontraceptive":37832,"Ġprostitute":37833,"ensis":37834,"Decl":37835,"ĠStrikes":37836,"Military":37837,"ĠOath":37838,"vacc":37839,"ppings":37840,"052":37841,"ĠpartName":37842,"amping":37843,"Reports":37844,"KI":37845,"CHR":37846,"Ġsubtly":37847,"swers":37848,"Blake":37849,"usual":37850,"Ġcontestants":37851,"Ġcartridges":37852,"ĠGREAT":37853,"Ġblush":37854,"ĠâĢº":37855,"472":37856,"Ġreasoned":37857,"ãĥ¤":37858,"paralleled":37859,"Ġdyn":37860,"agate":37861,"Ġnightly":37862,"åĨ":37863,"556":37864,"Ġsemantic":37865,"ĠAdvoc":37866,"Ġ!!":37867,"Ġdisagrees":37868,"ĠBW":37869,"Veh":37870,"Ġharming":37871,"Ġembraces":37872,"Ġstrives":37873,"Ġinland":37874,"ĠKard":37875,"Ġheats":37876,"ĠGinny":37877,"utan":37878,"ernaut":37879,"ylene":37880,"ĠElev":37881,"JD":37882,"Ġhars":37883,"ĠStarr":37884,"Ġskysc":37885,"Ġcollaborators":37886,"Usually":37887,"Ġrevolutions":37888,"ĠSTATS":37889,"Ġdismantle":37890,"Ġconfidently":37891,"Ġkinetic":37892,"Ali":37893,"Ġpercentile":37894,"Ġextracting":37895,"illian":37896,"estead":37897,"Ġphysicists":37898,"ĠMarshal":37899,"Ġfellowship":37900,"Ġdashed":37901,"ĠUR":37902,"ĠSioux":37903,"ĠCompact":37904,"amide":37905,"Python":37906,"ĠLeigh":37907,"ĠPharmac":37908,"istrates":37909,"herical":37910,"Ġfue":37911,"ĠEmin":37912,"Ġ({":37913,"ĠNeighborhood":37914,"Ġdisrupting":37915,"ĠDup":37916,"Ġgland":37917,"ĠSev":37918,"ĠMarian":37919,"argon":37920,"ĠDund":37921,"Ġ":46904,"ĠPhilips":46905,"ĠKafka":46906,"Ġupheaval":46907,"Ġsentimental":46908,"Ġsax":46909,"ĠAkira":46910,"serial":46911,"Matrix":46912,"Ġelecting":46913,"Ġcommenter":46914,"ĠNebula":46915,"plets":46916,"ĠNadu":46917,"ĠAdren":46918,"Ġenshr":46919,"ĠRAND":46920,"financial":46921,"ĠClyde":46922,"utherford":46923,"Ġsignage":46924,"Ġdeline":46925,"Ġphosphate":46926,"roversial":46927,"fascist":46928,"ĠVall":46929,"ĠBethlehem":46930,"Ġfors":46931,"Ġenglish":46932,"Solid":46933,"Nature":46934,"Ġva":46935,"ĠGuests":46936,"Ġtantal":46937,"Ġautoimmune":46938,";;;;;;;;;;;;":46939,"ĠTotally":46940,"ĠOv":46941,"Ġdefences":46942,"ĠCoconut":46943,"Ġtranquil":46944,"Ġploy":46945,"Ġflavours":46946,"ĠFlask":46947,"ãĤ¨ãĥ«":46948,"ĠWeston":46949,"ĠVolvo":46950,"870":46951,"Ġmicrophones":46952,"verbal":46953,"RPG":46954,"Ġiii":46955,";}":46956,"028":46957,"Ġheadlined":46958,"Ġprimed":46959,"Ġhoard":46960,"ĠShad":46961,"ĠENTER":46962,"Ġtriangular":46963,"Ġcapit":46964,"lik":46965,"ĠAncients":46966,"Ġlash":46967,"Ġconvol":46968,"Ġcolonel":46969,"enemy":46970,"Gra":46971,"Ġpubs":46972,"utters":46973,"Ġassigns":46974,"ĠPenet":46975,"ĠMonstrous":46976,"ĠBowen":46977,"ilver":46978,"Haunted":46979,"ĠDing":46980,"started":46981,"plin":46982,"Ġcontaminants":46983,"ĠDOE":46984,"ffen":46985,"ĠTechnician":46986,"Ry":46987,"Ġrobbers":46988,"Ġhotline":46989,"ĠGuardiola":46990,"ĠKaufman":46991,"rower":46992,"ĠDresden":46993,"ĠAlpine":46994,"Elf":46995,"Ġfmt":46996,"ĠSard":46997,"urses":46998,"gpu":46999,"Unix":47000,"Ġunequivocally":47001,"ĠCitizenship":47002,"quad":47003,"mire":47004,"ĠSweeney":47005,"Battery":47006,"615":47007,"Ġpancakes":47008,"Ġoats":47009,"Maps":47010,"ĠContrast":47011,"mbudsman":47012,"ĠEPS":47013,"Ġsubcommittee":47014,"Ġsourcing":47015,"Ġsizing":47016,"ĠBuffer":47017,"ĠMandatory":47018,"Ġmoderates":47019,"ĠPatterns":47020,"ĠChocobo":47021,"ĠZan":47022,"ĠSTATES":47023,"ĠJudging":47024,"ĠInher":47025,"*:":47026,"Ġbil":47027,"ĠYen":47028,"Ġexhilar":47029,"ollower":47030,"zers":47031,"Ġsnug":47032,"maximum":47033,"Ġdespicable":47034,"ĠPACK":47035,"ĠAnnex":47036,"Ġsarcastic":47037,"Ġlatex":47038,"Ġtamp":47039,"ĠSao":47040,"bah":47041,"ĠReverend":47042,"ĠChinatown":47043,"ĠAUT":47044,"documented":47045,"ĠGABA":47046,"ĠCanaan":47047,"ĠÙħ":47048,"Ġgoverns":47049,"prev":47050,"Esc":47051,"ĠEstimates":47052,"OSP":47053,"Ġendeavour":47054,"ĠClosing":47055,"ometime":47056,"everyone":47057,"Ġworsen":47058,"Ġscanners":47059,"Ġdeviations":47060,"ĠRobotics":47061,"ĠCompton":47062,"Ġsorcerer":47063,"Ġendogenous":47064,"Ġemulation":47065,"ĠPiercing":47066,"ĠAph":47067,"ĠSocket":47068,"Ġbould":47069,"ĠOU":47070,"ĠBorderlands":47071,"Ġ1863":47072,"Gordon":47073,"ĠWTO":47074,"Ġrestricts":47075,"Ġmosaic":47076,"Ġmelodies":47077,"çĦ":47078,"Tar":47079,"Ġdisson":47080,"ĠProvides":47081,"Ġ......":47082,"bek":47083,"FIX":47084,"Ġbroom":47085,"anship":47086,"Doctors":47087,"Ġnerds":47088,"ĠRegions":47089,"naissance":47090,"Ġmete":47091,"Ġcrept":47092,"plings":47093,"Ġgirlfriends":47094,"knit":47095,"igent":47096,"owe":47097,"Ġushered":47098,"ĠBaz":47099,"Mobil":47100,"434":47101,"ĠPresents":47102,"origin":47103,"Ġinsomnia":47104,"ĠAux":47105,"439":47106,"ĠChili":47107,"irsch":47108,"GAME":47109,"Ġgestation":47110,"algia":47111,"romising":47112,"$,":47113,"crow":47114,"ĠInspection":47115,"atomic":47116,"Relations":47117,"JOHN":47118,"roman":47119,"ĠClockwork":47120,"ĠBakr":47121,"mone":47122,"MET":47123,"Ġthirsty":47124,"Ġbc":47125,"Ġfaculties":47126,"Rum":47127,"Ġnuance":47128,"ĠDarius":47129,"pleting":47130,"fters":47131,"etchup":47132,"Registration":47133,"ĠKE":47134,"Rah":47135,"Ġpreferential":47136,"ĠLash":47137,"ĠHH":47138,"Valid":47139,"ĠNAV":47140,"Ġstarve":47141,"ĠGong":47142,"zynski":47143,"ĠActress":47144,"Ġwik":47145,"Ġunaccompanied":47146,"lvl":47147,"Bride":47148,"ADS":47149,"ĠCommando":47150,"ĠVaughn":47151,"Wallet":47152,"Ġhopping":47153,"ĠVie":47154,"Ġcaveats":47155,"Ġalas":47156,"ifled":47157,"abuse":47158,"661":47159,"Ġibn":47160,"Ġgul":47161,"Ġrobbing":47162,"til":47163,"ILA":47164,"Ġmitigating":47165,"Ġaptly":47166,"Ġtyrant":47167,"Ġmidday":47168,"ĠGilmore":47169,"ĠDecker":47170,"Ġ§§":47171,"partial":47172,"Exactly":47173,"Ġphenotype":47174,"Ġ[+]":47175,"ĠPlex":47176,"ĠIps":47177,"versions":47178,"Ġebook":47179,"Ġchic":47180,"gross":47181,"\":\"\"},{\"":47182,"ĠSurprisingly":47183,"Morgan":47184,"Ġresidues":47185,"ĠConfederation":47186,"infeld":47187,"Ġlyr":47188,"moderate":47189,"Ġperpendicular":47190,"VK":47191,"Ġsynchronized":47192,"Ġrefreshed":47193,"Ġadore":47194,"ĠTorment":47195,"olina":47196,"Ġ2600":47197,"ItemTracker":47198,"Ġpies":47199,"ĠFAT":47200,"ĠRHP":47201,"048":47202,"ĠRESP":47203,"ĠBJ":47204,"allows":47205,"Pand":47206,"Ġunwelcome":47207,"ĠVoc":47208,"ĠBastard":47209,"ĠOW":47210,"ĠLAR":47211,"ĠHealer":47212,"Environmental":47213,"ĠKenyan":47214,"ĠTrance":47215,"ĠPats":47216,"Ġaliases":47217,"ĠGarfield":47218,"Ġcampaigner":47219,"Ġadvancements":47220,"ĠOkinawa":47221,"ĠCoh":47222,"owsky":47223,"Ġstarved":47224,"Ġsizeable":47225,"Ġ:-)":47226,"ĠmRNA":47227,"Ġsuspensions":47228,"istar":47229,"Scotland":47230,"Prin":47231,"------------------------------------------------":47232,"Ġ502":47233,"Ġteaspoons":47234,"Ġ1050":47235,"Ġcoercive":47236,"ĠMasonic":47237,"edded":47238,"ĠPassenger":47239,"Ġlatt":47240,"Ġbraces":47241,"ĠSteal":47242,"ĠNYT":47243,"ĠKats":47244,"ĠCelest":47245,"aez":47246,"Tu":47247,"ĠCoulter":47248,"ðŁĺ":47249,"Flickr":47250,"ĠWilmington":47251,"iths":47252,"++;":47253,"Ġvending":47254,"Ġnegro":47255,"ĠPhi":47256,"ĠYellowstone":47257,"Callback":47258,"Ġshampoo":47259,"ĠShades":47260,"wat":47261,"Ġsuperhuman":47262,"Ġridiculed":47263,"Ġholiest":47264,"ombo":47265,"Ġinterns":47266,"Ġhone":47267,"ĠParagu":47268,"URI":47269,"Ġdangling":47270,"ãĤ»":47271,"sov":47272,"ictional":47273,"availability":47274,"Ġrevocation":47275,"Ġdow":47276,"inic":47277,"ĠTHEIR":47278,"Ġiso":47279,"Ġoutings":47280,"ĠLethal":47281,"Ġ)))":47282,"Ġinaccur":47283,"Ġoutlandish":47284,"Ġanus":47285,"letico":47286,"idon":47287,"lol":47288,"Ġunregulated":47289,"Ġsuccumbed":47290,"Ġcuff":47291,"ĠWasteland":47292,"letal":47293,"Ġsubstr":47294,"Ġcoffers":47295,"Ġautomakers":47296,"ovi":47297,"ĠXue":47298,"ĠDaytona":47299,"Ġjarring":47300,"Ġfumes":47301,"Ġdisbanded":47302,"zik":47303,"itton":47304,"Ġstrikingly":47305,"Ġspores":47306,"Adapter":47307,".):":47308,"ĠLyndon":47309,"ivalry":47310,"Ġorally":47311,"Ġtumultuous":47312,"Ġdispleasure":47313,"Ġcones":47314,"orrect":47315,"Ġappease":47316,"Ġderby":47317,"ĠTripoli":47318,"ĠAless":47319,"Ġpoked":47320,"ĠGuilty":47321,"vP":47322,"Enough":47323,"Ġoriginals":47324,"699":47325,"Ġrabbi":47326,"Ġproverbial":47327,"Ġpostpone":47328,"elope":47329,"ĠMisty":47330,"Ġstaffed":47331,"ĠUnemployment":47332,"reditary":47333,"Ġdiligent":47334,"recomm":47335,"measures":47336,"asin":47337,"825":47338,"Ġponds":47339,"Ġmmol":47340,"ĠSAR":47341,"ĠCARE":47342,"Ġ371":47343,"Ġclenched":47344,"ĠCorsair":47345,"Ġcaricature":47346,"zn":47347,"attach":47348,"ĠSchro":47349,"speak":47350,"painted":47351,"ĠSuc":47352,"ĠENT":47353,"Ġcellul":47354,"ĠPaid":47355,"diagn":47356,"WHERE":47357,"Ġtexted":47358,"Barn":47359,"Ġretracted":47360,"ĠReferred":47361,"Sav":47362,"Ġupkeep":47363,"Ġworkplaces":47364,"ĠTokens":47365,"Ġamplify":47366,"clinical":47367,"Ġmultic":47368,"mberg":47369,"Ġconvoluted":47370,"Region":47371,"565":47372,"ĠTopic":47373,"Ġsnail":47374,"Ġsaline":47375,"Ġinsurrection":47376,"ĠPetr":47377,"forts":47378,"BAT":47379,"ĠNavajo":47380,"Ġrudimentary":47381,"ĠLaksh":47382,"ONDON":47383,"Measure":47384,"Ġtransformer":47385,"ĠGoddard":47386,"Ġcoincides":47387,"irin":47388,"Rex":47389,"ĠBok":47390,"quit":47391,"Ġshotguns":47392,"Ġproletarian":47393,"Ġscorp":47394,"ĠAda":47395,"514":47396,"Ġslander":47397,"recorded":47398,"Ġembell":47399,"risome":47400,"Ġapologizing":47401,"ĠMulcair":47402,"ĠGibraltar":47403,"Cla":47404,"Ġallot":47405,"ĠAttention":47406,"Ġ433":47407,"leave":47408,"Ġwhine":47409,"ĠIssa":47410,"ĠFaust":47411,"ĠBarron":47412,"heny":47413,"Ġvictimized":47414,"Jews":47415,"Ġnurturing":47416,"ettel":47417,"Winged":47418,"ĠSubtle":47419,"Ġflavorful":47420,"ĠReps":47421,"enged":47422,"callback":47423,"Ġdirectional":47424,"Ġclasp":47425,"ĠDirections":47426,"planet":47427,"iculture":47428,"Helper":47429,"icion":47430,"acia":47431,"Ġç¥ŀ":47432,"Ġsurges":47433,"Ġcanoe":47434,"ĠPremiership":47435,"been":47436,"Ġdefied":47437,"ĠTrooper":47438,"Ġtripod":47439,"Ġgasp":47440,"ĠEuph":47441,"ĠAds":47442,"vernight":47443,"highly":47444,"Role":47445,"Ġentangled":47446,"ĠZeit":47447,"618":47448,"ĠRusty":47449,"Ġhavens":47450,"ĠVaughan":47451,"HAEL":47452,"ĠSERVICE":47453,"/,":47454,"Ġstricken":47455,"Ġdelusions":47456,"Ġbis":47457,"ĠHaf":47458,"Ġgratification":47459,"Ġenticing":47460,"UNCH":47461,"Adams":47462,"ĠOLED":47463,"ĠBeetle":47464,"Ġ1899":47465,"ĠSOFTWARE":47466,"ategor":47467,"VL":47468,"ĠTotem":47469,"ĠGators":47470,"ATURES":47471,"Ġimpedance":47472,"Registered":47473,"ĠCary":47474,"ĠAerial":47475,"onne":47476,"enium":47477,"Ġdred":47478,"ĠBeg":47479,"Ġconcurrently":47480,"Ġsuperpower":47481,"ĠXan":47482,"jew":47483,"imester":47484,"ĠDickinson":47485,"âĶģ":47486,"Fla":47487,"Ġpree":47488,"ĠRollins":47489,"©¶æ":47490,"Ġdenomination":47491,"ĠLana":47492,"516":47493,"Ġinciting":47494,"scribed":47495,"juries":47496,"ĠWonders":47497,"approximately":47498,"Ġsuspending":47499,"Ġmountainous":47500,"ĠLaugh":47501,"oidal":47502,"Ns":47503,"Detect":47504,")=":47505,"ĠLuthor":47506,"ĠSchwarzenegger":47507,"ĠMuller":47508,"ĠDevi":47509,"ecycle":47510,"Jar":47511,"613":47512,"ĠLongh":47513,"Bah":47514,"ĠSPORTS":47515,"nw":47516,"Ġrefinement":47517,"Ġwaterways":47518,"Ġdiner":47519,"Blade":47520,"683":47521,"Fac":47522,"Ġinitials":47523,"Ġrog":47524,"Ġparanormal":47525,"BUT":47526,"Ġ[(":47527,"ĠSwanson":47528,"ĠMesh":47529,"âĸ¬":47530,"Improve":47531,"ĠRadiation":47532,"ĠEsther":47533,"ĠEsk":47534,"ĠAly":47535,"iky":47536,"Ġirrad":47537,"ĠBuckingham":47538,"Ġrefill":47539,"Ġ._":47540,"Repe":47541,"CONCLUS":47542,"Ġdifferentiated":47543,"Ġchirop":47544,"ĠAtkins":47545,"Pattern":47546,"Ġexcise":47547,"Ġcabal":47548,"NSA":47549,"ĠSTA":47550,"ĠSIL":47551,"ĠParaly":47552,"Ġrye":47553,"ĠHowell":47554,"ĠCountdown":47555,"nesses":47556,"alysed":47557,"Ġresize":47558,"ãĤ½":47559,"Ġbudgetary":47560,"ĠStras":47561,"wang":47562,"Ġapiece":47563,"Ġprecincts":47564,"Ġpeach":47565,"Ġskyline":47566,"Ġ353":47567,"popular":47568,"Appearances":47569,"ĠMechanics":47570,"ĠDevOnline":47571,"Sullivan":47572,"Zen":47573,"Ġpu":47574,"opolis":47575,"544":47576,"Ġdeform":47577,"Ġcounteract":47578,"ĠLange":47579,"Ġ417":47580,"Console":47581,"774":47582,"Ġnodding":47583,"Ġpopulism":47584,"Ġhep":47585,"Ġcounselling":47586,"compliance":47587,"UFF":47588,"Ġundeniably":47589,"Ġrailing":47590,"ĠHorowitz":47591,"ĠSimone":47592,"ĠBungie":47593,"Ġak":47594,"ĠTalks":47595,"xff":47596,"flake":47597,"Crash":47598,"Ġsweaty":47599,"Ġbanquet":47600,"ĠOFFIC":47601,"Ġinventive":47602,"Ġastronomer":47603,"ĠStamford":47604,"ĠScare":47605,"ĠGREEN":47606,"olicited":47607,"Ġrusher":47608,"Ġcentrist":47609,"ighting":47610,"Ġsubclass":47611,"Ġdisav":47612,"Ġdefund":47613,"ĠNanto":47614,"ociate":47615,"mast":47616,"Ġpacif":47617,"Ġmend":47618,"eers":47619,"immigration":47620,"ESSION":47621,"Ġnumbering":47622,"Ġlaughable":47623,"ĠEnded":47624,"viation":47625,"emark":47626,"Pitt":47627,"Ġmeticulous":47628,"ĠLF":47629,"Ġcongratulated":47630,"ĠBirch":47631,"Ġswayed":47632,"Ġsemifinals":47633,"Ġhumankind":47634,"matter":47635,"ĠEquip":47636,"opausal":47637,"Said":47638,"ĠLayout":47639,"Ġvoicing":47640,"Ġthug":47641,"Ġpornographic":47642,"IPS":47643,"Ġmoaning":47644,"Ġgrievance":47645,"Ġconfessions":47646,"escal":47647,"TEXTURE":47648,"Authent":47649,"osaurus":47650,"Purchase":47651,"Ġrelegation":47652,"alter":47653,"Ġ³³":47654,"Ġriddled":47655,"Ġogre":47656,"ĠLowell":47657,"Occup":47658,"Eat":47659,"ĠHyder":47660,"ĠAdviser":47661,"Commerce":47662,"Hunt":47663,"ĠOrth":47664,"ĠCompetitive":47665,"ĠCLA":47666,"CDC":47667,"Ġsalads":47668,"Fle":47669,"Ġindustrialized":47670,"`,":47671,"ĠOWN":47672,"Ġbeck":47673,"ĠParticularly":47674,"oubt":47675,"ĠmM":47676,"ĠHussain":47677,"ĠChennai":47678,"Ġ920":47679,"Ġappointing":47680,"ĠCullen":47681,",,,,,,,,":47682,"Ġpores":47683,"verified":47684,"Ġbiochemical":47685,"emate":47686,"Ġcowardly":47687,"ĠHelsinki":47688,"ĠEthiopian":47689,"SOURCE":47690,"ERC":47691,"estro":47692,"Ġbiotech":47693,"ĠSour":47694,"Ġbrewer":47695,"Bloomberg":47696,"Ġintensify":47697,"Glass":47698,"anco":47699,"ĠFDR":47700,"greSQL":47701,"ĠFires":47702,"©¶æ¥µ":47703,"eco":47704,"1001":47705,"ĠHomeless":47706,"Ġinstantaneous":47707,"ĠHaste":47708,"igel":47709,"Diamond":47710,"Ġpaving":47711,"Ġlandfill":47712,"Ġdads":47713,"houn":47714,":]":47715,"Ġincendiary":47716,"ĠLivingston":47717,"ĠHilbert":47718,"ĠChecks":47719,"styles":47720,"inators":47721,"ĠClive":47722,"phrine":47723,"Ġchimpanzees":47724,"Ġpall":47725,"ĠJM":47726,"ĠAadhaar":47727,"ðĿ":47728,"Ġachievable":47729,"disabled":47730,"PET":47731,"OOOOOOOO":47732,"Mot":47733,"Ġintangible":47734,"Ġballet":47735,"ĠWebs":47736,"ĠEstimated":47737,"Effects":47738,"Ġbailed":47739,"Joshua":47740,"Ġturbulence":47741,"Ġoccupant":47742,"ĠDaylight":47743,"Ġ361":47744,"meet":47745,"Ġstatically":47746,"Ġonlook":47747,"Ġki":47748,"illegal":47749,"Ġvelvet":47750,"Ġdehydration":47751,"Ġacquies":47752,"ĠRez":47753,"akura":47754,"ĠUpton":47755,"atro":47756,"Ġincomprehensible":47757,"Ġbackdoor":47758,"ĠRhino":47759,"727":47760,"Ġmaths":47761,")+":47762,"Ġheresy":47763,"Ġdf":47764,"ĠRoche":47765,"ĠLydia":47766,"Ġpancreat":47767,"reply":47768,"arrell":47769,"Ġsolicitation":47770,"Ġcircadian":47771,"BIP":47772,"Ġforay":47773,"Ġcryptic":47774,"izu":47775,"imeo":47776,"ĠTomato":47777,"ĠHoms":47778,"examination":47779,"Ġquarry":47780,"ĠValiant":47781,"ĠJericho":47782,"ĠINCLUD":47783,"Ġ1840":47784,"519":47785,"Ġresists":47786,"Ġsnapshots":47787,"ĠSpur":47788,"ĠAntiqu":47789,"Login":47790,"Ġbestselling":47791,"Ġantic":47792,"ĠSutherland":47793,"ãĤ¢ãĥ«":47794,"Ġ~/":47795,"ĠParm":47796,"èĥ":47797,"Pages":47798,"intensity":47799,"Ġimmobil":47800,"Ġ1865":47801,"zzo":47802,"Ġnifty":47803,"Ġfentanyl":47804,"ĠPreservation":47805,"ophen":47806,"Ġdarts":47807,"ĠDinosaur":47808,"pointers":47809,"ĠRite":47810,"suggest":47811,"awareness":47812,"ĠSheridan":47813,"Ġstances":47814,"Ġsorcery":47815,"Ġperjury":47816,"ĠNikola":47817,"iever":47818,"Ġfiance":47819,"ĠJordanian":47820,"ĠBalloon":47821,"Ġnab":47822,"Ġkb":47823,"Ġhumanities":47824,"ĠTanaka":47825,"hillary":47826,"Ġconsultancy":47827,"ĠZub":47828,"Ġremission":47829,"Ġconfid":47830,"CHQ":47831,"ĠFug":47832,"Ġimprovis":47833,"Yep":47834,"/_":47835,"Ġunwillingness":47836,"Ġportfolios":47837,"055":47838,"ĠInstructor":47839,"aiman":47840,"Ġclaimants":47841,"Mbps":47842,"ĠBye":47843,"received":47844,"Tweet":47845,"Ġindemn":47846,"riz":47847,"amara":47848,"Nat":47849,"Ġevaluates":47850,"ĠLur":47851,"epad":47852,"FOX":47853,"ĠThro":47854,"Ġrusty":47855,"Ġbedrock":47856,"ĠOprah":47857,"JB":47858,"Ġmanipulative":47859,"Ġwillful":47860,"Ġrelapse":47861,"Ġextant":47862,"Theme":47863,"Sensor":47864,"ĠStability":47865,"govern":47866,"Ġpoppy":47867,"Ġknack":47868,"Ġinsulated":47869,"ĠTile":47870,"ĠExtrem":47871,"Ġuntold":47872,"Ġconverge":47873,"Ġrefuel":47874,"igroup":47875,"Ġdistortions":47876,"Ġravaged":47877,"Ġmechanically":47878,"ĠReilly":47879,"ĠNose":47880,"ĠIncarnation":47881,"ĠBecky":47882,"abbling":47883,"Ġtaco":47884,"Ġrake":47885,"Ġmelancholy":47886,"Ġillustrious":47887,"ĠDartmouth":47888,"Guide":47889,"ĠRazer":47890,"ĠBenz":47891,"Ultimate":47892,"ĠSurprise":47893,"Ġpageant":47894,"offer":47895,"Whoever":47896,"Ġwiser":47897,"Ġchemist":47898,"ĠHELL":47899,"ĠBulk":47900,"Ġplutonium":47901,"ĠCOVER":47902,"Ö¼":47903,"failed":47904,"Ġtirelessly":47905,"Ġinfertility":47906,"ĠTrident":47907,"ĠShowtime":47908,"ĠCiv":47909,"Vice":47910,"requires":47911,"ittance":47912,"Ġuncontrolled":47913,"interesting":47914,"561":47915,"Ġinnovate":47916,"ategic":47917,"Lie":47918,"ĠSelling":47919,"Ul":47920,"Ġsavior":47921,"ĠTosh":47922,"Ġswast":47923,"PASS":47924,"Ġrink":47925,"Ġcardio":47926,"ĠIro":47927,"udi":47928,"Ġvantage":47929,"Ġvans":47930,"ĠNiño":47931,"+=":47932,"Ġpropagate":47933,"":49029,"Ġleukemia":49030,"Ġeluc":49031,"Ġannouncer":49032,"ĠLithuan":49033,"ĠArmageddon":49034,"åĩ":49035,"Lenin":49036,"ĠRuk":49037,"Ġpepp":49038,"ĠRomantic":49039,"ĠPIT":49040,"ĠInterstellar":49041,"ĠAtkinson":49042,"Raid":49043,"Js":49044,"Goal":49045,"Course":49046,"Ġvanishing":49047,"esley":49048,"ĠRounds":49049,"Elsa":49050,"593":49051,"Ġredundancy":49052,"ĠSTAND":49053,"Ġprophetic":49054,"Ġhabitable":49055,"ryu":49056,"Ġfaintly":49057,"MODE":49058,"Ġflanked":49059,"IRC":49060,"Awesome":49061,"Ġspurious":49062,"ĠZah":49063,"ĠMSG":49064,"Ġshading":49065,"Ġmotivational":49066,"ĠSantana":49067,"ĠSPR":49068,"Ġexcruciating":49069,"omial":49070,"ĠMiko":49071,"ĠLeopard":49072,"Abyss":49073,"Ġ[|":49074,"dirty":49075,"Ġbaths":49076,"Ġdemoral":49077,"andre":49078,"PB":49079,"Ġunification":49080,"Ġsacrament":49081,"Ġ[&":49082,"Ġpriceless":49083,"Ġgelatin":49084,"Ġemanating":49085,"ĠAllaah":49086,"986":49087,"Ġoutburst":49088,"Ġeras":49089,"ĠXVI":49090,"ĠSPI":49091,"Ott":49092,"ĠLazarus":49093,"PLIED":49094,"Flying":49095,"blogs":49096,"Wisconsin":49097,"Raven":49098,"Ġrebate":49099,"Ġcreeps":49100,"ĠSpan":49101,"ĠPainter":49102,"ĠKira":49103,"ĠAmos":49104,"ĠCorvette":49105,"Consumer":49106,"ĠRecover":49107,"cki":49108,"Ġpesky":49109,"ĠInvention":49110,"Companies":49111,"Ġchallengers":49112,"ademic":49113,"ĠUkrainians":49114,"ĠNeurolog":49115,"ĠForsaken":49116,"Ġentrants":49117,"Ġembattled":49118,"Ġdefunct":49119,"ĠGlacier":49120,"Ġpoisons":49121,"ĠHorses":49122,"makes":49123,"ĠDirt":49124,"Ġ423":49125,"hhh":49126,"ĠTransformation":49127,"QUIRE":49128,"..................":49129,"Ġtraveller":49130,"ĠSexy":49131,"ĠKern":49132,"ipolar":49133,"Ġransomware":49134,"oooooooooooooooo":49135,"Ec":49136,"ruby":49137,"Professional":49138,"ĠOutbreak":49139,"argument":49140,"Grey":49141,"ĠFifa":49142,"ĠCHO":49143,"ĠFORM":49144,"ĠAmtrak":49145,"-[":49146,"Ġcradle":49147,"Ġantioxidants":49148,"ãģ®å®":49149,"736":49150,"ĠNASL":49151,"ĠContributions":49152,"Indiana":49153,"ĠSTEP":49154,"CSS":49155,"Ġsalient":49156,"Ġallocations":49157,"yrights":49158,"Ġmashed":49159,"ĠCutter":49160,"Sexual":49161,"Ġpounded":49162,"Ġfanbase":49163,"Ġcasc":49164,"ĠTransparency":49165,"Ġanalytic":49166,"ĠSummoner":49167,"×ŀ":49168,"ĠADC":49169,"detail":49170,"Ġvanquished":49171,"Ġcrabs":49172,"arie":49173,"Destroy":49174,"ĠSack":49175,"Ġtransistor":49176,"Alabama":49177,"ĠKoen":49178,"ĠFisheries":49179,"cone":49180,"Ġannexed":49181,"ĠMGM":49182,"esa":49183,"Ġfaked":49184,"ĠCongratulations":49185,"Ġhindered":49186,"Ġcorrectional":49187,"ĠITV":49188,"leeve":49189,"Ġinappropriately":49190,"licks":49191,"Ġtrespass":49192,"Ġpaws":49193,"Ġnegotiator":49194,"ĠChristensen":49195,"limits":49196,"ĠDianne":49197,"Ġelegance":49198,"ĠContracts":49199,"anke":49200,"Obj":49201,"Ġvigilance":49202,"Ġcastles":49203,"ĠNAD":49204,"ĠHolo":49205,"Ġemphatically":49206,"ĠTitus":49207,"ĠServing":49208,"ĠRichie":49209,"ĠPigs":49210,"568":49211,"Ġanimosity":49212,"ĠAttributes":49213,"ĠUriel":49214,"MQ":49215,"myra":49216,"ĠApplicant":49217,"Ġpsychiatrists":49218,"ĠVij":49219,"ĠAbby":49220,"agree":49221,"Push":49222,"ĠkWh":49223,"hiba":49224,"Ġincite":49225,"ĠWeasley":49226,"ĠTaxi":49227,"ministic":49228,"hyper":49229,"ĠFarn":49230,"Ġ601":49231,"ĠNationwide":49232,"Fake":49233,"952":49234,"Ġmaize":49235,"Ġinteracted":49236,"Ġtransitioned":49237,"Ġparasitic":49238,"Ġharmonic":49239,"Ġdecaying":49240,"Ġbaseless":49241,"nsics":49242,"Ġtranspired":49243,"Ġabundantly":49244,"ĠForensic":49245,"Ġtreadmill":49246,"ĠJav":49247,"aband":49248,"Ġsshd":49249,"Ġfrontman":49250,"ĠJakarta":49251,"oller":49252,"drops":49253,"ĠSERVICES":49254,"romptu":49255,"ophical":49256,"hospital":49257,"bledon":49258,"645":49259,"Ġmidrange":49260,"ĠEVENT":49261,"culated":49262,"rawled":49263,"Ġperched":49264,"Ġoverboard":49265,"ĠPeel":49266,"ĠPwr":49267,"ĠCarth":49268,"ĠCOMPLE":49269,"coe":49270,"shall":49271,"Ġdeterrence":49272,"METHOD":49273,"ĠAbsent":49274,"MEN":49275,"Ġsill":49276,"ĠLEVEL":49277,"York":49278,"Ġsinners":49279,"ĠOPEC":49280,"ĠNur":49281,"ĠDesigns":49282,"selection":49283,"Ġunworthy":49284,"CHA":49285,"Ġstrengthens":49286,"883":49287,"edly":49288,"Ġslicing":49289,"Ġmalnutrition":49290,"Ġfilmmaking":49291,"ĠPolk":49292,"urated":49293,"Ġ421":49294,"breakers":49295,"!'\"":49296,"Ġwetlands":49297,"ĠDiscrimination":49298,"Ġallowable":49299,"Ġsteered":49300,"ĠSicily":49301,"SAM":49302,"Ġmustache":49303,"Ġmids":49304,"Ġclipped":49305,"Ġcirculate":49306,"Ġbrittle":49307,"ĠBuildings":49308,"raised":49309,"ĠRoundup":49310,"Ġwealthier":49311,"Ġoverwrite":49312,"Ġoverpowered":49313,"ĠGerrard":49314,"sites":49315,"PDATED":49316,"Ġacutely":49317,"ĠGamble":49318,"Ġpim":49319,"ĠKus":49320,"Typically":49321,"Deploy":49322,"ĠMoroccan":49323,"potion":49324,"combe":49325,"Ġvigilante":49326,"Ġ363":49327,"Stew":49328,"ĠBagg":49329,"Ġresided":49330,"ĠSpo":49331,"Ġremnant":49332,"Ġemptiness":49333,"brainer":49334,"Ġoutpatient":49335,"priority":49336,"Ġleptin":49337,"ĠPayton":49338,"ĠGleaming":49339,"ĠShed":49340,"ĠPolo":49341,"ĠMormonism":49342,"restricted":49343,"arlane":49344,"wx":49345,"Ġcreatine":49346,"ĠAnon":49347,"ĠSTUD":49348,"ĠJUL":49349,"ĠTee":49350,"528":49351,"089":49352,"Ġhatched":49353,"Dispatch":49354,"ĠComposite":49355,"Ġ451":49356,"puff":49357,"ĠXCOM":49358,"ĠOrn":49359,"ĠTHANK":49360,"ENDED":49361,"ĠAsheville":49362,"ĠÃľ":49363,"Ġmango":49364,"ĠSlightly":49365,"worldly":49366,"ĠWander":49367,"ĠExpand":49368,"ĠChr":49369,"Mist":49370,"Ġorthodoxy":49371,"ĠUNESCO":49372,"regate":49373,"Elsewhere":49374,"kie":49375,"irled":49376,"Ġtopple":49377,"Ġadoptive":49378,"ĠLegs":49379,"dress":49380,"ĠSagan":49381,"bare":49382,"ĠGlou":49383,"Crunch":49384,"Ġhelpers":49385,"Ġchronically":49386,"ĠHuma":49387,"10000":49388,"Ġaccommodating":49389,"äºĶ":49390,"Ġwrinkles":49391,"Ġdodged":49392,"fourth":49393,"Ġprecon":49394,"Ġcompressor":49395,"ĠKare":49396,"Ġevict":49397,"ĠWarwick":49398,"imar":49399,"Ġmodernization":49400,"Ġbandwagon":49401,"Ġrefuted":49402,"Ġnetted":49403,"ĠNaples":49404,"ĠGenie":49405,"perors":49406,"Ġfielded":49407,"Ġdere":49408,"ĠParables":49409,"lees":49410,"Ġtrout":49411,"aspers":49412,"Ġnihil":49413,"Ġhappiest":49414,"Ġfloppy":49415,"ĠLoft":49416,"ĠHeard":49417,"Ġunison":49418,"Ġlug":49419,"ĠRedmond":49420,"classic":49421,"Supporters":49422,"SHIP":49423,"GMT":49424,"Ġfuelled":49425,"çIJ":49426,"Ġdd":49427,"ĠEminem":49428,"Ġ1897":49429,"NYSE":49430,"Ġsecretaries":49431,"ĠFIA":49432,"ĠCanaveral":49433,"Favorite":49434,"Ġpomp":49435,"Ġdetainee":49436,"ership":49437,"aimon":49438,"iour":49439,"ĠApex":49440,"Ġplantations":49441,"amia":49442,"acion":49443,"Rust":49444,"Ġtowed":49445,"ĠTruly":49446,"577":49447,"Ġsheltered":49448,"rider":49449,"Wo":49450,"Ġlair":49451,"ĠIntelligent":49452,"improve":49453,"matically":49454,"Ġetiquette":49455,"adra":49456,"allo":49457,"ĠJuno":49458,"anything":49459,"ĠStruggle":49460,"ĠPredict":49461,"ĠGrimes":49462,"ĠAMERICA":49463,"ctx":49464,"ĠSituation":49465,"WOOD":49466,"Ġsoluble":49467,"meier":49468,"Ġintolerable":49469,"angering":49470,"Ġuninterrupted":49471,"Ġtooltip":49472,"Ġinterrogated":49473,"Ġgunned":49474,"ĠSneak":49475,"æŃ¦":49476,"Ġtether":49477,"Ġcrumble":49478,"Lens":49479,"Ġclustered":49480,"ĠSyl":49481,"ĠHasan":49482,"Ġdystopian":49483,"wana":49484,"Ġjoystick":49485,"ĠThib":49486,"ammu":49487,"Tomorrow":49488,"546":49489,"Ġovercame":49490,"Ġminimized":49491,"ceptor":49492,"Runner":49493,"ENGTH":49494,"ĠBrenda":49495,"ĠAchievements":49496,"Ġtorches":49497,"Ġrapport":49498,"ĠInvestigator":49499,"ĠHandling":49500,"relation":49501,"grey":49502,"815":49503,"Ġkcal":49504,"ĠCommands":49505,"dq":49506,"Ġcurls":49507,"Ġbearer":49508,"Ġcynicism":49509,"itri":49510,"ĠUseful":49511,"Bee":49512,"DCS":49513,"Ġabras":49514,"Pract":49515,"BILITIES":49516,"712":49517,"Ġdebugger":49518,"Ġdebtor":49519,"ĠLia":49520,"ĠKers":49521,"Ġexacerbate":49522,"ĠStacy":49523,"ĠBland":49524,"ĠScenes":49525,"Ġbranching":49526,"âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ":49527,"apeake":49528,"Ġsalsa":49529,"Ġmishand":49530,"ĠKonami":49531,"ĠNib":49532,"Ġanecdote":49533,"Ġagreeable":49534,"Ïī":49535,"ĠNathaniel":49536,"ĠHeisman":49537,"ĠBeware":49538,"Ġ1886":49539,"spective":49540,"691":49541,"522":49542,"Ġinhibits":49543,"Ġhashing":49544,"Ġ1889":49545,"å°Ĩ":49546,"vich":49547,"Pure":49548,"Ġsolidly":49549,"Ġaspirin":49550,"imaru":49551,"Ġstreetcar":49552,"ĠUCS":49553,"ĠJudd":49554,"Ġflashbacks":49555,"pins":49556,"Ġ1440":49557,"ĠUNHCR":49558,"ĠSymptoms":49559,"TIT":49560,"538":49561,"Fra":49562,"%);":49563,"Ġooz":49564,"Ġcurfew":49565,"Ġcalmed":49566,"Ġparticipates":49567,"TeX":49568,"Ġnonsensical":49569,"Ġfullback":49570,"ĠDeL":49571,"monkey":49572,"hari":49573,"Ġmetabolites":49574,"Ġlooted":49575,"ĠALWAYS":49576,"ĠBCC":49577,"Lt":49578,"ochet":49579,"Bone":49580,"Ġvetoed":49581,"Ġgcc":49582,"ĠCLICK":49583,"Ġ1888":49584,"saf":49585,"Ġstiffness":49586,"Ġlowly":49587,"ĠGeh":49588,"verson":49589,"orset":49590,"Ġunforeseen":49591,"Ġanesthesia":49592,"ĠOptical":49593,"Ġreconstructed":49594,"ĠTup":49595,"shows":49596,"NEWS":49597,"ĠNewspaper":49598,"ĠASA":49599,"tera":49600,"Numbers":49601,"Ġinexplicable":49602,"×ij":49603,"Ġhardness":49604,"untarily":49605,"ĠAcer":49606,"gradient":49607,"ARDIS":49608,"Ġwoodland":49609,"Ġmetaphors":49610,"ĠWembley":49611,"ĠPavel":49612,"philis":49613,"Ġrewriting":49614,"Ġperceptual":49615,"Ġ1070":49616,"worms":49617,"ĠDowns":49618,"Ġunsurprisingly":49619,"Ġtagging":49620,"flame":49621,"Ġlitres":49622,"Ġbounces":49623,"ĠBabe":49624,"shut":49625,"Ġoverdoses":49626,"ĠSheila":49627,"ĠChau":49628,"ĠBless":49629,"Capture":49630,"ĠSignificant":49631,"ĠScion":49632,"Ġ389":49633,"ĠMcH":49634,"ĠTitanium":49635,"ĠMeal":49636,"ameda":49637,"agents":49638,"aggressive":49639,"Billy":49640,"763":49641,"ĠSaying":49642,"DERR":49643,"itone":49644,"Collins":49645,"Bound":49646,"Ġbolted":49647,"ĠDMCA":49648,"953":49649,"Ġuniqueness":49650,"Ġepigen":49651,"unci":49652,"antam":49653,"Ġreckoning":49654,"chairs":49655,"OGR":49656,"ĠSenegal":49657,"Ġ1862":49658,"relevant":49659,"Ġ¯":49660,"Ġpharmacies":49661,"ĠGeral":49662,"vier":49663,"Yan":49664,"ORPG":49665,"Ġrabid":49666,"bending":49667,"ĠUNITED":49668,"Ġ465":49669,"Assembly":49670,"Ġweep":49671,"Ġbehest":49672,"ĠMothers":49673,"ĠJace":49674,"hid":49675,"Ġwhirlwind":49676,"ĠUNIVERS":49677,"Ġutopian":49678,"Ġkidnap":49679,"Philipp":49680,"Kin":49681,"893":49682,"Ġlivestream":49683,"ĠMISS":49684,"Ġsubversive":49685,"ĠTechniques":49686,"ĠJUSTICE":49687,"ĠBASE":49688,"Ġ387":49689,"Ġassailants":49690,"ĠHardcore":49691,"Ġsprinkled":49692,"ĠPse":49693,"éļ":49694,"printed":49695,"ĠHau":49696,"ORGE":49697,"ĠTOUR":49698,"Ġlaced":49699,"Ġitch":49700,"Giving":49701,"Ġported":49702,"781":49703,"////////////////////////////////":49704,"breeding":49705,"Ġlogger":49706,"ĠHOL":49707,"innie":49708,"Firstly":49709,"Ġembryonic":49710,"Ġdelegated":49711,"pai":49712,"OIL":49713,"Ġcentrally":49714,"ĠRx":49715,"ĠScouting":49716,"Dutch":49717,"Ġhereditary":49718,"ĠCruiser":49719,"sat":49720,"529":49721,"ĠMarriott":49722,"othermal":49723,"Ġprohibitions":49724,"Earn":49725,"ĠStab":49726,"ĠColleges":49727,"ĠBelief":49728,"stretched":49729,"ĠLH":49730,"ĠEntityItem":49731,"CIA":49732,"Ġunrem":49733,"Ġlaureate":49734,"Ġdenominations":49735,"summary":49736,"hler":49737,"Spect":49738,"ĠKlaus":49739,"ĠBeans":49740,"Ġinsur":49741,"ĠPAX":49742,"Ġfielder":49743,"ĠVet":49744,"ĠSparrow":49745,"zie":49746,"ĠSQ":49747,"ĠMondays":49748,"ĠOffline":49749,"ĠLerner":49750,"ĠExtensions":49751,"Ireland":49752,"Ġpatronage":49753,"Ġcontrasted":49754,"ĠMania":49755,"hirt":49756,"Moscow":49757,"Ġcondemns":49758,"ĠAnge":49759,"Ġcomposing":49760,"ĠPepe":49761,"ĠPaddock":49762,"Ġheterogeneity":49763,"Ġideologically":49764,"Ġfishes":49765,"Ġcursing":49766,"ĠRutherford":49767,"ĠFloating":49768,"ĠAmelia":49769,"Tea":49770,"Synopsis":49771,"Ġstunts":49772,"Ġbead":49773,"Ġstocking":49774,"ĠMILL":49775,"obook":49776,"massive":49777,"\\<":49778,"Ġhump":49779,"ĠPreferences":49780,"EngineDebug":49781,"geist":49782,"ĠNieto":49783,"omever":49784,"ishy":49785,"evaluate":49786,"colonial":49787,"Alternative":49788,"ĠGoPro":49789,"ĠVortex":49790,"ĠNETWORK":49791,"ansky":49792,"Secure":49793,"ĠThrust":49794,"Snake":49795,"Ġparcels":49796,"Ġsamurai":49797,"Ġactresses":49798,"Nap":49799,"MF":49800,"iferation":49801,"Beer":49802,"523":49803,"ĠIly":49804,"ointment":49805,"Ping":49806,"Ġstriped":49807,"ĠMellon":49808,"ossession":49809,"Ġneutron":49810,"endium":49811,"Ġaph":49812,"ĠFlavoring":49813,"Ġ383":49814,"Ġresponsiveness":49815,"ĠJindal":49816,"ĠHitchcock":49817,"Denver":49818,"ĠDRAGON":49819,"smanship":49820,"ĠDupl":49821,"Ġsly":49822,"Ġwebcam":49823,"ĠTwain":49824,"ĠDarling":49825,"iliate":49826,"consumer":49827,"DIT":49828,"Ġnamesake":49829,"Ġunorthodox":49830,"Ġfuner":49831,"ĠPLoS":49832,"ĠCONTROL":49833,"ozyg":49834,"oglobin":49835,"FACE":49836,"ERG":49837,"ĠDia":49838,"ĠFiesta":49839,"cele":49840,"034":49841,"Ġenclave":49842,"âĸ¬âĸ¬":49843,"onement":49844,"alist":49845,"Mand":49846,"Ġhomegrown":49847,"ĠFancy":49848,"Ġconceptions":49849,"ĠContains":49850,"ureen":49851,"Ġreiterate":49852,"Ġmeager":49853,"Ġinstallments":49854,"Spawn":49855,"627":49856,"Ġphotoc":49857,"ĠCabrera":49858,"ĠRosenthal":49859,"ĠLansing":49860,"isner":49861,"Ġinvests":49862,"ĠUFOs":49863,"EXP":49864,"Hardware":49865,"Ġtragically":49866,"Ġconcedes":49867,"ieft":49868,"cham":49869,"borgh":49870,"ĠSchr":49871,"ĠMelanie":49872,"ĠHoy":49873,"Ġvisitation":49874,"Ġidiosyncr":49875,"Ġfractions":49876,"Ġforeskin":49877,"obos":49878,"Ġpoaching":49879,"ĠVIEW":49880,"Ġstimulates":49881,"ĠGork":49882,"canon":49883,"MIC":49884,"ĠNemesis":49885,"ĠIndra":49886,"ĠDMV":49887,"Ġ529":49888,"Ġinspecting":49889,"Ġgrandma":49890,"ĠWhedon":49891,"ĠShant":49892,"ĠPurg":49893,"ikan":49894,"ĠTeg":49895,"ĠCLR":49896,"zac":49897,"Victoria":49898,"ĠVerify":49899,"ionics":49900,"Ġpartying":49901,"ĠMou":49902,"colour":49903,"Ġtestimonies":49904,"lations":49905,"Ġpressuring":49906,"hiro":49907,"acers":49908,"Ġfid":49909,"angler":49910,"ĠCSI":49911,"Ġhereafter":49912,"Ġdissidents":49913,"reporting":49914,"iphany":49915,"chev":49916,"Ġsolitude":49917,"Ġlobe":49918,"Ġindis":49919,"Ġcredential":49920,"recent":49921,"adult":49922,"ĠNirvana":49923,"ĠFranchise":49924,"Layer":49925,"Hyp":49926,"ĠBerkshire":49927,"Ġwills":49928,"tif":49929,"Ġtotem":49930,"ĠJudah":49931,"repair":49932,"Instant":49933,"548":49934,"Ġembassies":49935,"Ġbottleneck":49936,"Ġbount":49937,"Ġtypew":49938,"ĠAlvin":49939,"jing":49940,"imilar":49941,"Rush":49942,"Ġbrim":49943,"ĠHELP":49944,"Aim":49945,"]'":49946,"Ġpassively":49947,"Ġbounded":49948,"ĠRated":49949,"Ġcriminality":49950,"Ġbiomark":49951,"Ġdispatcher":49952,"ĠTowards":49953,"Ġ+++":49954,"righteous":49955,"frog":49956,"ĠPanc":49957,"Carter":49958,"032":49959,"æ©Ł":49960,"Ġultraviolet":49961,"ĠLicensed":49962,"ĠTata":49963,"ĠBlessing":49964,"ĠGAM":49965,"Ġchemically":49966,"ĠSeaf":49967,"ĠRELE":49968,"ĠMercenary":49969,"capitalist":49970,"Ġformulations":49971,"Ġannihilation":49972,"ĠVerb":49973,"ĠArgon":49974,"Ġunloaded":49975,"Ġmorphed":49976,"Ġconquering":49977,"backer":49978,"IELD":49979,"Ġthefts":49980,"Ġfrontrunner":49981,"ĠRoyale":49982,"ĠFundamental":49983,"elight":49984,"Chip":49985,"necessary":49986,"ayn":49987,"ĠSlip":49988,"Ġ448":49989,"cerned":49990,"Pause":49991,"Ġshockingly":49992,"ĠABV":49993,"Ġcomposure":49994,"733":49995,"ĠMotorsport":49996,"ahime":49997,"Murray":49998,"Mach":49999,"Ġgrids":50000,"Ġdebian":50001,"Ġfurthermore":50002,"Ġdexterity":50003,"ĠCollections":50004,"oslov":50005,"ilage":50006,"bj":50007,"ĠMonteneg":50008,"ĠstrutConnector":50009,"Ġmassacres":50010,"Ġbriefs":50011,"fetched":50012,"uvian":50013,"olition":50014,"Failure":50015,"emonic":50016,"Ġflared":50017,"Ġclaimant":50018,"Ġcures":50019,"Ġgiveaways":50020,"ĠSubstance":50021,"alions":50022,"Ġcringe":50023,"ĠKul":50024,"Ġaristocracy":50025,"ĠUlster":50026,"olated":50027,"housing":50028,"ĠMIS":50029,"Ġglared":50030,"ĠWilhelm":50031,"needs":50032,"lambda":50033,"builders":50034,"ĠVIS":50035,"Ġradiator":50036,"ĠGhostbusters":50037,"Ġ436":50038,"actual":50039,"Ġherds":50040,"ça":50041,"watching":50042,"Ġcountering":50043,"Charge":50044,"Ġcharred":50045,"Ġwarheads":50046,"Ġiodine":50047,"ĠMacy":50048,"041":50049,"Ġdepartures":50050,"ĠSins":50051,"Ġdyed":50052,"ĠConcepts":50053,"gado":50054,"713":50055,"Ġquotations":50056,"Ġgist":50057,"ĠChristy":50058,"Ġantigen":50059,"ĠHemp":50060,"ĠDrawn":50061,"ĠBarg":50062,"ezvous":50063,"Ġpaternity":50064,"Ġardu":50065,"ĠAnchorage":50066,"ĠRik":50067,"Ġoverloaded":50068,"ĠUsername":50069,"ĠTammy":50070,"ĠNau":50071,"ĠCellular":50072,"Ġwaning":50073,"Ġrodent":50074,"ĠWorcester":50075,"ilts":50076,"ĠTad":50077,"Ġdwellings":50078,"Ġbullish":50079,"431":50080,"Ġretaliate":50081,"Ġmigraine":50082,"ĠChevron":50083,"CHECK":50084,"Ġdonkey":50085,"crim":50086,"SPA":50087,"ĠAnalog":50088,"Ġmarquee":50089,"ĠHaas":50090,"Bir":50091,"ĠGDDR":50092,"ĠDownloads":50093,"Ġwillpower":50094,"ĠForth":50095,"ĠRecorded":50096,"Ġimpossibility":50097,"ĠLogged":50098,"ĠFranks":50099,"ĠRatt":50100,"initions":50101,"Ġcleaners":50102,"Ġsorely":50103,"Ġflickering":50104,"ĠExamination":50105,"catching":50106,"alloween":50107,"Msg":50108,"Ġdunno":50109,"Fa":50110,"Ġdysph":50111,"crazy":50112,".''.":50113,"Ġmainline":50114,"Ġcs":50115,"Ġptr":50116,"ĠWally":50117,"igun":50118,"951":50119,"ĠBigfoot":50120,"fights":50121,"Ġretrieving":50122,"Jr":50123,"Ġduplication":50124,"ĠExplan":50125,"Ġrelational":50126,"Ġquaint":50127,"Ġbiscuits":50128,"Ġado":50129,"Ġshudder":50130,"Ġantidote":50131,"blooded":50132,"ksh":50133,"Ġsauces":50134,"Ġreinvest":50135,"Ġdispensary":50136,"ĠDiver":50137,"Ġ9000":50138,"student":50139,"Ġinsepar":50140,"escap":50141,"Ġtoddlers":50142,"ĠGPIO":50143,"ĠAssignment":50144,"headers":50145,"Ġlackluster":50146,"Ġaback":50147,"956":50148,"Ġtoolbar":50149,"745":50150,"Ġoust":50151,"Ġcontemplation":50152,"ĠPRESIDENT":50153,"Ġ458":50154,"======":50155,"Ġguaranteeing":50156,"ĠHeist":50157,"ĠCannes":50158,"Ͻ":50159,"Ġcollaborator":50160,"ĠAmp":50161,"Ġgou":50162,"ĠSHALL":50163,"stories":50164,"783":50165,"Ġmobilized":50166,"Ġbrood":50167,"ĠLU":50168,"ĠðŁij":50169,"Ġrefin":50170,"ĠAnthropology":50171,"vind":50172,"illi":50173,"Ġwarranties":50174,"ĠBabel":50175,"Ġswath":50176,"Ġcaches":50177,"Ġantagonists":50178,"artifacts":50179,"Ġhotly":50180,"ĠStarts":50181,"ĠGö":50182,"zag":50183,"!!!!!":50184,"Ġscourge":50185,"Ġconspiring":50186,"ruits":50187,"reverse":50188,"ĠSheen":50189,"ĠJesuit":50190,"ĠGiovanni":50191,"adies":50192,"Ġbuttocks":50193,"earcher":50194,"acan":50195,"Ġvolleyball":50196,"Ġshrouded":50197,"Ġscoreboard":50198,"bats":50199,"ĠIPM":50200,"Ġasses":50201,"Ġderegulation":50202,"ĠTelegram":50203,"ĠReboot":50204,"Ġ7000":50205,"ĠCanary":50206,"Ġkernels":50207,"ĠFrançois":50208,"ĠDuff":50209,"ĠPon":50210,"ĠLeica":50211,"ĠGarmin":50212,"Ġorphans":50213,"ĠClaudia":50214,"Ġcalendars":50215,"ĠLeilan":50216,"ento":50217,"Rocket":50218,"Ġbrunch":50219,"ĠHawking":50220,"ainers":50221,"Ġsensibilities":50222,"ĠkW":50223,"ĠKand":50224,"Ġreclaimed":50225,"Ġinterestingly":50226,"ש":50227,"romy":50228,"JM":50229,"ĠEnhancement":50230,"bush":50231,"Skip":50232,"Ġrappers":50233,"Ġgazing":50234,"pedia":50235,"athlon":50236,"Revolution":50237,"Ġsnipers":50238,"Ġreverted":50239,"Ġconglomerate":50240,"Terry":50241,"794":50242,"Ġharsher":50243,"Ġdesolate":50244,"ĠHitman":50245,"Commission":50246,"Ġ(/":50247,"â̦.\"":50248,"Compar":50249,"Ġamplification":50250,"ominated":50251,"Ġregress":50252,"ĠCollider":50253,"Ġinformants":50254,"Ġgazed":50255,"<|endoftext|>":50256},"merges":["Ġ t","Ġ a","h e","i n","r e","o n","Ġt he","e r","Ġ s","a t","Ġ w","Ġ o","e n","Ġ c","i t","i s","a n","o r","e s","Ġ b","e d","Ġ f","in g","Ġ p","o u","Ġa n","a l","a r","Ġt o","Ġ m","Ġo f","Ġ in","Ġ d","Ġ h","Ġan d","i c","a s","l e","Ġt h","i on","o m","l l","en t","Ġ n","Ġ l","s t","Ġ re","v e","Ġ e","r o","l y","Ġb e","Ġ g","Ġ T","c t","Ġ S","i d","o t","Ġ I","u t","e t","Ġ A","Ġ is","Ġ on","i m","a m","o w","a y","a d","s e","Ġth at","Ġ C","i g","Ġf or","a c","Ġ y","v er","u r","Ġ u","l d","Ġs t","Ġ M","' s","Ġ he","Ġ it","at ion","it h","i r","c e","Ġy ou","i l","Ġ B","Ġw h","o l","Ġ P","Ġw ith","Ġ 1","t er","c h","Ġa s","Ġw e","Ġ (","n d","i ll","Ġ D","i f","Ġ 2","a g","er s","k e","Ġ \"","Ġ H","e m","Ġc on","Ġ W","Ġ R","he r","Ġw as","Ġ r","o d","Ġ F","u l","at e","Ġa t","r i","p p","o re","ĠT he","Ġs e","u s","Ġp ro","Ġh a","u m","Ġa re","Ġd e","a in","an d","Ġo r","ig h","es t","is t","a b","r om","Ġ N","t h","Ġc om","Ġ G","u n","o p","0 0","Ġ L","Ġn ot","es s","Ġe x","Ġ v","re s","Ġ E","e w","it y","an t","Ġb y","e l","o s","or t","o c","q u","Ġf rom","Ġha ve","Ġs u","i ve","ou ld","Ġs h","Ġth is","n t","r a","p e","igh t","ar t","m ent","Ġa l","u st","en d","- -","al l","Ġ O","ac k","Ġc h","Ġ le","i es","re d","ar d","â Ģ","ou t","Ġ J","Ġa b","e ar","i v","al ly","ou r","o st","g h","p t","Ġp l","as t","Ġc an","a k","om e","u d","T he","Ġh is","Ġd o","Ġg o","Ġh as","g e","' t","Ġ U","r ou","Ġs a","Ġ j","Ġb ut","Ġw or","Ġa ll","e ct","Ġ k","am e","Ġw ill","o k","Ġw he","Ġthe y","id e","0 1","f f","ic h","p l","t her","Ġt r",". .","Ġin t","i e","u re","ag e","Ġn e","i al","a p","in e","ic e","Ġm e","Ġo ut","an s","on e","on g","ion s","Ġwh o","Ġ K","Ġu p","Ġthe ir","Ġa d","Ġ 3","Ġu s","at ed","ou s","Ġm ore","u e","o g","ĠS t","in d","i ke","Ġs o","im e","p er",". \"","b er","i z","a ct","Ġon e","Ġsa id","Ġ -","a re","Ġyou r","c c","ĠT h","Ġc l","e p","a ke","ab le","i p","Ġcon t","Ġwh ich","i a","Ġ im","Ġab out","Ġwe re","ver y","u b","Ġh ad","Ġ en","Ġcom p",", \"","ĠI n","Ġu n","Ġa g","i re","ac e","a u","ar y","Ġw ould","as s","r y","Ġ âĢ","c l","o ok","e re","s o","Ġ V","ig n","i b","Ġof f","Ġt e","v en","Ġ Y","i le","o se","it e","or m","Ġ2 01","Ġre s","Ġm an","Ġp er","Ġo ther","or d","ul t","Ġbe en","Ġl ike","as e","an ce","k s","ay s","ow n","en ce","Ġd is","ct ion","Ġan y","Ġa pp","Ġs p","in t","res s","ation s","a il","Ġ 4","ic al","Ġthe m","Ġhe r","ou nt","ĠC h","Ġa r","Ġ if","Ġthe re","Ġp e","Ġy ear","a v","Ġm y","Ġs ome","Ġwhe n","ou gh","ac h","Ġth an","r u","on d","ic k","Ġo ver","ve l","Ġ qu","Ċ Ċ","Ġs c","re at","re e","ĠI t","ou nd","p ort","Ġal so","Ġp art","f ter","Ġk n","Ġbe c","Ġt ime","en s","Ġ 5","op le","Ġwh at","Ġn o","d u","m er","an g","Ġn ew","-- --","Ġg et","or y","it ion","ing s","Ġj ust","Ġint o","Ġ 0","ent s","o ve","t e","Ġpe ople","Ġp re","Ġit s","Ġre c","Ġt w","i an","ir st","ar k","or s","Ġwor k","ad e","o b","Ġs he","Ġo ur","w n","in k","l ic","Ġ1 9","ĠH e","is h","nd er","au se","Ġh im","on s","Ġ [","Ġ ro","f orm","i ld","at es","ver s","Ġon ly","o ll","Ġs pe","c k","e ll","am p","Ġa cc","Ġb l","i ous","ur n","f t","o od","Ġh ow","he d","Ġ '","Ġa fter","a w","Ġat t","o v","n e","Ġpl ay","er v","ic t","Ġc ould","it t","Ġa m","Ġf irst","Ġ 6","Ġa ct","Ġ $","e c","h ing","u al","u ll","Ġcom m","o y","o ld","c es","at er","Ġf e","Ġbe t","w e","if f","Ġtw o","oc k","Ġb ack",") .","id ent","Ġu nder","rou gh","se l","x t","Ġm ay","rou nd","Ġp o","p h","is s","Ġd es","Ġm ost","Ġd id","Ġad d","j ect","Ġin c","f ore","Ġp ol","on t","Ġag ain","cl ud","ter n","Ġkn ow","Ġne ed","Ġcon s","Ġc o","Ġ .","Ġw ant","Ġse e","Ġ 7","n ing","i ew","ĠTh is","c ed","Ġe ven","Ġin d","t y","ĠW e","at h","Ġthe se","Ġp r","Ġu se","Ġbec ause","Ġf l","n g","Ġn ow","ĠâĢ ĵ","c om","is e","Ġm ake","Ġthe n","ow er","Ġe very","ĠU n","Ġse c","os s","u ch","Ġe m","Ġ =","ĠR e","i ed","r it","Ġin v","le ct","Ġsu pp","at ing","Ġl ook","m an","pe ct","Ġ 8","ro w","Ġb u","Ġwhe re","if ic","Ġyear s","i ly","Ġd iff","Ġsh ould","Ġre m","T h","I n","Ġe v","d ay","' re","ri b","Ġre l","s s","Ġde f","Ġr ight","Ġs y",") ,","l es","00 0","he n","Ġth rough","ĠT r","_ _","Ġw ay","Ġd on","Ġ ,","Ġ1 0","as ed","Ġas s","ub lic","Ġre g","ĠA nd","i x","Ġ very","Ġin clud","ot her","Ġim p","ot h","Ġsu b","ĠâĢ Ķ","Ġbe ing","ar g","ĠW h","= =","ib le","Ġdo es","an ge","r am","Ġ 9","er t","p s","it ed","ation al","Ġb r","Ġd own","Ġman y","ak ing","Ġc all","ur ing","it ies","Ġp h","ic s","al s","Ġde c","at ive","en er","Ġbe fore","il ity","Ġwe ll","Ġm uch","ers on","Ġth ose","Ġsu ch","Ġ ke","Ġ end","ĠB ut","as on","t ing","Ġl ong","e f","Ġth ink","y s","Ġbe l","Ġs m","it s","a x","Ġo wn","Ġpro v","Ġs et","if e","ment s","b le","w ard","Ġsh ow","Ġp res","m s","om et","Ġo b","Ġs ay","ĠS h","t s","f ul","Ġe ff","Ġg u","Ġin st","u nd","re n","c ess","Ġ ent","ĠY ou","Ġgo od","Ġst art","in ce","Ġm ade","t t","st em","ol og","u p","Ġ |","um p","Ġhe l","ver n","ul ar","u ally","Ġa c","Ġm on","Ġl ast","Ġ2 00","1 0","Ġst ud","u res","ĠA r","sel f","ar s","mer ic","u es","c y","Ġm in","oll ow","Ġc ol","i o","Ġm od","Ġc ount","ĠC om","he s","Ġf in","a ir","i er","âĢ Ķ","re ad","an k","at ch","e ver","Ġst r","Ġpo int","or k","ĠN ew","Ġs ur","o ol","al k","em ent","Ġus ed","ra ct","we en","Ġs ame","ou n","ĠA l","c i","Ġdiff ere","Ġwh ile","---- ----","Ġg ame","ce pt","Ġs im",".. .","Ġin ter","e k","Ġre port","Ġpro du","Ġst ill","l ed","a h","Ġhe re","Ġwor ld","Ġth ough","Ġn um","ar ch","im es","al e","ĠS e","ĠI f","/ /","ĠL e","Ġre t","Ġre f","Ġtr ans","n er","ut ion","ter s","Ġt ake","ĠC l","Ġcon f","w ay","a ve","Ġgo ing","Ġs l","u g","ĠA meric","Ġspe c","Ġh and","Ġbet ween","ist s","ĠD e","o ot","I t","Ġe ar","Ġagain st","Ġh igh","g an","a z","at her","Ġex p","Ġo p","Ġin s","Ġg r","Ġhel p","Ġre qu","et s","in s","ĠP ro","is m","Ġf ound","l and","at a","us s","am es","Ġp erson","Ġg reat","p r","Ġs ign","ĠA n","' ve","Ġs omet","Ġs er","h ip","Ġr un","Ġ :","Ġt er","ire ct","Ġf ollow","Ġd et","ic es","Ġf ind","1 2","Ġm em","Ġc r","e red","e x","Ġex t","ut h","en se","c o","Ġte am","v ing","ou se","as h","at t","v ed","Ġsy stem","ĠA s","d er","iv es","m in","Ġle ad","ĠB l","c ent","Ġa round","Ġgo vern","Ġc ur","vel op","an y","Ġc our","al th","ag es","iz e","Ġc ar","od e","Ġl aw","Ġre ad","' m","c on","Ġre al","Ġsupp ort","Ġ1 2",".. ..","Ġre ally","n ess","Ġf act","Ġd ay","Ġb oth","y ing","Ġs erv","ĠF or","Ġth ree","Ġw om","Ġm ed","od y","ĠThe y","5 0","Ġex per","t on","Ġe ach","ak es","Ġc he","Ġc re","in es","Ġre p","1 9","g g","ill ion","Ġg rou","ut e","i k","W e","g et","E R","Ġm et","Ġs ays","o x","Ġd uring","er n","iz ed","a red","Ġf am","ic ally","Ġha pp","ĠI s","Ġch ar","m ed","v ent","Ġg ener","i ent","p le","i et","re nt","1 1","v es","pt ion","Ġ2 0","form ation","Ġc or","Ġoff ic","ie ld","Ġto o","is ion","Ġin f","Ġ Z","t he","o ad","Ġp ublic","Ġpro g","r ic","* *","Ġw ar","Ġp ower","v iew","Ġf ew","Ġl oc","Ġdiffere nt","Ġst ate","Ġhe ad","' ll","Ġp oss","Ġst at","re t","ant s","Ġv al","Ġis s","Ġc le","i vers","an c","Ġex pl","Ġan other","Ġ Q","Ġa v","th ing","n ce","W h","Ġch ild","Ġs ince","i red","l ess","Ġl ife","Ġde velop","itt le","Ġde p","Ġp ass","ã ĥ","Ġt urn","or n","Th is","b ers","ro ss","ĠA d","Ġf r","Ġres p","Ġsec ond","o h","Ġ /","Ġdis c","Ġ &","Ġsomet hing","Ġcomp le","Ġ ed","Ġf il","Ġmon th","a j","u c","Ġgovern ment","Ġwith out","Ġle g","Ġd ist","Ġp ut","Ġqu est","an n","Ġpro t","2 0","Ġne ver","i ence","Ġle vel","Ġar t","Ġth ings","Ġm ight","Ġeff ect","Ġcont ro","Ġc ent","Ġ1 8","Ġall ow","Ġbel ie","ch ool","ot t","Ġinc re","Ġfe el","Ġres ult","Ġl ot","Ġf un","ot e","Ġt y","ere st","Ġcont in","Ġus ing","Ġb ig","2 01","Ġas k","Ġb est","Ġ )","I N","Ġo pp","3 0","Ġnum ber","in ess","S t","le ase","Ġc a","Ġm ust","Ġd irect","Ġg l","Ġ <","Ġop en","Ġp ost","Ġcom e","Ġse em","ord ing","Ġwe ek","ate ly","it al","Ġe l","ri end","Ġf ar","Ġt ra","in al","Ġp ri","ĠU S","Ġpl ace","Ġfor m","Ġto ld","\" :","ain s","at ure","ĠTr ump","Ġst and","Ġ #","id er","ĠF r","Ġne xt","Ġs oc","Ġp ur","Ġle t","Ġl ittle","Ġh um","Ġ i","r on","1 5","Ġ1 5","Ġcomm un","Ġm ark","ĠThe re","Ġw r","ĠTh at","Ġin formation","w ays","Ġb us","a pp","Ġinv est","m e","Ġh ard","ain ed","e ad","Ġim port","Ġapp ro","Ġt est","Ġt ri","Ġre st","os ed","Ġf ull","Ġc are","ĠS p","Ġc ase","O N","Ġs k","Ġl ess","Ġ +","Ġpart ic","ĠP l","ab ly","u ck","is hed","ch n","b e","Ġl ist","at or","Ġto p","Ġad v","ĠB e","ru ct","Ġd em","r ation","l ing","g y","re en","g er","Ġh ome","Ġle ft","Ġbet ter","Ġd ata","Ġ1 1","Ġatt ack","Ġpro ble","l ine","ard s","Ġbe h","r al","ĠH ow","ĠS he","ar ge","Ġ --",": //","Ġb ro","ĠP h","at s","Ġbu ild","w w","id ed","a im","as es","en cy","Ġm ain","in ed","Ġinclud ing","Ġ {","Ġg ot","Ġint erest","Ġke ep","Ġ X","Ġe as","ain ing","Ġcl ass","âĢ ¦","ĠN o","Ġv ar","Ġsm all","amp le","A T","Ġ ide","ĠS o","Ġre ce","Ġpol it","Ġm ov","Ġpl an","Ġper cent","iv ing","Ġc amp","Ġp ay","1 4","s c","is ed","Ġu nt","one y","pl oy","== ==","Ġdid n","ĠI nd","el s","ert ain","Ġp os","__ __","i ver","Ġpro cess","Ġprog ram","if ied","ĠR ep","1 6","u ro","olog y","at ter","in a","Ġn ame","ĠA ll","Ġf our","Ġret urn","v ious","b s","Ġcall ed","Ġm ove","ĠS c","ir d","Ġgrou p","Ġb re","Ġm en","Ġc ap","t en","e e","Ġd ri","le g","he re","uth or","Ġp at","Ġcur rent","id es","Ġp op","t o","ent ion","Ġal ways","Ġm il","Ġwom en","Ġ1 6","Ġo ld","iv en","ra ph","ĠO r","r or","ent ly","Ġn ear","ĠE x","re am","s h","Ġ1 4","Ġf ree","iss ion","st and","ĠC on","al ity","us ed","1 3","Ġdes ign","Ġch ange","Ġch ang","Ġb o","Ġv is","em ber","Ġb ook","read y","Ġk ill","2 5","pp ed","Ġa way","Ġab le","Ġcount ry","Ġcon st","ar n","Ġor der","A R","i or","i um","or th","1 8","ail able","Ġs w","Ġm illion","Ġ1 3","at ic","t ed","ĠG o","Ġo per","en g","Ġth ing","aj or","con om","ĠCom m","Ġwh y","u red","ur al","Ġs chool","b y","ĠM ar","Ġa ff","Ġd ays","Ġan n","us h","an e","I f","e g","Ġpro f","Ġhe alth","ou th","B ut","ion al",". ,","Ġs ol","Ġal ready","Ġ3 0","Ġchar act","H e","Ġf riend","E S","i ans","ic le","' d","ĠO n","Ġle ast","Ġp rom","Ġd r","Ġh ist","it her","Ġ est","i qu","1 7","s on","Ġte ll","Ġt alk","oh n","o int","le ction","A N","Ġunt il","au gh","Ġl ater","Ġ ve","Ġv iew","end ing","iv ed","Ġwor d","w are","Ġc ost","Ġen ough","Ġg ive","ĠUn ited","Ġte chn","are nt","O R","Ġp ar","ĠD r","Ġ201 6","r ist","er ing","Ġ Â","Ġl arge","s ide","ac y","cc ess","Ġw in","Ġimport ant","Ġ19 9","Ġdoes n","Ġ1 7","Ġbus iness","Ġcle ar","Ġre se","\" ,","ur y","Ġe qu","as ter","al f","ĠAmeric an","n ect","Ġex pect","ivers ity","Ġo cc","ĠF l","Ġk ind","Ġme an","Ġp ast","Ġde v","Ġb as","le t","ra ft","Ġor gan","Ġde l","Ġper form","Ġst ory","Ġse ason","ĠC ol","Ġcl aim","Ġc ame","Ġwith in","Ġl ine","Ġpro ject","ĠA t","Ġcontro l","end ed","ĠS y","Ġa ir","iz ation","Ġ *","le y","Ġm oney","id d","Y ou","f or","Ġfam ily","Ġm aking","Ġb it","Ġpol ice","Ġhapp en","Ġ vers","on y","u ff","ĠW hen","Ġs it","ide o","l f","is on","Ġsu re","g in","Ġapp ear","Ġl ight","Ġ es","o f","Ġw ater","Ġt imes","n ot","Ġg row","Ġcomp any","ĠT e","ow s","Ġm ar","our ce","i ol","ar m","b r","Ġex ample","Ġcon c","Ġf ore","ĠT o","p ro","E N","ri es","Ġ2 5","ĠC an","ne y","Ġact ually","Ġe ver","ur ity","ak en","ap s","Ġt ax","Ġm ajor","am a","Ġof ten","er al","Ġhum an","Ġj ob","is ter","Ġav ailable","oc r","en n","a id","iv id","Ġrec ord","? \"","Ġs ing","ĠA m","id ence","Ġnew s","st er","Ġe conom","Ġfollow ing","ĠB r","is ing","Ġh our","m ost","um ent","Ġse x","Ġdes c","Ġbec ome","ĠE d","Ġto ok","Ġha ving","Ġprodu ct","a ult","A s","ar ing","Ġme ans","Ġh op","un e","Ġch o","Ġc ertain","Ġn on","Ġde al","2 4","le ment","oc i","en e","Ġs ide","ĠP r","ĠM ay","Ġre ason","u ed","c hed","ul ation","Ġe lect","Ġoffic ial","Ġposs ible","Ġh old","and s","ot s","Ġc ity","or ies","Ġse ver","Ġchild ren","Ġon ce","Ġact iv","l er","Ġn ight","it ions","ĠJ ohn","a pe","pl ay","Ġd one","Ġl im","Ġwork ing","ĠP res","or ld","e b","ĠC o","Ġb ody","ail s","ut es","ĠM r","Ġwhe ther","Ġa uthor","ro p","Ġpro per","Ġse en",") ;","Ġf ac","ĠS u","Ġcon d","it ing","Ġcour se","Ġ }","-------- --------","a ign","Ġev ent","Ġen g","Ġp ot","Ġin tern","i am","Ġsh ort","em pt","ã Ĥ","ĠG od","il ar","8 0","Ġor ig","I S","our n","ab ility","it ive","Ġd am","Ġ1 00","Ġp ress","Ġdo ing","Ġprot ect","r ing","Ġthough t","Ġquest ion","re w","ĠW ar","Ġsever al","ĠSt ate","Ġg iven","Ġf und","ĠT w","Ġw ent","an ces","w ork","p or","m y","4 0","Ġar g","art ment","ust om","Ġpol ic","Ġme et","Ġc reat","2 2","ĠSt ates","Ġg ames","ra w","ut ure","Ġunder stand","ur s","ĠO b","l ish","s y","Ġm akes","Ġw on","ag on","Ġh tt","Ġl ove","ent ial","Ġcomple te","p ar","ĠI m","A L","Ġacc ount"," ł","ore d","ver t","Ġ ident","Ġ201 5","Ġother s","ĠM in","i ber","ver age","The re","ition al","d d","Ġpro b","Ġyou ng","Ġal ong","Ġacc ording","Ġy et","Ġmem bers","ĠWh at","o id","ĠM an","A nd","Ġam ong","a i","Ġem ploy","ĠR es","Ġ >","Ġinv ol","Ġl ow","a f","ĠC ar","Ġh ig","ĠO ne","ĠS ec","in ation","Ġlike ly","Ġan t","ag ed","ĠR uss","Ġb en","Ġre le","F or","b ack","ĠN ot","Ġpres ident","b all","Ġacc ess","ivid ual","ĠD em","ĠE uro","6 0","Ġkn own","ir l","ĠG r","Ġear ly","u se","iet y","âĢ ĵ","Ġf ight","Ġs ent","Ġto day","Ġmark et","\" .","Ġb ased","Ġstr ong","ur ther","Ġde b","m ber","Ġproble m","Ġde ath","Ġsoc ial","im ate","A S","ort un","Ġcamp aign","er y","C h","Ġe y","i ally","Ġm us","w h","p os","Ġ er","Ġsa f","Ġmonth s","ir on","Ġv iol","Ġf ive","Ġst re","Ġplay ers","in c","al d","y ear","a un","Ġsu ccess","Ġpres ent","ere nce","Ġ201 4","Ġsu gg","Ġpartic ular","Ġtr y","Ġsugg est","ĠCh rist","on es","Ġpri v","2 3","Ġc rit","Ġl and","Ġloc al","if y","2 9","Ġa ut","E D","ĠG u","Ġm ult","Ġpolit ical","Ġask ed","Ġfor mer","it ter","ri pt","Ġcl ose","Ġp ract","ĠY ork","Ġget ting","Ġac ross","Ġcom b","Ġbelie ve","Ġ z","Ġto get","Ġtoget her","ĠC ent","ir c","Ġind ividual","ĠM c","2 7","is k","ĠE ng","Ġf ace","Ġ2 4","Ġval ue","Ġare a","e v","Ġw rit","ĠPres ident","Ġv ot","Ġke y","Ġm om","p ut","Ġany thing","Ġexper ience","att le","Ġm ind","a ff","om m","Ġf uture","g ed","Ġc ut","Ġto t","it ch","Ġv ideo","Ġinvest ig","Ġn et","ĠM y","r ict","i en",". )","Ġimp ro","th ough","ward s","Ġcon nect","ĠM ed","sel ves","ens ive","m b","o ber","at ors","A n","Ġ5 0","Ġre du","res ent","Ġab ove","Ġf re","ĠEuro pe","s w","Ġam ount","ĠA pp","Ġe ither","Ġmil it","Ġan al","Ġf ail","ĠE n","al es","Ġspec ial","Ġbl ack","I T","c her","Ġlook ing","Ġf ire","y n","Ġal most","o on","Ġstud y","Ġm iss","c hes","ro wn","Ġt re","Ġcommun ity","Ġmed ia","Ġf ood","Ġcom es","ĠUn iversity","Ġsing le","Wh at","u ly","Ġh alf","ag ue","h od","ĠRep ublic","Ġstart ed","Ġqu ick","ot o","b ook","Ġiss ue","it or","Ġel se","Ġcons ider","2 6","ro du","Ġt aken","2 8","9 9","ĠW ith","Ġtr ue","Ġw a","Ġtr ad","Ġag o","Ġm ess","ie f","Ġadd ed","o ke","Ġb ad","Ġf av","3 3","Ġsim ilar","as k","ĠD on","Ġcharact er","ort s","ĠH ouse","Ġreport ed","Ġty pe","v al","i od","ĠHow ever","Ġt arg","Ġent ire","pp ing","Ġhist ory","Ġl ive","ff ic",".... ....","ed eral","Ġtr ying","Ġdisc uss","ĠH ar","ac es","l ished","Ġse lf","os p","re st","Ġro om","el t","Ġf all","ol ution","Ġe t","Ġ x","Ġis n","Ġide a","b o","Ġs ound","ĠD ep","Ġsome one","ci ally","ull y","Ġf oc","Ġob ject","if t","ap er","Ġplay er","Ġr ather","Ġserv ice","as hing","ĠD o","ĠP art","ru g","m on","p ly","Ġm or","Ġnot hing","Ġprov ide","I C","un g","Ġpart y","Ġex ist","Ġm ag","7 0","Ġr ul","Ġh ouse","Ġbeh ind","Ġhow ever","ĠW orld","Ġs um","Ġapp lic","Ġ ;","Ġfun ction","g r","ĠP ol","Ġfr ont","2 00","Ġser ies","Ġt em","Ġty p","ill s","Ġo pt","Ġpoint s","Ġbel ow","itt ed","Ġspec ific","Ġ201 7","um b","Ġr a","Ġpre vious","Ġpre t","re me","Ġc ustom","Ġcour t","ĠM e","Ġre pl","Ġwho le","g o","c er","Ġt reat","ĠA ct","Ġprob ably","Ġle arn","end er","ĠA ss","Ġvers ion","n ow","Ġche ck","ĠC al","R E","min ist","O n","our ces","Ġben ef","Ġd oc","Ġdet er","Ġen c","Ġsu per","Ġadd ress","Ġv ict","Ġ201 3","Ġme as","t r","Ġf ield","W hen","Ġsign ific","u ge","Ġfe at","Ġcomm on","l oad","Ġbe gin","Ġbr ing","Ġa ction","er man","Ġdesc rib","Ġind ust","Ġwant ed","ri ed","m ing","Ġatt empt","4 5","f er","Ġd ue","ress ion","# #","Ġsh all","Ġs ix","o o","Ġst ep","Ġp ub","Ġhim self","Ġ2 3","Ġc op","Ġd est","Ġst op","A C","ib ility","Ġl ab","ic ult","Ġhour s","Ġcre ate","Ġf urther","ĠAmeric a","ĠC ity","Ġd ou","he ad","S T","ĠN orth","c ing","Ġn ational","u le","ĠIn st","Ġt aking","ĠQ u","ir t","Ġre d","Ġrese arch","v iron","ĠG e","Ġbre ak","an a","Ġsp ace","ater ial","Ġrec ent","ĠA b","Ġgener al","Ġh it","Ġper iod","Ġevery thing","ive ly","Ġph ys","Ġsay ing","an ks","Ġc ou","Ġc ult","ac ed","e al","u ation","Ġc oun","l u","Ġinclud e","Ġpos ition","ĠA fter","ĠCan ad","ĠE m","Ġim m","ĠR ed","Ġp ick","Ġcom pl","Ġm atter","re g","e xt","ang u","is c","o le","a ut","Ġcomp et","e ed","f ect","Ġ2 1","ĠS en","ĠThe se","as ing","Ġcan not","Ġin it","Ġrel ations","ac hed","Ġb ar","Ġ4 0","ĠT H","Ġ201 2","Ġv ol","Ġg round","Ġsec urity","Ġup d","il t","3 5","Ġconc ern","ĠJ ust","Ġwh ite","Ġseem s","ĠH er","pe cially","i ents","Ġann oun","Ġf ig","ight s","Ġst ri","l ike","id s","Ġs us","Ġw atch","Ġ â","Ġw ind","ĠC ont","Ġit self","Ġm ass","A l","y le","iqu e","ĠN ational","Ġab s","Ġp ack","Ġout side","Ġan im","Ġp ain","et er","Ġman ag","du ct","og n","Ġ ]","ĠSe pt","se c","o ff","ĠJ an","Ġf oot","ad es","Ġth ird","Ġm ot","Ġev idence","int on","Ġth reat","a pt","pl es","c le","Ġl o","Ġde cl","Ġit em","med i","Ġrep resent","om b","am er","Ġsignific ant","og raph","s u","Ġc al","i res","00 00","I D","A M","Ġsim ply","Ġlong er","Ġf ile","O T","c he","S o","ate g","or g","ĠH is","Ġen er","Ġd om","Ġup on","il i","\": \"","Ġthem selves","Ġcom ing","Ġqu ite","Ġdiff icult","ĠB ar","il ities","re l","end s","c ial","6 4","Ġwom an","ra p","y r","Ġne cess","ip s","Ġte xt","Ġrequ ire","Ġmilit ary","Ġre view","Ġresp ons","7 5","Ġsub ject","Ġinst ead","Ġiss ues","Ġg en","\" ,\"","Ġmin utes","Ġwe ap","r ay","am ed","t ime","b l","H ow","Ġc ode","ĠS m","Ġhig her","ĠSt e","r is","Ġp age","Ġstud ents","ĠIn tern","Ġmet hod","ĠA ug","ĠP er","ĠA g","Ġpolic y","ĠS w","Ġex ec","Ġac cept","um e","rib ut","Ġword s","Ġfin al","Ġchang es","ĠDem ocr","Ġfriend s","Ġres pect","Ġe p","Ġcomp an","iv il","Ġdam age","** **","og le","viron ment","Ġne g","ent al","Ġa p","Ġtot al","iv al","! \"","l im","Ġneed s","Ġag re","Ġdevelop ment","Ġa ge","ip le","2 1","Ġresult s","ĠA f","S h","Ġg un","ĠOb ama","ro ll","Ġ @","Ġright s","ĠB rit","Ġrun ning","Ġwas n","Ġp ort","Ġr ate","Ġpret ty","Ġtarg et","Ġsa w","Ġc irc","Ġwor ks","ic ro","al t","o ver","ww w","Th at","l ier","Ġevery one","ud e","Ġp ie","idd le","ra el","Ġr ad","Ġbl ock","Ġw alk","T o","ã ģ","n es","ĠA ust","a ul","ro te","ĠS outh","ess ion","op h","Ġshow s","Ġs ite","Ġj o","Ġr isk","cl us","l t","Ġin j","id ing","ĠS pe","Ġch all","ir m","Ġ2 2","itt ing","st r","Ġh y","L E","ke y","Ġbe gan","at ur","ashing ton","l am","ĠD av","b it","Ġs ize","ĠP ar","3 8","ourn al","f ace","Ġdec ision","Ġl arg","Ġj ud","re ct","Ġcontin ue","ĠO ct","ove red","ĠI nt","==== ====","Ġp arent","ĠW ill","Ġeas y","Ġd rug","ang er","Ġs ense","Ġd i","id ay","Ġener gy","ist ic","Ġass oci","ar ter","ob al","e ks","ĠE l","ur ch","Ġg irl","o e","it le","Ġ2 8","ĠC he","Ġrequ est","Ġso on","Ġh ost","k y","Ġst ates","om es","Ġm aterial","le x","Ġmom ent","Ġan sw","on se","Ġes pecially","Ġn orm","Ġserv ices","p ite","r an","Ġro le","4 4",") :","Ġc red","C l","____ ____","Ġm at","Ġl og","ĠCl inton","O U","Ġoff ice","Ġ2 6","Ġch arg","Ġtr ack","m a","Ġhe art","Ġb all","Ġperson al","Ġbuild ing","n a","s et","b ody","ĠBl ack","Ġincre ase","itt en","Ġneed ed","3 6","3 2","= \"","Ġl ost","Ġbec ame","Ġgrou ps","ĠM us","Ġw rote","ĠP e","Ġpro p","j oy","à ©","ĠWh ite","Ġde ad",". '","Ġhtt p","Ġwe bs","O S","Ġins ide","Ġwr ong","Ġstat ement","Ġ ...","y l","Ġfil m","Ġmus ic","Ġsh are","ific ation","Ġre lease","Ġfor ward","Ġst ay","Ġcomp ut","it te","s er","Ġorig inal","Ġc ard","Ġc and","Ġd iv","at ural","Ġfav or","O M","Ġc ases","us es","Ġse ction","Ġle ave","g ing","ov ed","ĠW ashington","3 9","ĠG l","Ġrequ ired","act ion","ap an","o or","it er","ĠK ing","Ġcount ries","ĠG erman","ll ing","Ġ2 7","3 4","Ġquest ions","Ġpr im","Ġc ell","Ġsh oot","Ġany one","ĠW est","Ġaff ect","ep end","Ġon line","ĠIs rael","ĠSept ember","Ġab ility","Ġcont ent","is es","Ġre ve","Ġl aun","Ġind ic","Ġfor ce","c ast","Ġso ld","av ing","f l","Ġso ft","Ġcompan ies","ce ed","Ġart icle","Ġa ud","Ġre v","Ġed uc","Ġplay ing","0 5","Ġhe ld","ct or","Ġrele ased","Ġf ederal","3 7","Ġad minist","Ġinter view","Ġinst all","Ġrece ived","Ġs ource","u k","P h","Ġser ious","Ġcre ated","Ġc ause","Ġim medi","Ġdef in","u el","ĠDep artment","ct ions","ĠC our","ĠN ow","z e","it es","it ution","Ġl ate","Ġspe ak","n ers","Ġleg al","ar i","ĠC or","Ġwe eks","Ġmod el","Ġp red","Ġex act","B C","ĠB y","IN G","os ing","Ġt akes","Ġreg ard","Ġopp ortun","Ġpr ice","Ġ19 8","ĠA pr","f ully","Ġor d","Ġproble ms","ru ction","h am","ĠC ount","le ge","Ġlead ers","E T","le v","Ġde ep","olog ical","es e","h aps","ĠS ome","Ġp ers","Ġcont ract","Ġrelations hip","s p","ou d","Ġb ase","4 8","m it","A d","anc ial","Ġcons um","Ġpot ential","Ġl angu","re m","et h","Ġrel ig","ress ed","6 6","Ġl ink","Ġl ower","ay er","ĠJ une","Ġf em","un t","er c","ur d","Ġcont act","Ġ ill","Ġm other","Ġest ab","h tt","ĠM arch","ĠB ro","ĠCh ina","Ġ2 9","Ġs qu","Ġprov ided","Ġa verage","as ons","Ġ201 1","Ġex am","l in","5 5","n ed","Ġper fect","Ġt ou","al se","u x","Ġbu y","Ġsh ot","Ġcol lect","Ġph ot","Ġplay ed","Ġsur pr","Ġofficial s","Ġsim ple","av y","Ġindust ry","Ġhand s","g round","Ġp ull","Ġr ound","Ġus er","Ġr ange","u ary","Ġpriv ate","op s","e es","Ġw ays","ĠM ich","Ġve h","Ġex cept","Ġter ms","im um","pp er","I ON","ore s","ĠDr agon","ou l","Ġd en","Ġperform ance","Ġb ill","c il","4 7","Ġen vironment","Ġex c","ad d","Ġwor th","Ġp ict","Ġch ance","Ġ201 8","b or","Ġspe ed","ict ion","Ġal leg","ĠJ apan","at ory","re et","Ġm atch","ĠI I","Ġst ru","ord er","Ġst e","Ġl iving","Ġst ruct","in o","Ġse par","her n","Ġresp onse","Ġen joy","Ġv ia","A D","um ents","ace book","Ġmem ber","ib r","iz ing","Ġto ol","ĠM on","ĠWh ile","h ood","ĠA ng","ĠD ef","Ġoff er","T r","a ur","Ġturn ed","ĠJ uly","d own","an ced","Ġrec ently","ĠE ar","Ġc e","ĠSt ar","ĠC ong","rough t","Ġbl ood","Ġhop e","Ġcom ment","ain t","Ġar ri","il es","Ġpartic ip","ough t","ri ption","0 8","4 9","Ġg ave","Ġse lect","Ġkill ed","sy ch","Ġgo es","i j","Ġc oll","Ġimp act","at ives","ĠS er","0 9","ĠAug ust","Ġb oy","d e","ĠD es","Ġf elt","U S","Ġexpect ed","Ġim age","ĠM ark","cc ording","o ice","E C","ĠM ag","en ed","h old","ĠP ost","Ġpre vent","N o","Ġinvol ved","Ġey es","Ġquick ly","A t","un k","Ġbeh av","Ġ ur","Ġl ed","c ome","e y","Ġcand id","Ġear lier","Ġfoc us","et y","P ro","led ge","ix ed","ill ed","Ġpop ular","A P","Ġset t","l ight","Ġvar ious","in ks","Ġlevel s","Ġro ad","ell ig","ab les","he l","itte e","ĠG ener","y pe","Ġhe ard","ic les","Ġm is","Ġus ers","ĠS an","Ġimpro ve","Ġf ather","Ġse arch","The y","v il","Ġprof ess","Ġkn ew","Ġl oss","Ġev ents","6 5","Ġb illion","0 7","0 2","ĠNew s","ĠA M","Ġco ver","w here","ens ion","Ġb ott","Ġare as","en ces","op e","ĠTw itter","a el","Ġget s","ĠGo ogle","Ġs n","i ant","Ġv ote","Ġnear ly","Ġinclud ed","Ġrec ogn","z z","m m","al ed","Ġhappen ed","0 4","Ġh ot","Ġwho se","Ġc ivil","Ġsu ff","o es","it iz","ĠSy ri","Ġresp ond","Ġh on","Ġfeat ures","Ġeconom ic","ĠApr il","r im","Ġtechn ology","Ġo ption","ag ing","Ġpur ch","R e","Ġl at","ch ie","is l","Ġrec omm","u f","Ġtr aining","Ġeffect s","Ġf ast","Ġ201 0","Ġocc ur","Ġwebs ite","Ġem ail","Ġs ens","e ch","Ġo il","Ġinf lu","Ġcurrent ly","ĠS ch","ĠAd d","Ġgo al","Ġsc ient","Ġcon v","1 00","em y","Ġdec ided","Ġtra vel","Ġm ention","L L","0 3","Ġe lection","Ġph one","Ġlook s","Ġsit uation","Ġc y","Ġh or","b ed","ĠCour t","a ily","av es","Ġqu ality","ĠCom p","w ise","Ġt able","Ġst aff","ĠW ind","et t","Ġtri ed","ide red","Ġadd ition","Ġb ox","Ġl ack","ar ily","Ġw ide","Ġm id","Ġbo ard","ys is","Ġant i","h a","Ġd ig","en ing","Ġd ro","C on","6 8","Ġsl ow","b ased","se qu","Ġp ath","E x","ak er","Ġwork ed","Ġp en","Ġeng ine","Ġlook ed","ĠSu per","ĠS erv","Ġvict im","U n","Ġproper ty","Ġint rodu","Ġexec ut","ĠP M","L e","Ġcol or","ĠM ore","Ġ6 0","Ġnet work","Ġd ate","c ul","id ge","Ġext ra","3 1","Ġs le","6 7","Ġw ond","Ġreport s","j ust","ĠAust ral","Ġcap ital","Ġen s","Ġcomm and","Ġallow ed","Ġpre p","Ġca pt","h ib","Ġnum bers","ch an","Ġf air","m p","om s","Ġre ach","W ith","t ain","Ġbro ad","Ġcou ple","ec ause","ly ing","ĠF eb","Ġsc reen","Ġl ives","Ġpri or","ĠCong ress","A r","Ġappro ach","Ġe mer","ar ies","ĠD is","s erv","ĠN e","Ġbu ilt","c ies","Ġre pe","Ġrul es","for ce","ĠP al","Ġfin ancial","Ġcons idered","ĠCh ar","n ces","ĠI S","Ġb rought","Ġb i","i ers","ĠS im","O P","Ġproduct s","Ġvis it","Ġdoc ument","Ġcon duct","Ġcomplete ly","in ing","ĠCal if","ib ly","Ġwr itten","ĠT V","em ents","Ġd raw","O ne","Ġpub lished","Ġsec ret","r ain","he t","ĠF acebook","ond ay","ĠU p","Ġsex ual","Ġth ous","ĠP at","Ġ ess","Ġstand ard","Ġar m","g es","ect ion","Ġf ell","Ġfore ign","an i","ĠFr iday","Ġreg ular","in ary","Ġincre ased","Ġus ually","Ġdem on","Ġd ark","Ġadd itional","ro l","ĠO f","Ġprodu ction","! !","und red","Ġintern ational","id ents","ĠF ree","rou p","Ġr ace","Ġm ach","Ġh uge","A ll","le ar","ove mber","Ġto wn","Ġatt ention","ĠO ff","y ond","ĠThe n","f ield","Ġter ror","ra z","ĠB o","Ġmeet ing","ĠP ark","Ġar rest","Ġf ear","Ġa w","ĠV al","or ing","' ,","Ġext reme","ar r","Ġwork ers","A fter","Ġ3 1","n et","am ent","Ġdirect ly","Ġpop ulation","ub e","ĠOct ober","ĠI N","ĠJan uary","5 9","ĠDav id","Ġc ross","ce mber","ĠF irst","Ġmess age","ir it","Ġn ation","Ġp oll","is ions","Ġansw er","n y","is ode","Ġcar ry","ĠRuss ia","Ġhe ar","eng th","ro y","Ġn atural","in ally","Ġdo g","m itted","Ġtr ade","Ġsub st","Ġmult iple","ĠAf ric","Ġf ans","Ġs ort","Ġgl obal","ic ation","ĠW ed","ar a","Ġa chie","Ġlangu age","ve y","Ġt al","Ġnecess ary","Ġdet ails","Ġs en","ĠS und","ĠRe g","ĠR ec","0 6","Ġs il","ress ive","Ġmed ical","un ch","orn ia","Ġu nd","f ort","oc ks","ĠM onday","ues day","c raft","7 7","ur t","Ġ ver","ĠH ill","Ġrece ive","Ġmor ning","es tern","Ġb ank","Ġs at","ir th","ĠH igh","Ġdev ice","ĠTH E","ĠCent er","Ġsaf e","Ġp le","ĠCanad a","Ġsystem s","Ġass ist","Ġsur v","Ġb attle","ĠS oc","vert is","S he","Ġp aper","Ġgrow th","Ġc ast","S c","Ġpl ans","ll ed","Ġpart s","Ġw all","Ġmove ment","Ġpract ice","im ately","Ġdis play","Ġsomet imes","om p","ĠP aul","ĠY es","k ing","5 8","o ly","Ġs on","Ġav oid","ok es","ĠJ ew","Ġto wards","as c","Ġ //","ĠK ore","Ġtalk ing","Ġcor rect","Ġsp ent","ic ks","i able","e ared","Ġter m","Ġwant s","om ing","Ġ ut","Ġdou b","Ġfor ces","Ġp lease","6 9","ĠN ovember","at form","ond on","Ġon es","Ġimmedi ately","ĠRuss ian","ĠM et","Ġde g","Ġparent s","C H","ĠAmeric ans","al y","ĠM od","Ġsh own","Ġcond itions","Ġst uff","Ġre b","ĠY our","Ġinclud es","n own","ĠS am","Ġexper ien","m ission","ĠE ven","augh t","Ġannoun ced","ĠRepublic an","Ġdeter min","Ġdescrib ed","ĠCount y","( )","Ġdo or","Ġchang ed","Ġne igh","ĠH ere","Ġcle an","Ġp an","ĠDe cember","ĠEurope an","ir ing","ap ter","Ġcl ub","ĠT uesday","Ġp aid","ĠN et","Ġattack s","Ġcharact ers","Ġal one","Ġdirect or","d om","Ġ3 5","Ġl oad","Ġr out","ĠCalif ornia","Ġfin ally","Ġr ac","Ġcont r","Ġexact ly","res h","p ri","ĠIs lam","Ġn ature","Ġcare er","Ġlat est","Ġcon vers","ĠS l","p ose","ci ent","ĠIn c","iv ity","8 8","ĠA tt","ĠM or","nes day","Ġwe ight","k en","Ġnot e","Ġteam s","Ġ \\","air s","ĠG reen","Ġh undred","on ent","Ġstre ng","Ġcons ist","ic ated","Ġreg ul","Ġl ic","ast ic","Ġt en","urs day","ellig ence","ous ly","ĠU K","B I","Ġcost s","Ġind epend","ĠA P","Ġnorm al","Ġh om","Ġob vious","Ġs we","Ġst ar","Ġread y","ac her","Ġimp lement","g est","Ġs ong","ĠG et","ĠL ab","Ġinterest ing","us ing","Ġg iving","ĠSund ay","Ġet c","Ġm iddle","Ġrem ember","r ight","os ition","ut ions","Ġm ax","4 6","Ġyour self","Ġdem and","Ġtreat ment","Ġd anger","ĠC ons","Ġgu y","ĠBrit ish","Ġphys ical","Ġrel ated","Ġrem ain","Ġcould n","Ġref er","Ġc itiz","b ox","EN T","bo ard","Ġin n","I G","er o","ĠSt reet","osp ital","ren ch","cher s","Ġst ra","O L","ag er","ĠA N","Ġeas ily","I A","en ge","in y","Ġcl os","ock ed","Ġus es","ĠC oun","I m","u ild","? ?","m ore","Ġan g","Ġwr ite","ol ute","5 7","Ġlead er","Ġread ing","< /","Ġaut om","est s","4 3","Ġleg isl","ĠG old","Ġdesign ed","ĠS T","ĠLe g","a res","Ġbe aut","ĠT ex","Ġappear s","Ġstru gg","ĠR om","Ġ 00","Ġcho ice","Ġparticular ly","ĠF rom","op er","ĠL ondon","ann ed","Ġallow s","ob ile","Ġdiffere nce","âĢ ¢","ĠV iew","ĠWed nesday","Ġal though","Ġrel ative","Ġapplic ation","ate ver","Ġare n","Ġmy self","Ġim ag","Ġdis e","Ġsoc iety","Ġfre qu","ĠEng lish","Ġpo or","ĠD ay","Ġwrit ing","Ġse ven","Ġstart ing","Ġb ud","Ġpr int","ĠTr ans","uf act","ĠSt ud","n ew","Ġcr im","Ġg ives","Ġco ol","a e","i ance","ĠGener al","Ġthink ing","Ġsa ve","Ġlim ited","ĠPart y","Ġmean ing","p en","ow ers","ĠJ ack","E M","Ġn ice","ru pt","Ġg as","Ġe ight","Ġfe et","Ġeff ort","Ġ ign","ic it","B l","co in","Ġop in","Ġbr ain","Wh ile","he st","ĠTh ursday","Ġwould n","augh ter","Ġtou ch","le ments","Ġstud ies","Ġcent er","c ont","or ge","Ġcomput er","Ġinvestig ation","P l","or ks","Ġ200 8","Ġincre asing","Ġst ore","Ġcom ments","Ġb al","m en","Ġdo ll","Ġl iber","Ġw ife","Ġlaw s","atur day","it ness","Ġmod ern","ĠS k","Ġadminist ration","Ġopportun ity","Ġs al","Ġpower ful","M y","Ġclaim s","ĠEar th","ord s","Ġt itle","Ġes c","n ame","N ot","om en","Ġbe yond","Ġc amer","Ġse ll","it ute","ear ch","Ġapp l","im ent","4 2","ĠAr t","Ġun f","Ġviol ence","ur g","ĠE ast","Ġcomp ared","Ġopt ions","Ġthrough out","Ġv s","ig r",". [","ac hes","7 8","Ġfil es","F L","E L","ar ian","ĠJ ames","ĠA ir","an ch","Ġdet ail","Ġpie ce","P S","Ġn amed","Ġeduc ation","Ġdri ve","Ġitem s","Ġstud ent","ic ed",": :","ic o","Ġth row","Ġsc ene","Ġcomple x","Ġ200 9","Ġpre c","ĠB re","7 9","Ġcon cept","Ġstat us","am ing","Ġd ied","Ġknow ledge","Ġbegin ning","O D","ru ary","Ġcertain ly","Ġgu ys","Ġsl ight","in n","ound s","Ġf ine","Ġf at","ic ations","Ġper haps","ĠA nt","Ġinc ome","Ġhtt ps","Ġmajor ity","port s","st on","Ġgreat er","Ġfe ed","ent ially","Ġsaf ety","Ġun ique","and om","Ġg one","Ġshow ed","Ġhist or","Ġcoun ter","i us","id a","Ġlead ing","i pe","Ġs end","ĠDon ald","er ve","Ġdef ense","ines e","Ġy es","ĠF ire","ĠMus lim","ra q","Ġcontin ued","os h","Ġprov ides","Ġpr ison","ĠP re","Ġhapp y","Ġeconom y","Ġtr ust","ag s","ĠG ame","Ġweap ons","um an","ĠC le","it ation","Ġanal ysis","ĠT imes","Ġsc ience","- >","Ġfig ure","Ġdis app","ent y","Ġsoft ware","Ġu lt","Ġoffic ers","N ew","I s","Ġrem ains","ĠInd ia","Ġp sych","ri ef","Ġc at","es c","Ġob serv","Ġst age","ĠD ark","Ġent er","ch ange","Ġpass ed","Ġdes pite","ĠO ut","Ġmov ie","r s","Ġv oice","m ine","ĠPl ay","Ġto ward","ĠT er","Ġreg ion","Ġval ues","or ters","Ġm ount","Ġoffic er","ĠO ther","b an","Ġh ous","w ood","ro om","I V","ĠS un","se e","ĠO ver","ro g","9 0","Ġl ay","ĠT ur","a wn","Ġpress ure","ĠS ub","Ġbook s","ed om","ĠS and","A A","ag o","Ġre asons","f ord","Ġactiv ity","U T","N ow","ĠSen ate","ce ll","n ight","Ġcall s","in ter","Ġlet ter","ĠR ob","ĠJ e","Ġcho ose","ĠL aw","G et","B e","Ġro b","Ġtyp es","Ġpl atform","Ġqu arter","R A","ĠT ime","Ġmay be","ĠC r","9 5","p re","Ġmov ing","Ġl if","Ġgo ld","Ġs om","Ġpat ients","Ġtr uth","ĠK e","ur ance","ant ly","m ar","Ġchar ge","ĠG reat","Ġce le","---------------- ----------------","Ġro ck","ro id","an cy","Ġcred it","a ud","B y","ĠE very","Ġmov ed","ing er","rib ution","Ġn ames","Ġstra ight","ĠHe alth","ĠW ell","Ġfe ature","Ġr ule","Ġsc he","in ated","ĠMich ael","ber g","4 1","il ed","b and","Ġcl ick","ĠAng el","on ents"," Ń","ĠI raq","ĠS aturday","Ġa ware","p art","Ġpat tern","O W","ĠL et","Ġgr ad","ign ed","Ġassoci ated","Ġst yle","n o","i ation","a ith","il ies","Ġst ories","ur ation","Ġindividual s","ĠâĢ ¦","m iss","ĠAss oci","ish ing","ab y","Ġsum mer","ĠB en","Ġ3 2","Ġar ch","ut y","ĠTex as","h ol","Ġfull y","Ġm ill","Ġfollow ed","ĠB ill","ĠInd ian","ĠSec ret","ĠB el","ĠFeb ruary","Ġjob s","Ġseem ed","ĠGo vern","i pped","Ġreal ity","Ġl ines","Ġp ark","Ġmeas ure","ĠO ur","I M","Ġbro ther","Ġgrow ing","Ġb an","Ġest im","Ġc ry","ĠS chool","Ġme chan","ĠO F","ĠWind ows","Ġr ates","ĠO h","Ġpos itive","Ġcult ure","ist ics","ic a","Ġh ar","y a","ite ly","i pp","Ġm ap","en cies","ĠWill iam","I I","ak ers","5 6","ĠM art","ĠR em","Ġal tern","it ude","Ġco ach","row d","D on","Ġk ids","Ġj ournal","Ġcor por","Ġf alse","Ġwe b","Ġsle ep","Ġcont ain","Ġst o","Ġb ed","iver se","ĠR ich","ĠCh inese","Ġp un","Ġme ant","k nown","Ġnot ice","Ġfavor ite","a ven","Ġcond ition","Ġpur pose",") )","Ġorgan ization","Ġchall eng","Ġman ufact","Ġsus p","ĠA c","Ġcrit ic","un es","uc lear","Ġm er","vent ion","Ġ8 0","Ġm ist","ĠU s","ĠT or","htt p","ol f","Ġlarg er","Ġadv ant","Ġrese ar","Ġact ions","m l","Ġke pt","Ġa im",", '","c ol","Ġbenef its","if ying","Ġact ual","ĠIntern ational","Ġveh icle","Ġch ief","Ġeff orts","ĠLe ague","ĠM ost","Ġwa it","Ġad ult","Ġover all","Ġspe ech","Ġhigh ly","Ġfem ale","Ġer ror","Ġeffect ive","5 4","Ġenc our","w ell","Ġfail ed","Ġcons erv","Ġprogram s","Ġt rou","Ġa head","5 00","vertis ement","I P","ĠF ound","p ir","Ġ %","Ġcr ime","and er","Ġloc ation","ĠI ran","Ġbehav ior","az ing","Ġr are","Ġem b","Ġca used","Ġsh ip","Ġact ive","Ġcont ribut","Ġg reen","Ġac qu","Ġref lect","ven ue","Ġf irm","Ġb irth","] .","Ġclear ly","Ġem ot","Ġag ency","ri age","Ġmem ory","9 8","S A","ĠSe e","ac ing","C C","Ġbig gest","Ġr ap","Ġbas ic","Ġb and","e at","Ġsus pect","ĠM ac","Ġ9 0","m ark","ist an","Ġsp read","am s","k i","as y","ra v","ĠR ober","Ġdemon str","r ated","Ġabs olute","Ġpl aces","Ġim pl","ibr ary","Ġc ards","Ġdest roy","Ġv irt","ve re","Ġapp eared","y an","p oint","Ġbe g","Ġtem per","s pe","ant ed","ear s","ĠD irect","Ġl ength","Ġbl og","am b","Ġint eg","Ġres ources","ac c","if ul","Ġsp ot","Ġfor ced","Ġthous ands","ĠMin ister","Ġqu al","ĠF rench","at ically","Ġgener ally","Ġdr ink","Ġth us","I L","od es","Ġappro pri","ĠRe ad","Ġwh om","Ġey e","Ġcol lege","Ġ4 5","ire ction","Ġens ure","Ġapp arent","id ers","Ġrelig ious","Ġmin or","ol ic","Ġt ro","ĠWh y","rib ute","m et","Ġprim ary","Ġdevelop ed","Ġpe ace","Ġsk in","st e","av a","Ġbl ue","Ġfam ilies","Ġ ir","Ġapp ly","Ġin form","ĠSm ith","C T","i i","Ġlim it","Ġres ist","........ ........","um n","Ġconf lic","Ġtw e","ud d","ĠT om","Ġl iter","qu e","b on","Ġha ir","Ġevent ually","Ġp us","Ġhelp ed","Ġag g","or ney","ĠApp le","Ġf it","ĠS ur","Ġpre m","Ġs ales","Ġsecond s","Ġstreng th","Ġfeel ing","¿ ½","Ġt our","Ġknow s","o om","Ġex erc","Ġsom ew","ï ¿½","> >","Ġsp okes","Ġide as","Ġreg ist","so ft","ĠD el","ĠP C","Ġpro pos","Ġlaun ch","Ġbott om","T H","ĠP lease","v est","it z","ĠIn ter","Ġsc ript","Ġr at","ar ning","Ġ il","ĠJ er","ĠA re","Ġwh atever","ok en","ci ence","Ġmod e","Ġag ree","Ġs ources","Ġinit ial","Ġrest rict","Ġwond er","us ion","## ##","ĠS il","vil le","Ġb urn","t w","as ion","Ġ £","Ġn or","u ing","Ġre ached","Ġs un","Ġc ateg","ig ration","Ġc ook","Ġprom ot","Ġm ale","Ġcl imate","Ġf ix","Ġalleg ed","U R","all ed","Ġim ages","C ont","ot a","Ġschool s","i os","Ġd rop","Ġst ream","ĠM o","Ġprevious ly","al ing","Ġp et","Ġdou ble","Ġ( @","ann el","Ġdef ault","t ies","Ġr ank","ĠD ec","ĠCoun cil","Ġweap on","Ġst ock","Ġanal y","ĠSt r","Ġpict ure","ĠPol ice","f erence","Ġcent ury","Ġcitiz ens","Ġon to","Ġexp and","Ġhe ro","ĠS ol","Ġw ild","Ġupd ate","Ġcustom ers","r ont","d ef","Ġl ik","Ġcrim inal","ĠChrist ian","S P","7 6","Ġle aving","Ġother wise","ĠD ist","Ġbas is","5 2","5 3","ic ip","ĠB er","Ġrecomm end","Ġfl oor","Ġc rowd","ol es","Ġ7 0","Ġcent ral","ĠE v","Ġd ream","Ġdown load","Ġconf ir","ĠTh om","Ġwind ow","Ġhapp ens","Ġun it","Ġt end","Ġs pl","Ġbec omes","Ġfight ing","Ġpred ict","ĠP ress","ĠP ower","Ġhe avy","ak ed","Ġf an","or ter","ate gy","B A","iz es","Ġsp end","H ere","Ġ200 7","Ġad op","ĠH am","Ġfoot ball","ĠP ort","od ay","5 1","amp ions","Ġtrans fer","h t","Ġ3 8","ter m","ac ity","Ġb ur","] ,","tern al","r ig","b ut","Ġthere fore","ĠB ecause","res p","re y","Ġm ission","S ome","Ġnot ed","Ġass um","Ġdise ase","Ġed it","Ġprog ress","r d","ĠB rown","oc al","Ġadd ing","Ġra ised","ĠAn y","Ġt ick","Ġsee ing","ĠPe ople","Ġagre ement","Ġser ver","Ġw at","Ġdeb ate","Ġsupp osed","il ing","Ġlarg est","Ġsuccess ful","ĠP ri","ĠDemocr atic","Ġj ump","ĠSyri a","Ġown ers","Ġoff ers","Ġshoot ing","Ġeff ic","se y","Ġha ven","ver se","te red","ĠL ight","im al","ĠB ig","Ġdef end","Ġbe at","Ġrecord s","% )","Ġsc en","Ġemploy ees","Ġdev ices","he m","Ġcom mer","ĠM ex","Ġbenef it","ĠPro f","Ġil leg","Ġsur face","ĠAl so","Ġh arm","ing ly","w ide","ĠA lex","Ġsh ut","ĠC ur","Ġl ose","p m","Ġchall enge","se mb","Ġst ation","Ġint elligence","Ġacc ur","ĠFl or","Ġrequ ires","ĠM al","b um","Ġh ospital","Ġsp irit","Ġoff ered","Ġprodu ce","ĠComm un","Ġcreat ing","Ġcr is","s pect","Ġend ed","Ġd aily","Ġvot ers","land s","i as","i h","on a","Ġsm art","ĠOff ice","ĠL ord","ri al","ĠIntern et","Ġcirc um","Ġextreme ly","' .","Ġopin ion","ĠM il","Ġg ain","B S","ĠF in","y p","Ġuse ful","Ġbud get","Ġcom fort","is f","Ġback ground","el ine","Ġep isode","Ġen emy","Ġtri al","Ġestab lish","d ate","ĠC ap","Ġcontin ues","Ġshow ing","ĠUn ion","w ith","Ġpost ed","ĠSy stem","Ġe at","ri an","Ġr ise","ĠGerman y","il s","Ġsign ed","Ġv ill","Ġgr and","m or","ĠEng land","Ġproject s","um ber","Ġconf erence","z a","Ġrespons ible","ĠAr ab","Ġlearn ed","âĢĶ âĢĶ","i pping","ĠGe orge","O C","Ġreturn ed","ĠAustral ia","Ġb rief","Q u","Ġbr and","ill ing","ab led","Ġhig hest","Ġtr ain","ĠComm ission","wh ile","Ġn om","cept ion","Ġm ut","ĠBl ue","Ġinc ident","v ant","8 6","ĠI D","Ġn uclear","7 4","ĠL ike","ĠR E","ĠM icro","l i","m ail","Ġcharg es","8 9","Ġad just","ad o","Ġear th","N A","Ġpr ices","P A","Ġd raft","Ġrun s","Ġcandid ate","ens es","Ġmanag ement","ĠPh il","ĠM iss","Ġte ach","g ram","Ġunderstand ing","a it","ic ago","A dd","ĠE p","sec ut","Ġsepar ate","Ġinst ance","Ġe th","Ġun less","**** ****","ĠF ore","in ate","Ġoper ations","S p","Ġf aith","g ar","ĠCh urch","ron ic","Ġconf ig","os ure","Ġactiv ities","Ġtrad itional","Ġ3 6","Ġd irection","Ġmach ine","Ġsur round","Ġp ush","un ction","ĠE U","Ġeas ier","Ġarg ument","G B","Ġm icro","Ġsp ending","iz ations","Ġthe ory","ad ow","Ġcall ing","ĠL ast","Ġd er","Ġinflu ence","Ġcomm it","Ġph oto","Ġun c","ist ry","g n","ast e","ack s","Ġdis p","ad y","d o","ĠG ood","Ġ `","Ġw ish","Ġreve aled","Âł Âł","l ig","Ġen force","ĠComm ittee","Ġche m","Ġmil es","Ġinterest ed","Ġsol ution","ic y","in ct","Ġ- >","ĠD et","Ġrem oved","Ġcomp ar","e ah","Ġpl ant","ĠS ince","Ġachie ve","Ġadvant age","Ġslight ly","b ing","Ġpl aced","u nder","201 5","ĠM ad","Ġt im","os es","Ġc ru","ĠR ock","Ġmost ly","Ġneg ative","Ġset ting","Ġprodu ced","Ġm ur","Ġconnect ion","ĠM er","Ġdri ver","Ġexecut ive","Ġass ault","Ġb orn","ĠV er","t ained","Ġstruct ure","Ġredu ce","Ġdec ades","Ġd ed","u ke","ĠM any","idd en","Ġle ague","S e","Ġjo in","Ġdis co","Ġd ie","c ks","act ions","Ġass ess","ag n","Ġgo als","our s","I R","Ġsen ior","ill er","m od","ip ment","oc ol","u y","ĠQ ue","Ġpart ies","ir gin","Ġle arning","it able","Ġstre et","Ġcamer a","A pp","Ġsk ills","b re","c ious","Ġcele br","ĠFr anc","Ġexist ing","Ġwill ing","l or","Ġ id","ĠSp ace","Ġcrit ical","ĠL a","ortun ately","Ġser ve","Ġc old","Ġspec ies","T S","Ġanim als","ĠB ay","Ġold er","ĠU nder","est ic","ĠT re","Ġte acher","Ġpre fer","v is","Ġth read","ĠM att","Ġmanag er","ãĥ »","Ġprofess ional","ĠV ol","Ġnot es","The se","ul a","Ġf resh","ent ed","u zz","ed y","clus ion","ĠR el","Ġdoub t","E O","Ġopen ed","ĠB it","Ad vertisement","Ġgu ess","ĠU N","Ġse qu","Ġexpl ain","ott en","Ġatt ract","ak s","Ġstr ing","Ġcont ext","oss ible","ĠRepublic ans","Ġsol id","Ġc ities","Ġask ing","Ġr andom","u ps","ur ies","ar ant","dd en","g l","ĠFlor ida","Ġdep end","ĠSc ott","Ġ3 3","Ġi T","ic on","Ġmention ed","Ġ2 000","Ġclaim ed","Ġdefin itely","ul f","Ġc ore","Ġopen ing","ĠCon st","wh ich","ĠT ra","A G","7 2","Ġbelie ved","ad a","Ġ4 8","ĠSec urity","yr ight","ĠP et","ĠL ou","Ġhold ing","======== ========","Ġ ice","Ġb row","Ġauthor ities","h ost","w ord","Ġsc ore","ĠD iv","Ġcell s","Ġtrans l","Ġneigh bor","Ġrem ove","u ct","Ġdist rict","ĠA ccording","Ġwor se","Ġconcern s","Ġpresident ial","Ġpolic ies","ĠH all","7 3","Ġh us","A Y","Ġ200 6","ĠJ ud","Ġindepend ent","ĠJust ice","ili ar","pr int","igh ter","Ġprotect ion","z en","Ġsu dden","h ouse","ĠJ es","P R","ĠIn f","Ġb ul","Ġ _","ĠServ ice","ĠP R","Ġstr ategy","ff ect","Ġgirl s","Ġmiss ing","oy al","ĠTe am","ul ated","Ġd at","Ġpolit ics","ab or","A ccording","Ġspe ll","Ġg raph","ort hern","T C","A b","Ġlab or","is her","Ġk ick","ĠiT unes","Ġstep s","pos es","Ġsmall er","E n","ber t","Ġro ll","Ġresear chers","Ġcl osed","Ġtrans port","Ġlaw y","________ ________","ĠCh icago","Ġas pect","Ġn one","Ġmar riage","9 6","Ġe lements","ĠF re","ĠS al","Ġd ram","F C","t op","e qu","Ġhe aring","Ġsupport ed","Ġtest ing","co hol","Ġmass ive","Ġst ick","Ġgu ard","is co","ph one","F rom","How ever","Ġb order","Ġcop y","ograph y","l ist","7 1","Ġown er","cl ass","ru it","r ate","ĠO nce","Ġdig ital","Ġt ask","ER S","Ġinc red","t es","+ +","ĠFr ance","Ġb reat","ow l","Ġiss ued","ĠW estern","Ġdet ect","Ġpart ners","Ġsh ared","ĠC all","Ġcan cer","ac he","rib e","Ġexpl ained","Ġhe at","{ \"","Ġinvest ment","ĠB ook","Ġw ood","Ġtool s","ĠAl though","Ġbelie f","Ġcris is","Ġg e","ĠM P","Ġoper ation","ty pe","~ ~","g a","Ġcont ains","ant a","Ġexp ress","ĠG roup","ĠJ ournal","k a","Ġam b","ĠUS A","Ġfind ing","Ġfund ing","h ow","Ġestab lished","ide os","Ġdeg ree","Ġdanger ous","ang ing","Ġfre edom","pp ort","out hern","Ġch urch","Ġc atch","ĠTw o","Ġpres ence","ĠGu ard","U p","Ġauthor ity","ĠPro ject","Ġbut ton","Ġcon sequ","Ġval id","Ġwe ak","Ġstart s","Ġref erence","ĠM em","\" )","U N","or age","ĠO pen","Ġcol lection","y m","g ency","Ġbeaut iful","ro s","Ġtell s","Ġwa iting","n el","Ġprov iding","ĠDemocr ats","Ġd aughter","Ġm aster","Ġpur poses","ĠJapan ese","Ġequ al","Ġturn s","Ġdoc uments","Ġwatch ing","R es","Ġr an","201 4","Ġre ject","ĠKore a","Ġvictim s","Le vel","ere nces","Ġw itness","Ġ3 4","Ġre form","com ing","Ġocc up","Ġc aught","Ġtra ffic","ad ing","Ġmod els","ar io","Ġserv ed","Ġb atter","u ate","ĠSecret ary","Ġagre ed","Ġtr uly","yn am","ĠR et","Ġun its","ĠRes earch","h and","az ine","ĠM ike","Ġvar iety","ot al","Ġam azing","Ġconfir med","Ġentire ly","Ġpurch ase","Ġe lement","Ġc ash","Ġdeter mine","D e","Ġc ars","ĠW all","â ĸ","Ġview s","Ġdrug s","Ġdep artment","ĠSt ep","u it","Ġ3 9","as ure","ĠCl ass","Ġc overed","ĠB ank","Ġme re","u ana","Ġmult i","Ġm ix","Ġun like","lev ision","Ġsto pped","Ġs em","ĠG al","ul es","Ġwe l","ĠJohn son","l a","Ġsk ill","Ġbec oming","ri e","Ġappropri ate","f e","ell ow","ĠPro t","ul ate","oc ation","Ġweek end","od ies","Ġsit es","Ġanim al","ĠT im","Ġsc ale","Ġcharg ed","Ġinst ruct","ill a","Ġmethod s","Ġc ert","Ġjud ge","ĠH el","Ġdoll ars","Ġstand ing","ĠS qu","Ġdeb t","l iam","Ġdri ving","ĠS um","ĠEd ition","Ġal bum","and on","I F","ĠU k","6 3","ad er","Ġcommer cial","es h","ĠGovern ment","Ġdisc overed","Ġout put","ĠHill ary","ĠCar ol","Ġ200 5","Ġab use","anc ing","Ġsw itch","Ġann ual","T w","Ġst ated","ag ement","in ner","Ġdem ocr","Ġres idents","Ġallow ing","Ġfact ors","od d","Ġf uck","em ies","Ġoccur red","ot i","Ġn orth","ĠP ublic","Ġinj ury","Ġins urance","C L","oll y","ã Ģ","Ġrepe ated","Ġar ms","ang ed","Ġconst ruction","Ġf le","P U","ic ians","Ġfor ms","ĠMc C","ant ic","Ġm ental","p ire","Ġequ ipment","Ġf ant","Ġdiscuss ion","Ġregard ing","k in","ar p","Ġch air","og ue","Ġpro ceed","ĠI d","O ur","Ġmur der","M an","Ġ4 9","as p","Ġsupp ly","Ġin put","Ġwe alth","liam ent","Ġpro ced","or ial","ĠSt at","ĠN FL","hen s","ĠInst itute","Ġput ting","ourn ament","et ic","Ġloc ated","Ġk id","er ia","r un","Ġpr inc","Ġ !","go ing","ĠB et","Ġcl ot","Ġtell ing","Ġprop osed","i ot","or ry","Ġfund s","g ment","ĠL ife","Ġb aby","ĠB ack","Ġsp oke","Im age","Ġear n","ĠA T","g u","Ġex change","ĠL in","ov ing","Ġp air","M ore","az on","Ġarrest ed","Ġkill ing","c an","ĠC ard","y d","Ġident ified","Ġm obile","Ġthan ks","ony m","ĠF orm","Ġhundred s","ĠCh ris","ĠC at","Ġtre nd","h at","ĠA v","om an","Ġelect ric","ĠW il","S E","O f","Ġrest aur","ot ed","Ġtr ig","Ġn ine","Ġb omb","Wh y"," ¯","Ġco verage","Ġapp eal","ĠRober t","ĠS up","Ġfin ished","Ġfl ow","Ġdel iver","Ġcal cul","Ġphot os","Ġph il","Ġpie ces","Ġapp re","k es","Ġr ough","D o","Ġpart ner","Ġconcern ed","Ġ3 7","ĠG en","C ol","ct ors","Ġ= >","st ate","Ġsuggest ed","ĠFor ce","C E","Ġher self","ĠPl an","w orks","o oth","ren cy","Ġcor ner","Ġhus band","Ġintern et","ĠA ut","em s","os en","ĠAt l","g en","Ġbal ance","6 2","Ġsound s","te xt","Ġar r","ov es","Ġmill ions","Ġrad io","Ġsat isf","ĠD am","M r","G o","S pe","Ġcomb at","r ant","ĠG ree","Ġf uel","Ġdist ance","Ġtest s","Ġdec re","ĠE r","Ġman aged","D S","Ġt it","Ġmeas ures","ĠL iber","Ġatt end","as hed","ĠJ ose","ĠN ight","d it","ĠN ov","ĠE nd","out s","Ġgener ation","Ġadv oc","y th","Ġconvers ation","ĠS ky","act ive","ce l","ri er","ĠFr ank","Ġg ender","Ġcon cent","Ġcar ried","and a","ĠV irgin","Ġarri ved","ic ide","ad ed","Ġfail ure","Ġmin imum","le ts","Ġwor st","Ġkeep ing","Ġint ended","Ġilleg al","Ġsub sc","Ġdetermin ed","Ġtri p","Y es","Ġra ise","Ġ ~","Ġfeel s","Ġpack age","ĠJ o","h i","201 6","re al","Ġf ra","Ġsy mb","M e","uck y","p ret","ĠK h","ĠEd it","ĠWe b","em ic","ĠCol or","Ġjust ice","I nt","Ġfar m","ck now","\" >","el ess","Ġredu ced","Ġ5 00","x x","ĠR ad","ĠW ood","Ġcl in","Ġhy p","il er","ur a","k ins","8 5","6 1","ĠThe ir","ĠM ary","Ġs an","Ġno vel","ĠWh o","Ġcap acity","Ġimp ossible","Ġpl ays","Ġmin ister","ij uana","ic ate","ĠS et","Ġf ram","Ġ ing","Ġcommun ities","ĠF BI","it a","Ġb on","Ġstr ateg","Ġinterest s","l ock","g ers","m as","ĠAN D","Ġconflic t","Ġrequire ments","Ġs ac","Ġoper ating","in i","rel ated","Ġcomm itted","Ġrelative ly","Ġs outh","¯ ¯","Ġaff ord","Ġident ity","Ġdec isions","Ġacc used","pl ace","Ġvict ory","o ch","i at","N ame","C om","t ion","ed s","Ġsee k","Ġt ight","ĠIm ages","Ġinit i","Ġhum ans","Ġfam iliar","Ġaud ience","Ġintern al","vent ure","Ġs ides","ĠT O","Ġd im","Ġcon clud","Ġapp oint","Ġenforce ment","ĠJ im","ĠAssoci ation","Ġcircum st","ĠCanad ian","Ġjo ined","Ġdiffere nces","ĠL os","Ġprot est","Ġtw ice","w in","Ġgl ass","ars h","ĠAr my","Ġexp ression","Ġdec ide","Ġplan ning","an ia","Ġhand le","ĠMicro soft","ĠN or","Ġmax imum","ĠRe v","Ġse a","Ġev al","Ġhel ps","re f","Ġb ound","Ġm outh","Ġstand ards","Ġcl im","ĠC amp","ĠF ox","cl es","Ġar my","ĠTe chn","ack ing","x y","S S","Ġ4 2","Ġbu g","ĠUk rain","ĠM ax","ĠJ ones","ĠSh ow","l o","Ġplan et","Ġ7 5","Ġwin ning","Ġf aster","Ġspe ct","Ġbro ken","T R","Ġdef ined","Ġhealth y","Ġcompet ition","htt ps","ĠIs land","ĠF e","Ġannoun ce","ĠC up","ĠInst ead","Ġcl ient","Ġposs ibly","se ction","ock et","l ook","Ġfin ish","Ġcre w","Ġres erv","Ġed itor","Ġh ate","Ġs ale","Ġcontro vers","Ġp ages","w ing","Ġnum er","Ġopp osition","Ġ200 4","Ġref uge","Ġfl ight","Ġap art","ĠL at","A meric","ĠAfric a","Ġapplic ations","ĠPal est","ĠB ur","Ġg ar","ĠSoc ial","Ġup gr","Ġsh ape","Ġspe aking","ans ion","a o","ĠS n","Ġwor ry","ĠBrit ain","P lease","rou d","Ġh un","Ġintrodu ced","Ġd iet","I nd","ĠSec ond","Ġfun ctions","ut s","ĠE ach","ĠJe ff","Ġst ress","Ġaccount s","Ġgu arant","ĠAn n","ed ia","Ġhon est","Ġt ree","ĠAfric an","ĠB ush","} ,","Ġs ch","ĠOn ly","Ġf if","ig an","Ġexerc ise","ĠEx p","Ġscient ists","Ġlegisl ation","ĠW ork","ĠS pr","à Ĥ","ĠH uman","Ġ è","Ġsur vey","Ġr ich","ri p","Ġmain tain","Ġfl o","Ġleaders hip","st ream","ĠIslam ic","Ġ 01","ĠCol lege","Ġmag ic","ĠPr ime","Ġfig ures","201 7","ind er","x ual","ĠDe ad","Ġabsolute ly","Ġfour th","Ġpresent ed","resp ond","rib le","Ġal cohol","at o","ĠD E","por ary","Ġgr ab","Ġvar i","Ġqu ant","ĠPh oto","Ġpl us","r ick","ar ks","Ġaltern ative","Ġp il","Ġappro x","th at","Ġobject s","ĠR o","ĠAnd roid","Ġsignificant ly","ĠR oad","k ay","R ead","av or","Ġa cknow","ĠH D","ĠS ing","O r","ĠM ont","Ġun s","pro f","Ġneg oti","ĠAr ch","ik i","Ġte levision","ĠJew ish","Ġcomm ittee","Ġmot or","Ġappear ance","Ġs itting","Ġstri ke","ĠD own","com p","ĠH ist","Ġf old","ac ement","ĠLou is","Ġbel ong","ĠâĢ ¢","Ġm ort","Ġprep ared","Ġ6 4","ĠM aster","Ġind eed","ĠD en","Ġre nt","T A","our ney","ar c","S u","9 7","Ġadv ice","Ġchang ing","Ġlist ed","Ġlaun ched","is ation","ĠP eter","is hes","Ġl ived","ĠM el","ĠSup reme","ĠF ederal","Ġ) ;","ruct ure","Ġset s","Ġphil os","u ous","Ġ ł","Ġappl ied","ĠN OT","Ġhous ing","ĠM ount","Ġo dd","Ġsu st","D A","ffic ient","Ġ ?","ol ved","Ġp owers","Ġth r","Ġrem aining","ĠW ater","L C","Ġca uses","ãģ ®","Ġman ner","ad s","Ġsuggest s","Ġend s","stand ing","f ig","ĠD un","id th","Ġg ay","Ġter min","ĠAngel es","M S","Ġscient ific","Ġco al","ap ers","b ar","ĠThom as","Ġsy m","ĠR un","th is","P C","igr ants","Ġmin ute","ĠDist rict","cell ent","Ġle aves","Ġcomple ted","am in","Ġfoc used","Ġmon itor","Ġveh icles","M A","ĠM ass","ĠGr and","Ġaffect ed","itution al","Ġconst ruct","Ġfollow s","Ġt on","re ens","Ġh omes","ĠE xt","ĠLe vel","r ast","ĠI r","Ġel im","Ġlarge ly","ĠJ oe","Ġvot es","all s","Ġbusiness es","ĠFound ation","ĠCent ral","Ġy ards","Ġmaterial s","ul ner","Ġgu ide","Ġclos er","um s","Ġsp orts","ed er","J ust","Ġtax es","8 4","ĠO ld","Ġdec ade","ol a","Ġv ir","Ġdro pped","Ġdel ay","it ect","Ġsec ure","ste in","le vel","Ġtre ated","Ġfil ed","ain e","Ġv an","Ġm ir","Ġcol umn","ict ed","e per","Ġro t","Ġcons ult","Ġent ry","Ġmar ijuana","ĠD ou","Ġapparent ly","ok ing","clus ive","Ġincre ases","an o","Ġspecific ally","Ġte le","ens ions","Ġrelig ion","ab ilities","Ġfr ame","ĠN ote","ĠLe e","Ġhelp ing","Ġed ge","ost on","Ġorgan izations","à ĥ","ĠB oth","hip s","Ġbig ger","Ġbo ost","ĠSt and","Ġro w","ul s","ab ase","Ġr id","L et","are n","ra ve","Ġst ret","P D","Ġv ision","Ġwe aring","Ġappre ci","Ġa ward","ĠU se","Ġfact or","w ar","ul ations",") (","Ġg od","Ġter rit","Ġpar am","ast s","8 7","Ġen emies","ĠG ames","F F","Ġacc ident","W ell","ĠMart in","T ER","Ġat h","ĠHe ll","Ġfor g","Ġve ter","ĠMed ic","f ree","Ġst ars","Ġexp ensive","Ġac ad","ra wn","ĠW he","Ġl ock","Ġform at","Ġsold iers","s m","Ġag ent","Ġrespons ibility","or a","ĠS cience","Ġrap id","Ġt ough","ĠJes us","Ġbelie ves","M L","Ġwe ar","le te","Ãĥ ÃĤ","ĠD ri","Ġcomm ission","ĠB ob","O h","ap ed","Ġwar m","ÃĥÃĤ ÃĥÃĤ","Ġ200 3","ort ion","Ġhas n","ust er","Ġun ivers","ĠI ll","Ġk ing","olog ies","9 4","ĠT em","ĠM os","Ġpat ient","ĠMex ico","ce an","ĠDe ath","ĠSand ers","y ou","ĠC ast","ĠComp any","pt y","Ġhappen ing","F P","ĠB attle","Ġb ought","A m","M od","U s","ut ers","ĠC re","ĠTh ose","Ġ4 4","is er","Ġs oul","ĠT op","ĠHar ry","ĠA w","Ġse at","ff ee","Ġrev olution","Ġ( \"","ĠD uring","et te","Ġr ing","Ġoff ensive","Ġreturn s","Ġv ideos","Ġdis cl","Ġfam ous","en ced","ĠS ign","ĠR iver","Ġ3 00","P M","ĠB us","ĠC H","Ġcandid ates","ard en","Ġpercent age","Ġvis ual","Ġthan k","Ġtrou ble","ner gy","Ġ200 1","Ġpro ve","ash ion","Ġen h","ĠL ong","U M","Ġconnect ed","Ġposs ibility","O ver","Ġexper t","Ġl ibrary","art s","ĠDirect or","Ġfell ow","9 2","ir ty","Ġd ry","Ġsign s","ĠL ove","Ġqu iet","f oot","Ġp ure","ĠH un","Ġf illed","ph as","ĠE lect","end ment","ĠEx pl","Ġun able","n s","m o","Ġv ast","ob e","Ġident ify","app ing","ĠCarol ina","g ress","Ġpro te","Ġf ish","Ġcircumst ances","raz y","ĠPh ot","Ġb odies","ĠM ur","Ġdevelop ing","ĠA R","Ġexperien ced","Ġsubst ant","ĠBo ard","es ome","Ġdom estic","Ġcomb ined","ĠP ut","Ġchem ical","ĠCh ild","Ġpo ol","ĠC y","Ġe gg","c ons","st ers","Ġh urt","Ġmark ets","Ġconserv ative","Ġsupp orters","Ġag encies","id el","O b","ur b","Ġ4 3","ĠDef ense","y e","ĠA p","du le","Ġtemper ature","Ġconduct ed","ĠCh ief","Ġpull ed","Ġf ol","L ast","ont o","os is","V ER","D es","ĠP an","F irst","Ġadv ance","Ġlic ense","r ors","ĠJ on","Ġimag ine","Ġhe ll","Ġf ixed","Ġinc or","os ite","ĠL og","ick en","] :","Ġsurpr ise","h ab","Ġc raft","ol t","ĠJ ul","Ġd ial","Ġrele vant","Ġent ered","Ġlead s","ĠA D","ĠCle an","Ġpict ures","ess or","Ġal t","Ġpay ing","P er","ĠMark et","Ġupd ates","am ily","ĠT ype","ĠH ome","Ġ5 5","semb ly","rom e","8 3","Ġgreat est","Ġhe ight","Ġhe av","ain ts","Ġlist en","as er","ĠS H","Ġcap able","ac le","Ġpers pect","in ating","Ġoff ering","ry pt","ĠDe velop","ab in","r c","Ġbr ight","al ty","ar row","Ġsupp l","ind ing","ack ed","gy pt","ĠAn other","p g","ĠVirgin ia","ĠL u","Ġpl anned","Ġp it","Ġswe et","T ype","ĠD i","Ġtyp ically","ĠFranc isco","Ġpro spect","ĠD an","Ġte en","re es","Ġsc hed","Ġh ol","Ġsc r","Ġlot s","l ife","Ġnews p","Ġfor get","ĠN one","ĠM iddle","ĠR yan","ed d","Ġse vere","Ġsu it","ll er","9 3","Ġcor respond","Ġexpl os","u ations","Ġfl ag","g ame","r id","Ġpr in","ĠD ata","Ġde ploy","ĠEn ter","su it","gh an","ĠM en","Ġthough ts","Ġmat ters","Ġad apt","ĠA ri","Ġf ill","Ġfor th","Ġs am","Ġ4 1","Ġpay ment","ĠH or","Ġsp ring","du c","Ġl osing","Ġbring ing","F O","al a","Ġdist ribution","he red","b our","ĠIsrael i","om a","Ġcomb ination","Ġpl enty","V E","C an","ĠH aw","Ġper man","ĠSpe cial","Ġto w","Ġsee king","Ġexam ples","Ġclass es","c r","Ġbe er","Ġmov es","ĠI P","ĠK n","Ġpan el","E ven","Ġproper ly","Ġr is","Ġpl ug","Ġestim ated","E very","Ġdef ensive","ag raph","Ġpre gn","Ġinst it","ĠV ict","Ġvol ume","Ġpos itions","Ġl inks","ĠPro gram","ĠWe ek","ag ues","Ġtrans form","k er","ĠC EO","Ġc as","Ġopp onent","Ġtwe et","ĠC ode","Ġsh op","Ġf ly","Ġtal ks","Ġb ag","Ph one","Ġa id","Ġpl ants","Ġ6 5","Ġatt orney","ar ters","qu est","ĠMag ic","Ġbeg ins","Ġmy ster","Ġenvironment al","Ġst orage","N N","Ġm arg","Ġs ke","Ġmet al","ell y","Ġord ered","Ġrem ained","Ġl oved","Ġprom pt","Ġupd ated","Ġexper ts","Ġwalk ing","Ġan cient","Ġperform ed","AT E","Ġne ither","i ency","Ġmanufact ure","ĠP ak","Ġselect ed","Ġm ine","Ġult imately","Ġexpl an","Ġlab el","ĠServ ices","ribut ed","Tr ump","Ġsy n","ĠU lt","S C","Ġme at","Ġg iant","ĠW ars","ĠO N","Ġad m","Ġinter pret","Ġeven ing","Ġev il","ĠB oston","ĠW ild","Ġ Ã","ĠBit coin","ĠAm azon","D r","ĠIn formation","Ġobvious ly","Ġadv anced","Ph oto","ol ar","Ġwe ather","Ġsymb ol","Ġso le","Ġpot entially","ost er","Ġorig inally","m un","3 00","az e","ess ions","Ġde ck","Ġst ood","Ġyou th","ĠB ern","R ep","ĠT est","Ġbas ically","ot ic","Ġinvol ve","ol it","ly n","S ee","Ġair craft","Ġconf irm","E W","Ġmess ages","ĠRich ard","Ġk it","Ġpro hib","Ġv ulner","is ters","Ġexist ence","Ġturn ing","ĠS P","Ġdes ire","Ġfl at","Ġm ent","se ason","ang es","Ġneighbor hood","ĠL ake","AT ION","Ġpoint ed","b ur","Ġinn ov","uc ks","U L","Ġprofess or","Ġexp ressed","A B","ic ious","Ġ200 2","ĠDe v","Ġs ession","Ġb are","s en","Ġdis s","ĠC ath","ĠP ass","ĠP oint","Ġdo ctor","or row","ail ed","ĠR ub","ĠD C","ĠChar l","p erson","Ġwrit er","igh ters","ure au","Ġob lig","Ġrecord ed","Ġbro ke","Ġord ers","il ty","Ġmot ion","in ity","l aw","ad ium","Ġimm igration","Ġcontr ast","Ġb att","Ġex cellent","Ġtechn ical","am i","Ġt un","Ġcl oud","ĠY ear","ge on","Ġcre ation","Ġstr ange","Ġa uth","Ġfor t","b orn","Ġext ent","ĠT oday","ĠCl ub","Ġr ain","Ġs ample","Ġaccept ed","Ġt act","Ġf ired","ĠS on","Ġstand s","Ġb oot","Ġ4 7","Ġstat ements","Ġvers ions","Ġse lling","ound ed","Ġ199 0","Ġwere n","ĠW atch","Ġexper iment","P ost","Ġret ail","ul ed","In st","un te","ãĥ ¼","Ġdep art","Ġb ond","i very","om pl","Ġre action","ĠSyri an","ĠP ac","app ed","ani el","D P","Ġres olution","Ġre act","Ġappro ved","on om","m ond","ĠO ffic","-- -","Ġrepl ace","Ġt ack","Ġsp ort","Ġch ain","Ġemer gency","r ad","ĠPalest in","Ġ4 6","Ġautom atically","Ġrout e","Ġp al","Ġb anks","ĠPar is","ĠMed ia","ro ad","ic ing","i xt","ist ed","Ġg rew","Ġco ord","ĠW here","om in","Ġsub s","� �","Ġ ±","Ġcorpor ate","Ġse lection","n oon","ĠRep ort","c s","clud ing","ord ers","anc he","ĠIt s","Ġslow ly","ĠE gypt","ĠA cc","Ġcol le","iqu es","E X","Ġattempt s","ur l","ĠC ross","Ġfind ings","ĠS C","ĠO R","Ġind ex","ens ity","ĠW ay","ĠL and","Ġsh ock","d is","Ġd ynam","Ġc art","m osp","S ince","i est","ĠB oy","Ġst orm","ĠCont in","201 3","he w","il it","Ġess ential","iqu id","O ther","ive red","Ġreason able","A ct","Ġsub sequ","ĠP ack","ĠF ort","Ġconsider ing","Ġun iversity","l og","Ġmar ried","Ġill ust","ĠTr ue","£ ı","Ġnumer ous","rast ructure","Ġserious ly","Ġrefer red","u a","Ġconsist ent","on na","ĠRe al","ru ption","ci ples","Ġfact s","9 1","ot es","er g","The n","Ġacc ompl","N ote","Ġre venue","Ġpass ing","Ġm al","e en","ĠY et","Ġg ather","ter day","ew ork","ĠA uthor","P e","Ġopt im","Ġr ub","Ġè £ı","Ġun known","st one","Ġun ion","ol ve","Ġopportun ities","Ġbrow ser","ĠW al","ĠC ost","Ġreport ing","st s","p et","Ġs and","Ġsudden ly","Ġsurpr ising","ĠV R","Ġsomew hat","ĠB as","ult ure","iz z","ĠC D","Ġchalleng es","Ġsett ings","Ġexperien ces","ĠF ull","Ġcan n","Ġrece iving","ES T","Ġj oint","Ġcult ural","Ġa st","8 2","as tern","ce ived","ĠC ru","Ġb ull","p ired","am m","Ġfac ing","p ower","Ġb oss","ĠH ol","Ġinst r","Ġincreasing ly","Ġsh ift","Ġstre ets","ĠWilliam s","ab b","Ġl ie","Ġl augh","ĠC a","P L","Ġadult s","Ġcustom er","Ġob tained","Ġsupport ing","ht ml","f ire","Ġdetail ed","Ġpick ed","ĠR ight","ld er","E E","st ood","ĠK im","Ġw ire","Ġs ight","Ġdevelop ers","Ġpers ons","Ġs ad","Ġc up","Ġwar ning","Ġboy s","l ong","Ġb ird","f o","Ġw al","Ġobserv ed","Ġz one","iven ess","Ġch annel","c ript","Ġref used","ĠAg ain","Ġsu c","Ġspokes man","ĠRe f","r ite","ou ston","ãĥ ³","ĠS her","Ġact s","ĠN ame","Ġstrugg le","ar ry","omet imes","Ġdisc rim","H T","Ġcateg ory","Ġreal ize","Ġemploy ee","ĠAf ghan","en ger","Ġgun s","ĠSte ve","ĠM ot","ĠO l","ok ed","Ġth ick","Ġfair ly","ill y","Ġsur ve","ĠM at","we ight","â Ķ","Ġtro ops","Ġag ents","Ġbatter y","Ġmot iv","à ¡","S ec","d en","o very","L S","Ġfl u","Ġconf ident","ĠO per","Ġem pty","Ġp hen","Ġse ctor","Ġexc ited","Ġrem ote","ap h","o en","Ġdestroy ed","Ġmor al","ĠH P","ĠR on","Ġd ress","ĠB at","Ġl it","ĠM S","Ġa f","H L","r um","is ms","Ġshould n","Ġsym pt","ĠTor onto","het ic","Ġcar bon","Ġinstall ed","Ġviol ent","Ġsol ar","j a","Ġpract ices","Ġr ide","ĠP enn","Ġimpro ved","Ġaud io","Ġbehav i","ĠP S","Ġe ating","D ata","ĠRe view","p ass","cl aim","u ated","ang ers","c hen","Ġproper ties","Ġany where","An other","Ġbl ow","ĠJack son","Ġp roud","Ġplan e","l ines","Ġsqu are","Ġpro of","ans as","Ġtalk ed","m akers","Ġs ister","Ġhold s","Ġres ident","Ġ= =","Ġresist ance","Ġspl it","Ġpro secut","Ġconf idence","res ents","Ġcut s","Ġexcept ion","Ġz ero","Get ty","Ġcop yright","Ġtot ally","orm al","ific ations","ĠAustral ian","Ġs ick","Ġ1 50","Ġhouse hold","Ġfe es","Ġdri vers","og en","ĠN Y","Ġnecess arily","Ġregul ations","ear ing","s l","Ġperspect ive","c are","ic ial","H is","Ġesc ape","Ġsurpr ised","ĠV an","ur rent","Ġv ac","8 1","ĠTh us","Ġem phas","ĠCh ampions","ĠI ce","Ġn arr","Ġhead s","Ġca using","b el","f ortunately","ĠM a","Ġtarg ets","ci pl","Ġafter noon","Ġadd s","ĠMay be","ĠF our","ess ed","ple te","Ġus ual","ch o","ing u","Ġwith d","ĠE nergy","ĠE conom","O O","Ġart icles","Ġinj ured","Ġman age","Ġexpl ains","Ġdi agn","R ec","at ures","Ġlink ed","Ġdiscuss ed","Ġexpl o","Ġocc asion","ath an","Ġopp osite","Ġfac es","Ġden ied","ĠK night","Ġn ut","Ġapprox imately","Ġdisapp oint","onym ous","ĠB est","ĠL o","ĠH y","ĠA ff","Ġvot ing","an while","ĠII I","Ġinstit utions","ag ram","ĠD aily","Ġdr ag","Ġnear by","Ġgu ilty","Ġcon ver","P re","s hip","Ġre ward","Ġphilos oph","ĠS S","u gh","Ġapp s","f riend","Ġu pper","Ġad vert","Ġs now","Ġfr ust","Ġour selves","F r","ĠD ie","amp ion","Ġdis miss","Ġc ere","Ġsign al","f rom","Ġ ).","Ġ5 2","Ġcr imes","it ors","est ival","use um","Ġcoun cil","ĠS aud","M ay","ĠG un","ic ian","et her","Ġsu fficient","ĠH en","so le","Ġhistor ical","ĠF ar","ĠT urn","Ġp in","Ġsuc ceed","m at","ly mp","Ġtrad ition","ĠO k","Ġc ro","Ġdesc ription","al le","Ġsk y","T e","Ġwide ly","Ġw ave","Ġdefin ition","ĠJew s","Ġcy cle","Ġref ere","Ġbr ings","us al","Ġal ive","Ġfrequ ently","Ġint ention","ĠCont rol","l v","y stem","Ġpriv acy","g ent","ren ce","ĠQu est","ĠChrist mas","Ġr ail","Ġco oper","Ġtest ed","ĠC apt","as ks","Ġcomfort able","Ġdel ivered","sc ape","Ġdep th","ĠG OP","Ġwrit es","Ġass ets","Ġsa v","im ents","Ġtrans ition","Ġart ist","ĠL ook","Ġl ob","Ġcomp onents","ar ity","Ġwalk ed","Ġro ot","Ġparticip ants","Ġnot iced","Ġres c","Ġn av","ĠAd minist","d a","ut ral","pl ate","Ġimport ance","Ġass ert","ious ly","c ription","Ġinj uries","ĠChe ck","Ġregist ered","Ġint ent","Ġmiss ed","ograph ic","Ġsent ence","oun ter","Ġassist ance","ev in","Ġdat abase","Ġbuild ings","Ġclass ic","Ġth inks","ĠOh io","P r","ug g","Ġfe e","p an","Ġeffect ively","Ġfac ility","Ġbe ar","Ġch apter","Ġdog s","ĠCol umb","Ġl atter","it ial","Ġad mitted","T V","ĠGe org","Ġpost s","\\ \\","Ġlawy er","Ġequ ival","Ġm and","Ġcontro lled","ĠW alk","ĠAnd rew","Ġmen u","am ental","Ġprotect ed","v a","Ġadminist r","or al","Ġre in","ĠS ar","Ġamount s","Ġn ative","ĠM oon","Ġrep resents","Ġab andon","Ġcarry ing","Ġt ank","m ary","Ġdecl ared","T ube","Ġh at","Ġpun ish","el lect","m es","Ġun iverse","ĠR od","ph y","Ġinf rastructure","Ġ5 1","Ġopp osed","ow nt","c a","ĠM ake","Ġhard ware","Ġco ffee","R el","b al","w orld","ĠS af","ĠSe a","in als","Ġown ed","Ġh all","ers ion","Ġdescrib e","ĠP ot","Ġport ion","Ġat mosp","Ġgovern ments","Ġdep ending","Ġoff ense","Ġtr ick","aw a","ĠL ine","ĠV is","ĠH ard","ĠOr ig","ĠCl ick","Ġdes k","ĠVal ley","ĠS ov","Ġmov ies","Ġrem ark","Ġm ail","Ġcons cious","Ġrul ing","ĠR ights","Ġmed ic","he nt","ĠW omen","> <","Ġrepl aced","ĠP rem","ĠTh anks","Ġre new","ĠB all","if orm","Ġsh ots","C omm","Ġar med","Ġconst ant","Ġt aste","Ġreal ized","Ġbu ff","Ġm o","Ġeffic ient","M ost","or ation","if ies","Ġcommun ication","Ġfl ood","Ġconsequ ences","Ġany way","ig g","ĠG M","ĠTh ank","Ġ iron","Ġev olution","ĠC op","tw itter","Ġ9 5","Ġrelationship s","ad el","ĠYou ng","Ġpropos al","ay ers","uild ing","ĠH ot","OR E","c os","Ġcoll abor","P G","ax y","Ġknow ing","Ġsupport s","ow ed","Ġcontrol s","Ġmere ly","um er","Ġath let","Ġf ashion","p ath","Ġg ift","Ġer a","AN D","Ġkind s","ĠKore an","Ġleg it","ul ous","Ġess entially","Ġthe rap","n ic","Ġsuff ered","Ġh ur","Ġprom ise","Ġex cess","Ġover w","Ġpr ime","ĠH ouston","er ry","ĠM s","R S","201 2","Ġst ores","ĠO lymp","Ġj ourney","Al though","S ub","ĠE duc","ĠCh apter","Ġrequest s","Ġconsum ers","Ġt iny","Ġis ol","ĠF air","b a","ĠY OU","Ġcr ash","ce ler","Ġemot ional","Ġgood s","Ġelect ed","Ġmod er","ĠLin ux","Ġbl ocks","Ġis land","ĠSoc iety","Ġelect ions","Ġbroad cast","Ġche ap","Ġn ations","Ġse asons","4 00","Ġwas te","ĠS at","Ġfield s","em ploy","Ġprof ile","Ġauth ors","AL L","ĠG ra","w est","ĠT y","Ġdeath s","Ġv acc","Ġfor med","Ġd u","Ġon going","ĠMuslim s","el f","ig ure","Ġass ume","ĠUkrain e","w ater","Ġco ast","Ġvot ed","g or","ĠA S","ĠMich igan","az a","ĠAr m","i ro","Ġf lex","as ters","' '","Ġwel come","ar l","Ġloc ations","ig ation","ĠF il","Ġbu ying","Ġarch itect","Ġhard er","ĠC ub","Ġinter face","Ġrestaur ant","Ġdisco ver","Ġex ceed","Ġfav our","ger y","Ġd uty","Ġp itch","ad or","ĠM ach","b oy","Ġrespond ed","Ġext ended","her s","M any","ra id","if er","ĠIn s","S er","Ġmed ium","s he","ĠS ports","Ġmag azine","ut ation","Ġlim its","ĠG all","Ġex ternal","raz il","Ġyoung er","t le","Ġrem ind","ĠC ON","Ġimmedi ate","Ġh idden","Ġvol unte","Ġsim pl","od cast","Ġph ase","d r","Ġpl ot","Ġexp osure","R I","og rap","v in","an ish","ĠAc ad","ĠEng ine","Ġexp ansion","ĠP ay","Y our","Ġpus hed","ĠE ll","ĠHe ad","Ġmarket ing","ĠA C","k et","Ġh its","Ġg ro","ĠA ge","ĠSc ot","] [","Ġst im","Ġi Phone","Ī Ĵ","Ġn arrow","ĠGet ty","ĠTur key","Ġperfect ly","Ġen able","ut ch","Ġprec ise","Ġreg ime","Ġsh if","Ġcomp ens","g un","d iv","Ġch osen","ĠK en","An y","Ġtre es","Ġrecomm ended","ĠR en","u able","ĠH T","F ollow","E G","ĠH and","ĠK enn","Ġarg uments","Ġex ists","Ġb ike","ĠCons erv","Ġbre aking","ĠG ar","Ġc razy","Ġvirt ual","ay lor","ix el","Ġ19 80","Ġper mission","ĠSer ies","Ġconsum er","Ġclose ly","c alled","Ġ5 4","Ġhop es","Ġar ray","ĠW in","ĠLab our","Ġsp ons","ĠI re","Ġp ow","Ġread ers","Ġemploy ment","Ġcreat ure","Ġresult ing","Ġaccur ate","Ġmom ents","Ġarg ued","Ġp ed","D uring","Ġ5 3","ĠT al","Ġs ought","Ġsuff ering","Ġ icon","le e","Ġ( $","al ian"," °","Ġp ra","Ġbon us","( \"","k o","Ġact ing","D E","f all","Ġcompar ison","Ġsm ooth","ĠN AS","u pp","ĠJose ph","ep ing","ĠT ake","ĠM id","Ġs ending","f ast","ĠF all","Ġdeal ing","us er","ĠOr gan","C o","Ġatt ached","Ġse es","% .","Ġtyp ical","AR T","Ġfind s","ĠAs ia","um in","ĠC ore","ĠE nt","in ent","u ce","ĠBl ood","ĠN ever","Ġem ails","Ġhigh light","Ġconf ront","at us","ut ed","Ġun us","Ġtop ic","ĠAd am","Ġb le","at i","Ġunder stood","S et","st ruct","T P","Ġm ob","a a","ĠSt art","pect ed","se ll","Ġded icated","ĠC A","u an","Ġsong s","esc ription","Ġte ch","Ġr ape","Ġas ide","Ġgr ant","Ġ5 6","s ub","Ġarg ue","Ġcont aining","Ġsche dule","Ġliber al","Ġpublic ly","Ġheav ily","ĠU t","in er","ĠS ection","ĠC are","we et","l s","D is","âĶ Ģ","ĠF ollow","B ack","ĠI T","Ġb es","j i","ĠH it","est ed","Ġevery body","ĠSw ed","Ġfem in","Ġfac ilities","Ġcon ven","C omp","ĠO S","c ore","Ġan x","Ġdiv ision","ĠC am","ĠSt an","m ates","Ġexpl ore","pl om","Ġsh ares","pl oad","an es","Ġide al","et ers","ĠB ase","Ġpl astic","Ġdist inct","ĠNet work","ĠSe attle","Ġtrad ing","ens us","int end","Ġex hib","Ġinit ially","ĠF ood","Ġthous and","ĠBus iness","act er","Ġpar agraph","Ġrough ly","Ġw ww","Ġcreat ive","ĠCon f","Ġconsum ption","Ġfil ms","ag an","Ġob tain","Ġt all","Ġt or","Ġacknow led","Ġg rown","al o","K E","Ġ4 00","end ers","t aining","U G","Ġsu icide","Ġwat ched","ĠL ist","al i","re hens","Ġsurround ing","Ġp ip","Ġf lying","ĠJ ava","ord an","Ġserv ing","in ations","p ost","Ġsh o","A v","Ġj ail","z y","Ġ199 9","Ġ< /","Ġliter ally","ĠS ir","Ġexp osed","Ġl ies","st ar","Ġb at","Ġear ned","ĠD ig","Ġspec ified","ĠSe ason","Ġdeg rees","Don ald","Ġcent re","Ġsh aring","Ġwin ter","ĠC O","C he","Ġ Î","M P","Ġun w","Ġfew er","ĠM ir","Ġsomew here","ĠK ey","Ġattack ed","ĠK ir","Ġdom ain","Ġstrong er","Ġ9 9","Ġpen alty","I d","Sc ript","Ġdecl ined","Ġne ck","Ġfra ud","Ġcur rency","Ġr ising","R C","â̦ â̦","H z","Ġt ab","Ġtal ent","n am","ĠN BA","Ġvill age","Ġleg s","ĠN ext","E d","Ġac id","Ġhy d","8 00","Ġinvol ving","ĠIm age","ĠBe fore","F l","Ġyes terday","S ource","Ġterror ist","Ġsu p","Ġsy nt","ĠSaud i","Ġw est","Ġr u","b urg","Ġvis ible","Ġstru ck","r ison","Ġaw esome","Ġd rawn","Ġansw ers","ĠG irl","ĠR am","Ġthreat s","Ġdef eat","os it","Ġv ent","atur ally","Americ an","end a","ĠH oly","Ġr um","% ,","c ase","ĠHist ory","ĠYou Tube","Ġsit uations","ĠD NA","S te","Ġsa ved","It em","Ġrec ip","olog ist","Ġfac ed","Ġel ig","O nce","ĠL i","u h","Ġmist ake","ĠDiv ision","ĠB ell","Ġsympt oms"," ®","Ġdom in","Ġfall ing","Ġend ing","as hes","Ġmat ches","ĠOn line","Ġexplan ation","D ef","red it","Ġany more","ĠT otal","ĠF OR","us hed","Ġlet ters","Ġris ks","ĠO K","Ġreported ly",": \\","Ġpl ate","Ġsubject s","Ġattempt ed","if ier","ian a","Ġunlike ly","ĠTh ough","um a","ĠIn vest","ĠPr in","ic an","ĠD ar","ĠColor ado","au g","Ġve get","a os","ri a","Ġshe l","Ġmark ed","Ġ( )","Ġsp r","p o","ĠL ink","Ġdef e","ĠJ r","Ġthem e","Ġpass ion","ĠP en","Ġinf o","iz er","Ġsh it","ĠC ivil","ap se","c re","Ġpo ly","Ġcomp onent","ĠChar les","ĠIre land","ĠPro v","Ġdo ctors","Ġgr anted","Ġpain t","Ġhon or","Ġsm oke","Ġpay ments","Ġprim arily","ĠKing dom","r ich","ate ll","Ġde als","Ġsched uled","Ġfund amental","Ġprote in","Ġnewsp aper","Ġcl ients","yth on","ĠD ate","h us","Ġfeed back","Ġstret ch","Ġc ock","Ġhot el","ĠQue en","Ġsu gar","Ġj u","Ġmil k","Ġappro val","ĠL ive","Ġequival ent","ef ully","Ġins ert","z ona","Ġext ension","d ri","J ohn","Ġacc omp","S m","ĠF und","Ġconst antly","Ġ` `","Ġgener ated","ĠA ction","ĠP sych","ĠT ri","Ġrecogn ize","Ġv ary","ph a","ĠR a","d f","et ch","ĠSov iet","Tw o","Ġpattern s","Ġprof ession","an ing","T ime","ĠL im","Ġcol ors","ĠA z","ĠT R","Ġinf ect","Ġphen omen","Ġshe ll","Al so","Ġput s","Ġdel ivery","Ġbro wn","Ġprocess ing","Ġlight s","ess age","ĠBro ok","ĠA ud","l ation","Ġindust rial","L ike","ĠB razil","rou s","ES S","ĠL uc","Ġsome how","Ġ8 5","Ġpro port","Ġpolit icians","Ġindic ate","Ġh ole","Ġtechn iques","Ġcompet itive","Ġph r","Ġv o","ist ent","ĠD ream","Ġcamp us","Ġaspect s","Ġhelp ful","Ġsh ield","or se","Ġtrig ger","m al","Ġ5 8","Ġt ort","Ġperson ally","Ġt ag","Ġkeep s","ĠV ideo","Ġben ch","Ġg ap","a ire","Ġe ast","Ġrec overy","per ial","Ġprof it","ĠM ic","Ġ5 7","Ġcol on","Ġstrong ly","st yle","Ġalleg ations","h an","Ġrep orters","j o","r ine","arg et","and al","Ġ0 3","Ġfl ash","tr ans","Ġstr ict","Ġpark ing","ĠPak istan","Ġl i","Ġwe ird","ĠE ric","Ġreg ions","ĠJ un","Ġint ellect","ĠW H","od ing","rib utes","up id","ĠT it","Ġf inger","or ia","Ġe lev","ĠF ield","Ġcon clusion","; ;","Ġfeel ings","Ġext ensive","Ġm ixed","Ġne uro","v y","Ġhar ass","ĠC irc","ou ch","Ġterrit ory","Ġsuccess fully","M ar","Ġing red","Ġoverw hel","Ġl ayer","V iew","Ġall ies","ill ance","ĠTh ree","Ġb unch","Ġnorm ally","Ġnet works","Ġsac r","ĠC IA","b les","Ġch ose","Ġopp onents","Ġregard less","Ġfr anch","Ġpre f","ĠP o","Ġbr idge","ann a","ĠSil ver","Ġw age","p age","ri or","Ġrad ical","ĠL ittle","Ġman ip","Ġsecret ary","Ġg ang","D R","F A","Ġdec ent","ĠSp irit","Ġun cle","ĠDevelop ment","Ġinvest ors","Ġwall s","Ġpub lish","Ġgener ate","iss ions","c ar","Ġprom ote","Ġcut ting","Ġche st","Ġdrink ing","Ġcollect ed","Ġ7 2","Ġhop ing","Ġem br","gor ith","Ġwar ned","Ġinstruct ions","O G","ĠD id","ĠAg ency","Ġg ear","Ġcritic ism","ĠF urther","Ġut il","ann y","R ed","Ġcoun sel","ĠAs ian","Ġredu ction","p ool","Ġteach ing","Ġdeep ly","i y","Ġestim ates","Ġcho ices","Ġperman ent","in em","ke l","Ġf asc","p se","f ile","ĠL ow","ĠP erson","Ġt ournament","st al","Ġm el","U ST","ĠR ay","az i","V al","Ġcont ained","ĠH olly","Ġw ake","Ġreve al","Ġprocess es","ĠIS IS","Ġ0 9","Ġbl ind","Ġste el","ĠB ad","Ġcare fully","app y","ro it","Ġg aming","Ġhous es","ĠC oll","Ġtr uck","er m","Ġsc ored","Ġocc as","ret urn","b ound","v ar","Ġsh arp","Ġaf raid","ĠE X","am ber","c ific","Ġsche me","N C","ĠPol it","Ġdecl ine","Ġ199 8","Ġpus hing","Ġposs ession","Ġpriv ile","Ġteacher s","Ġy ield","H A","ĠDav is","it led","#### ####","Ġr ig","ĠD aniel","ac on","Ġh ide","ut en","Ġcolle agues","Ġprin ciples","Ġl oud","Ġs in","ĠDem on","Ġst one","Ġ0 2","Ġt aught","Ġter rible","Ġst uck","ĠPol icy","te en","Ġimplement ation","ĠB BC","ĠAP I","Ġwhe el","all as","Ġch ampions","ol ars","play er","Ġrepeated ly","ĠSt ill","Ġlik es","ast y","es ter","ĠCath olic","R L","Ġb ath","Ġno ise","t itle","Ġn orthern","P art","Ġmag n","Ġf ab","ĠAs h","Ġdis pl","Ġtick et","Ġm urd","Ġalong side","ĠMus ic","Ġr iver","ĠSte el","ĠC L","ĠPl ayer","ĠM ult","ow ing","re p","s ize","Ġt ur","ĠGeorg ia","isc al","ra ction","Ġc able","Ġ5 9","Ġw ins","Ġup coming","Ġsurv ive","Ġins pired","ĠEduc ation","Ġstat istics","ĠF oot","iam i","Ġy ellow","ĠP age",". -","ĠH as","Ġur ban","Ġa x","es sel","\\ \"","Ġquarter back","Ġreg ister","ĠLab or","Ġab ilities","ĠF amily","Ġvar iable","ĠPr ice","Ġcont em","Ġth in","ĠE qu","d ata","Ġg otten","Ġconst it","Ġas ks","Ġt ail","Ġexc iting","ĠE ffect","ĠSp anish","Ġencour age","ins on","ĠA h","Ġcommit ment","C S","Ġr ally","Ġ: :","Ġsubs id","Ġsp in","Ġcapt ured","201 8","Ġinn oc","Ġalleged ly","ĠC ome","Ġart ists","ĠN umber","Ġelect ronic","Ġreg ional","ap es","Ġw ra","Ġmy th","pr ise","ĠM iller","ĠC reat","ĠEp isode","b ell","Ġdirect ed","Ġext ract","Ġs orry","Ġv ice","ag ger","ĠSu pport","Ġ6 6","ĠI ron","Ġwonder ful","Ġg ra","N et","ion e","E ng","Ġsh ips","ik es","ĠK evin","it ar","Ġactiv ists","tr ue","ĠAri zona","ent h","ĠDes pite","ĠS E","Ġha bit","ern el","Ġin qu","Ġab ortion","Ġv oid","Ġexpl icit","Ġeng aged","Ġang ry","Ġr ating","Ġfr ag","b ro","ick ing","d ev","Ġwor ried","Ġob ser","Ġap artment","ĠG T","Ġest ate","ĠConst itution","em on","ĠS now","Ġcount y","Ġdis ag","ĠStep hen","Ġimm igrants","w ind","ĠN ations","Ġfol ks","O ut","Ġg all","Ġtarget ed","Ġst ead","ĠB on","ĠL ib","Ġinform ed","Ġ12 0","ch ain","idel ines","or ough","Ġdri ven","Ġregular ly","Ġbas ket","Ġprinc iple","oc ument","Ġst un","ib ilities","ĠRom an","ĠAb out","Ġal ert","Ġdemocr acy","Ġrepresent ed","H S","c ers","p arent","Ar t","p ack","Ġdi plom","re ts","ĠN O","Ġcapt ure","ĠAd v","Ħ ¢","Ġannounce ment","ĠL ear","Ġh ook","Ġpur s","ĠS uch","ĠC amer","Ġrefuge es","ĠV e","P ol","Ġrecogn ized","l ib","Ġhad n","A ss","Ġpil ot","us hing","Ġreturn ing","Ġtra il","ĠSt one","Ġrout ine","Ġcour ts","Ġdes per","Ġfriend ly","ĠIt aly","Ġpl ed","Ġbreat h","Ġstud io","N S","Ġimp ressive","ĠAfghan istan","Ġf ing","Ġd ownt","ink ing","ĠR og","i ary","col or","se x","ar on","Ġf ault","ĠN ick","D own","ĠR ose","ĠS outhern","X X","is odes","L ist","6 00","Ġout come","er r","Ġelse where","Ġret ire","Ġp ounds","ĠGl obal","Pe ople","Ġcommun ications","Ġlo an","Ġrat io","ĠEm pire","Ġg onna","Ġinv ent","D F","Ġ19 70","ĠComm on","p at","Ġprom ised","Ġd inner","ĠH om","Ġcreat es","Ġoper ate","ver ty","ĠJ ordan","et ime","Ġsust ain","R eg","Ġincred ible","im a","Ġwar rant","Ġm m","A tt","Ġlaw suit","Ġreview s","it ure","ĠS ource","l ights","ĠF ord","Ġ6 3","g roup","st ore","Ġfeat ured","Ġfore ver","Ġpo verty","ĠP op","ĠC NN","az z","ab is","ach ing","Ġl aid","ĠSu pp","Ġfil ter","en a","ĠCommun ity","Ġcreat ures","u ction","ĠR oyal","Ġassoci ation","ĠCon nect","ĠBr ad","âĸ Ī","l ers","the re","ĠG i","Ġval uable","AC K","ĠT aylor","Ġl iquid","ĠAtt orney","ĠCar l","ĠF inal","ag a","ĠWil son","B ecause","ĠProf essor","ak a","Ġincred ibly","r ance","! )","R ef","s k","Ġsol utions","Ġatmosp here","Ġbl ame","um es","ĠN ob","C A","um ps","r ical","ĠPut in","ĠD est","or ic","ĠP A","Ġrespect ively","w an","Ġfif th","â Ħ¢","ĠC ry","Ġgovern or","res ident","Ġpurch ased","Ġh ack","Ġint ense","ob s","Ġorig in","Ġdef ine","Ġcare ful","** *","Ġshould er","Cl ick","Ġt ied","Ġdest ruction","ou red","Ġno body","Ġh o","ĠEx per","Ġt ip","\" ;","Ġtechn ique","Ġj ur","ĠP ok","b ow","Ġleg end","Ġacc ord","Ġbus y","ĠInt el","Ġh ang","ak i",". ]","âĢĶâĢĶ âĢĶâĢĶ","Ġsur gery","Ġrep rodu","Ġun iform","Ġscen es","c ode","Ġ6 2","l isher","ĠH ave","ph ia","Ġcry pt","Ġrec on","Ġsc ream","Ġadop ted","Ġsc ores","N e","ĠIt alian","in cluding","B O","Ġindic ated","Ġent ertain","G u","T ext","i el","Ġtw enty","Ġeng age","off s","ĠPac ific","Ġsm ile","Ġperson nel","Ġto ler","Ġdo ors","Ġt one","Ġmach ines","Ġent ering","ten ance","C O","ĠJer sey","Ġfore st","Ġhor se","Ġcompl aint","ĠSpr ing","y o","ĠPl us","ed ing","ĠRet urn","qu arters","ial s","c ow","Ġacad emic","Ġf ruit","Ġ199 6","og ether","Ġw ine","Ġpur su","ĠSte ven","Ġlic ens","Wh o","Ġclot hes","re ction","Ġsqu ad","Ġst able","Ġr aw","z ens","St ar","ut ies","anc er","Ġke ys","ĠM u","Ġcompl icated","ig er","ĠTe xt","Ġabs or","Ġ6 8","Ġfun ny","Ġrel ief","ĠL ew","ĠC ook","Ġch art","Ġdraw ing","G E","Ġmod ule","ĠB ull","I LL","Ġs alt","0000 0000","il le","Ġres ource","aw ay","adel phia","ĠB ru","Ġ6 7","Ġsome body","Ġparticip ate","Ġro se","we red","Ġmus cle","Ġcons ent","Ġcontin uing","ĠGuard ian","ĠOr der","reg on","Ġre ar","Ġprov ision","Ġlik ed","ri ent","Ġb ra","Tr ans","Ġmeet ings","Ġto x","Ġcon vent","Ġaut o","Ġrec ording","ĠSo ft","00 1","ĠR oll","Ġprogram ming","Ġp ic","Ġprov ed","Ġst ab","ĠA st","Ġca ption","ul ating","ĠAtt ack","Ġnew ly","Ġ199 7","f r","Ġdis cipl","ĠGree k","Ġed ition","ĠDo es","ĠB ox","if le","ack et","Ġpass es","Ġgu est","Ġac celer","it als","U D","Ġaut hent","ĠR est","ov al","t a","u ine","Ġarm or","ĠT own","Ġcomp at","Ġinc hes","Des pite","Ġass ign","he rent","Ġprep are","ĠM eg","oc key","Ġdep ends","Ġtrack s","w atch","Ġl ists","ĠN orthern","Ġal ter","re c","ĠE astern","Ġcond em","Ġevery where","? '","Ġaff ili","Ġf ought","\": {\"","Ġm ac","it arian","Ġsc ope","ĠA L","aw s","ar ms","Ġqu e","Ġenjoy ed","nes ota","Ġagg ressive","ĠSt ory","ĠI V","Ġrec ipe","Ġrare ly","ĠMed ical","val ue","ang el","ay ing","omet hing","Ġsub section","Ġs outhern","Ġfrequ ency","re te","roll ed","ult s","ĠN ic","Ġbeh alf","Ġsequ ence","ab et","Ġcontrovers ial","Ġcomp rom","Ġwork er","Ġmain ly","Ġal gorith","ĠM ajor","or ce","g ender","Ġorgan ized","Ġf ake","Ġconclud ed","ĠE D","ĠEx ec","r age","Ġch ances","ber ry","ĠTr ad","Ġconfig uration","Ġwithd raw","Ġf ro","ud es","ĠBro ther","ĠB rian","Ġtri es","Ġsam ples","Ġb id","ĠGold en","Ġphot ograph","if est","ĠD O","ĠPar liament","******** ********","R em","Ġcont est","Ġsign ing","p x","ĠZ eal","âĶĢ âĶĢ","E ar","Ġex it","Be fore","ĠCor por","n ull","mon th","Ġrac ial","ott ed","ĠV eg","ĠRe uters","Ġsw ord","ps on","ĠRom ney","a ed","Ġt rib","Ġin ner","Ġprot ocol","ĠB i","ĠM iami","ever al","p ress","Ġsh ipping","ĠAm endment","ĠHow ard","con nect","ĠD isc","ĠJ ac","iam ond","ĠThere fore","s es","ĠPrin cess","ĠUS B","ĠAn th","Ġsurve illance","Ġap olog","Ġ6 1","ow a","Ġf ulf","j s","Ġl uck","ust ed","Ġ §","n i","Ġant icip","em an","Ġwin ner","Ġsil ver","ll a","ic ity","Ġunus ual","Ġcr ack","Ġt ies","e z","Ġpract ical","Ġprov ince","ĠPl ace","Ġprior ity","IC E","Ġdescrib es","Ġbr anch","F orm","ask a","miss ions","b i","Ġp orn","ĠTur k","Ġent hus","Ġf ighters","Ġ0 8","ĠDet roit","Ġfound ation","av id","A re","Ġjud gment","cl ing","Ġsol ve","ĠDes ign","W here","hes is","ĠT ro","a fter","Ġne utral","ĠPalestin ian","ĠHolly wood","Ġadv is","ĠN on","y es","ol is","Ġrep utation","Ġsm ell","Ġb read","ĠB ul","ĠBe ach","Ġclaim ing","Ġgen etic","Ġtechn ologies","Ġupgr ade","row s","Ġdevelop er","ĠJ osh","ĠDis ney","erv ed","ip al","Ġun ex","Ġbare ly","t hen","ĠP ub","Ġill ness","et ary","ĠB al","Ġp atch","Ġbut t","Ġst upid","ĠD og","ĠD allas","f ront","ie ce","Ġprot ests","Ġch at","oen ix","Ġw ing","Ġpar liament","Ġ7 7","ose xual","Ġre nder","pt ions","ĠCo ast","os a","ĠG reg","h op","ĠMan agement","Ġbit coin","Ġrec over","Ġincor por","or ne","ĠUs ing","Ġpre ced","Ġthreat ened","Ġspirit ual","ĠE vent","ĠF red","Ġadvert ising","Ġimprove ments","ĠC ustom","Ġer rors","Ġsens itive","ĠN avy","Ġcre am","L ook","Ġex clusive","Ġcomp rehens","Ġde leg","Ġcon ce","Ġrem em","Ġstruct ures","Ġst ored","N D","Ġ1 000","U P","ĠB udd","A F","w oman","ĠAcad emy","ð Ł","se a","Ġtem porary","Ab out","es ters","Ġtick ets","Ġposs ess","in ch","o z","Ġl a","Ġcontract s","Ġun p","Ġc ig","ĠK at","ult ural","as m","Ġmount ain","ĠCapt ain","St ep","m aking","ĠSp ain","Ġequ ally","Ġl ands","at ers","Ġreject ed","er a","im m","ri x","C D","Ġtrans action","g ener","less ly","Ġ| |","Ġc os","ĠHen ry","Ġprov isions","Ġg ained","Ġdirect ory","Ġra ising","ĠS ep","ol en","ond er","Ġcon sole","in st","Ġb om","Ġunc ertain","1 50","ock ing","Ġmeas ured","Ġpl ain","Ġse ats","Ġd ict","S L","af e","Ġest imate","iz on","at hered","Ġcontribut ed","Ġep isodes","omm od","G r","AN T","Ġ6 9","G ener","Ġ2 50","vious ly","rog en","Ġterror ism","Ġmove ments","ent le","oun ce","ĠS oul","Ġpre v","ĠT able","act s","ri ors","t ab","Ġsuff er","Ġn erv","Ġmain stream","ĠW olf","Ġfranch ise","b at","Ġdem ands","Ġag enda","Ġdo zen","Ġclin ical","iz ard","ĠO p","t d","Ġvis ited","ĠPer haps","Ġact or","Ġde lic","Ġcont ribute","Ġin ject","ĠE s","ac co","Ġlist ening","Ġcon gress","epend ent","Ġprem ium","Ġ7 6","ĠIr ish","Ġass igned","ĠPh ys","Ġworld wide","Ġnarr ative","ot ype","m ont","b ase","ĠB owl","ĠAdminist ration","Ġrel ation","ĠE V","C P","Ġco vers","Ġ7 8","Ġcert ific","Ġgr ass","Ġ0 4","pir acy","ir a","Ġengine ering","ĠM ars","Ġun employ","ĠFore ign","st ract","Ġv en","Ġst eal","Ġrepl ied","Ġult imate","Ġtit les","d ated","Ġj oy","a us","Ġhy per","ak u","Ġoffic ially","ĠPro duct","Ġdifficult y","per or","Ġresult ed","rib ed","l ink","wh o","~~ ~~","ĠSpe ed","ĠV iet","W ind","ĠBar ack","Ġrestrict ions","ĠSh are","Ġ199 5","ition ally","Ġbeaut y","op t","Ġm aps","ĠC R","ĠN ation","ĠCru z","W ill","Ġelectric ity","Ġor g","Ġb urd","Ġviol ation","Ġus age","Ġper mit","ĠCh ron","ĠF ant","Ġn aturally","Ġ0 7","Ġth rown","ĠAw oken","Ġal ien","ĠHer o","ĠK ent","ĠR ick","ri ke","Ġp ace","}, {\"","G L","Ġpo ison","ĠT ower","Ġform al","al ysis","Ġgen uine","Ġk il","a ver","Ġproced ure","ĠPro p","intend o","ĠM ain","as ant","Ġtr ained","G ame","ĠL oad","ĠM A","Ġcru cial","Ġle ts","ĠF R","Ġch ampion","1 01","ĠCon ference","Ġwrit ers","Ġconnect ions","Ġo kay","ir ms","ĠR and","Ġenc ounter","ĠB uff","Ġachie ved","Ġche cks","isc ons","Ġassist ant","Ġwhen ever","ĠA ccess","ĠU r","b in","Ġcl ock","is p","op her","Ġb orrow","Ġm ad","Ġperson ality","on ly","IS T","ab ama","Ġg ains","Ġcommon ly","Ġter r","Ġhyp ot","Ġre ly","Ġt iss","iscons in","Ġrid ic","f unction","ĠO regon","Ġun com","r ating","el and","ĠN C","Ġm oon","ann on","Ġvulner able","ut ive","³³ ³³","ĠRad io","Ġw estern","se ct","ĠT ony","Ġocc urs","ĠO s","ĠH on","à Ń","Ġv essel","ĠScot land","Ġdiscrim ination","Ġsubsequ ent","st ring","Ġfant asy","ĠSh adow","Ġtest im","W E","it i","r as","Ġbo at","Ġmar ks","Ġord inary","Ġre n","Ġrepresent ative","Ġpet ition","Ġ7 3","Ġad venture","Ġign ore","ĠPhil adelphia","ĠS av","V P","Ġfact ory","Ġt asks","Ġdep ression","z ed","................ ................","ĠSt orm","Ġc ogn","Ġelig ible","Ġredu cing","v ia","Ġ0 5","Ġstri king","Ġdoll ar","h o","O V","Ġinstr ument","Ġphilosoph y","ĠMo ore","ĠA venue","Ġrul ed","ĠFr ont","IN E","ĠM ah","Ġscen ario","ĠNAS A","Ġen orm","Ġdeb ut","Ġte a","T oday","Ġabs ence","S im","Ġh am","le ep","Ġt ables","ĠHe art","M I","K e","re qu","V D","m ap","Ġchair man","Ġp ump","Ġrapid ly","v i","Ġsubstant ial","E P","d es","ch ant","ili pp","ĠS anta","ri ers","anche ster","L oad","ĠC ase","Ġsa ving","Ġ7 4","ĠA FP","er ning","oun ced","ĠMin nesota","ĠW as","Ġrec ru","Ġassess ment","ĠB ron","U E","Ġdynam ic","Ġf urn","ul ator","Ġprop ag","h igh","Ġacc ommod","Ġst ack","ĠS us","w rit","Ġre ven","ĠGod d","ĠZeal and","ab s","Ġbr ut","Ġper pet","h ot","Ġhard ly","ĠB urn","ãĤ ¹","Ġst y","Ġtrans actions","Ġg ate","Ġsc reens","Ġsub mitted","Ġ1 01","Ġlangu ages","ugh t","em en","Ġfall s","Ġc oc","Ĥ ¬","Ġstri kes","p a","Ġdel iber","ĠI M","Ġrel ax","ann els","ĠSen ator","Ġext rem","Ġ} ,","ĠDe b","Ġbe ll","Ġdis order","c ut","Ġi OS","Ġl ocked","Ġem issions","Ġshort ly","\" ]","ĠJud ge","ĠS ometimes","Ġr ival","Ġd ust","Ġreach ing","F ile","¯¯ ¯¯","ino is","ĠJ ason","Ġs atell","are t","Ġst ations","Ġag ric","ĠTechn ology","com es","ĠUn fortunately","ĠChild ren","Ġappl ies","ast ed","Ġan ger","ail ability","ĠDam age","Ġcomp are","ĠStand ard","Ġaim ed","ĠB a","angu age","Ġreg ulation","Ġj ury","Ġair port","Ġse ctions","ĠPr ince","em ed","Ġmedic ine","Ġh itting","Ġsp ark","ol ves","Ġad s","St ate","Ġfood s","Ġrepl acement","Ġch icken","Ġlow est","Ġmind s","Ġinvol ves","u i","Ġarr ang","Ġproced ures","ĠWh ich","ivers ary","Ġb ills","Ġimprove ment","Ġin ev","Ġexpect ations","Ġintellect ual","Ġsp aces","Ġmechan ism","2 50","bre ak","ĠZ e","ĠT enn","ĠB alt","Ġbar rel","Ġstat ic","man n","Pol ice","Ġt ips","Ġhand ling","c us","od ed","il ton","ir y","Ġjournal ists","our se","Ġcom ic","Ġnom ine","IT Y","Ġvers us","Ġlo op","Ġsur f","ĠInd ust","ĠHun ter","Ġbelief s","is an","Ġset up","Ġbre w","im age","Ġcomput ers","f ol","} ,\"","ĠMed al","Ġtax p","Ġdisplay ed","Ġg rav","Ġf iscal","M on","ĠMos cow","ĠK ong","ĠCent re","Ġcamer as","ĠMr s","ĠH ay","Ġa ver","ĠK elly","p y","Ġrequire ment","Ġent itled","omb ie","Ġsh adow","ag ic","ĠA k","Ġel ite","Ġdiv ided","Ġhead ing","Ġcop ies","Ġloss es","Ġv it","k ed","ĠB ry","Ġan s","ĠSte am","Ġrep orter","he im","ĠIt em","Ġsuper ior","d on","ere nt","à ¶","Ġtherap y","Ġpe ak","ĠMod el","Ġl ying","Ġg am","z er","r itten","Ġrespons es","Ġconsider ation","ĠB ible","Ġl oyal","Ġinst ant","Ġp m","ĠFore st","à ¼","Ġext end","Ġconv icted","Ġfound er","Ġconv in","ĠO ak","che ck","Ġsch olars","p ed","Ġover se","T op","c ount","ĠAr k"," ·","Ġ0 6","ĠL A","m d","ĠLat in","im ental","ĠC PU","Ġsubst ance","Ġminor ity","Ġmanufact uring","E r","ocol ate","Ġatt ended","ĠMan ager","r ations","Ġappreci ate","om y","GB T","id ency","B L","Ġguarant ee","pos ition","Ġo cean","clud e","Ġhead ed","Ġt ape","Ġlo ose","Ġlog ic","Ġpro ven","Ġsp ir","Ġad mit","is a","Ġinvestig ate","Ġ199 4","sy lv","ĠL ost","c est","Ġ7 1","Ġrequest ed","Ġwind ows","ĠPok é","ĠWith out","M et","Ġbehavi our","Ġread er","Ġh ung","ĠKe ep","Ġro les","Ġimplement ed","Ġbl ank","Ġserv es","ĠJ ay","Ġc ited","ĠF riend","prof it","ap on","Ġrep air","it em","arr ass","Ġcrit ics","ad i","ĠF ather","Ġsh out","Ġf ool","Ġ8 8","Ġprodu cing","Ġl ib","Ġround s","Ġcirc le","Ġpre par","Ġsub mit","Ġn ic","mor row","ãĥ «","U nder","Ġv ital","ater n","Ġpass word","Ġpublic ation","Ġprom inent","Ġspeak s","Ġb ars","Ġde eper","ĠM ill","port ed","Ġw id","Ġbut ter","Ġsm oking","Ġindic ates","K ey","rop ri","ĠF ile","all ing","ast ing","ĠR us","Ġad j","Ġ7 9","av al","Ġpres um","bur gh","on ic","Ġf ur","Ġpoll s","ik a","Ġsecond ary","Ġmon ster","ig s","ĠCur rent","E vent","Ġowners hip","end ar","Ġarri ve","ĠT ax","Ġn ull","ĠPri v","Ġth ro","Ġk iss","c at","Ġup set","ang le","it ches","ect or","olog ists","ĠGal axy","Ġcor ruption","Ġh int","ent er","ĠH ospital","Ġgreat ly","Ġbeg un","es y","Ġso il","ĠAnt on","Ġmain tenance","ãĥ ©","Ġdo zens","Ġhuman ity","ĠAl abama","Ġr om","w orth","ap ing","sylv ania","l ah","Ġg athered","G A","Ġattack ing","f ound","ĠSqu are","Ġar bit","ict ions","ĠW isconsin","Ġd ance","ĠS aint","arch y","Ġbase ball","Ġcontribut ions","Ġliter ature","Ġex ha","per ty","t est","Ġb ab","Ġcontain er","let ter","Ġfall en","Ġwebs ites","Ġbott le","ĠS ac","Ġbre ast","ĠP L","Ġveter an","Ġinterview s","ĠA le","Ġb anned","eng ers","ĠRev olution","in th","Ġconc erning","IV E","Ġexp enses","ĠMatt hew","ĠColumb ia","d s","ist ance","Ġent ity",".. .\"","Ġrel iable","Ġpar alle","ĠChrist ians","Ġopin ions","Ġin du","l ow","Ġcompet e","Ġth orough","Ġemploy ed","Ġestablish ment","ig en","ĠC ro","Ġlawy ers","ĠSt ation","T E","ĠL ind","ĠP ur","it ary","Ġeffic iency","âĢ IJ","ĠL y","Ġm ask","Ġdis aster","Ġag es","ER E","es is","ĠH old","Ġcas ual","b led","Ġen abled","ĠEn vironment","ĠInt elligence","i per","ĠM ap","ĠB E","Ġemer ged","is dom","Ġc abin","Ġregist ration","Ġfing ers","Ġro ster","Ġfram ework","ĠDo ctor","et ts","Ġtransport ation","Ġaware ness","H er","Ġattempt ing","O ff","ĠSt ore","ÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤ","ĠK now","Ġdef ence","Ġsc an","ĠT en","ĠCh air","ĠP H","ĠAtl anta","Ġfuck ing","Ġans wered","b n","ĠK ar","Ġcateg ories","Ġr ational","Ġc ust","Ġrob ot","Ġcorrect ly","Ġg if","Ġgraph ics","m ic","Ġground s","ĠO pp","i ate","Ġdist ributed","Ġsan ctions","Ġchalleng ing","ut o","Ġingred ients","Ġinv ited","Ġfound ed","ĠRe qu","d ed","Ġb owl","Ġbrother s","ĠH a","I O","Ġw ages","im ore","oc ial","Ġse ed","ative ly","Ġaddress es","ĠI owa","ab eth","Ġatt itude","is d","ch ild","Ġm ole","Ġdisco very","y ard","B r","Ġ8 2","Ġsuppl ies","ell ing","Ġdist ingu","C R","Ġre cept","Ġ vert","Ġsw im","b ec","d oor","ĠY eah","Ġg al","Ġinter act","ĠE SP","ĠC S","amp s","Ġconvin ced","Ġobject ive","Ġdis h","ĠPhot os","l ad","Ġdownt own","o il","in ction","Ġto morrow","ĠC OM","Ġsurv ival","sh ot","Ġsett lement","C ons","ĠX box","int erest","ĠS M","arg o","en ess","Ġeth nic","b ered","M in","ĠT ok","Ġinc ent","ĠComm and","Ġmain tained","Ġbreak s","br idge","at ar","ag g","ĠF inally","un icip","ĠO nt","le ft","Ġrecogn ition","Ġ* /","ĠP ers","Ġwe lf","Ġaddress ed","ĠK ansas","Ġvir us","Ġwhere as","Ġp apers","ram s","ĠMin istry","Ġple asure","Ġacqu ired","Ġd uration","j pg","Ġcal m","ĠN HL","Ġburn ing","Ġfold er","ick ed","ĠP y","ĠIll inois","Cl ass","ĠGodd ess","Ġperform ing","Ġwelf are","j ar","In ter","Ġl in","Ġenh ance","Ġnot ion","f are","yp es","ĠAre a","Ġcann abis","ĠDie go","f s","ĠM anchester","com m","in ite","Ġcover ing","ĠS ound","Ġ19 60","Ġ8 4","e lect","z ing","Ġcitiz en","Ġph ones","Ġr aid","Ġign ored","ĠOb ject","Ġu pload","c ard","Ġmod ified","Ġroom s","ia h","r ange","he ast","ach us","Ġsuggest ing","âĢ ĭ","gr ade","E l","Ġclot hing","Ġr h","ĠH an","un ity","en cing","ĠAust in","sec ution","t ra","d em","ĠQ ual","Ġhe aven","Ġst ages","Ġw edd","pl us","ific ial","ĠIm m","ĠH o","iet ies","Ġphr ase","Ġbr ill","act ory","Ġprov iders","Ġsil ence","Ġa er","ĠA I","ĠAd venture","Ġplatform s","Ġdemonstr ated","Ġinter f","ing ton","Ġr aces","Ġgr ade","ult ane","ĠTh rough","f alse","Ġb ow","ĠA B","Ġfl avor","Ġhistor ic","g ov","Ġcol our","Ġview ed","ĠEm ail","el come","Ġinter vention","Ġd iversity","Ġperiod s","Ġre verse","ĠV ery","Ġqu ote","ĠLe ft","th rough","Ġsc rew","Ġland ing","Ġp ill","Ġw et","Ġprot esters","Ġrepe at","av ed","er k","Ġsal ary","ĠPenn sylvania","St ill","Ġmay or","Ġkit chen","Ġfeat uring","ĠM useum","ĠT ournament","ĠF al","Ġser vers","U C","Ġany body","im g","ĠTr ade","ixt ure","the less","Ġfin ance","Ġcl osing","ĠPat ri","i ac","ab el","Ġ> >","or ous","Ġf irms","sc reen","un a","Ġemb arrass","ul se","Ġlet ting","Ġth rew","ile y","Ġch annels","l an","ĠVeg as","Ġse ar","Ġfant astic","ar re","uzz le","ĠD er","Th ose","Ġsw ing","Ġshe et","ind ex","co ver","og an","Ġvari ables","ĠTe ch","Ġsp oken","ac hel","ĠD a","ĠMount ain","Ġload ed","Ġfoot age","vers ion","Ġun l","ĠPh oenix","Ġthrow ing","Ġf iring","Ġtrack ing","Ġw idth","Ġstrugg ling","ro oms","ot ion","Ġmonth ly","ĠSer ver","Ġegg s","op en","M C","Ġ199 3","Ġh ired","Ġstay ed","ĠAll en","Ġst ro","Ġ9 8","st ep","ĠTurk ish","Ġfab ric","ist ing","ĠD om","Ġd ates","Ġpr on","Ġbasket ball","Ġl ucky","ĠArab ia","Ġassum ed","est y","Ġaff airs","Ġgl ad","ĠInd eed","ĠF A","ĠW ord","Ġjo ining","if ice","p read","ir ts","ĠSe lect","Ġpop ulations","aw are","Ġn ose","Ġcompl aints","st art","Ġsc oring","Th anks","Ġmin ing","Ġvisit ors","S H","Ġdam aged","Ġcharacter istics","ĠP ent","D C","Ġ8 3","ĠS ix","r ates","Ġfl ags","ĠB rew","d og","M ark","// //","Ġexec ution","Ġj oke","ph ones","Ġtestim ony","Ġob st","Q L","ĠC ut","Ġstud ied","ĠN intendo","ick et","ĠN BC","Ġl ad","ĠB ra","ĠM oh","Ġk ernel","Ġoverwhel ming","Ġag ed","Ġapplic able","ĠC ond","Ġroad s","ĠBl ock","m ade","od ge","Ġcomm ands","Ġoff ices","vel and","Ġt ut","Ġrece iver","ĠF ro","Ġsho pping","Ġi P","ĠSt re","ĠA BC","Ġentertain ment","ĠB ow","ort ed","M c","Ġread s","gr ad","ĠCol lect","Ġâ ĪĴ","ĠCap ital","eder ation","Ġemploy er","Ġinvolve ment","Ġanx iety","al ia","Ġro of","ĠAm ong","ĠDemocr at","Ġstat s","ĠV ill","Ġconst itutional","Ġrefer ring","itt y","Ġtack le","out ube","Ġback ed","ĠH ong","ĠBro ad","Ġe le","ĠO tt","Ġ199 2","h our","achus etts","C al","Ġdefe ated","Ġ8 1","es p","Ġseem ingly","w as","ĠJ enn","ĠK urd","Ġg ene","Ġdisc ount","R et","EC T","( );","Ġclub s","Ġs id","ĠM arsh","Che ck","Ġp p","ĠE ag","ides pread","Ġbe ings","F T","Ġintrodu ction","ĠCh ange","AR D","Ġ1 10","ad ows","ier ce","Ġme al","a uthor","ĠB ang","lah oma","Ġr anks","201 1","?? ??","m ax","Ġcoll apse","Ġop ens","Ġe cho","Ġs oph","Ġrac ist","Ġenorm ous","Ġw aves","Ġt ap","Ġcomprehens ive",". --","ĠR oy","Ġfarm ers","Rel ated","a ired","ron es","ĠC rim","Ġproport ion","Ġdesign s","Ġnegoti ations","Ġvirt ually","ĠBat man","Ġwar n","Ġlegit imate","m ate","Ġcon vention",", ,","net ic","ĠS D","Ġconsist ently","Ġcompens ation","Ġpunish ment","Ġy e","Ġt ie","ĠB ureau","ir lf","ĠB u","ĠA ren","ĠPh ilipp","Ġkn ife","Ġmem ories","ĠR oss","Ġang le","Ġ8 6","ĠTh under","Ġre nd","ĠT our","Ġcount s","s ung","ĠIm p","Ġeduc ational","Ġaccess ible","C OM","Ġd rew","y er","G l","am ine","OR T","O B","I B","m aster","Ġtri als","og y","h ar","ĠTr ust","Ġprefer red","irlf riend","ĠN ev","Ġb in","Ġc ow","P age","Ġsign ature","ĠB L","7 00","Ġret ired","Ġby tes","Ġneigh b","ĠLeg end","Ġdev ast","Ġsuspect ed","is ons","ĠPoké mon","sc ale","Ġcap abilities","Ġre vel","Ġche ese","d y","igr ant","Ġfail ing","b its","ĠHer oes","ĠG host","ĠS cient","Ġappoint ed","ur i","Ġinst itution","Ġexpand ed","g reg","Ġmonitor ing","Ġp odcast","Ġcoal ition","Ġ9 6","J o","Ġst olen","ĠS ab","Ġstop s","Ġhol iday","Ġint r","C ar","Bl ack","ĠL GBT","Ġwar ming","ĠAnd erson","Ġ8 9","Ġprodu cer","M ed","Ġaccur acy","ĠMar vel","iz abeth","ĠPat rick","m ony","Ġmin i","ac les","Ġover t","the y","Ġmembers hip","ĠV en","Ġex ch","Ġrem oval","ĠD ave","T Y","m ad","ĠF ind","Ġad equ","Ġe c","Ġte eth","Ġemot ion","Ġper m","Ġsole ly","d b","Ġextra ord","IG HT","c al","Ġgu idelines","Ġd ying","Ġsusp ended","ĠPrem ier","ĠAnth ony","el ve","Ġd ad","ĠE th","ĠFoot ball","Ġabandon ed","Ġ< <","Ġm arch","Ġhor ror","â̦ \"","Ġchild hood","Ġcampaign s","Ġl unch","ĠAl bert","bl ock","âĸĪ âĸĪ","ound ing","Ġb one","or gan","ad ers","ĠFl ash","ĠDri ve","Ġton ight","Ġw ars","ĠF L","Ġform ation","con st","New s","Ġcom pe","or ious","ĠSt aff","Ġdiscuss ions","ĠProt ection","ĠJ am","Ġcrit eria","Ġinstall ation","Ġaccompl ish","iz za","Ġpub lisher","Ġresc ue","ĠT ry","U LL","ĠS om","ĠH op","ore t","th s","ord on","Ġp ocket","ĠIn v","Down load","ĠCr ime","Ġb ene","ĠGu ide","ĠAs sembly","Ġparam eters","I E","ĠAlex ander","Ġconc ert","ĠSc he","Ġsh oes","Ġvis iting","Ġrec all","Ġb ub","Ġr ural","Ġconc rete","ĠR os","N ext","R uss","Ġlo ans","ĠSh ield","Ġtre m","hem at","k g","ĠHar ris","is ition","ĠM ove","ĠF C","Ġf ate","ĠCh o","Ġt ired","Ġprinc ipal","h ist","ien ces","ath y","Ġse vent","Ġm ood","Ġstrateg ic","Ġdise ases","Ġfor um","Ġtem por","Ġhead quarters","P ar","ig e","fl ix","Ġgu itar","Ġ9 4","On ly","Ġrele ases","ro ph","================ ================","Ġ6 00","ĠContin ue","ig ate","ĠC rit","sy stem","Ġdis abled","Ġunex pected","ith ub","Ġuncle ar","ĠE st","Ġcontr ad","Ġstrateg ies","vent ures","Ġpass age","AM E","Ġimpro ving","Ġreve als","Ġdecre ase","ov a","Ġann oy","ĠSh ort","ĠL ibrary","Ġcy ber","n ell","ĠH ur","ĠC B","Ġphot ograp","U I","Ġs ed","G e","Ġ8 7","Ġd iverse","Ġencour aged","Ġcons piracy","Ġbird s","Ġoper ator","Ġhand ful","Ġclass ified","? )","Ġdram atic","Ġinvestig ators","it o","Ġw idespread","ĠR oom","-------------------------------- --------------------------------","Ġcollect ive","Ġjournal ist","St ring","Ġtemper atures","il a","Ġgu id","Ġins pect","Ġmiss ile","ĠMay or","Ġman ual","Ġsim ultane","Ġrat ings","Ġsu ck","Ġ9 7","Ġunivers al","Ġph arm","Ġdis rupt","ian o","A V","Ġf t","Ġstat ist","old s","ĠWalk er","ph p","Ġunder t","ĠL as","ish op","nt il","res hold","ĠWhe ther","M s","Ġden y","ĠCl oud","Ġprov ider","Ġsurv iv","ĠUp date","h as","Ġmist akes","ch arge","pl ed","r ity","Ġn ode","ĠMass achusetts","ool s","lic ation","Ġf ails","em ale","or i","back s","Ġsh irt","Ġ' '","ĠN AT","Ġwat ers","els on","Ġe ase","Ġsc ar","Ġcont ents","m ind","Ġcont ribution","Ġsh r","Ġhand ed","Ġst ability","Ġtra ve","E m","Ġmir ror","12 3","Ġwe igh","Ġf iction","ou ver","ist ant","r ition","ĠF ed","Ġphys ically","Ġst ake","ĠArt icle","ĠAr c","ĠLew is","ĠM ind","Ġdemonstr ate","Ġprof its","v ision","om ic","ol id","Ġbatt les","Ġdri ves","Ġeas tern","ĠS ony","!! !","ar ation","v ard","ĠG L","port ation","Ġ9 2","Ġlaw makers","Ġprotect ing","ĠE PA","Ġy eah","Ġsh ame","ol ph","e ven","x it","Ġatt ach","Ġrepresent ing","Ġob s","ĠUt ah","iff s","ĠFre edom","à ³","A K","Ġinc idents","it age","Ġview ers","c d","Ġm ouse","Ġcl ar","Ġaccord ance","Ġb ot","c or","ĠSum mer","he ld","Ġinnoc ent","Ġiniti ative","ol s","________________ ________________","Ġsp ots","p ace","Ġconvent ional","Ġcorpor ations","Ġblock ed","H D","at tered","Ġref ers","Ġbu ck","ĠDig ital","12 0","Ġtop ics","T F","Ä ģ","br id","re ement","Ġunder lying","ĠM ember","Ġinvestig ating","Ġpregn ancy","Ġtouch down","ĠB and","ĠCall er","Ġinst ances","P P","w a","G ood","Ġ199 1","ĠC old","Ġfear s","Ġrem arks","Ĩ Ĵ","at al","Ġm it","Ġexper iments","i pt","Col or","ind u","Up date","Ġ9 3","A g","Ġ å","anc ouver","B oth","Ġjud ges","Ob ject","Ġst ere","umb n","Ġparticip ation","ĠSt ars","ĠJ ere","Ġweek ly","ĠB an","Ġconvers ations","ĠP itt","u z","ĠIndian a","ĠK ick","Ġinf ection","Ġhero es","Ġsett led","Ġstri p","Ġh al","Ġd ump","ĠS ci","Ġl es","Ġref erences","ĠU RL","ĠBr idge","Ġwant ing","For ce","Ġex clus","Me anwhile","m n","Ġg entle","m aker","sen al","ĠG ro","ou ri","ĠR ain","ĠAll iance","Ġl ift","el a","S D","ĠCle veland","Ġrank ed","Ġst adium","Ġdead ly","ä ¸","Ġr iding","ar ia","ĠAr mor","Ġdocument ation","ĠGree ce","ree k","Ġl ens","ĠS a","Ġg ross","ĠE mer","ag ers","ĠD ub","ĠR h","ĠAM D","Ġarri val","Ġdes ert","Ġsupp lement","ĠRes p","Ġkn ee","Ġmarg in","f ont","og g","201 0","ĠP ir","ĠP rom","iv als","Ġint ake","Ġdifferent ly","ug s","Ġb its","clud ed","Ġsearch ing","ĠD u","um ble","Ġfunction al","ĠBalt imore","ĠC ould","Ġdes ired","Ġcirc uit","ĠL yn","ĠG O","ĠF alse","re pre","' :","alt ies","Ġmin im","Ġdro ve","ĠSh ould","Ġh ip","Ġpro s","Ġut ility","ĠN ature","ĠM ode","P resident","o pp","r at","form ance","Ġconcent ration","Ġf ont","ĠB ud","Ġam id","Ġre vers","ĠM L","B ar","Ġinter action","Ġjur isd","Ġspell s","d ep","f il","Ġcivil ians","ut ter","ĠCo oper","ĠBel ow","Ġent rance","Ġcon vert","Ġcontrovers y","ow ered","Ġcontr ary","Ġar c","ĠExec utive","ĠOffic er","Ġpack ages","Ġprog ressive","w idth","Ġreserv ed","v ol","ĠSam sung","Ġprint ed","Ġcent ers","Ġintrodu ce","ĠKenn edy","Ġodd s","Ġsure ly","Ġindepend ence","Ġpass engers","repre ne","ĠBe h","Ġl oves","ĠESP N","Ġfac ilit","Ġident ical","Ġdo ct","Ġpartners hip","con f","ĠH ide","Ġconf used","ĠC ow","M en","Ġw rest","ĠIraq i","Ġh oles","ĠStud ies","Ġpregn ant","h ard","Ġsign als","I X","Ġpull ing","Ġgrad uate","Ġnomine e","D ate","Ġper mitted","Ġâ Ĥ¬","ĠOk lahoma","St art","Ġauthor ized","Ġal arm","ĠC os","v an","Ġgener ations","c ular","Ġdr agon","ĠSoft ware","ĠEd ward","Ġcontro ller","S en","ge red","ĠV ik","Ġappro ached","Th ank","Ġcan ce","Ġform ula","ĠSm all","Ġweak ness","Ġr amp","it udes","j ud","Ġbrill iant","Ġacc us","s ource","Ġ8 00","ĠE vil","S w","Ġhom eless","we ek","i ens","r ics","ĠTh ird","T O","Ġorgan ic","Ġpresent ation","ag h","ĠDown load","v ation","Ġas sembly","or able","hold ers","ĠBern ie","ĠHel p","Ġt ong","ĠF ight","Ġbe ach","B ook","ĠL ic","Ġr ush","ĠR ound","ou p","ĠMar x","Ġcalcul ated","ĠDe vil","ĠSar ah","Ġoccasion ally","Ġbul let","Av ailable","g ate","Ġ9 1","Ġh osp","Ġprom ises","ĠH IV","ĠSt adium","ĠSt ock","ĠCorpor ation","g age","N G","ĠC redit","Ġs ne","ib l","Ġacc um","s uch","Ġterror ists","Ġconscious ness","ĠZ h","Ġdram a","ool a","pir ation","Ġlab our","ĠN in","Ġut ter","Ġdemocr atic","Ġass ass","il ation","Ġg est","Ġab road","Ġmet ab","Ġs orts","Ġfl av","U B","Ġm g","ĠNot hing","ĠO d","Ġmus ical","200 9","Ġdro ps","oc ated","ater al","0000 00","Ġg re","Ġequ ality","Ġburd en","Ġv ig","ĠLe ader","-------- ----","Ġcere mony","Ġf ighter","Ġact ors","Ġ æ","am an","F i","Ġal ign","put er","Ġe lder","ĠN SA","Ġrepresent ation","ĠOnt ario","IT H","usal em","Ġharass ment","itz er","Ġsy mp","Ġbox es","ĠD R","Ġman ifest","at re","Ġ ^","Ġd ies","le ton","Ġmiss ions","et he","Ġres olve","Ġfollow ers","Ġas c","Ġk m","l ord","am med","Ġsil ent","ĠAssoci ated","Ġtim ing","Ġprison ers","ĠK ings","ĠF ive","Ġtow er","Ġappro aches","Ġprecise ly","Ġb ureau","ĠM other","ĠI ss","Ġkey board","it ual","Ġfund ed","Ġstay ing","Ġpsych ological","Ġm ile","ĠLe on","ĠBar b","w ill","Ġw ider","ĠAtl antic","Ġt ill","ĠR ome","ro t","Ġaccomp an","Ġfl our","ac o","W orld","ĠExp ress","ĠY u","C or","Ġple ased","part y","Ġpoint ing","Ġinf lation","Ġro y","Ġ ),","ain er","Ġwedd ing","orm on","Ġrequ iring","Ġqual ified","Ġse gment","EN D","Ġs izes","e als","Ġcor rupt","ass ador","Ġcele b","Ġdream s","ĠM ess","Ġcheck ing","ĠV ersion","Ġprep aring","Ġact ively","ĠD iff","Ġl ux","ĠW inter","act eria","ĠN E","Ġdep uty","Ġtrans gender","Ġsum mary","Ġin her","er ies","ch ar","ĠY an","Ġkn ock","ĠP ath","Ġl ip","roll er","Ġimp ression","Ġcelebr ate","Ġsl ide","Ġgu ests","Ġcl ip","F S","Ġsav ings","Ġcapt ain","Ġleg acy","ĠDen ver","Ġw ounded","tab oola","AC T","Ġpurs ue","Ġo xy","Ġ q","Ġsem i","ĠN eed","ĠAff airs","Ġob sc","Ġcheck ed","Ġd ual","C ode","ĠM D","le m","ult y","Ġ ©","ĠEl izabeth","Ġcent uries","ard ed","s rc","Ġev ident","enn is","at in","Ġunemploy ment","ĠMar io","Ġint im","Ch rist","Ġbi ological","Ġsold ier","ĠAdd ed","Ġm ath","ĠG il","Ġbi as","Ġd ating","ĠO cean","Ġm ice","M us","h ire","ĠT es","Ser ver","lim ited","S ize","Ġmet ers","Ġrock et","es see","Ġcertific ate","ĠIran ian","AS S","Ġgr id","D ec","Ġro lling","com mun","ĠSwed en","b ury","Ġtiss ue","Ġrac ism","ĠL ocal","Ġmyster y","Ġexam ine","Ġst em","Ġs its","Ġhop ed","ot ing","Ġdial ogue","Ġpers u","W atch","l ay","M AN","Ġch ronic","ĠPort land","mark et","ĠS EC","Ġparalle l","Ġsc andal","Ġcar ries","Ġphenomen on","h uman","ack er","ĠO x","Ġretire ment","tain ment","ov ie","ĠG ear","Ġd uties","Ġdo se","Ġsc roll","M B","in f","Ġsa uce","Ġland scape","red dit","ĠChampions hip","ĠRed dit","al id","Ġco in","Ġover s","Ġpost ing","ab out","Ġf el","and y","Ġb old","Ġfocus ing","e ffect","G R","Ġde emed","Ġrecommend ations","Ġste pped","Ġvot er","ĠDe ep","ĠInst agram","Ġmoder ate","ĠMary land","Ġrestrict ed","ĠM B","ĠCh all","Ġto b","Ġc ir","ĠO cc","ĠE ver","Ġcoll aps","IN FO","= -","ĠP ict","ĠAcc ount","n c","Ġo ught","Ġex port","Ġdr unk","( '","Ġw ise","ĠM ort","ne cess","Ġan cest","ĠInc re","Ġfrequ ent","m ir","Ġinterpret ation","Ġdepend ent","Ġco ins","ĠB ol","V ideo","ĠJust in","Ġfat al","Ġcook ing","Ġconf usion","ip her","Ġcust ody","ĠMor gan","om ach","ĠGovern or","Ġrestaur ants","el ing","Ġacknowled ged","Ġthe r","Ġgen es","ch ing","He y","Ġtact ics","ĠMex ican","Ġv end","Ġhe s","qu er","Ġnot ing","ĠCamer on","Ġtarget ing","ro ck","Ġcred its","Ġemot ions","Ġrepresent atives","new s","Ġlegisl ative","Ġrem oving","Ġtweet ed","ĠCar ter","ĠF ixed","Ġfor cing","Ġspeak er","Ġm ales","ĠViet nam","l ined","Ġconcept s","Ġvo ices","o ir","ĠT rib","W he","ĠJer usalem","ĠS ant","Ġc ul","Ġl ady","ĠHaw ai","Ġar ts","ĠIn n","ĠMach ine","ĠEm peror","Ġsl ot","g ly","ĠPro cess","II I","Ġathlet es","ĠTem ple","ĠRep resent","Ġpres c","Ġt ons","Ġgold en","Ġp unch","ĠG R","iver pool","Ġen act","Ġlob by","Ġm os","Ġpick ing","Ġlif etime","Ġcogn itive","E ach","z o","Ġd ub","Ġcons ists","ol n","Ġf estival","am ous","Ġint ellig","w ords","ĠSm art","Ġde le","Ġl apt","Ġmag ical","ĠS in","b us","ur ities","igh th","ĠRub y","ĠS ure","ol ving","Ġj un","O ST","Ġimp osed","Ġast ron","Ġcor rel","ĠN S","ĠK it","ĠF uture","b urn","Ġimm une","oc us","Ġcour ses","ĠSt ring","Ġle an","Ġg host","Ġout comes","Ġexp ense","Ġevery day","Ġaccept able","A h","Ġequ ipped","Ġor ange","F R","ĠD utch","Th ough","ĠR ank","Q U","ĠRober ts","wh at","re nd","Ġdisapp ear","Ġsp awn","ĠL am","o is","Ġdes erve","Ġmin imal","Ġnerv ous","ĠW ould","Ġro ok","ĠV ancouver","Ġres ign","sh ire","ĠW orks","ĠB uild","Ġafford able","ĠG ary","ĠAren a","Ġh anging","Ġimpl ications","ĠS ong","Ġmain taining","Ġgu ards","C ON","Ġder ived","Ġexecut ed","Ġthe ories","Ġqu oted","ĠAnd re","og a","sel ess","in fo","ĠBel g","Ġt ears","ĠSur v","Ġbirth day","ig ious","im mer","Ġspect rum","Ġarchitect ure","Ġrec ruit","arm a","T able","Ġmon sters","ĠG ov","Ġdest ination","Ġattract ive","Ġf oss","ĠMore over","Ġpres ents","TH E","Ġrep ly","pt on","Ġc um","Ġdel ight","Ġaffect s","Ġdon ations","ĠT oy","ĠH im","M ENT","Ġover come","it ched","ĠFant asy","ĠH at","ĠBe ast","b ott","Ġinvestig ations","R un","Ġhun ting","d i","f und","Ġs essions","est yle","Ġport ray","oid s","Y eah","Ġcommun icate","Ġcom edy","ĠY ang","Ġbel t","ĠMar ine","Ġpredict ed","Pl ay","Ġimportant ly","Ġremark able","Ġelim inate","D avid","Ġb ind","V ID","Ġadvoc ates","ĠG aza","im p","D B","ĠN a","ĠSim ilar","I ES","Ġchar ity","v as","m ath","Ġâ ĸ","ok er","nd um","Ġcap s","ĠH al","2 000","e an","Ġfle et","Ġrec re","R ight","Ġsleep ing","ij ing","k ind","Ġdesign ated","à ¤","Ġanim ation","ke e","ĠInt rodu","Ġ/ >","Ġdelay ed","Ġtrem end","Ġcur ious","U se","Ġle ct","d am","Ġinnov ation","ĠPoint s","Ġload ing","Ġdisp ute","ct ic","ird s","ĠB Y","Ġn urs","ĠVal ue","ION S","ĠH um","Ġtem plate","m ers","Ġappear ances","ĠEnter tainment","Ġtransl ation","Ġsa ke","Ġbene ath","Ġin hib","Ġe uro","abet es","Ġstud ying","ĠM as","Ġper ceived","Ġexam ined","Ġe ager","Ġco aches","Ġim per","ch i","Ġprodu ces","\" ).","ĠEvery one","Ġm unicip","Ġg irlfriend","Ġh ire","ĠV ice","Ġsu itable","op y","Ġin equ","ĠD uke","f ish","f irst","ĠO bs","Ġinter ior","ĠBru ce","ĠR y","Ġanal ys","Ġconsider able","Ġfore cast","Ġf ert","ors hip","ĠD rug","ĠA LL",": \"","th ur","ĠM ail","Ġball ot","Ġinst antly","ĠCh annel","Ġp icks","Ġ198 9","Ġt ent","ol i","Ġcivil ian","b ling","ell o","b u","Ġin ch","Ġlog o","Ġcooper ation","Ġwal ks","Ġinvest ments","Ġimp rison","ĠF estival","ĠK y","Ġleg ally","Ġg ri","ch arg","S l","Ġthreat ening","du ction","fl ow","Ġdismiss ed","ibr aries","c ap","e le","ĠMc G","ĠHar vard","ĠConserv ative","ĠC BS","p ng","Ġro ots","ĠH aving","umb led","ĠF un","\\ /","ĠS earch","ple x","Ġdiscuss ing","Ġcontin u","ĠT ai","ĠW ik","F ree","f it","Ġref use","Ġmanag ing","Ġsy nd","ip edia","w alk","Ġprofession als","Ġguid ance","Ġunivers ities","Ġas semb","unt u","F inally","AS E","ĠAut o","ĠH ad","Ġann iversary","L D","ĠD ur","ĠUlt imate","ih ad","pro duct","Ġtrans it","Ġrest ore","Ġexpl aining","Ġass et","Ġtransfer red","Ġbur st","ap olis","ĠMag azine","ĠC ra","ĠB R","gg ed","ĠH E","M ich","b et","ĠL ady","yl um","erv es","Ġme ets","wh ite","L og","Ġcorrespond ing","Ġins isted","G G","Ġsurround ed","Ġt ens","Ġl ane","Ġco inc","h ome","Ġexist ed","ect ed","ĠDou ble","lam m","Ġske pt","ex p","Ġper ception","ie v","ĠBe ing","o ft","Ġadop t",". :","] ;","Wind ows","Ġsatell ite","AS H","Ġinf ant","d escription","ĠMe anwhile","c m","oc a","ĠT reat","act or","Ġtob acco","ĠN orm","em ption","Ġfl esh","Ġj e","o op","ĠHe aven","Ġbe ating","an im","Ġgather ing","Ġcult iv","G O","ab e","ĠJon athan","ĠSaf ety","Ġbad ly","pro t","Ġcho osing","Ġcontact ed","Ġqu it","Ġdist ur","Ġst ir","Ġto ken","D et","ĠP a","Ġfunction ality","00 3","s ome","Ġlimit ations","Ġmet h","b uild","con fig","N T","re ll","ble m","ĠM om","Ġveter ans","ĠH u","Ġtrend s","are r","ĠG iven","ĠCa ption","m ay","AS T","Ġwond ering","ĠCl ark","n ormal","Ġsepar ated","Ġdes p","st ic","b rew","Ġrel ating","ĠN ik","ĠF arm","Ġenthus i","g ood","d eb","Ġactiv ist","Ġm art","Ġexplos ion","ĠEconom ic","L ink","Ġins ight","Ġconven ient","Ġcounter part","su pport","ĠV irt","ag en","ĠTenn essee","ĠSim on","ĠA ward","OC K","ĠF igure","Ġoverse as","Ġpr ide","ĠC as","n ote","m g","C urrent","Ġdispl ays","cont ent","Ġtravel ing","Ġhosp itals","ĠFin ancial","ĠP ast","Ġdefend ant","Ġstream ing","m ble","ĠBer lin","uk i","Ġdist ribut","Ġant ib","Ġch ocolate","ĠCast le","Ġinter rupt","ĠR ow","Ġconvers ion","Ġbug s","ĠR ather","li est","L Y","ĠJe an","com mon","ak h","Ġ1 30","ot ton","ĠDe an","Ġam endment","Ġgame play","ĠWar ren","od a","Ġhigh lights","Ġir re","ĠNAT O","Ġball s","Ġdemand ing","U RE","ĠL uke","F igure","st op","on ia","z one","iz ers","ĠW R","Ġaward ed","Ġregul atory","ĠH art","ĠS N","pl ing","Ġs our","ĠP ixel","us ive","Ġf et","ĠS ent","Ġautom atic","Ġf er","vern ment","ĠKh an","T ON","f ather","Ġextraord inary","th rop","ĠP ython","ĠG PU","Ġsex ually","Ġdesk top","it ivity","ĠAnton io","Ġo rient","Ġe ars","ob by","ous es","vertis ements","Ġmanufacture rs","ic ient","min ute","Ġconv iction","Ġg arden","p ublic","Ġsatisf ied","f old","O K","Ġin hab","ĠTh ink","Ġprogram me","Ġst omach","Ġcoord in","Ġh oly","Ġth reshold","Ġr het","Ġser ial","Ġemploy ers","ĠEvery thing","ra h","Ġb other","Ġbr ands","Val ue","ĠT ed","ĠPlan et","Ġp ink","ĠFurther more","s a","P E","re ck","ĠUS D","ot te","Ġ& &","Ġland ed","g ets","Ġprodu cers","Ġhealth care","Ġdomin ant","Ġdest ro","Ġam ended","ch ron","Ġf its","ĠSy d","ĠAuthor ity","AT CH","Ġfight s","ĠL LC","Ġ-- -","ĠCor p","Ġtox ic","spe cific","ĠC orn","ĠChe l","Ġtele phone","ĠP ant","Ġmyster ious","aun ch","od ox","med ia","Ġwitness es","ag u","Ġquestion ed","ĠBre xit","ĠRem ember","ene z","Ġend orse","iat ric","ĠId ent","Ġridic ulous","1 10","Ġpr ayer","Ġscient ist","Ġ19 50","ĠA qu","Ġunder ground","ĠU FC","m are","ĠL ater","w ich","Ġsubsc rib","Ġhost s","Ġer r","Ġgr ants","ant om","Ġsum mon","ear ly","ĠC lear","ĠPr im","Ġsusp ension","Ġguarant eed","app er","Ġr ice","ĠSe an","ĠSh in","Ġrefere ndum","Ġfl ed","r ust","Ġ3 60","ter y","Ġsh ocked","B R","ĠO il","ĠAll ah","Ġpart ly","Ġign or","Ġtrans mission","Ġhom osexual","ivers al","Ġhop efully","ãĤ ¤","Ġless on","L eg","Ġ ..","Y et","t able","app ropri","re tt","Ġbo ards","Ġincor rect","Ġb acteria","ar u","am ac","Ġsn ap",".' \"","Ġpar ad","t em","he art","Ġav ailability","Ġw isdom","Ġ( +","Ġpri est","ĠÂł ĠÂł","O pen","Ġsp an","Ġparam eter","Ġconv ince","Ġ( %)","r ac","Ġf o","Ġsafe ly","Ġconver ted","ĠOlymp ic","Ġres erve","Ġhe aling","ĠM ine","M ax","Ġin herent","ĠGra ham","Ġinteg rated","D em","Ġpip eline","Ġapp lying","Ġem bed","ĠCharl ie","Ġc ave","200 8","Ġcons ensus","Ġre wards","P al","ĠHT ML","Ġpopular ity","look ing","ĠSw ord","ĠAr ts","' )","Ġelect ron","clus ions","Ġinteg rity","Ġexclus ively","Ġgr ace","Ġtort ure","Ġburn ed","tw o","Ġ18 0","P rodu","Ġent reprene","raph ics","Ġg ym","ric ane","ĠT am","Ġadministr ative","Ġmanufacture r","Ġ vel","ĠN i","Ġisol ated","ĠMedic ine","Ġback up","Ġpromot ing","Ġcommand er","Ġfle e","ĠRus sell","Ġforg otten","ĠMiss ouri","Ġres idence","m ons","Ġrese mb","Ġw and","Ġmeaning ful","P T","Ġb ol","Ġhe lic","Ġwealth y","Ġr ifle","str ong","row ing","pl an","as ury","â̦ .","Ġexpand ing","ĠHam ilton","Ġrece ives","S I","eat ures","ĠAn im","RE E","P ut","Ġbrief ly","ri ve","Ġstim ul","Ġ`` (","Ġ __","Ġch ip","Ġha z","Ġpri ze","ĠTh ings","AC E","ul in","d ict","ok u","Ġassoci ate","ock ets","y outube","St ory","ateg ory","Ġm ild","ail ing","ĠY e","O rig","ĠK a","or ig","Ġpropag anda","Ġan onymous","Ġstrugg led","Ġout rage","AT ED","ĠBe ijing","r ary","Ġle ather","Ġworld s","Ġbroad er","12 5","id al","ĠBet ter","Ġt ear","E xt","Ġpropos als","Ġit er","ĠSqu ad","Ġvol unt","m i","D id","ĠP u","p in","Ġspeak ers","Ġb orders","Ġfig ured","= '","Ġsimultane ously","aed a","Ġcharg ing","Ġur ged","Ġcon j","25 6","ĠG ordon","mer ce","Ġdocument ary","Sh are","it ol","ON E","ĠG arden","h att","ĠThom pson","ane ous","ap ore","Ġt anks","Ġless ons","tr ack","Ġout standing","Ġvolunte ers","Ġsp ray","Ġmanag ers","l arge","Ġcamp s","Ġart ificial","ĠR u","Ġb ags","th al","Ġcompat ible","ĠBl ade","Ġf ed","Ġarg ues","F I","Ġunf air","Ġcor n","Ġoff set","Ġdirect ions","Ġdisappoint ed","ĠCon vention","Ġview ing","M E","oc ity","Ġtown s","Ġlay ers","Ġro lled","Ġjump ed","Ġatt ribute","Ġun necess","inc oln","Ġsupp ose","ĠNet her","ch a","Ġbur ied","Ġsix th","B en","ress ing","OU R","Ġw ound","Ġcy cl","Ġmechan isms","Ġcongress ional","ĠE lement","Ġagre ements","Ġdec or","Ġclos est","ĠM it","Go ogle","} }","Ġm ixture","Ġflu id","S ign","ĠSch olar","Ġp ist","ask et","ab ling","Ġrac ing","he ro","ri el","ass y","Ġche aper","b en","Ġvert ical","amac are","ĠRead ing","g ments","Ġhelic op","Ġsacr ifice","ay a","p aren","V A","ĠL es","ĠStud io","Ġviol ations","ĠAn na","ac er","é ¾","ĠR at","ĠBe ck","ĠD ick","ĠA CT","Ġcomp osition","Ġtext ure","ĠO wn","Ġsmart phone","ĠN A","Ġfor b","im port","Ġdef ending","il st","re r","Ġo h","ĠJere my","Ġbank ing","cept ions","Ġrespect ive","/ .","Ġdr inks","ĠW i","Ġb ands","ĠL iverpool","Ġg rip","ĠB uy","Ġopen ly","Ġreview ed","per t","Ġver ify","ĠCo le","ĠW ales","M O","Ġun pre","Ġshel ter","ĠIm perial","Ġgu i","ĠD ak","Ġsuggest ions","Ġexplicit ly","Ġsl ave","Ġblock chain","Ġcompet ing","Ġprom ising","S ON","Ġsoc cer","Ġconst itution","4 29","Ġdist ract","ĠU ser","es ides","ĠMet hod","ĠTok yo","Ġaccompan ied","Cl ient","s ur","al og","Ġident ification","Ġinv asion","as ma","Ġindust ries","pp ers","Ġsub tle","ĠUn it","n atural","Ġsurv ived","Ġfl aw","ĺ ħ","ĠH oll","Ġdef icit","Ġtut orial","ĠCh ance","Ġarg uing","Ġcontem porary","Ġinteg ration","for ward","Ġt um","it is","Ġh iding","ĠD omin","ĠT an","ĠB uilding","ĠV in","Ġspokes person","ĠNot es","Ġemer ging","Ġprepar ation","Ġpro st","Ġsuspect s","Ġaut onom","D escription","Ġdeal t","ĠP ear","Ġstead y","Ġdecre ased","Ġso vere","ĠCl in","Ġgrad ually","ors es","ĠW AR","S erv","ãĤ ¢","h r","Ġd irty","ĠB arn","ĠB C","Ġd il","Ġcal endar","Ġcompl iance","Ġch amber","b b","Ġpass enger","ate ful","ĠT itle","ĠSyd ney","ĠG ot","Ġdark ness","Ġdef ect","Ġpack ed","ass ion","Ġgod s","Ġh arsh","IC K","le ans","Ġalgorith m","Ġoxy gen","Ġvis its","Ġbl ade","Ġkil omet","ĠKent ucky","Ġkill er","P ack","enn y","Ġdiv ine","Ġnom ination","be ing","Ġeng ines","Ġc ats","Ġbuff er","ĠPh ill","Ġtra ff","AG E","Ġtong ue","Ġrad iation","ere r","m em","ĠExpl icit","é¾ į","Ġcou ples","Ġphys ics","ĠMc K","Ġpolit ically","aw ks","ĠBl oom","Ġwor ship","e ger","ut er","ĠF O","Ġmat hemat","Ġsent enced","Ġdis k","ĠM arg","Ġ/ *","P I","Ġoption al","Ġbab ies","Ġse eds","ĠScott ish","Ġth y","] ]","ĠHit ler","P H","ng th","Ġrec overed","ing e","Ġpow der","Ġl ips","Ġdesign er","Ġdis orders","Ġcour age","Ġch aos","\" },{\"","Ġcar rier","b ably","H igh","ĠR T","es ity","l en","Ġrout es","u ating","F il","N OT","w all","s burgh","Ġeng aging","ĠJava Script","ore r","li hood","Ġun ions","ĠF ederation","ĠTes la","Ġcomple tion","ĠT a","Ġprivile ge","ĠOr ange","Ġne ur","paren cy","Ġb ones","Ġtit led","Ġprosecut ors","ĠM E","Ġengine er","ĠUn iverse","ĠH ig","n ie","o ard","Ġheart s","ĠG re","uss ion","Ġmin istry","Ġpen et","ĠN ut","ĠO w","ĠX P","in stein","Ġbul k","S ystem","ic ism","ĠMarket able","Ġpre val","Ġpost er","Ġatt ending","ur able","Ġlicens ed","ĠG h","et ry","ĠTrad able","Ġbl ast","à ¤","ĠTit an","ell ed","d ie","H ave","ĠFl ame","Ġprof ound","Ġparticip ating","Ġan ime","ĠE ss","Ġspec ify","Ġregard ed","ĠSpe ll","Ġs ons","own ed","Ġm erc","Ġexper imental","land o","h s","ĠDun geon","in os","Ġcomp ly","ĠSystem s","ar th","Ġse ized","l ocal","ĠGirl s","ud o","on ed","ĠF le","Ġconstruct ed","Ġhost ed","Ġsc ared","act ic","ĠIs lands","ĠM ORE","Ġbl ess","Ġblock ing","Ġch ips","Ġev ac","P s","Ġcorpor ation","Ġo x","Ġlight ing","Ġneighb ors","ĠU b","ar o","Ġbe ef","ĠU ber","F acebook","ar med","it ate","ĠR ating","ĠQu ick","Ġoccup ied","Ġaim s","ĠAdd itionally","ĠInt erest","Ġdram atically","Ġhe al","Ġpain ting","Ġengine ers","M M","ĠM ust","Ġquant ity","P aul","Ġearn ings","ĠPost s","st ra","ãĥ¼ ãĥ","Ġst ance","Ġdro pping","sc ript","Ġd ressed","M ake","Ġjust ify","ĠL td","Ġprompt ed","Ġscr ut","Ġspeed s","ĠGi ants","om er","ĠEd itor","Ġdescrib ing","ĠL ie","ment ed","Ġnow here","oc aly","Ġinst ruction","fort able","Ġent ities","Ġc m","ĠN atural","Ġinqu iry","Ġpress ed","iz ont","for ced","Ġra ises","ĠNet flix","ĠS ide","Ġout er","Ġamong st","im s","ows ki","Ġclim b","ne ver","Ġcomb ine","d ing","Ġcomp r","Ġsignific ance","Ġremem bered","ĠNev ada","ĠT el","ĠSc ar","ĠWar riors","ĠJ ane","Ġcou p","b as","Ġtermin al",", -","O H","Ġt ension","Ġw ings","ĠMy ster","�� ��","ĠUn like","val id","viron ments","ĠAl i","Ġn aked","book s","ĠM un","ĠG ulf","Ġd ensity","Ġdim in","Ġdesper ate","Ġpres idency","Ġ198 6","h y","IN D","Ġun lock","im ens","Ġhand led","ĠE b","Ġdisapp eared","Ġgen re","Ġ198 8","Ġdetermin ation","St ream","ik o","ap ters","Ġacknow ledge","J an","Ġcapital ism","P at","Ġ20 20","Ġpain ful","Ġcur ve","Ġbom bs","st orm","ĠMet al","en cer","ĠF ig","ĠA aron","anc hes","Ġins piration","Ġexha ust","t ains","ash i","Ġdesc ript","Ġr itual","ĠChel sea","Ġpromot ion","ĠH ung","ĠW ard","iv a","ĠE T","Ġto ss","all ow","ĠFranc is","D ep","Ġhapp iness","ĠGl ass","Ġbet a","Ġstreng then","N E","o a","Ġbutt ons","ĠMur ray","Ġkick ed","Qu est","ĠT alk","ĠS everal","ĠZ ero","Ġdr one","ul k","Ġc am","ĠM obile","Ġprevent ing","Ġret ro","ĠA x","Ġcru el","Ġflo at",". ),","Ġfil ing","ĠGr ant","ĠB or","Ġr ib","Ġchampions hip","ĠM erc","Ġsty les","Ġc ake","Ġbuild s","ĠS elf","io x","Ġep ic","oy d","B el","ĠSt ew",". (","ah u","ĠBe yond","Ġout s","Ġsol o","ĠT ree","Ġpres erve","Ġt ub","AR E","ro c","ĠIm pro","ĠW right","Ġbu nd","Ġtr aged","Ġoccas ional","b ian","Sec ond","r ons","Ġinter actions","form ed","s ing","Ġown s","Ġh ockey","Gener al","Ġlog ical","Ġexp end","Ġesc al","ĠGr iff","ĠC rown","ĠRes erve","Ġsto pping","Ġexc use","sec ond","Ġoper ated","Ġre aches","ĠMal ays","Ġpoll ution","ĠBrook lyn","Ġde lete","Ġhas h","Bl ock","ah a","âĢ ³","Ġsh orter","p iece","> >>","ĠM ormon","t or","Ġpartic les","ĠB art","ry ption","Ġad min","Ġsqu ee","VID IA","Ġcreat or","iam eter","ic ular","N BC","Ġgrab bed","Ġn odd","Ġr ated","Ġrot ation","Ġgr asp","Ġexcess ive","ĠE C","ĠWh it","Ġinvent ory","ault s","ĠF B","Ġe cosystem","Ġbill ions","Ġvent ure","n amed","Ġdef ender","out e","Inst ead","ir able","W ar","Ġassum ption","Ġb ite","Ġearth qu","t ail","sp ace","Ġgif ts","boy s","Ġinev itable","Ġstruct ural","Ġbenef icial","Ġcompe lling","h ole","erv ation","Ġco at","o j","inc arn","ĠY ears","Ġdetermin ing","Ġrhet oric","Ġbound aries","Ġwh ites","A nt","add y",") -","ra ham","eter min","Ġhar vest","ĠCon c","Ġlapt op","ĠM atch","Ġenjoy ing","cc a","oll ar","Ġtri ps","Ġadd iction","ĠS ak","Ġpow ered","Ġc ous","ĠRuss ians","ie re","Ġret rie","qu ality","Ġdiff er","Ġking dom","ĠL aur","ĠCap itol","Ġcon clusions","ĠAl tern","ĠN av","Ġtrans parent","B ER","G roup","ĠCom plete","Ġinf er","Ġint rig","Ġins ane","R O","oph ob","is en","qu al","Mich ael","Ġm useum","ĠP ope","Ġres et","r ative","f ive","Ġagg reg","itte es","osit ory","Ġcar b","ĠRec ord","Ġdec ides","ĠF ix","Ġexcept ions","ĠCommission er","un s","ĠEnvironment al","Ġlegend ary","ist ence","Ġtun nel","k m","Ġins ult","Ġt roll","Ġsh ake","Ġdet ention","qu es","ĠCh rome","ĠF iles","Ġsub t","Ġprospect s","Ġpro l","re nder","pro of","Ġperform ances","St r","Ġh ref","ern ame","Ġachieve ment","Ġf ut","F ull","ĠLe ban","go ogle","ãĥ Ī","amp a","May be","Ġproject ed","ĠE mb","Ġcol leg","Ġa wards","Ġâ Ķ","G old","ĠBl ake","ĠR aj","if ting","Ġp ending","Ġinst inct","Ġdevelop ments","Con nect","ĠM and","ĠW ITH","ĠPhilipp ines","prof ile","Ġalt ogether","ĠB und","ĠT D","oo oo","amp ed","ip h","Ġste am","Ġold est","Ġdet ection","ul pt","Ġ ç","ĠWay ne","200 6","f a","Ġcir cles","ĠF u","Ġdon ors","appropri ate","ĠDak ota","j amin","Ġmotiv ated","Ġpurch ases","ĠLouis iana","ĠS pl","Ġgl obe","Ġ10 5","z ip","c all","Ġdepart ments","Ġsustain able","10 5","ĠO P","if iers","Ġprevent ed","Ġinc omp","ĠComm ander","Ġdom inated","Ġ »","Ġinvest ed","Ġcomplex ity","Ġin cl","Ġens uring","Ġreal m","yn c","ĠInd ependent","r ained","ĠJ en","ĠFl ight","Ġat he","Ġspec ulation","ĠT E","oc ate","t ic","Ġpl aint","her ry","Ġto y","Ġ1 11","Ġpl ates","st atus","ĠIs a","Ġdev oted","C op","ĠE S","25 5","ur rency","M ain","Ġsl aves","Ġpe pper","Ġqu otes","Ġce iling","ĠF ish","Ġtrans formation","Ġfra ction","Ġadvant ages","Ġto ile","Ġstun ning","Ġmo ist","bre aking","s i","ĠL ocation","ĠMed ium","Ġtext s","Ġu gly","Ġb io",". âĢĶ","ĠB ased","Ġtr ains","ĠW ing","ĠAn cient","ĠRec ords","ĠH ope","Spe cial","ades h","ob i","[ /","Ġtempor arily","V er","h u","os er","Ġover night","Ġm amm","ĠTre asury","ĠV enezuel","ĠMeg a","Ġt ar","Ġexpect s","bl ack","or ph","\\\\ \\\\","Ġaccept ance","Ġrad ar","s is","Ġjun ior","Ġfram es","Ġobserv ation","ac ies","P ower","ĠAdv anced","M ag","olog ically","ĠMe chan","Ġsent ences","Ġanaly sts","augh ters","force ment","Ġv ague","Ġcl ause","Ġdirect ors","Ġeval uate","Ġcabin et","M att","ĠClass ic","A ng","Ġcl er","ĠB uck","Ġresear cher","Ġ16 0","Ġpoor ly","Ġexperien cing","ĠP ed","ĠMan hattan","Ġfre ed","Ġthem es","ad vant","Ġn in","Ġpra ise","10 4","ĠLib ya","b est","Ġtrust ed","Ġce ase","Ġd ign","D irect","Ġbomb ing","Ġm igration","ĠSci ences","Ġmunicip al","ĠA verage","Ġgl ory","Ġreve aling","Ġare na","Ġuncertain ty","Ġbattle field","ia o","G od","Ġc inem","ra pe","el le","ap ons","Ġlist ing","Ġwa ited","Ġsp otted","ke ley","ĠAud io","e or","ard ing","idd ing","ig ma","ĠN eg","Ġl one","Ġ ----","ex e","d eg","Ġtrans f","Ġwas h","Ġsl avery","Ġexpl oring","ĠW W","ats on","Ġen cl","l ies","ĠC reek","Ġwood en","Man ager","ĠBr and","um my","ĠAr thur","Ġbureau cr","Ġbl end","ar ians","F urther","Ġsupposed ly","Ġwind s","Ġ19 79","Ġgrav ity","Ġanalys es","ĠTra vel","ĠV eter","Ġd umb","Ġaltern ate","g al","Ġconsum ed","Ġeffect iveness",".' '","Ġpath s","ond a","L A","ĠStr ong","Ġen ables","Ġesc aped","Ġ\" \"","Ġ1 12","Ġ198 3","Ġsm iled","Ġtend ency","F ire","Ġp ars","ĠR oc","Ġl ake","Ġf itness","ĠA th","ĠH orn","Ġh ier","Ġimp ose","m other","Ġp ension","ic ut","bor ne","ic iary",". _","ĠS U","Ġpol ar","is y","eng u","itial ized","AT A","w rite","Ġexerc ises","ĠD iamond","ot ypes","Ġharm ful","on z","Ġprint ing","st ory","Ġexpert ise","ĠG er","Ġtraged y","ĠF ly","Ġd ivid","amp ire","st ock","M em","Ġre ign","Ġun ve","Ġam end","ĠProp het","Ġmut ual","ĠF ac","Ġrepl acing","H ar","ĠCirc uit","Ġthro at","ĠSh ot","Ġbatter ies","Ġto ll","Ġaddress ing","ĠMedic aid","Ġp upp","ĠN ar","ol k","Ġequ ity","M R","ĠHis pan","ĠL arge","m id","D ev","Ġexp ed","Ġdem o","ĠMarsh all","erg us","Ġf iber","Ġdiv orce","ĠCre ate","Ġsl ower","ĠPark er","ĠStud ent","ĠTr aining","Ret urn","ĠT ru","Ġc ub","ĠRe ached","Ġpan ic","Ġqu arters","Ġre ct","Ġtreat ing","Ġr ats","ĠChristian ity","ol er","Ġsac red","Ġdecl are","ul ative","et ing","Ġdeliver ing","est one","Ġt el","ĠL arry","Ġmet a","ac cept","art z","ĠRog er","hand ed","Ġhead er","Ġtra pped","ĠCent ury","Ġkn ocked","ĠOx ford","Ġsurviv ors","b ot","Ġdemon stration","Ġd irt","Ġass ists","OM E","ĠD raft","ortun ate","fol io","pe red","ust ers","g t","ĠL ock","Ġjud icial","ver ted","Ġsec ured","out ing","ĠBook s","Ġhost ing","Ġlif ted","l ength","Ġj er","Ġwhe els","ĠR ange","umbn ails","Ġdiagn osis","te ch","ĠStew art","ĠP ract","Ġnation wide","Ġde ar","Ġoblig ations","Ġgrow s","Ġmand atory","Ġsusp icious","! '","A pr","G reat","Ġmort gage","Ġprosecut or","Ġeditor ial","ĠK r","Ġprocess ed","ung le","Ġflex ibility","Ear lier","ĠC art","ĠS ug","Ġfoc uses","Ġstart up","Ġbre ach","ĠT ob","cy cle","ãĢ Į","ro se","Ġb izarre","ãĢ į","Ġveget ables","$ $","Ġret reat","osh i","ĠSh op","ĠG round","ĠSt op","ĠHawai i","ĠA y","Per haps","ĠBe aut","uff er","enn a","Ġproduct ivity","F ixed","cont rol","Ġabs ent","ĠCamp aign","G reen","Ġident ifying","Ġreg ret","Ġpromot ed","ĠSe ven","Ġer u","ne ath","aug hed","ĠP in","ĠL iving","C ost","om atic","me ga","ĠN ig","oc y","Ġin box","Ġem pire","Ġhor izont","Ġbr anches","Ġmet aph","Act ive","ed i","ĠFil m","ĠS omething","Ġmod s","inc ial","ĠOrig inal","G en","Ġspir its","Ġear ning","H ist","Ġr iders","Ġsacr ific","M T","ĠV A","ĠS alt","Ġoccup ation","ĠM i","Ġdis g","lic t","Ġn it","Ġn odes","e em","ĠP ier","Ġhat red","ps y","ãĥ ī","Ġthe ater","Ġsophistic ated","Ġdef ended","Ġbes ides","Ġthorough ly","ĠMedic are","Ġbl amed","arent ly","Ġcry ing","F OR","pri v","Ġsing ing","ĠI l","Ġc ute","o ided","olit ical","ĠNe uro","å ¤","Ġdon ation","ĠEag les","ĠG ive","T om","Ġsubstant ially","ĠLic ense","ĠJ a","Ġg rey","ĠAn imal","ĠE R","ĠU nd","Ġke en","Ġconclud e","ĠMississ ippi","Eng ine","ĠStud ios","P ress","o vers","ll ers","Ġ3 50","ĠR angers","Ġr ou","ert o","E p","iss a","iv an","Ġse al","ĠReg ist","dis play","Ġwe aken","u um","ĠComm ons","ĠS ay","Ġcult ures","Ġl aughed","Ġsl ip","Ġtreat ments","iz able","m art","ĠR ice","Ġbe ast","Ġob esity","ĠLa ure","ig a","Wh ich","hold er","Ġelder ly","Ġp ays","Ġcompl ained","Ġc rop","Ġpro c","Ġexplos ive","ĠF an","ĠAr senal","A uthor","ef ul","Ġme als","Ġ( -","id ays","Ġimag ination","Ġann ually","Ġm s","as ures","H ead","ik h","m atic","Ġboy friend","ĠCom puter","Ġb ump","Ġsur ge","ĠCra ig","ĠKir k","D el","medi ate","Ġscen arios","ĠM ut","ĠSt ream","Ġcompet itors","Ù Ħ","ĠStan ford","ĠRes ources","az ed","b age","Ġorgan is","ĠRe lease","Ġsepar ately","Ġha bits","Ġmeasure ments","ĠCl ose","Ġaccomp any","Ġg ly","Ġt ang","ĠR ou","Ġplug in","Ġcon vey","ĠChall enge","oot s","j an","Ġcur s","ĠRel ations","ke eper","Ġapproach ing","p ing","Spe aking","Ġarrang ement","ĠV I","are ttes","Ġaffect ing","Ġperm its","b ecause","Ġu seless","ĠH us","!! !!","Ġdestro ying","Un fortunately","Ġfasc inating","S em","Ġelect oral","Ġtrans parency","ĠCh aos","Ġvolunte er","Ġstatist ical","Ġactiv ated","ro x","We b","H E","ĠHamp shire","is ive","M ap","Ġtr ash","ĠLaw rence","st ick","C r","Ġr ings","EX T","Ġoper ational","op es","D oes","ĠEv ans","Ġwitness ed","P ort","Ġlaunch ing","ec onom","w ear","ĠPart icip","um m","cul es","ĠR AM","ĠT un","Ġass ured","Ġb inary","Ġbet ray","Ġexpl oration","ĠF el","Ġad mission","it ated","S y","Ġav oided","ĠSim ulator","Ġcelebr ated","ĠElect ric","¥ ŀ","Ġcl uster","itzer land","he alth","L ine","ĠN ash","at on","Ġsp are","Ġenter prise","ĠD IS","clud es","Ġfl ights","Ġreg ards","Ġà Ĺ","h alf","Ġtr ucks","Ġcontact s","Ġunc ons","ĠCl imate","Ġimm ense","N EW","oc c","ect ive","Ġemb od","Ġpat rol","Ġbes ide","Ġv iable","Ġcre ep","Ġtrig gered","ver ning","Ġcompar able","q l","Ġg aining","ass es","Ġ( );","ĠG rey","ĠM LS","s ized","Ġpros per","\" ?","Ġpoll ing","Ġsh ar","ĠR C","Ġfire arm","or ient","Ġf ence","Ġvari ations","g iving","ĠP i","osp el","Ġpled ge","Ġc ure","Ġsp y","Ġviol ated","Ġr ushed","Ġstro ke","ĠBl og","sel s","ĠE c",",' '","Ġp ale","ĠColl ins","ter ror","ĠCanad ians","Ġt une","Ġlabor atory","Ġn ons","t arian","Ġdis ability","ĠG am","Ġsing er","al g","ĠSen ior","Ġtrad ed","ĠWar rior","Ġinf ring","ĠFrank lin","Ġstr ain","ĠSwed ish","Ġsevent h","ĠB enn","ĠT ell","Ġsynd rome","Ġwond ered","id en","++ ++","ig o","Ġpur ple","Ġjournal ism","Ġreb el","Ġf u","bl og","Ġinv ite","ren cies","ĠCont act","Is rael","ĠCont ent","Ġche er","Ġbed room","ĠEngine ering","ĠQue ens","Ġd well","ĠPlay Station","ĠD im","ĠCol on","l r","Ġoper ates","Ġmotiv ation","US A","ast ered","C ore","ĠTr uth","ol o","OS E","ĠMem ory","Ġpred ec","Ġan arch","Ġ19 20","ĠY am","à ¨","b id","Ġgr ateful","Ġexc itement","Ġtre asure","Ġlong est","ct ive","Ġdes erves","Ġreserv es","Ġcop s","ĠOtt awa","ĠEgypt ian","ank ed","Ġart if","Ġhypot hesis",": /","Ġpurch asing","Ġlove ly","H P","Ġdiv ide","Ġstrict ly","Ġquestion ing","Ġtaxp ayers","ĠJ oy","Ġroll s","ĠHe avy","Ġp orts","Ġmag netic","Ġinf lamm","Ġbr ush","t ics","â ĪĴ","Ġbott les","pp y","Ġp add","ãĤ ¯","m illion","Ġdevast ating","Ġcomp iled","Ġmed ication","Ġtw elve","ĠPer ry","Sp ace","im b","y our","Ġle aked","ĠT ar","Ġun ity","Ġinfect ed","Ġtravel ed","ID E","ĠMc Donald","t xt","ĠPr inc","Ġinter ven","ĠTai wan","ĠP ow","Ġbe aring","ĠTh read","Ġz ones","iz ards","un ks","Ch apter","ll or","Ġ ·","Ġw ounds","Ġdisc retion","Ġsucceed ed","ik ing","Ġicon ic","C all","Ġscreen ing","ĠM is","ict s","Ġmin isters","Ġsepar ation","Pl ayer","Ġb ip","Ġbel oved","Ġcount ing","ĠE ye","ar ound","ing ing","Ġtable t","Ġoff ence","in ance","h ave","ĠInf o","ĠNin ja","Ġprotect ive","ĠC ass","M ac","ĠQual ity","N orth","Ġ ic","ĠCub a","ĠChron icle","ĠPro perty","Ġfast est","ot os","ĠG erm","OW N","Ġbo om","ĠStan ley","ergus on","Ġcle ver","Ġent ers","m ode","ter ior","ĠS ens","Ġlin ear","AR K","Ġcomp aring","Ġpure ly","Ġsaf er","ĠPot ter","Ġc ups","R T","Ġgl uc","Ġatt ributed","Ġdu pl","ĠP ap","Ġprec ious","Ġp a","iction ary","ĠT ig","ĠTo o","ol utions","st an","Ġrob ots","Ġlob b","Ġstat ute","Ġprevent ion","w estern","16 0","ĠAct ive","ĠMar ia","h al","N one","ell ar","ĠK B","ĠPart ners","ĠSing le","ĠFollow ing","ang o","ac ious","Ġth ou","Ġk g","Ġinflu ential","ĠFriend s","S ur","ain ted","Ġfor ums","Ġst arter","Ġcitizens hip","ĠE lection","on ge","ot ation","os ph",";; ;;","ut ical","p ur","ere n","Ġaccus ations","bit ious","ab bit","ĠOr d","Post ed","ir k","Ġsens itivity","ic he","ĠAm y","ĠF ab","Ġsum mit","Ġped est","Ġrub ber","Ġagric ultural","Ġcan cel","A E","Ġin aug","Ġcont am","Ġfirm ly","i w","st age","ĠK an","Ġt ier","Ġinv ention","Ġtransl ated","ĠR ules","B ox","Tw itter","ID S","Ġp izza","Ġdeb ug","ĠD rop","v s","Ġh orses","b ig","Ġb oring","Ġh ood","ĠMcC ain","at ched","ĠBro s","Ġsk ip","Ġess ay","st at","ĠLeg ends","Ġam munition","au c","Ġshoot er","Ġun h","Ġsuppl ied","Ġgener ic","ĠS K","ib an","yr ics","Ġ25 5","Ġclim bing","Form er","Ġfl ip","Ġjump ing","Ġfrust ration","ĠTer ry","Ġneighborhood s","Ġmed ian","be an","Ġbr ains","Follow ing","Ġsh aped","Ġdraw s","Ġal tered","J ack","Ġrecip es","Ġsk illed","we alth","ach i","e lection","Ġbehavi ors","de als","ĠU ntil","F e","Ġdecl aration","mar ks","ĠBet ween","cel ona","Ġres on","Ġbub ble","Am ong","Ġim perial","G S","Ġfemin ist","200 5","ĠK yle","Ġaccount ing","ĠTe le","ĠT yr","Ġconnect ing","Ġre hab","ĠP red","s im","Ġmeant ime","Ġphys ician","M W","ĠCamp bell","ĠBr andon","Ġcontribut ing","ĠR ule","ĠWe ight","ĠN ap","Ġinter active","Ġv ag","Ġhel met","ĠCom b","f our","Ġsh ipped","Ġcomple ting","ĠP D","PD ATE","Ġspread ing","Ġsc ary","erv ing","ĠG as","Ġfr ank","s chool","Ġrom antic","Ġstab il","R ob","Ġaccur ately","Ġac ute","ĠH ann","Ġsymbol s","Ġcivil ization","ĠA W","Ġlight ning","Ġcons iders","Ġven ue","Ġ ×","Ġo ven","ĠS F","h is","Ġn u","ĠLear n","Ġpe oples","Ġst d","Ġsle e","Ġs lic","ĠStat istics","Ġcor ners","ĠB aker","Ġ: )","ment ation","ol ver","Ġlaugh ing","ĠT odd","ond e","ĠH ills","Ġn uts","ĠW oman","pl ane","Ġl iver","ĠIn side","S orry","Ġagre es","Ġfund ament","ĠF isher","Ġa uction","Ġthread s","gl as","ĠBas ic","ĠN at","Ġlack ing","Ġceleb ration","j u","Ġs illy","E uro","Ġt att","ight y","cont rolled","T est","ĠSing h","Ġr age","Ġrh yth","o ffic","ĠPh antom","Ġhead lines","Ġrespond ing","ĠMor ning","Ġvit amin","Ġboot s","ĠS ite","al in","p i","Ġvir al","ĠU C","D ER","ĠSe x","Ġst ocks","c urrent","Ġch urches","ĠR are","ĠMur phy","Ġden ial","ĠG aming","Ġtou g","Ġn ick","Ġm akers","ĠRon ald","Ġgener ous","ĠD oc","ĠMor ris","Ġtransform ed","ĠN ormal","Ġ10 4","ĠKick starter","ĠUp on","On line","ĠI RS","Ġw rap","Ġl oving","Ġarri ves","ĠD ue","Ġhe ter","ĠM ade","Ġrent al","Ġbelong s","Ġatt orneys","Ġcro ps","Ġmat ched","ul um","ol ine","10 9","Ġdis par","Ġbuy ers","ĠCam bridge","Ġeth ics","rou ps","Ġjust ified","Ġmarg inal","Ġrespect ed","win ning","Ġnodd ed","ĠSer ge","ĠForm er","C raft","######## ########","ĠWar ner","Ġd ash","et e","Ġent ert","ĠE scape","out heast","Ġkn ees","ĠB omb","Ġr ug","P ass","Ġatt itudes","go vernment","ĠPri or","Ġqual ities","Ġnot ification","ĠPh one","l ie","Ġanticip ated","ĠCom bat","ĠBar ry","Ġ198 2","Us ers","on er","Ġcomput ing","ĠConnect icut","Ġless er","Ġpe ers","ĠC u","Ġtechn ically","Ġsub mission","ĠUn iversal","Ġman ually","our ge","Ġrespond ents","ĠB TC","ĠH ost","Ġf are","ĠB ird","Ġrece ipt","al so","Ġj ack","Ġagric ulture","Ġsk ull","Ġ! =","Ġpass ive","ĠC I","Ġsoc ieties","Ġremind ed","Ġinter ference","B uy","Ġâ ľ","g on","Ġscrut iny","ĠW itch","Ġconduct ing","Ġ ãĥ","Ġexch anges","ĠMit chell","Ġinhab it","Ġtw ist","B D","Ġwhere ver","group on","Ġj okes","ĠBen jamin","ĠR andom","fr ame","ĠL ions","Ġhighlight ed","ĠArk ansas","E nt","Ġp ile","Ġpre lim","g s","mind ed","Ġfel ony","ĠG A","ĠL uck","Ġpract ically","ĠB os","Ġact ress","D am","ĠB ou","Ġvis a","Ġembed ded","Ġhy brid","Ġear liest","Ġsoon er","s ocial","ĠH A","Ġste ep","Ġdis advant","Ġexplo it","ĠE gg","ĠUlt ra","Ġnecess ity","L ocal","ie ge","Ġd ated","Ġmass es","Ġsubsc ription","pl ess","Ġan onym","Ġpresum ably","Bl ue","The ir","asket ball","ĠPhil ip","Ġcom ed","load ed","r ane","Ġref lection","Ch ina","Ġext ends","Ġform ing","Ġund ers","200 1","Ġgr at","Ġconcent rations","Ġins ulin","Ġsec ular","Ġwh ilst","Ġwin ners","Ad vertisements","Ġdeliber ately","ĠWork ing","Ġs ink","et ics","d ale","Ġmand ate","Ġg ram","Ġvac ation","Ġwarn ings","ri pp","ĠTH AT","Ġcomment ary","Ġint u","Ġa est","Ġreason ing","Ġbreak down","ĠZ ombie","Ġ-- >","ĠPolit ical","c ott","Ġthr ust","Ġtechn ological","Ġdec iding","Ġtraff icking","L ong","W elcome","pr ising","ĠCommun ications","Ġend ors","Ġsw ift","Ġmetab ol","co ins","res a","ĠHT TP","Ġen roll","ĠH appy","us r","int age","Ġ[ \"","u ably","ĠM aterial","Ġrepe al","Se pt","k h","ĠMod i","Ġunder neath","ĠI L","sh ore","Ġdiagn osed","ace utical","Ġsh ower","au x","ĠSw itch","ĠStre ngth","Ġj ihad","n ational","Ġtra uma","uss y","on i","Ġcons olid","Ġcal ories","ĠF lynn","ag ged","16 8","ĠP ink","Ġfulf ill","Ġch ains","Ġnot ably","ĠA V","L ife","ĠCh uck","m us","ĠUr ban","ĠH end","Ġdep osit","ĠS ad","Ġaff air","OR K","ie val","ĠF DA","Ġt rop","ĠOver all","Ġvirt ue","Ġsatisf action","au nd","Ġl un","ĠSw itzerland","ĠOper ation","pro cess","Ġsh ook","Ġcount ies","le ased","ĠCharl otte","1 12","Ġtrans cript","Ġre dd","p ush","ĠHe y","ĠAn alysis","[ \"","Ġaltern atives","ard less","Ġele ph","Ġpre jud","ĠLe af","H aving","ĠH ub","Ġexpress ions","ĠVol ume","Ġshock ing","ĠRed s","Ġread ily","Ġplan ets","ad ata","Ġcollaps ed","ĠMad rid","Ġir rit","i pper","ĠEn c","ĠW ire","Ġbu zz","ĠG P","ash a","Ġaccident ally","ur u","Ġfrust rated","ĠS A","Ġhung ry","ĠH uff","Ġlab els","ant o","ĠE P","Ġbar riers",") |","ĠBer keley","ĠJ ets","Ġp airs","ĠL an","J ames","ĠB ear","Ġhum or","ĠLiber ty","Ġmagn itude","Ġag ing","ĠM ason","Ġfriends hip","umb ling","Ġemer ge","Ġnewsp apers","Ġam bitious","ĠRich ards","atern al","Ġ198 1","Ġcook ies","Ġsc ulpt","Ġpur suit","L ocation","Ġscript s","p c","Ġarrang ements","Ġd iameter","Ġl oses","am ation","Ġl iqu","ĠJ ake","aret te","Ġunderstand s","ĠZ en","v m","Ġappro ve","Ġw ip","Ġult ra","Ġint end","ĠD I","asc ular","Ġst ays","ĠK or","ĠK l","Ġinvest ing","L a","Ġbelie ving","b ad","m outh","Ġtaxp ayer","ãĥ ĥ","ĠQue bec","Ġl ap","ĠSw iss","d rop","Ġdr ain","ir i","et c","ft en","ĠN ex","Ġst raw","Ġscream ing","Ġcount ed","Ġdam aging","Ġamb assador","cent ury","Ġpro x","Ġarrest s","u v","il ateral","ĠCh arg","Ġpresc ribed","Ġindepend ently","Ġf ierce","ĠB aby","Ġb rave","Ġsu its","= >","Ġbas eline","ĠR ate","Ġis lands","Ġ( (","g reen","ix els","Ġname ly","ĠVill age","th an","am y","V ersion","g mail","ential s","ĠS ud","ĠMel bourne","Ġarri ving","Ġquant um","e ff","rop olitan","T ri","Ġfun eral","ĠI R","ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ","ĠC ob","it ably","Ġt urb","Ġcomb o","Re view","Ġdeploy ment","u ity","ĠB ott","Ġinv isible","Ġrender ing","Ġunl ocked","Ġa qu","ĠVlad imir","Ġp ad","ĠBr ain","ĠLeg acy","dr agon","ĠKurd ish","Ġsound ed","Ġdet ained","ĠD M","g ary","Ġd aughters","Ġdistur bing","uk a","ĠPar ad","Ġt ast","Ġunf ortunate","Ġu l","em in","Ġattend ance","tr l","Ġpar ks","ĠMem orial","ĠAl ice","oth y","gu ard","ĠD ise","ĠSh an","ĠFor um","R ich","Ġshif ted","ue z","Ġl ighter","ĠMag n","Ġc od","S ch","ham mad","P ub","3 50","ĠP okemon","Ġprot otype","Ġun re","B ase","ĠStud ents","ĠRep ly","ĠCommun ist","Ġg au","ĠTy ler","I Z","Ġparticip ated","Ġsup rem","ĠDet ails","Ġvessel s","ro d","Ġt ribe","ke ep","Ġassum ptions","Ġp ound","Ġcr ude","ĠAv ailable","Ġswim ming","Ġin clusion","Ġadv ances","c ulation","Ġconserv ation","Ġover d","ĠBuff alo","Art icle","ed ge","Ġaw a","ĠMad ison","Ġsid ew","Ġcat ast","ĠK rist","uc le","ĠHigh way","ĠTer ror","Ġactiv ation","Ġuncons cious","ĠSat an","ĠSus an","ill ery","Ġarr anged","i op","Ġrum ors","ur ring","th ink","ĠKe ith","ĠK ind","Ġavoid ing","by n","n ut","ĠSpe aker","r us","n ames","Ġgu ilt","ĠOlymp ics","Ġsa il","ĠM es","lev ant","ĠColumb us","a ft","C ity","S outh","ĠHar vey","ĠP un","S everal","Ġment ally","Ġimp ress","m ount","ĠUb untu","âĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶ","ĠSuper man","ĠMP s","Ġintent ions","ĠR acing","Ġlike lihood","Ġ2 40","T otal","Ġto ys","ĠW atson","Ġur ge","L ear","ĠP aper","Ġoccur ring","ĠB eng","ĠC ert","Ġst ones","T im","ĠTw in","z b","ĠD ynam","Ġpolit ician","k ens","ĠEnter prise","UT ERS","Ġab ol","Ġref resh","Ġarbit rary","pe ction","Ġtrou bles","Ġ} );","t v","Ġpil ots","Ġdist ribute","Ġaud it","Ġp ause","orig inal","Ġr ivals"," £","F ig","T L","ab il","ry ing","L in","ion ed","l on","Ġf ancy","Ġcr ashed","Ġt ract","Ġshe d","Ġcons ume","B ased","down load","in it","Ġvolt age","Int rodu","Ġcondem ned","ĠFin ance","res pect","Ġex cluded","Ġestablish ing","her ic","Ġher itage","Ġspect acular","Ġun st","ĠSnow den","ĠL ane","S an","Ġprotect ions","st ruction","inc inn","Ġmac ro","C ustom","ios ity","Ġes p","Ġfunction ing","Ġm ush","Ġp uzzle","Ġeth ical","M al","Ġgo verning","ĠF erguson","Ġrest ored","Ġst ressed","ĠCoun ter","ĠK as","cl ip","AN S","Ġse iz","U K","by ss","old own","ap i","Ġperman ently","oun ters","W est","Th rough","L ight","at oes","Ġne at","Ġc ord","ure r","Ġsevere ly","ĠA ven","Ġinter rog","Ġtri ple","G iven","N umber","Ġar ise","Ġs her","pl ant","Ġfl ower","ĠC ou","Ġat e","Ġnew er","b ul","Ġmean while","ĠL air","Ġadjust ment","ĠCop yright","Ġd ivers","i ological","Ġgam ers","o at","Ġhistor ically","Ġanal og","Ġlong time","Ġpres cription","ĠM ist","ĠHy per","ĠM aine","ĠDe ity","Ġmulti pl","ĠRe incarn","ĠH yd","ĠP ic","S il","r ants","ĠC ris",". ;","( {","epend ence","Ġrec y","ate ur","Ġqu ad","Ġgl ob","Ġcon ced","te am","Ġcapital ist","ĠL ot","Ġroy al","ĠCy ber","Ġblack s","met ic","ri v","ĠD anny","Ġsp o","ĠR O","Ġanim ated","rypt ed","ĠDep uty","Ġrend ered","F E","Ġstre ak","Ġcloud s","ĠDou g","~~~~ ~~~~","Ġdisc our","ĠVe h","Ġpsych ology","ĠJ ourney","Ġcry stal","ĠFro st","Ġsuspic ion","Ġrel ate","or us","ĠC rypt","ĠN VIDIA","com ed","ut ing","incinn ati","Ġvulner ability","ost ic","Ġisol ation","Ġcool ing","ĠCoal ition","Ġ1 19","F our","ĠDe al","Ġâ ī","se mble","ram ent","ĠBar celona","Ġ10 2","Ġcoc aine","ocaly pse","F eb","ogen ic","Ġmut ation","Ġcrypt oc","ĠK el","ĠG it","a is","Ġs isters","AN K","Ġactiv ate","T er","Ġd read","yl on","Ġprop ri","A ust","ĠDef ault","Ġout door","Ġshe er","ce ive","Ġg ently","Ð ¾","Pro gram","Ġâ ĨĴ","Ġve gan","ĠCr us","Ġrespons ibilities","ĠH R","OL D","Ġprev ents","Ġst iff","ĠW ere","Ġathlet ic","ĠSc ore","Ġ) :","Ġcolumn s","ĠL oc","av ailable","ĠF ram","ĠS essions","Ġcompan ion","Ġpack s","14 0","ĠKn ights","Ġf art","Ġstream s","Ġsh ore","Ġapp eals","ĠPer formance","h aul","ĠSt ra","ĠN ag","10 3","ĠTrans portation","B B","E v","z an","P ublic","Ġtw in","uls ion","M ult","Ġelect ro","Ġstat ue","ation ally","ĠN ort","Ġins pection","/ *","ig ue","Ġcomp assion","ĠT ales","ĠSte in","ĠSc reen","ĠB ug","ĠL ion","g irl","Ġwithdraw al","Ġobject ives","Ġblood y","Ġprelim inary","Ġj acket","Ġdim ensions","ĠC ool","ĠOcc up","Ġw reck","Ġdoub led","ank ing","Ġ19 75","Ġglass es","ĠW ang","pro v","P ath","connect ed","ĠMult i","ĠNor way","agon ist","Ġfe ared","Ġtouch ing","Ġarg uably","¯¯¯¯ ¯¯¯¯","ĠNC AA","che m","Ġsp at","ĠW WE","ĠC el","ig ger","Ġattack er","ĠJo in","ob ject","ett a","Ġelim inated","d et","Ġdest ruct","ĠLuc as","ct uary","18 0","ĠBr ady","ĠBl ues","B ay","au kee","Ġtim eline","Ġdeleg ates","w ritten","uff icient","Ġsh apes","Cop yright","ou ble","serv ice","Ġp ione","Ġcolleg es","Ġrow s","Ġsp ite","Ġassess ed","3 60","Ġle ase","Ġconfident ial","ck er","ĠMan ning","ĠV oice","Ġse aled","Ġcalcul ate","N O","ĠAss istant","Ġteen ager","ul ent","ather ine","Ġm ock","Ġd iamond","Ġf est","Ġsw itched","Ġres ume","ĠPu erto","Ġl anes","ir ation","ĠSimilar ly","Ġro d","ĠS el","ĠPal ace","ĠLim ited","e ous","Ġvar iant","Ġw ard","Ġ) )","Sh ow","OO K","A lex","ĠN ep","br is","ĠWik ipedia","Ġexcept ional","Ġman ages","ĠD raw","Ag ain","Ġco pper","ut t","Ġex ports","Ġport folio","Ġelev ated","R ated","ĠOther wise","ĠT act","ĠShe l","ĠT X","\" âĢĶ","Ġres ur","ĠW a","ven ant","Ġmon etary","pe ople","E mail","Ġfif ty","ĠS weet","ĠMalays ia","Ġconf using","ĠR io","ud a","uten ant","\" );","Ġpra ised","Ġvol umes","t urn","Ġm ature","Ġnon profit","Ġpassion ate","ĠPriv ate","Ġ10 3","Ġdesc end","ç ¥ŀ","uff y","head ed","Whe ther","ri en","ze ch","be it","Ġch rom","ĠMc M","Ġd ancing","Ġe leg","ĠNot iced","11 5","Ġadvoc acy","ENT S","amb ling","ĠMin or","ĠF inn","Ġprior ities","Ġthere of","ĠSt age","ĠRog ers","Ġsubst itute","ĠJ ar","ĠJeff erson","Ġlight ly","10 2","ĠL isa","u its","ys ical","Ġshif ts","Ġd rones","Ġwork place","Ġres id","ens ed","ah n","Ġpref erences","ser ver","Ġdeb ates","d oc","ĠGod s","Ġhelicop ter","Ġhon our","Ġconsider ably","ed ed","ĠF emale","ĠAn ne","Ġre un","ĠF ace","ĠHall ow","ĠBud get","Ġcondem n","Ġt ender","Pro f","ocr atic","ĠTurn er","ĠAg ric","Ġ19 76","Ġa pt","d isc","ĠF ighter","ĠA ur","Ġgar bage","in put","ĠK arl","ĠOl iver","ĠL anguage","k n","N on","ĠCl ar","Ġtrad itions","Ġad vertisement","ĠS or","Ġarch ive","Ġvill ages","7 50","Ġimplement ing","w aukee","Ġdiet ary","Ġswitch ing","Rep ublic","Ġvel ocity","Ġc it","ĠA wards","Ġfin ancing","Ġlast ed",") ]","Ġrem inder","P erson","Ġprec ision","Ġdesign ers","ĠF ried","ĠB order","Ġtr agic","Ġw ield","Ġiniti atives","ĠT ank","w er","Ġjo ins","R o","in ery","Ġar row","Ġgener ating","found er","Ġsear ches","Ġrandom ly","A ccess","Ġb atch","Ġp osed","l at","Ġpursu ing","as a","Ġtest ified","form ing","ĠSh ar","w iki","ĠE ither","S ometimes","Ġsen ators","ĠJohn ny","ĠTal iban","ĠG PS","\":\" /","ãģ® å","Ġanaly zed","ĠRub io","ĠMove ment","op ard","ii i","St and","f ight","Ġign oring","i ang","ĠG N","so ever","ĠST AT","Ġref using","Ġswe at","Ġb ay","P ORT","ir med","ak y","Ġdis pro","Ġlabel ed","Ġ10 8","H ello","Ġple asant","ab a","Ġtri umph","Ġab oard","Ġinc om","ĠC row","le tt","Ġfol k","Ġch ase","` `","ĠBr us","Ġte ens","c ue","Ġter rain","h yd","il ight","OR Y","Su pport","ew s","ll i","rain ts","ĠC and","Ġab used","ach ment","l arg","B as","ĠC ancer","Ġ19 78","Ġsupp orter","ac cess","ĠTer min","ĠT ampa","ĠAN Y","Ġnew est","ĠCrim inal","ed u","Ġ19 30","Ġadm its","Ġend e","Ġfail ures","ur ate","ful ness","cy cl","ĠSub ject","Ġinf inite","th ree","W A","p it","ĠInst all","R ad","ili ation","G M","Ġcontin ent","Ġaccommod ate","ĠCl ay","Ġp up","ĠF unction","Ġham mer","ĠAlbert a","Ġrev ised","Ġminor ities","Ġmeasure ment","Con nell","Ġdis able","ĠM ix","In cre","Ġfor k","ĠR osen","Ġimpl ies","umb lr","AN G","Ġprote ins","Ġagg ression","Ġfacilit ate","S N","Ġilleg ally","u er","Ġacad em","Ġp uzz","ĠSh ift","p ay","oll o","Ġaud iences","B uild","Ġno ble","Ġsynt ax","â ĺħ","Ġbe am","ĠB ed","ĠA ld","Ġorig ins","v ideo","Ġ19 77","ĠAss ault","Ġgar age","Te am","Ġver dict","Ġd war","ĠVirt ual","e vent","Ke ep","Ġsent iment","Ġwild life","sh irt","Ġb urg","Ġrecommend ation","rep resent","Ġgall ery","own ers","Ġsch olar","Ġconven ience","ĠSw ift","Ġconv inc","C ap","Ġwar fare","ĠVis ual","Ġconst itute","Ġab ort","ĠWe ather","ĠLook ing","ĠH em","Ġmart ial","Ġinc oming","et ition","Ġtoler ance","ĠCre ated","Ġfl ows","ĠE lder","Ġsoul s","Ġf oul","ĠP ain","ĠC AN","Ġ2 20","b c","he nd","Ġgen ius","R eal","ĠW r","omet er","p ad","Ġlim iting","ĠS i","ĠL ore","ĠAd ventures","Ġvar ied","D isc","f in","ĠPerson al","Ch ris","Ġinv ented","Ġd ive","ĠR ise","Ġo z","ĠCom ics","Ġexp ose","ĠRe b","let ters","s ite","im ated","Ġh acking","Ġeduc ated","ĠNob ody","Ġdep ri","Ġincent ive","ãĤ ·","Ġovers ight","Ġtrib es","ĠBelg ium","Ġlicens ing","our t","Produ ct","ah l","ĠG em","Ġspecial ist","Ġc ra","ann ers","ĠCor byn","Ġ19 73","RE AD","Ġsum mar","Ġover look","ĠApp lication","Ġin appropriate","Ġdownload ed","Q ue","ĠB ears","Ġth umb","ĠChar acter","ĠReincarn ated","ĠS id","Ġdemonstr ates","s ky","ĠBloom berg","ĠAr ray","ĠRes ults","ĠFour th","ĠED T","ĠO scar","c end","Ġ10 6","ĠN ULL","ĠH ERE","m atch","ĠBr un","Ġgluc ose","ie g","eg u","Ġcert ified","Ġrel ie","Ġhuman itarian","Ġpr ayers","K ing","Ġn an","h ou","10 8","ul u","Ġrenew able","Ġdistingu ish","Ġd ense","ĠV ent","ĠPack age","ĠB oss","Ġedit ors","Ġm igr","T ra","ĠPet ers","ĠAr ctic","200 4","ĠC ape","Ġloc ally","Ġlast ing","Ġhand y",". ).","P an","ĠR ES","Ind ex","Ġt ensions","Ġformer ly","Ġide ological","Ġsens ors","Ġdeal ers","Ġdef ines","S k","Ġproceed s","Ġpro xy","az ines","ĠB ash","ĠP ad","ĠC raft","eal ous","Ġshe ets","omet ry","J une","cl ock","T T","ĠThe atre","ĠB uzz","Ġch apters","Ġmill enn","Ġd ough","ĠCongress ional","Ġimag ined","av ior","Ġclin ic","Ġ19 45","Ġhold er","ro ot","oles ter","Ġrest art","B N","ĠHam as","ĠJ ob","Ġor b","Ġr am","Ġdiscl ose","Ġtransl ate","Ġimm igrant","Ġannoy ing","Ġtreat y","an ium","ĠTe a","ĠLeg ion","Ġcrowd s","ĠB ec","ĠA er","oh yd","B ro","Look ing","Ġl bs","Ġagg ress","Ġse am","Ġinter cept","ĠM I","mer cial","act iv","ĠC it","Ġdim ension","Ġconsist ency","Ġr ushing","ĠDou glas","Ġtr im","Inst all","ick er","Ġsh y","10 6","Ġment ions","pe lled","ĠT ak","c ost","Ġclass room","Ġfort une","dri ven","Ġun le","ĠWhe el","Ġinvest or","ĠM asters","k it","Ġassoci ations","ĠEv olution","op ing","us cript","Ġprov incial","ĠWal ter","av i","S O","Ġun limited","Eng lish","ĠC ards","ĠEb ola","ne red","Ġreven ge","Ġout right","um per","Ġf itting","ĠSol id","Ġform ally","Ġproblem atic","Ġhaz ard","Ġenc ryption","Ġstraight forward","ĠA K","Ġp se","ĠOr b","ĠCh amber","ĠM ak","Cont ents","Ġloyal ty","Ġl yrics","ĠSy m","Ġwel comed","Ġcook ed","Ġmon op","Ġn urse","Ġmis leading","Ġe ternal","Ġshif ting","Ġ+ =","V is","Ġinst itutional","ill ary","Ġp ant","VER T","ĠA CC","ĠEn h","Ġinc on","ĠRE UTERS","Ġdon ated","â̦â̦ â̦â̦","In tern","Ġexhib it","Ġt ire","ĠR ic","ĠCh ampion","ĠMu hammad","N ING","ĠSoc cer","Ġmob ility","Ġvary ing","ĠM ovie","Ġl ord","o ak","F ield","Ġve ctor","us ions","Ġsc rap","Ġen abling","m ake","T or",". *","| |","ĠWe bsite","ĠN PC","Ġsocial ist","ĠBill y","ĠAdd itional","Ġc argo","Ġfar ms","ĠSo on","ĠPri ze","Ġmid night","Ġ9 00","se en","ĠSp ot","Ġshe ep","Ġspons ored","ĠH i","ĠJ ump","Ġ19 67","Micro soft","ĠAg ent","Ġch arts","d ir","Ġadj acent","Ġtr icks","Ġman ga","Ġex agger","/ >","foot ball","ĠF CC","G C","ĠT ier","and ra","OU ND","% ),","Ġfru its","V C","ĠA A","R ober","Ġmid st","â Ĺ","ank a","Ġlegisl ature","ĠNe il","Ġtour ists","\" \"","ĠWar ning","ĠNever theless","ĠOffic ial","ĠWh atever","Ġm old","Ġdraft ed","Ġsubst ances","Ġbre ed","Ġt ags","ĠT ask","Ġver b","Ġmanufact ured","com ments","ĠPol ish","Pro v","Ġdetermin es","Ob ama","k ers","Ġutter ly","Ġse ct","sc he","ĠG ates","ĠCh ap","Ġal uminum","Ġz ombie","ĠT ouch","ĠU P","Ġsatisf y","Ġpred omin","asc ript","Ġelabor ate","Ġ19 68","Ġmeas uring","ĠV ari","any ahu","Ġs ir","ul ates","id ges","ick ets","ĠSp encer","T M","oub ted","Ġpre y","Ġinstall ing","ĠC ab","re ed","re ated","Su pp","Ġwr ist","ĠK erry","10 7","ĠK le","ĠR achel","Ġc otton","ĠA RE","ĠE le","Cont rol","Ġload s","ĠD od","an as","b one","Ġclass ical","ĠReg ional","ĠInt eg","V M","Ġdes ires","Ġaut ism","support ed","ĠM essage","Ġcomp act","writ er","Ġ10 9","ĠHur ricane","c ision","Ġcy cles","Ġdr ill","Ġcolle ague","Ġm aker","G erman","Ġmist aken","S un","ĠG ay","Ġwhat soever","Ġsell s","ĠA irl","l iv","ĠO ption","Ġsol ved","Ġse ctors","Ġhorizont al","Ġequ ation","ĠSk ill","ĠB io","g ement","ĠSn ap","ĠLeg al","Ġtradem ark","Ġmake up","Ġassemb led","Ġsa ves","ĠHallow een","ĠVer mont","ĠFR OM","Ġfar ming","ĠP odcast","accept able","ĠHig her","Ġas leep","ull ivan","Ġrefere n","ĠLe v","Ġbul lets","ok o","H C","Ġst airs","Ġmain tains","ĠL ower","ĠV i","Ġmar ine","Ġac res","Ġcoordin ator","ĠJ oh","Ġcounterpart s","ĠBrother s","Ġind ict","b ra","Ġch unk","Ġc ents","H ome","ĠMon th","Ġaccording ly","if les","ĠGerm ans","ĠSy n","H ub","Ġey eb","âĶĢâĶĢ âĶĢâĶĢ","Ġr anges","ĠHoll and","ĠRob ot","f c","M ike","Ġpl asma","Ġsw ap","Ġath lete","ĠR ams",",' \"","Ġinfect ions","Ġcor rid","Ġv ib","Ġpat ches","Ġtradition ally","Ġrevel ation","Ġswe ep","Ġgl ance","Ġin ex","200 3","ĠR aw","work ing","os ures","ĠD at","ĠLyn ch","Ġle verage","ĠRe id","Ġcorrel ation","ian ces","av ascript","Ġrep ository","ret ty","Ġ19 72","24 0","Ġo un","p ol","ĠRe ed","Ġtact ical","is ite","App le","ĠQu inn","Ġrap ed","ill o","Euro pe","Ġalgorith ms","ĠRod rig","i u","Ġill um","Ġf ame","Ġintrodu cing","Ġdel ays","ĠRaid ers","Ġwh istle","Ġnovel s","ĠRe ally","Ġder iv","Ġpublic ations","ĠNe ither","ĠCom merce","Ġa ston","l anguage","Not es","ĠR oth","ĠF ear","Ġm ate","Ġpar ade","ĠQ B","Ġman eu","ĠC incinnati","m itting","Ġwa ist","ĠR ew","Ġdisc ont","Ð °","Ġst aring","Ġal ias","Ġsec urities","Ġtoile t","ĠJ edi","Ġun law","v ised","//// ////","] (","ĠWe iss","Ġpre st","ĠComp an","Ġmem o","ĠGr ace","J uly","ĠEl ite","cent er","ĠSt ay","Ġgal axy","Ġto oth","ĠS ettings","Ġsubject ed","ãĤ ¦","Ġline back","Ġretail ers","ĠW ant","Ġd angers","A ir","Ġvolunt ary","ew ay","Ġinterpret ed","ot ine","à §","Ġp el","Serv ice","ĠEvent ually","Ġcare ers","Ġthreat en","Ġmem or","ĠBrad ley","anc ies","s n","ĠUn known","N ational","Ġsh adows","ail and","ĠD ash","Every one","izz ard","M arch","= (","Ġpull s","Ġstr anger","Ġback wards","ĠBern ard","imens ional","Ġch ron","Ġtheoret ical","k top","Ġw are","ĠInvest ig","ĠIn iti","ĠOper ations","o ven","oc ide","* /","Ġfl ames","ĠC ash","sh it","Ġc ab","ĠAn aly","ĠSe ah","Ġdefin ing","Ġorder ing","Ġimm un","Ġpers istent","AC H","Russ ian","m ans","Ġh ind","Ġphot ography"," ©","Ġh ug","Ġ10 7","ĠH ence","i ots","ude au","Ġsubsid ies","Ġroutine ly","ĠDev ice","it ic","Ġdisg ust","land er","Ġ19 40","Ġassign ment","ĠB esides","w ick","ĠD ust","us c","struct ed","11 1","de velop","Ġf ond","Ġinter section","Ġdign ity","Ġcommission er","With out","re ach","Ġcart oon","Ġsc ales","ãĥ Ń","F IG","Ġsurve ys","ĠIndones ia","Ġart work","Ġun ch","Ġcy cling","un ct","au er","or ate","ĠOb viously","Ġcharacter ized","fe ld","Ġaff irm","Ġinn ings","Ġ é","Ġal iens","Ġcl oth","et ooth","ĠC ertain"," §","Ġdig est","k now","ĠX L","Ġpredict ions","Ġd in","W AR","Ġafter math","Ex ample","ĠSu ccess","ĠTh r","IG N","Ġmin er","B us","Ġcl arity","heim er","ĠO UT","ĠS end","ĠCirc le","ĠD iet","Ġpron ounced","Ġcreat ors","Ġearthqu ake","atter y","ge ons","Ġo d","Ġlay ing","or p","U lt","pro ject","Ġunder min","Ġsequ el","S am","ĠDark ness","Ġre ception","b ull","Y S","ĠV ir","Ġsequ ences","ĠCo in","Ġout fit","ĠW ait","1 19","Ġdel ivers",".... ..","Ġbl own","ĠE sc","ĠM ath","per m","ĠU l","Ġgl im","Ġfac ial","Ġgreen house","Ġto kens","/ -","ĠAnn ual","ĠON E","Ġteen age","ĠPhys ical","ĠL ang","ĠC elt","Ġsu ed","ivid ually","Ġpat ience","ch air","reg ular","Ġa ug","in v","ex cept","ĠL il","Ġn est","f d","s um","ĠCh ase","Russ ia","ĠJenn ifer","Ġoff season","Over all","F ore","Ġr iot","A ud","form er","Ġdefend ers","ĠC T","iot ic","rib ly","Ġautom ated","Ġpen is","Ġins ist","Ġdi agram","ĠS QL","ĠG arc","Ġw itch","cl ient","ier ra","am bers","Ġrec ount","f ar","V ery","oster one","Ġappreci ated","ĠPer fect","S ection","Ġd oses","oca ust","Ġcost ly","Ġg rams","ĠSh i","Ġwrest ling","Ġ19 71","Ġtro phy","Ġn erve","ĠK az","ĠExper ience","Ġpled ged","Ġplay back","Ġcreat ivity","by e","Ġattack ers","Ġhold ers","ĠCo ach","ĠPh D","Ġtransf ers","Ġcol ored","ĠH indu","Ġd rown","Ġlist ened","ĠW A","ias m","P O","Ġappeal ing","Ġdiscl osed","ĠCh icken","ag ging","Ġple aded","Ġnav igation","ĠReturn s","Ġ[ [","R OR","E A","Ġphotograp her","ĠR ider","ipp ers","Ġsl ice","Ġe rect","Ġhe d","iss ance","ĠVik ings","ur ious","Ġapp et","oubted ly","Ch ild","Ġauthent ic","o os","ĠM aking","Ġannoun cing","Ġb od","Ġmet er","ĠN ine","ĠR ogue","Ġwork force","Ġrenew ed","Ġorganis ations","ac s","P LE","Sh ort","Ġcomp ounds","ĠVis it","Ġen velop","ear th","Ġsupport ive","gg le","ĠBrus sels","ĠGu ild","Cre ate","RE L","Ġaver aged","Ġ19 69","ri ages","Ġlength y","Ġforg ot","O kay","ĠE rd","Ġdeal er","Ġrec ession","D D","Ġdesper ately","Ġhun ger","Ġst icks","Ġm ph","ĠF aith","Ġintention ally","Ġdem ol","ue ller","ĠS ale","Ġde bris","s pring","Ġle ap",">> >>","Ġcontain ers","se lling","rane an","atter ing","Ġcomment ed","ĠC M","on ut","Ġwood s","es pecially","Ġorgan ize","iv ic","ĠWood s","ang a","s qu","Ġm aj","am on","Ġax is","Ġ19 74","ĠDen mark","Ġwar rior","ĠP and","Ġout lined","ĠB O","ins ula","z illa","eb ook","Ġd are","Ġsear ched","Ġnav igate","S n","writ ing","Ġun ited","J apan","ĠHe brew","Ġfl ame","Ġrel ies","Ġcatch ing","ĠSh o","Ġimprison ment","Ġp ockets","Ġclos ure","ĠF am","t im","ade qu","Act ivity","Ġrecru iting","ĠW ATCH","ĠArgent ina","d est","Ġapolog ize","or o","Ġlack s","Ġtun ed","ĠGriff in","Ġinf amous","Ġcelebr ity","ss on","Ġ ----------------------------------------------------------------","ĠIs is","ĠDis play","Ġcred ibility","Ġeconom ies","Ġhead line","ĠCow boys","Ġind ef","Ġl ately","Ġincent ives","but ton","ĠM ob","A ut","Ġres igned","ĠO m","c amp","Ġprof iles","Ġsche mes","olph ins","ay ed","Cl inton","en h","ĠY ahoo","Ġab st","Ġan k","su its","Ġw ished","ĠMar co","udd en","Ġsp here","ĠB ishop","Ġincorpor ated","ĠPl ant","11 4","Ġh ated","p ic","Ġdon ate","Ġl ined","Ġbe ans","Ġsteal ing","Ġcost ume","Ġsher iff","Ġfor ty","Ġint act","Ġadapt ed","Ġtrave lling","b art","Ġnice ly","Ġdri ed","Ġsc al","os ity","NOT E","ĠB h","ĠBron cos","ĠI gn","Ġint imate","Ġchem istry","Ġopt imal","D eb","ĠGener ation","Ġ] ,","ich i","ĠW ii","ĠYOU R","vent ions","W rite","Ġpop ul","un ning","ĠW or","V ol","Ġqu een","head s","K K","Ġanaly ze","op ic","ear chers","Ġd ot","leg raph","ast ically","Ġupgr ades","Ġca res","Ġext ending","Ġfree ze","Ġin ability","Ġorg ans","Ġpret end","Ġout let","11 3","ol an","ĠM all","ul ing","t alk","Ġexpress ing","ĠAl ways","ĠBe gin","f iles","Ġlic enses","% %","ĠM itt","Ġfil ters","ĠMil waukee","G N","Ġunf old","M o","Ġnut rition","pp o","B o","Ġfound ing","Ġunder mine","Ġeas iest","ĠC zech","ĠM ack","Ġsexual ity","ĠN ixon","W in","ĠAr n","ĠK in","ãĤ £","ic er","Ġfort un","Ġsurf aces","agh d","Ġcar riers","ĠP ART","ĠT ib","Ġinter val","Ġfrust rating","ĠSh ip","ĠAr med","ff e","Ġbo ats","ĠAb raham","in is","Ġsu ited","th read","i ov","ab ul","ĠVenezuel a","Ġto m","su per","Ġcast le","alth ough","iox ide","ec hes","Ġevolution ary","Ġnegoti ate","Ġconfront ed","Rem ember","Ġ17 0","S uch","Ġ9 11","m ult","ĠA byss","ur ry","ke es","spe c","ĠBarb ara","Ġbelong ing","Ġvill ain","ist ani","Ġaccount able","Ġport ions","ĠDe cl","U r","ĠK ate","g re","Ġmag azines","UC K","Ġregul ate","om on","ĠAl most","Ġover view","Ġsc ram","Ġl oot","ĠF itz","Ġcharacter istic","ĠSn ake","s ay","ĠR ico","Ġtra it","ĠJo ined","au cus","Ġadapt ation","ĠAirl ines","Ġarch ae","ĠI de","Ġb ikes","Ġliter ary","Ġinflu ences","ĠUs ed","C reat","Ġple a","ĠDef ence","ĠAss ass","Ġp ond","UL T",") \"","Ġeval uated","Ġob taining","Ġdem ographic","Ġvig il","ale y","Ġsp ouse","ĠSeah awks","resp ons","ĠB elt","um atic","Ġr ises","run ner","ĠMichel le","Ġpot ent","r ace","ĠP AC","F ind","olester ol","IS S","ĠIntrodu ced","ress es","ign ment","O s","ĠT u","ĠDe x","ic ides","Ġspark ed","ĠLaur a","ĠBry ant","Ġsm iling","ĠNex us","Ġdefend ants","ĠCat al","Ġdis hes","sh aped","Ġpro long","m t","( $","ãĢ Ĥ","Ġcalcul ations","ĠS ame","Ġp iv","H H","Ġcance lled","Ġgr in","Ġterrit ories","ist ically","C ome","ĠP arent","Pro ject","Ġneg lig","ĠPriv acy","Ġam mo","LE CT","olute ly","ĠEp ic","Ġmis under","w al","Apr il","m os","path y","ĠC arson","Ġalbum s","ĠE asy","Ġpist ol","< <","Ġ\\ (","t arget","hel p","Ġinter pre","cons cious","ĠH ousing","ĠJ oint","12 7","Ġbe ers","s cience","ĠFire fox","effect ive","ĠC abin","ĠO kay","ĠApp lic","Ġspace craft","ĠS R","ve t","ĠStr ange","S B","Ġcor ps","iber al","e fficient","Ġpreval ence","Ġeconom ists","11 8","Th read","ord able","OD E","ĠC ant","=- =-","if iable","ĠA round","Ġpo le","Ġwilling ness","CL A","ĠK id","Ġcomple ment","Ġsc attered","Ġin mates","Ġble eding","e very","Ġque ue","ĠTr ain","Ġh ij","Ġme lee","ple ted","Ġdig it","Ġg em","offic ial","Ġlif ting","Ð µ","Re qu","it utes","Ġpack aging","ĠWork ers","h ran","ĠLeban on","ol esc","Ġpun ished","ĠJ uan","Ġj am","ĠD ocument","Ġm apping","ic ates","Ġinev itably","Ġvan illa","ĠT on","Ġwat ches","Ġle agues","Ġiniti ated","deg ree","port ion","Ġrec alls","Ġru in","Ġm elt","I AN","Ġhe m","Ex p","Ġb aking","ĠCol omb","at ible","Ġrad ius","pl ug","ĠI F","et ically","Ġf ict","H ER","ĠT ap","atin um","Ġin k","Ġco h","ĠW izard","b oth","te x","Ġsp ends","ĠCurrent ly","ĠP it","Ġneur ons","ig nt","Ġr all","Ġbus es","b uilding","Ġadjust ments","Ġc ried","ibl ical","att ed","ĠZ ion","ĠM atter","Ġmed itation","ĠD ennis","Ġour s","ĠT ab","Ġrank ings","ort al","Ġad vers","Ġsur render","ĠG ob","ci um","om as","im eter","Ġmulti player","Ġhero in","Ġoptim istic","Ġindic ator","ĠBr ig","Ġgro cery","Ġapplic ant","ĠRock et","v id","Ex ception","p ent","Ġorgan izing","Ġenc ounters","ĠT OD","Ġjew el","S ave","ĠChrist ie","Ġhe ating","Ġl azy","ĠC P","Ġcous in","Con fig","Ġreg ener","Ġne arest","Ġachie ving","EN S","th row","ĠRich mond","ant le","200 2","Ġan ten","b ird","13 3","Ġn arc","r aint","un ny","ĠHispan ic","ourn aments","Ġprop he","ĠTh ailand","ĠT i","Ġinject ion","Ġinher it","rav is","Ġmed i","Ġwho ever","ĠDE BUG","G P","ĠH ud","C ard","p rom","Ġp or","Ġover head","L aw","Ġviol ate","Ġhe ated","Ġdescript ions","Ġachieve ments","ĠBe er","ĠQu ant","W as","Ġe ighth","ĠI v","Ġspecial ized","U PDATE","ĠD elta","P op","J ul","ĠAs k","oph y","Ġnews letters","ĠT ool","Ġg ard","ĠConf eder","ĠGM T","ĠAb bott","Ġimm unity","ĠV M","Is lam","Ġimpl icit","w d","Ġ19 44","rav ity","omet ric","Ġsurv iving","ur ai","ĠPr ison","Ġr ust","ĠSk etch","Ġbe es","ĠThe ory","Ġmer it","T ex","ch at","Ġm im","Ġpast e","ĠK och","Ġignor ance","ĠSh oot","Ġbas ement","Un ited","ĠAd vis","he ight","Ġf oster","Ġdet ain","in formation","Ġne ural","' ;","Ġprov es","all ery","Ġinv itation","um bers","Ġc attle","Ġbicy cle","z i","Ġconsult ant","Ġap ology","ĠT iger","Ġ12 3","99 9","Ġind ividually","r t","ig ion","ĠBrazil ian","Ġdist urb","Ġentreprene urs","Ġfore sts","cer pt","pl ates","p her","clip se","Ġtw itter","Ġac ids","ograph ical","h um","ĠB ald","if ully","Ġcomp iler","ĠD A","Ġdon or","as i","Ġtrib al","l ash","ĠCon fig","Ġapplic ants","Ġsal aries","13 5","Put in","ĠF ocus","ir s","Ġmisc onduct","ĠH az","Ġeat en","M obile","Mus lim","ĠMar cus","v iol","Ġfavor able","Ġst ub","ad in","ĠH ob","Ġfaith ful","Ġelectron ics","Ġvac uum","w ait","back ed","econom ic","d ist","Ġten ure","Ġsince re","ĠT ogether","ĠW ave","Ġprog ression","Ġden ying","Ġdist ress","br aska","th ird","Ġmix ing","Ġcolon ial","Ġpriv ately","Ġun rest","atern ity","Ġprem ises","ant i","greg ation","Ġlic ence","ĠH ind","ĠSam uel","Ġconvinc ing","ĠA ce","ĠR ust","ĠNet anyahu","Ġhand les","ĠP atch","orient ed","ah o","ĠG onz","Ġhack ers","claim er","Ġcustom s","ĠGr an","f ighters","Ġl uc","Ġman uscript","aren thood","Ġdev il","Ġwar riors","Ġoff enders","Will iam","Ġhol idays","Ġnight mare","Ġle ver","iff erent","St at","Ġexhib ition","put ed","ĠP ure","Ġal pha","Ġenthus iasm","ĠRepresent atives","E AR","ĠT yp","Ġwhe at","ĠAl f","Ġcor rection","Ġev angel","AT T","M iss","Ġs oup","Ġimpl ied","par am","Ġsex y","ĠL ux","Ġrep ublic","p atch","ab lish","Ġic ons","Ġfather s","ĠG ET","ĠCar ib","Ġregul ated","ĠCo hen","ĠBob by","Ġn er","Ġb ent","vent ory","ĠAl ong","ĠE ST","ĠWall ace","Ġmurd ers","r ise","ke ll","ĠCommon wealth","Ġn asty","et a","ĠM IT","Ġadminist ered","Ġgenuine ly","Ed itor","n ick","Ġhyd ro","**************** ****************","ĠB le","Ġfin es","Ġg orge","aus ible","r h","Ġapp le","ment ioned","Ġro pe","ot yp","H R","Ġdisappoint ing","Ġc age","n ik","Ġdoub ts","ĠF REE","print s","ĠM UST","Ġvend ors","ĠIn qu","Ġliber als","Ġcontract or","Ġup side","child ren","Ġtrick y","Ġregul ators","charg ed","l iter","Ġ ***","Ġreb ell","l ang","Ġloc als","Ġphys icians","Ġhe y","ar se","t m","ĠLe x","Ġbehavior al","success ful","F X","Ġbr ick","ov ic","Ġcon form","Ġreview ing","Ġins ights","Ġbi ology","ĠRem ove","ĠExt ra","Ġcomm itting","indu ced","ignt y","ig m","Ġat omic","Comm on","ĠE M","ĠP ere","ĠIt ems","e h","Ġpres erved","ĠH ood","Ġprison er","Ġbankrupt cy","Ġg ren","us hes","Ġexplo itation","Ġsign atures","Ġfin an","] ,\"","ĠM R","Ġme g","rem lin","Ġmusic ians","Ġselect ing","Ġexam ining","IN K","l ated","H i","Ġart ic","Ġp ets","Ġimp air","ĠM AN","Ġtable ts","in clude","R ange","Ġca ut","Ġlog s","Ġmount ing","Ġun aware","Ġdynam ics","ĠPalest ine","ĠQu arter","ĠPur ple","Ġm a","ĠIm port","Ġcollect ions","ci ation","Ġsuccess or","Ġcl one","Ġaim ing","Ġposs essed","Ġstick ing","Ġsh aking","Ġloc ate","ĠH ockey","T urn","17 0","Ġfif teen","ĠHar rison","Ġcontinu ously","ĠT C","ĠVal ent","ĠRes cue","Ġby pass","am ount","Ġm ast","Ġprotect s","Ġart istic","Ġsomet ime","Ġsh oe","Ġshout ed","ific ant","et itive","ĠReg ister","ĠJ in","Ġconcent rated","ling ton","on ies","Ġgener ator","yr im","ĠAr men","Ġclear ing","id o","ĠT W","al ph","Ġlad ies","H ard","Ġdial og","Ġinput s","æ ľ","Ġpos es","Ġsl ots","ĠPrem ium","Ġle aks","Ġboss es","Ġ11 3","c ourse","A cc","ĠNew ton","ĠAust ria","ĠM age","Ġte aches","ab ad","Ġwe ars","Ġc yl","Ġcur se","ĠS ales","ĠW ings","Ġp sy","Ġg aps","ĠIce land","ĠP interest","Ġland lord","Ġdefin itions","ĠK er","Ġsufficient ly","ĠP ence","ĠArch itect","Ġsur pass","Ġ11 4","Ġsuper hero","ĠDise ase","Ġpri ests","ĠC ulture","Ġdefin itive","Ġsecret ly","ĠD ance","inst all","ch ief","ĠJess ica","W ould","Up dated","Ġlock er","ĠK ay","Ġmem orial","è ¦","f at","Ġdis gu","Ġflav ors","ĠBase ball","ĠRes istance","Ġk icks","Ġen v","Ġteen agers","D ark","ĠC AR","Ġh alt","ĠL G","ĠGab riel","Ġfe ver","Ġs atur","Ġm all","Ġaffili ate","ĠS leep","ĠSpe cific","ĠV el","Ġj ar","ĠSac red","ĠEd wards","ĠA CL","Ġret ained","ĠG iant","Ġlim itation","in ces","Ġref usal","ĠT ale","ĠBut ler","Ġacc idents","ĠC SS","Ġimport ed","ĠCop y","Î ±","ER T","z el","Ġdiv isions","h ots","ĠAl b","ĠD S","Load er","W ashington","at isf","ĠCreat ive","\\ .","ĠAut om","red ict","Ġrecept or","ĠCarl os","Met hod","ok a","Ġmal icious","Ġste pping",", [","ĠD ad","Ġatt raction","ĠEffect s","ĠPir ate","ĠC er","ĠIndust ry","ĠR ud","Ġchar ter","Ġd ining","Ġins ists","Ġconfig ure","Ġ( #","ĠSim ple","ĠSc roll","UT C","17 5","ĠK on","Ġmarket place","Ġ ãĤ","Ġref res","Ġg ates","er red","ĠP od","Ġbeh ave","Fr ank","n ode","Ġendors ed","he tt","as ive","ĠHom eland","Ġr ides","ĠLe ave","er ness","Ġflood ing","A FP","Ġris en","Ġcontin ually","Ġun anim","ĠCont ract","ĠP as","Ġgu ided","ĠCh ile","b d","Ġsu cc","pt ic","Ġcomm ittees","ĠL uther","ĠAny one","Ġs ab","12 4","Ġp ixel","ĠB ak","ĠT ag","ĠBenn ett","En ter","sm all","ĠPresident ial","Ġp ul","Ġcontr ace","arch ive","Ġcoast al","ĠK ids","19 2","âĢ ²","ick y","ING TON","Ġw olf","ĠSt alin","T ur","id get","am as","ĠUn less","Ġspons or","Ġmor ph","ĠCho ose","Ġrun ner","Ġun bel","Ġm ud","ĠMan a","Ġdub bed","Ġg odd","ure rs","wind ow","Ġrel ied","Ġcelebr ating","os c","Ġ13 5","Ġlobb ying","Ġincom plete","Ġrestrict ion","Ġinc ap","it us","Ġexpect ation","ĠAp ollo","Ġint ens","Ġsyn c","G H","Ġmanip ulation","B Y","Ġspe ar","Ġbre asts","Ġvol can","il ia","M aterial","Ġform ats","ĠB ast","Ġparliament ary","Ġsn ake","Ġserv ants","ĠTr udeau","ĠGr im","ĠArab ic","ĠSC P","ĠBoy s","st ation","Ġprospect ive","ord e","in itialized","Ġb ored","AB LE","Ġaccess ed","Ġtax i","ĠShe ll","aid en","urs ed","in ates","ĠIns urance","ĠPet e","Sept ember","6 50","Ġad ventures","ĠCo ver","Ġt ribute","Ġsk etch","Ġem power","Ġ Ø","ĠGl enn","ĠD aw","= \\\"","ĠPolit ics","Ġgu ides","Ġd ioxide","ĠG ore","ĠBr ight","ĠS ierra","Ġval ued","c ond","Ġpo inter","Se lect","Ġrisk y","Ġabsor b","im ages","Ġref uses","Ġbon uses","__ _","Ġh ilar","ĠF eatures","2 20","ĠCollect or","F oot","Ġ19 64","cul us","Ġd awn","Ġwork out","ĠL O","Ġphilosoph ical","ĠSand y","ĠYou th","Ġl iable","A f","bl ue","Ġovert urn","less ness","ĠTrib une","ĠIn g","Ġfact ories","Ġcat ches","Ġpr one","Ġmat rix","Ġlog in","Ġin acc","Ġex ert","s ys","Ġneed le","ĠQ ur","Ġnot ified","ould er","t x","Ġremind s","Ġpublisher s","Ġn ort","Ġg it","Ġfl ies","ĠEm ily","Ġflow ing","ĠAl ien","ĠStr ateg","Ġhard est","Ġmod ification","AP I","ĠM Y","Ġcr ashes","st airs","n umber","Ġur ging","ch annel","ĠFal con","Ġinhabit ants","Ġterr ifying","Ġutil ize","Ġban ner","Ġcig arettes","Ġsens es","ĠHol mes","Ġpract ition","ĠPhill ips","ott o","Ġcomp ile","Mod el","ĠK o","Ġ[ ]","Americ ans","ĠTer ms","Ġmed ications","ĠAn a","Ġfundament ally","ĠNot ice","Ġwe aker","Ġ 0000","Ġgar lic","Ġout break","Ġeconom ist","ĠB irth","Ġobst acles","ar cer","ĠOr thodox","Ġplace bo","ĠC rew","asp berry","ĠAng els","Ġdis charge","Ġdestruct ive","11 7","ĠR ising","Ġd airy","l ate","Ġcoll ision","ĠTig ers","ean or","ocument ed","ĠIn valid","Ġd ont","ĠL iter","ĠV a","Ġhyd rogen","Ġvari ants","ĠBrown s","Ġ19 65","Ġind igenous","Ġtrad es","Ġremain der","Ġswe pt","ĠImp act","Ġred ist","Ġun int","grad uate","ãĥ ķ","ĠW ILL","ãģ® ç","ĠCrit ical","Ġf isher","Ġv icious","Ġrevers ed","Y ear","ĠS ox","Ġshoot ings","Ġfil ming","Ġtouchdown s","ai res","m el","Ġgrand father","Ġaffect ion","ing le","Ġover ly","Add itional","Ġsup reme","ĠGr ad","Ġsport ing","Ġmer cy","ĠBrook s","ount y","Ġperform s","Ġtight ly","Ġdem ons","Ġkill ings","Ġfact ion","ĠNov a","aut s","Ġund oubtedly","ar in","Ġunder way","ra k","Ġl iv","ĠReg ion","Ġbrief ing","s ers","cl oud","ĠM ik","us p","Ġpred iction","az or","Ġport able","ĠG and","Ġpresent ing","Ġ10 80"," »","ush i","ĠSp ark","there um","Ġjust ification","ĠN y","Ġcontract ors","ming ham","ĠSt yle","å ħ","ĠChron icles","ĠPict ure","Ġprov ing","Ġw ives","set t","Ġmole cules","ĠFair y","Ġconsist ing","Ġp ier","al one","in ition","Ġn ucle","j son","Ġg otta","Ġmob il","Ġver bal","ar ium","Ġmon ument","uck ed","Ġ25 6","T ech","mine craft","ĠTr ack","Ġt ile","Ġcompat ibility","as is","Ġs add","Ġinstruct ed","ĠM ueller","Ġle thal","Ġhorm one","Ġor che","el se","Ġske let","Ġentert aining","Ġminim ize","ag ain","Ġunder go","Ġconst raints","Ġcig arette","ĠIslam ist","Ġtravel s","ĠPant hers","l ings","C are","Ġlaw suits","ur as","Ġcry st","Ġlow ered","Ġaer ial","Ġcomb inations","Ġha un","Ġch a","Ġv ine","Ġquant ities","Ġlink ing","b ank","Ġso y","B ill","ĠAngel a","Ġrecip ient","ĠProt est","Ġs ocket","Ġsolid arity","Ġâ Ĩ","m ill","Ġvar ies","ĠPak istani","Dr agon","Ġun e","Ġhor izon","³³³³ ³³³³","Ġprov inces","Ġfrank ly","Ġenact ed","not es","[ '","Ġ19 2","ocr acy","Ġendorse ment","Ġover time","Tr ue","L ab","lic ted","ĠD NC","Ġbe ats","ĠJam ie","15 2","ĠIN T","Cont act","Ġaccount ed","h ash","ĠPack ers","p ires","Ġles bian","Ġamend ments","Ġhop eful","ĠFin land","Ġspot light","Ġconfig ured","Ġtrou bled","Ġg aze","ĠCal gary","Ġrel iability","Ġins urg","sw er","b uy","ĠSk in","Ġp ixels","Ġhand gun","Ġpar as","Ġcateg or","ĠE L","ĠRe x","Ind eed","Ġkind a","Ġconj unction","ĠBry an","ĠMan ufact","y ang","Pl us","S QL","ish ment","Ġdom inate","Ġn ail","Ġo ath","Ġeru pt","ĠF ine","it bart","ĠCh ip","ĠAb d","ĠN am","Ġbuy er","Ġdiss ent","Le aks","Cont in","Ġr ider","ĠSome one","Ġill usion","c in","ĠBoe ing","Ġin adequ","ov ation","i ants","Ġreb uild","4 50","ĠDest iny","S W","ĠT ill","H it","ia z","ĠBang l","acher s","ĠRe form","Ġse gments","Ġsystem atic","d c","ĠConserv atives","Ġport al","h or","ĠDragon bound","Ġdrag ged","om o","Ġthe e","ad vert","ĠRep orts","ĠE t","Ġbarrel s","Aug ust","Ġcompar isons","Ġhe x","Ġan throp","\" [","bor ough","ab i","Ġpict ured","play ing","ĠAdd ress","ĠMir ror","Sm ith","Ġt ires","ĠN PR","AA AA","Ġclass ification","ĠTh an","ĠH arm","ĠR A","Ġreject ion","min ation","Ġr anged","ĠF alls","D I","H ost","ãĤ ´","ĠEx ample","list ed","th irds","Ġsaf egu","br and","Ġprob able","Can ada","IT ION","ĠQ aeda","Ġch ick","Ġimport s","h it","l oc","W W","Ġble w","Ġany time","Ġwh oles","ik ed","Ġcal culation","cre ate","ĠO ri","Ġupgr aded","Ġapp ar","ut ory","ĠM ol","B rit","ĠJ ong","IN AL","ĠStart ing","Ġd ice","urt le","Ġre lying","cl osure","Ġprof itable","Ġsl aughter","ĠMan ual","c aster","Ġ\" $","Ġfe ather","ĠSim ply","ie ves","Ġdeter ior","ĠPC I","Ġst amp","Ġfl aws","Ġsh ade","ham mer","Ġpass port","Ġcont ing","am el","Ġobser vers","Ġneg lect","ĠR B","ĠBrother hood","Ġskept ical","f amily","us k","Ġemotion ally","â Ļ","ĠBet a","ason able","id ity","ĠM ul","Ġkick ing","ĠC arm","oll ah","VERT IS","ĠAt hen","Ġlad der","ĠBul let","å £","00 01","ĠWild life","ĠM ask","ĠN an","R ev","Ġun acceptable","leg al","Ġcrowd ed","ag i","ĠC ox","j e","Ġmor ality","Ġfu els","Ġc ables","Ġman kind","ĠCarib bean","Ġanch or","Ġby te","ĠO ften","ĠO z","Ġcraft ed","Ġhistor ian","ĠW u","Ġtow ers","ĠCitiz ens","Ġhel m","Ġcred entials","Ġsing ular","ĠJes se","Ġtack les","Ġcont empt","Ġa fore","ĠSh adows","Ġn il","Ġur gent","app le","bl ood","Ġv on","Ġoff line","Ġbreat he","Ġj umps","Ġirre levant","ox ic","om al","import ant","J im","Ġgl oves","arm ing","dep th","Ġtal ents","ook ie","ĠS B","Ġpal m","uff s","est a","IG H","Ġcan on","ĠVer izon","ĠP le","Ġcou pled","vel t","Ġfundra ising","ĠGet ting","ĠD LC","Ġmathemat ical","ĠH S","ĠCard inals","te lling","Ġspons ors","Ġ Ï","ĠBull s","op tion","Ġprop ose","Ġmem orable","Ġembr aced","Ġdecl ining","He alth","ed a","Ġ} ;","Ġsp am","m ile","Ġpit cher","ĠE ight","Ġcar ing","ut ic","ro le","Ġair line","ernand ez","ĠAth let","Ġcert ification","ux e","rig er","Ġem pir","Ġsens ation","Ġdis m","Ġb olt","Ġev olve","H ouse","Ġconsult ation","ĠD uty","Ġtou ches","ĠN athan","Ġf aint","h ad","\" (","ĠCons umer","ĠExt reme","Ġ12 7","ĠHer m","ĠSac rament","iz oph","Ġanx ious","ul ously","Ġsoc ially","ĠU TC","Ġsol ving","ĠLet ter","Hist ory","ed uc","Pr ice",") );","Ġrel oad","am ic","Ġp ork","Ġdisc ourse","Ġt ournaments","ai ro","ĠK ur","ĠCost a","Ġviol ating","Ġinterf ere","Ġrecre ational","uff le","Ġspe eches","Ġneed ing","Ġremem bers","Ġcred ited","n ia","f ocused","amer a","Ġb ru","um bs","ĠCub an","Ġpreced ing","Ġnons ense","ac ial","Ġsmart phones","ĠSt ories","S ports","ĠEmer gency","oun cing","ef ined","Ġb er","Ġconsult ing","Ġm asters","he astern",".\" [","ĠRun ning","Ġsus cept","ĠF eng","Americ a","pr ises","st itial","ĠWeek ly","ĠGreat er","mod ules","if ter","G raphics","ul er","Ġwho lly","Ġsupp ress","Ġconce aled","Ġhapp ily","Ġaccept s","ĠEn joy","Ġr ivers","ĠEx cept","2 25","ĠN HS","ĠMc Connell","Ġp ussy","fer red","ut able","Ġatt ain","Ġ> =","Ġdepos its","roph ic","Ġnot orious","ĠSh aw","il itation","Ġepid emic","all ic","Ġsmall est","ov ich","Ġaccess ories","per ties","Ġsur plus","ĠMe ch","Ġamb ig","ĠImm igration","Ġch im","ev al","Ġpract icing","ĠMyster y","Ġdom ains","ĠSil icon","app s","Ġkilomet ers","e a","ĠSm ash","Ġwarrant y","Ġn ost","s il","re v","J on","ĠDub lin","Ġtast es","Ġb out","g reat","er ror","Ġsw itches","ĠB apt","D O","ok i","Ġsour ced","pro du","Ġattach ment","ĠIss ue","ĠQuest ion","Jo in","Ġf itted","Ġunlaw ful","^ ^","ere k","Ġauthent ication","Ġst ole","Ġaccount ability","l abel","S earch","Ġal beit","atic an","fund ed","ĠAdd ing","ĠI Q","Ġsub mar","l it","a que","ĠLear ning","Ġint eger","M aster","ĠCh rom","Ġprem ier","O p","ĠLi u","Ġbl essed","ĠGl obe","ĠResp onse","Ġlegit im","ĠMer kel","Ġdispos al"," ´","Ġgau ge","pe at","Ġindu ced","Ġquestion able","arth y","ĠV it","ĠF eed","U ntil","U t","worth y","R Y","ĠH erald","ĠHam mer","Ġmed al","ĠR ivers","ĠH ack","Ġclar ify","Ġtrack ed","Ġautonom ous","Ġten ant","ĠQ atar","er ie","Ġgr im","ĠMon itor","Ġresist ant","ĠSpe c","ĠWell s","N AS","14 8","Ġmin ers","iot ics","Ġmiss es","11 6","g ian","g it","ĠE yes","p res","Ġgrad uated","Ġang el","Ġsyn chron","Ġefficient ly","Ġtrans mitted","H arry","Ġglob ally","EN CE","ĠMont ana","r aged","ĠPre vention","Ġp iss","ĠL l","Ġshe lf","ĠB JP","ĠTest ament","ĠL ate","ik er","ĠH app","ĠJul ian","h all","Ġsp ont","Ġshut down","Ġincons istent","Ġsubscrib ers","Ġske leton","ĠNe braska","Ġins pire","ĠV oid","F eed","Ġang les","ĠSpr ings","Ġbench mark","Ġvacc ines","izoph ren","se xual","uff ed","Ġsh ine","ĠK ath","Ġgest ure","ine a","Ġr ip","Ġopp ression","Ġcons cience","b t","ĠL um","Ġinc idence","ĠF a","w r","Ġmin eral","ĠSp urs","alk y","Ġth under","Ġop io","Be ing","ĠPal m","Ġwas ted","Ġl b","i aries","ĠIniti ative","Ġcur ric","Ġmark er","ĠMc L","Ġext ensions","ĠP v","ĠAr ms","Ġoffer ings","Ġdef enses","Ġvend or","Ġcontrad ict","ĠCol in","Ġredd it","Ġper ipher","12 2","Ġs ins","E dit","IC T","So ft","ĠSh ah","Ġadministr ator","ĠT rip","Ġporn ography","Ġtu ition","in ence","ĠPro gress","Ġcat alog","Ġsu ite","Ġh ike","Ġreprodu ctive","eng ine","Ġd rought","ĠNo ah","Ġ2 30","Ġd ude","Ġrelax ed","Ġpart ition","Ġparticip ant","Ġtel esc","Ġfe as","ĠF F","own er","Ġswe eping","Ġl enses","Ġmatch up","ĠRe pl","ourn als","Ġcred ible","Ġgrand mother","Ġther mal","Ġsubscrib ing","Ġident ities","col m","U CT","Ġreluct ant","us ers","ĠC ort","Ġassist ed","OS S","ATION S","IS H","Ġpharm aceutical","ic able","ad ian","ĠSon ic","ĠF ury","ĠM ong","A H","ĠPsych ology","Ġph osph","Ġtreat s","Ń Ķ","Ġstead ily","ĠHell o","Ġrel ates","Ġcl ue","Ex pl","a uth","Ġrev ision","Ġe ld","os ion","Ġbr on","14 4","ri kes","Ġmin es","Ġblank et","ĠF ail","el ed","ĠIm agine","ĠPl anned","a ic","Re quest","M ad","ĠHor se","ĠEag le","Ġcap ac","15 7","Ġl ing","ĠN ice","ĠP arenthood","min ster","og s","ens itive","Not hing","Ġcar n","F in","ĠP E","Ġr ifles","ĠL P","S and","Ġgui Active","Ġtour ist","C NN","Ġunve iled","Ġpredec essor","} {","u ber","Ġoff shore","Ġopt ical","ĠR ot","ĠPear l","et on","Ġst ared","Ġfart her","at ility","cont in","ĠG y","ĠF oster","ĠC oc","ri ents","Ġdesign ing","ĠEconom y","ON G","W omen","ĠN ancy","er ver","Ġmas cul","Ġcasual ties","Ġ2 25","ĠS ullivan","ĠCh oice","Ġa ster","w s","Ġhot els","Ġconsider ations","Ġcou ch","ĠSt rip","ĠG n","Ġmanip ulate","l ied","Ġsynt hetic","Ġassault ed","Ġoff enses","ĠDra ke","Ġim pe","Oct ober","ĠHer itage","h l","ĠBl air","Un like","Ġg rief","Ġ4 50","Ġopt ed","Ġresign ation","il o","Ġver se","ĠT omb","Ġu pt","Ġa ired","ĠH ook","ĠML B","Ġassum es","out ed","ĠV ers","Ġinfer ior","Ġbund le","ĠD NS","ograp her","Ġmult ip","ĠSoul s","Ġillust rated","Ġtact ic","Ġdress ing","Ġdu o","Con f","Ġrel ent","Ġc ant","Ġscar ce","Ġcand y","ĠC F","Ġaffili ated","Ġspr int","yl an","ĠGarc ia","Ġj unk","Pr int","ex ec","C rit","Ġport rait","ir ies","ĠOF F","Ġdisp utes","W R","L ove","ãģ Ħ","ĠRe yn","Ġh ipp","op ath","Ġflo ors","ĠFe el","Ġwor ries","Ġsett lements","ĠP os","Ġmos que","Ġfin als","Ġcr ushed","ĠPro bably","ĠB ot","ĠM ans","ĠPer iod","Ġsovere ignty","Ġsell er","Ġap ost","Ġam ateur","Ġd orm","Ġconsum ing","Ġarm our","ĠRo ose","Ġint ensive","Ġelim inating","ĠSun ni","ĠAle ppo","j in","Ġadv ise","p al","ĠH alo","Ġdes cent","Ġsimpl er","Ġbo oth","ST R","L ater","ĠC ave","== =","Ġm ol","Ġf ist","Ġshot gun","su pp","Ġrob bery","E ffect","Ġobsc ure","ĠProf essional","Ġemb assy","Ġmilit ant","Ġinc arcer","Ġgener ates","Ġlaun ches","Ġadministr ators","Ġsh aft","Ġcirc ular","Ġfresh man","ĠW es","ĠJo el","ĠD rew","ĠDun can","ĠApp arently","s ight","ĠIntern al","ĠInd ividual","ĠF E","Ġb ore","ĠM t","Ġbroad ly","ĠO ptions","ount ain","ip es","ĠV ideos","20 4","Ġh ills","Ġsim ulation","Ġdisappoint ment","it an","ĠLabor atory","Ġup ward","Ġbound ary","Ġdark er","h art","Ġdomin ance","C ong","ĠOr acle","ĠL ords","Ġscholars hip","ĠVin cent","ed e","ĠR ah","Ġencour ages","ro v","Ġqu o","Ġprem ise","ĠCris is","ĠHol ocaust","Ġrhyth m","Ġmet ric","cl ub","Ġtransport ed","Ġn od","ĠP ist","Ġancest ors","ĠFred er","th umbnails","ĠC E","ON D","Ph il","ven ge","ĠProduct s","cast le","Ġqual ifying","ĠK aren","VERTIS EMENT","Ġmight y","Ġexplan ations","Ġfix ing","D i","Ġdecl aring","Ġanonym ity","Ġju ven","ĠN ord","ĠDo om","ĠAct ually","O k","ph is","ĠDes ert","Ġ11 6","I K","ĠF M","Ġinc omes","V EL","ok ers","Ġpe cul","Ġlight weight","g ue","Ġacc ent","Ġincre ment","ĠCh an","Ġcompl aining","ĠB aghd","Ġmidfield er","Ġover haul","Pro cess","ĠH ollow","ĠTit ans","Sm all","man uel","ĠUn ity","ĠEv ents","S ty","Ġdispro portion","n esty","en es","ĠC od","Ġdemonstr ations","ĠCrim son","ĠO H","Ġen rolled","Ġc el","ĠBre tt","Ġa ide","Ġhe els","Ġbroad band","Ġmark ing","Ġw izard","ĠN J","ĠChief s","Ġingred ient","Ġd ug","ĠSh ut","urch ase","end or","Ġfar mer","ĠGold man","12 9","15 5","Or der","Ġl ion","i ably","Ġst ain","ar ray","ilit ary","ĠFA Q","Ġexpl oded","ĠMcC arthy","ĠT weet","ĠG reens","ek ing","l n","ens en","Ġmotor cycle","Ġpartic le","Ġch olesterol","B ron","Ġst air","Ġox id","Ġdes irable","ib les","Ġthe or","for cing","Ġpromot ional","ov o","b oot","ĠBon us","raw ling","Ġshort age","ĠP sy","Ġrecru ited","Ġinf ants","Ġtest osterone","Ġded uct","Ġdistinct ive","Ġfirm ware","bu ilt","14 5","Ġexpl ored","Ġfact ions","Ġv ide","Ġtatt oo","Ġfinan cially","Ġfat igue","Ġproceed ing","const itutional","Ġmis er","Ġch airs","gg ing","ipp le","Ġd ent","Ġdis reg","ç Ķ","st ant","ll o","b ps","aken ing","Ġab normal","ĠE RA","å£ «","ĠH BO","ĠM AR","Ġcon cess","Ġserv ant","Ġas pir","l av","ĠPan el","am o","Ġprec ip","Ġrecord ings","Ġproceed ed","Ġcol ony","ĠT ang","ab lo","Ġstri pped","Le ft","to o","Ġpot atoes","Ġfin est","% ).","Ġc rap","ĠZ ach","ab ases","ĠG oth","Ġbillion aire","w olf","Ġsan ction","S K","Ġlog ged","P o","ey ed","un al","Ġcr icket","Ġarm ies","Ġunc overed","Cl oud","ó n","Ġreb ounds","Ġm es","O per","P ac","Ġnation ally","Ġinsert ed","p ict","Ġgovern ance","Ð ¸","Ġprivile ges","G ET","Ġfavor ites","im ity","Ġlo ver","the m","em pl","Ġgorge ous","An n","Ġsl ipped","Ġve to","B ob","Ġsl im","u cc","ĠF ame","udden ly","Ġden ies","ĠM aur","Ġdist ances","Ġw anna","t ar","ĠS ER","Ġâ Ī","Ġle mon","at hetic","Ġlit eral","Ġdistingu ished","Ġansw ering","G I","Ġrelig ions","ĠPhil os","ĠL ay","Ġcomp os","ire ments","ĠK os","ine z","roll ing","Ġyoung est","and ise","ĠB orn","Ġalt ar","am ina","ĠB oot","v oc","Ġdig ging","Ġpress ures","Ġl en","26 4","Ġassass ination","ĠBir mingham","ĠMy th","Ġsovere ign","ĠArt ist","ĠPhot ograph","Ġdep icted","Ġdisp ens","orth y","Ġamb ul","int eg","ĠC ele","ĠTib et","Ġhier archy","Ġc u","Ġpre season","ĠPet erson","Ġcol ours","Ġworry ing","Ġback ers","ĠPal mer","ĠÎ ¼","Ġcontribut or","Ġhear ings","Ġur ine","Ġ Ù","ourge ois","Sim ilar","ĠZ immer","s omething","ĠUS C","Ġstrength s","ĠF I","Ġlog ging","As ked","ĠTh ai","in qu","ĠW alt","Ġcrew s","it ism","3 01","Ġshar ply","um ed","Ġred irect","r ators","In f","ĠWe apons","Ġte asp","19 99","L ive","ĠEs pecially","ĠS ter","ĠVeter ans","Ġint ro","other apy","Ġmal ware","Ġbre eding","Ġmole cular","ĠR oute","ĠCom ment","oc hem","Ġa in","Se ason","Ġlineback er","Ä «","ĠEconom ics","es ar","ĠL ives","ĠEm ma","Ġk in","ĠTer rit","Ġpl anted","ot on","ĠBut ter","ĠSp ons","P ER","Ġdun geon","Ġsymb olic","Ġfil med","Ġdi ets","Ġconclud es","Ġcertain ty","ĠForm at","Ġstr angers","form at","ĠPh ase","Ġcop ied","Ġmet res","ld a","ĠUs ers","Ġdeliber ate","Ġwas hed","ĠL ance","im ation","Ġimpro per","ĠGen esis","ick r","ĠK ush","Ġreal ise","Ġembarrass ing","alk ing","b ucks","Ġver ified","Ġout line","year s","ĠIn come","20 2","Ġz ombies","F inal","ĠMill enn","Ġmod ifications","ĠV ision","ĠM oses","ver b","iter ranean","ĠJ et","Ġnav al","ĠA gg","Ġur l","Ġvict ories","Ġnon etheless","Ġinj ust","ĠF act","ç ļ","Ġins ufficient","re view","face book","Ġnegoti ating","Ġguarant ees","im en","uten berg","Ġg ambling","Ġcon gr","Load ing","Ġnever theless","Ġpres idents","ĠIndust rial","Ġ11 8","Ġp oured","ĠT ory","Ġ17 5","Ġ: =","Sc ott","ange red","T ok","Ġorgan izers","M at","ĠG rowth","Ġad ul","Ġens ures","Ġ11 7","é¾į å","Ġmass acre","Ġgr ades","be fore","AD VERTISEMENT","ĠSl ow","ĠM MA","âĢĶ \"","ĠV atican","Q aeda","Ġo we","66 66","ĠS orry","ĠGr ass","Ġbackground s","Ġexha usted","Ġcl an","Ġcomprom ised","ĠE lf","ĠIsa ac","ens on","In vest","IF A","Ġinterrupt ed","ãĥī ãĥ©","Ġtw isted","ĠDrag ons","M ode","ĠK remlin","Ġfert il","he res","ph an","ĠN ode","f ed","ĠOr c","Ġunw illing","C ent","Ġprior it","Ġgrad uates","Ġsubject ive","Ġiss uing","ĠL t","Ġview er","Ġw oke","Th us","bro ok","Ġdep ressed","Ġbr acket","ĠG or","ĠFight ing","Ġstri ker","Rep ort","ĠPortug al","Ġne o","w ed","19 9","Ġflee ing","sh adow","ident ified","US E","Ste am","Ġstret ched","Ġrevel ations","art ed","ĠD w","Ġalign ment","est on","ĠJ ared","S ep","Ġblog s","up date","g om","r isk","Ġcl ash","ĠH our","Ġrun time","Ġunw anted","Ġsc am","Ġr ack","Ġen light","on est","ĠF err","Ġconv ictions","Ġp iano","Ġcirc ulation","ĠW elcome","Ġback lash","ĠW ade","Ġrece ivers","ot ive","J eff","Ġnetwork ing","ĠPre p","ĠExpl orer","Ġlect ure","Ġupload ed","ĠMe at","B LE","ĠNaz is","ĠSy nd","st ud","ro ots","ri ans","Ġportray ed","Ġ ??","ĠBudd ha","s un","Rober t","ĠCom plex","Ġover see","Ġste alth","T itle","ĠJ obs","ĠK um","Ġappreci ation","ĠM OD","Ġbas ics","Ġcl ips","Ġnurs ing","Ġpropos ition","Ġreal ised","ĠNY C","Ġall ocated","ri um","ar an","ĠPro duction","ĠV ote","Ġsm ugg","Ġhun ter","az er","ĠCh anges","Ġfl uct","y on","Ar ray","Ġk its","W ater","Ġuncom mon","Ġrest ing","ell s","w ould","Ġpurs ued","Ġassert ion","omet own","ĠMos ul","ĠPl atform","io let","Ġshare holders","Ġtra ils","P ay","ĠEn forcement","ty pes","ĠAn onymous","Ġsatisf ying","il ogy","Ġ( '","w ave","c ity","Ste ve","Ġconfront ation","ĠE ld","C apt","ah an","ht m","ĠC trl","ON S","2 30","if a","hold ing","Ġdelic ate","Ġj aw","ĠGo ing","or um","S al","Ġd ull","ĠB eth","Ġpr isons","Ġe go","ĠEl sa","avor ite","ĠG ang","ĠN uclear","Ġsp ider","ats u","Ġsam pling","Ġabsor bed","ĠPh arm","iet h","Ġbuck et","ĠRec omm","O F","ĠF actory","AN CE","Ġb acter","H as","ĠObs erv","12 1","Ġprem iere","De velop","Ġcur rencies","C ast","Ġaccompany ing","ĠNash ville","Ġfat ty","ĠBre nd","Ġloc ks","Ġcent ered","ĠU T","augh s","or ie","ĠAff ordable","v ance","D L","em et","Ġthr one","ĠBlu etooth","Ġn aming","if ts","AD E","Ġcorrect ed","Ġprompt ly","ĠST R","Ġgen ome","Ġcop e","Ġval ley","Ġround ed","ĠK end","al ion","p ers","Ġtour ism","Ġst ark","v l","Ġblow ing","ĠSche dule","st d","Ġunh appy","Ġlit igation","ced es","Ġand roid","Ġinteg ral","ere rs","ud ed","t ax","Ġre iter","ĠMot ors","oci ated","Ġwond ers","ĠAp ost","uck ing","ĠRoose velt","f ram","Ġyield s","Ġconstit utes","aw k","Int erest","Ġinter im","Ġbreak through","ĠC her","Ġpro sec","ĠD j","ĠM T","Res p","ĠP T","Ġs perm","ed it","B T","Lin ux","count ry","le ague","Ġd ick","Ġo ct","Ġinsert ing","Ġsc ra","ĠBrew ing","Ġ19 66","Ġrun ners","Ġpl un","id y","ĠD ian","Ġdys function","Ġex clusion","Ġdis gr","Ġincorpor ate","Ġrecon c","Ġnom inated","ĠAr cher","d raw","achel or","Ġwrit ings","Ġshall ow","Ġh ast","ĠB MW","ĠR S","Ġth igh","Ġ19 63","Ġl amb","Ġfav ored","ag le","Ġcool er","ĠH ours","ĠG U","ĠOrig in","Ġglim pse","---------------- ----","L im","Ġche ek","Ġj ealous","- '","Ġhar ness","ĠPo ison","Ġdis abilities","ne apolis","Ġout look","Ġnot ify","ĠIndian apolis","Ġab rupt","ns ic","Ġenc rypted","Ġfor fe","reat h","Ġr abb","Ġfound ations","Ġcompl iment","ĠInter view","ĠS we","Ġad olesc","Ġmon itors","ĠSacrament o","Ġtime ly","Ġcontem pl","Ġposition ed","Ġpost ers","ph ies","iov ascular","v oid","ĠFif th","Ġinvestig ative","OU N","Ġinteg rate","ĠIN C","ish a","ibl ings","ĠRe quest","ĠRodrig uez","Ġsl ides","ĠD X","Ġfemin ism","Ġdat as","Ġb end","ir us","ĠNig eria","F ox","Ch ange","Ġair plane","ĠLad en","Ġpublic ity","ixt y","Ġcommit ments","Ġaggreg ate","Ġdisplay ing","ĠAr row","Ġ12 2","Ġrespect s","and roid","s ix","ĠSh a","Ġrest oration",") \\","W S","oy s","Ġillust rate","with out","12 6","ĠâĶ Ĥ","Ġpick up","n els","Ġ ....","f ood","ĠF en",") ?","Ġphenomen a","Ġcompan ions","ĠW rite","Ġsp ill","Ġbr idges","ĠUp dated","ĠF o","Ġinsect s","ASH INGTON","Ġsc are","il tr","ĠZh ang","Ġsever ity","Ġind ul","14 9","ĠCo ffee","Ġnorm s","Ġp ulse","ĠF T","Ġhorr ific","ĠDest roy","ĠJ SON","Ġo live","Ġdiscuss es","R est","E lect","ĠW inn","ĠSurv iv","ĠH ait","S ure","op ed","Ġro oted","ĠS ke","ĠBron ze","Ġl ol","Def ault","Ġcommod ity","red ited","Ġliber tarian","Ġforb idden","Ġgr an","à ¨","Ġl ag","en z","dri ve","Ġmathemat ics","Ġw ires","Ġcrit ically","Ġcarb ohyd","ĠChance llor","ĠEd die","Ġban ning","ĠF ri","Ġcompl ications","et ric","ĠBangl adesh","Ġband width","St op","ĠOrig inally","Ġhalf way","yn asty","sh ine","Ġt ales","rit ies","av ier","Ġspin ning","ĠWH O","Ġneighbour hood","b ach","Ġcommer ce","ĠS le","B U","Ġentreprene ur","Ġpecul iar","ĠCom ments","f re","3 20","IC S","Ġimag ery","ĠCan on","ĠElect ronic","sh ort","( (","D ig","Ġcomm em","u ced","Ġincl ined","ĠSum mon","Ġcl iff","ĠMed iterranean","Ġpo etry","Ġprosper ity","ĠRe ce","Ġp ills","m ember","Ġfin ale","un c","ĠG ig","ä ½","Ġl od","Ġback ward","- +","ĠFor ward","Ġth ri","s ure","Ġso ap","ĠF X","R ES","ĠSe xual","oul os","Ġfool ish","Ġright eous","Ġco ff","terror ism","ust ain","ot er","Ġab uses","ne xt","Ġab usive","Ġthere after","Ġprohib ition","ĠS UP","Ġd ip","Ġr ipped","Ġinher ited","Ġb ats","st ru","G T","Ġflaw ed","ph abet","Ġf og","do ors","Ġim aging","Ġdig its","ĠHung ary","Ġar rog","Ġteach ings","Ġprotocol s","ĠB anks","à ¸","p ound","ĠC urt",".\" )",". /","Ġex emption","end ix","ĠM ull","Ġimpro ves","ĠG amer","d imensional","I con","ĠMarg aret","St atus","d ates","Ġint ends","Ġdep ict","Ġpark ed","J oe","ĠMar ines","chn ology","! ).","Ġjud ged","Ġwe ights","R ay","Ġapart ments","he ster","Ġrein force","Ġoff ender","occ up","Ġs ore","e pt","ĠPH P","ĠB row","Ġauthor ization","ĠR isk","ĠDel aware","ĠQ U","Ġnot ifications","Ġsun light","Ġex clude","d at","Ġm esh","ĠSud an","Ġbelong ed","Ġsub way","Ġno on","ĠInter ior","ol ics","ĠL akers","Ġc oding","Dis claimer","Cal if","O ld","Ġdis l","???? ?","Ġconfir ms","Ġrecruit ment","Ġhom icide","Cons ider","ĠJeff rey","ft y","} ;","Ġobject ion","do ing","ĠLe o","W ant","Ġgl ow","ĠClar ke","ĠNorm an","Ġver ification","Ġpack et","ĠForm ula","Ġpl ag","es ville","Ġshout ing","Ġo v","ĠR EC","ĠB ub","Ġn inth","Ġener g","Ġvalid ity","Ġup s","j ack","Ġneighbor ing","ĠN ec","ew orks","ĠH ab","are z","Ġsp ine","Ġevent ual","ĠLe aders","ĠC arn","Ġprob ation","Ġrom ance","ms g","ĠMechan ical","ER Y","R ock","Ġpart isan","N ode","ass ets","min ent","Ġforeign ers","Ġtest ify","ĠUs ually","l ords","ĠG ren","ĠPow ell","BI L","Ġs r","Ġadd ict","Ġshell s","Ġs igh","ĠY ale","tern ity","Ġ7 50","E U","ĠR ifle","Ġpat ron","em a","ĠB annon","an ity","Ġtrop ical","ĠV II","c ross","Every thing","ĠIS O","Ġhum ble","ass ing","ĠF IG","Ġupd ating","ys on","Ġcal cium","Ġcompet ent","Ġste ering","Pro t","ĠS Y","ĠFin als","ĠR ug","15 9","13 7","ĠG olf","Ġ12 6","Ġaccommod ation","ĠHug hes","Ġaest hetic","art isan","ĠTw ilight","Ġpr ince","ĠAgric ulture","ĠDis co","Ġpreced ent","Ġtyp ing","author ized","O ption","ĠA ub","l ishes","ach t","m ag","P eter","ĠU FO","mont on","ĠL ith","Ġa rom","Ġsec uring","Ġconf ined","priv ate","Ġsw ords","Ġmark ers","Ġmetab olic","se lect","ĠCur se","ĠO t","g ressive","Ġinc umb","ĠS aga","Ġpr iced","Ġclear ance","Cont ent","Ġdr illing","Ġnot ices","Ġb ourgeois","Ġv est","Ġcook ie","ĠGuard ians","ry s","in yl","Ġ12 4","Ġpl ausible","on gh","ĠOd in","Ġconcept ion","ĠY uk","ĠBaghd ad","ĠFl ag","Aust ral","ĠI BM","Ġintern ationally","ĠWiki Leaks","I ED","Ġc yn","Ġcho oses","ĠP ill","Ġcomb ining","Ġrad i","ĠMoh ammed","def ense","atch ing","Sub ject","ic iency","Fr ame","Ġ{ \"","Ġche ss","Ġtim er","19 0","Ġt in","Ġord inance","emet ery","Ġacc using","Ġnotice able","Ġcent res","Ġl id","ĠM ills","img ur","Ġz oom","erg ic","Ġcomp ression","pr im","f ind","Ġsur g","Ġp and","ĠK ee","ĠCh ad","cell ence","oy le","Ġsocial ism","ĠT ravis","ĠM Hz","Ġgu ild","ALL Y","ĠSub scribe","ĠRel ated","Ġoccur rence","itch ing","Ġfict ional","Ġcr ush","ĠE A","c od","m ix","ĠTri ple","Ġretrie ve","Ġstimul us","Ġpsych iat","ĠDo or","Ġhomosexual ity","Ġelement ary","Ġcell ular","id ian","ĠL aun","Ġintrig uing","Ġfo am","ĠB ass","id i","its u","Ġass ure","Ġcongr at","Ġbusiness man","ĠBo ost","cl ose","Ġl ied","Ġsc iences","ĠO mega","ĠG raphics","Ġ< =","sp oken","Ġconnect ivity","S aturday","ĠAven gers","Ġto ggle","Ġank le","Ġnational ist","mod el","ĠP ool","ophob ia","V ar","ĠM ons","ator ies","Ġaggress ively","C lear","For ge","act ers","Ġhed ge","Ġpip es","Ġbl unt","Ġs q","Ġremote ly","W ed","as ers","Ġref riger","Ġt iles","Ġresc ued","Ġcompr ised","ins ky","Ġman if","avan augh","Ġprol ifer","Ġal igned","x ml","Ġtri v","Ġcoord ination","ĠP ER","ĠQu ote","13 4","b f","ĠS aw","Ġtermin ation","Ġ19 0","Ġadd itions","Ġtri o","Ġproject ions","Ġpositive ly","Ġin clusive","Ġmem br","19 90","old er","Ġpract iced","ink le","Ar ch","Ġstar ters","ari us","Ġinter mediate","ĠBen ef","ĠK iller","Ġinter ventions","ĠK il","ĠF lying","In v","Ġprem ature","Ġpsych iatric","Ġind ie","Ġcoll ar","ĠRain bow","af i","Ġdis ruption","ĠFO X","cast ing","Ġmis dem","c ro","Ġw ipe","ard on","Ġb ast","ĠTom my","ĠRepresent ative","Ġbell y","ĠP O","ĠBre itbart","13 2","Ġmess aging","Sh ould","Ref erences","ĠG RE","ist ical","L P","ĠC av","ĠC razy","Ġintu itive","ke eping","ĠM oss","Ġdiscont in","ĠMod ule","Ġun related","ĠPract ice","ĠTrans port","Ġstatist ically","orn s","Ġs ized","p u","Ġca f","ĠWorld s","ĠRod gers","ĠL un","ĠCom ic","l iving","Ġc ared","Ġclim bed",") {","Ġconsist ed","Ġmed ieval","fol k","Ġh acked","Ġd ire","ĠHerm ione","Ġt ended","ce ans","D aniel","w ent","Ġlegisl ators","Ġred es","g ames","Ġg n","am iliar","Ġ+ +","gg y","th reat","Ġmag net","Ġper ceive","Ġz ip","Ġindict ment","Ġcrit ique","g ard","ĠSaf e","ĠC ream","Ġad vent","ob a","Ġv owed","ous ands","Ġsk i","Ġabort ions","u art","Ġstun ned","Ġadv ancing","Ġlack ed","Ġ\\ \"","Ġsch izophren","Ġeleg ant","Ġconf erences","Ġcance led","ĠHud son","ĠHop efully","Ġtr ump","Ġfrequ encies","Ġmet eor","ĠJun ior","ĠFle et","ĠMal colm","ĠT ools","Ġ ........","Ġh obby","ĠEurope ans","Ġ15 00","ĠInt o","Ġs way","ĠApp ro","ĠCom pl","Comm unity","Ġt ide","ĠSum mit","ä »","Ġinter vals","ĠE ther","Ġhabit at","ĠSteven s","lish ing","ĠDom ain","Ġtrig gers","Ġch asing","Ġchar m","ĠFl ower","it ored","Ġbless ing","Ġtext ures","F ive","Ġliqu or","R P","F IN","Ġ19 62","C AR","Un known","Ġres il","ĠL ily","Ġabund ance","Ġpredict able","r ar","Ġbull shit","le en","che t","M or","M uch","ä ¹","Ġemphas ized","Ġcr ust","Ġprim itive","Ġenjoy able","ĠPict ures","Ġteam mate","pl er","ĠT ol","ĠK ane","Ġsummon ed","th y","ram a","ĠH onda","Ġreal izing","Ġquick er","Ġconcent rate","cle ar","Ġ2 10","ĠErd ogan","ar is","Ġrespond s","ĠB I","Ġelig ibility","Ġpus hes","ĠId aho","Ġagg rav","Ġru ins","ur ations","Ġb ans","Ġan at","sh are","Ġgr ind","h in","um en","Ġut ilities","ĠYan kees","Ġdat abases","ĠD D","Ġdispl aced","Ġdepend encies","Ġstim ulation","h un","h ouses","ĠP retty","ĠRaven s","ĠTOD AY","Ġassoci ates","Ġthe rape","cl ed","Ġde er","Ġrep airs","rent ice","Ġrecept ors","Ġrem ed","ĠC e","Ġmar riages","Ġball ots","ĠSold ier","Ġhilar ious","op l","13 8","Ġinherent ly","Ġignor ant","Ġb ounce","ĠE aster","REL ATED","ĠCur rency","E V","ãĥ ŀ","ĠLe ad","Ġdece ased","B rien","ĠMus k","J S","Ġmer ge","heart ed","c reat","m itt","m und","ĠâĢ ĭ","ĠB ag","Ġproject ion","Ġj ava","ĠStand ards","ĠLeon ard","Ġcoc onut","ĠPop ulation","Ġtra ject","Ġimp ly","Ġcur iosity","ĠD B","ĠF resh","ĠP or","Ġheav ier","ne ys","gom ery","Ġdes erved","Ġphr ases","ĠG C","Ġye ast","d esc","De ath","Ġreb oot","Ġmet adata","IC AL","Ġrep ay","ĠInd ependence","Ġsubur ban","ical s","Ġat op","Ġall ocation","gener ation","ĠG ram","Ġmoist ure","Ġp ine","ĠLiber als","Ġa ides","Ġund erest","ĠBer ry","Ġcere mon","3 70","ast rous","ĠPir ates","Ġt ense","ĠIndust ries","ĠApp eals","ĠN ear","Ġè£ı ç","Ġlo vers","ĠC AP","ĠC raw","Ġg iants","Ġeffic acy","E lement","ĠBeh avior","ĠToy ota","Ġint est","P riv","A I","Ġmaneu ver","Ġperfect ion","Ġb ang","p aper","r ill","Ge orge","b order","in ters","ĠS eth","Ġcl ues","ĠLe vi","ĠRe venue","14 7","Ġv apor","Ġfortun ate","Ġthreat ens","Ġve t","Ġdepend ency","ers ed","art icle","ĠBl izzard","Ġch lor","Ġmin us","ĠB ills","Ġcryptoc urrency","Ġmetabol ism","ter ing","Ġp estic","step s","ĠTre asure","ract ed","ĠConst ant","Ġtem p","13 9","ĠDet ective","ur ally","Ġrecover ing","Ġcort ex","Ġ14 4","cl osed","Ġprejud ice","aun ted","Ġstorm s","ĠN OW","Ġmach inery","Add ress","Ġcompe lled","27 0","Ġdesp air","b ane","Ġveget able","Ġbed s","Lear n","Ġcolor ful","Ġsp ike","Ġmarg ins","Ġsymp athy","Ġworks hop","ĠC BC","S at","Ġburn s","ĠG ender","Ġ12 9","ĠC able","Ġdeb ts","ĠThe resa","Ġreflect ing","Ġa irst","Ġr im","ram id","Ġweakness es","W rit","ogg le","t i","ĠCh arge","Ġwe ighed","Ġ( .","Ġl aughter","Ġrou ter","ĠDemocr acy","D ear","Ġhas ht","Ġd y","Ġhint s","run ning","Ġfin ishes","ar us","M ass","res ult","asc us","Ġv intage","Ġcon qu","Ġwild ly","ac ist","Ġl ingu","Ġprot agonist","st rom","te enth","ĠSol o","m ac","f illed","Ġre nown","it ives","Ġmot ive","ĠAnt ar","ĠM ann","ĠAd just","Ġrock ets","Ġtrou bling","e i","Ġorgan isms","ass is","Christ ian","Ġ14 5","ĠH ass","Ġsw all","Ġw ax","ĠSurv ival","V S","ĠM urd","v d","stand ard","Ġdrag ons","Ġacceler ation","r ational","f inal","Ġp aired","ĠE thereum","Ġinterf aces","Ġres ent","Ġartif acts","Å «","are l","Ġcompet itor","ĠNich olas","ĠSur face","c pp","ĠT ot","Ġeconom ically","Ġorgan ised","Ġen forced","in ho","Ġvar ieties","Ġab dom","ĠBa iley","id av","ĠSal v","p aid","Ġalt itude","ess ert","ĠG utenberg","are a","op oulos","Ġprofess ors","igg s","ĠF ate","he y","Ġ3 000","D ist","Ġtw ins","c ill","ĠM aps","Ġtra ps","Ġwe ed","ĠK iss","Ġy oga","Ġrecip ients","ĠWest minster","Ġpool s","ĠWal mart","18 8","ĠSchool s","att ack","ĠAR M","par agraph","W arning","j l","Ġself ish","anche z","ĠHe ights","F re","ĠS oph","Ġ --------------------------------","t ml","33 3","Ġraid s","Ġsatell ites","KE Y","Ġlast s","Ñ Ĥ","In s","ĠD ame","Ġunp redict","// /","gh ai","Ġart illery","Ġcru ise","Ġg el","ĠCabin et","Ġbl ows","ĠE sp","Ġprox imity","ot he","ĠSk ills","ĠU pper","ob o","ĠN DP","Ġenjoy s","Ġrepe ating","ĠConst ruction","ĠQuest ions","H illary","Ġu int","Ġprocess ors","ĠGib son","ĠMult iple","q a","ĠB om","ĠM iles","vent ional","Ġhur ts","s kin","ĠA IDS","Ġadvis ers","ĠR oot","Ġmethod ology","ĠD ale","Ġdet on","ĠKnow ledge","sequ ently","Ġ12 1","Ġconnect s","C y","ĠD anger","Ġcontribut ors","ĠB ent","Ġbr ass","ĠGun s","int o","ĠFort une","Ġbro ker","bal ance","Ġlength s","Ġv ic","Ġaver aging","Ġappropri ately","ĠCamer a","Ġsand wich","ĠCD C","Ġcoord inate","Ġnav ig","Ġgood ness","l aim","Ġbra ke","Ġextrem ist","ĠW ake","ĠM end","ĠT iny","ĠC OL","ĠR F","ĠD ual","ĠW ine","C ase","Ġref ined","Ġl amp","L ead","Ġb apt","ĠCar b","ĠS add","ĠMin neapolis","PD F","Ear ly","ĠH idden","I ts","ĠT IME","Ġp ap","Ġcommission ed","ĠF ew","ĠCol ts","ĠB ren","Ġbot hered","Ġlike wise","Ex per","ĠSch w","c ry","n n","ĠM itch","im on","M G","b m","UM P","r ays","Ġregist ry","Ġ2 70","ach ine","re lla","ant ing","00 000","Ġru ined","sp ot","Ġt a","Ġmaxim ize","Ġincon ven","D ead","H uman","En abled","ĠMar ie","Ġch ill","ĠParad ise","Ġstar ring","ĠLat ino","ĠProt ocol","ĠE VER","Ġsuppl iers","m essage","ĠBro ck","Ġser um","âĸĪâĸĪ âĸĪâĸĪ","Ġen comp","Ġamb ition","ues e","Ġar rows","And rew","Ġanten na","Ġ19 61","ĠB ark","Ġb ool","ãĤ ª","ĠSt orage","Ġrail way","Ġtoug her","ĠC ad","Ġwas hing","P y","' ]","em bed","ĠMem phis","ack le","Ġfam ously","ĠF ortunately","ov ies","Ġmind set","Ġsne ak","ĠD h","RA W","ĠSim pson","Ġliv est","Ġland mark","Ġc ement","L ow","Ġthr illed","ĠCour se","in el","Ġch uck","id ate","gl obal","Ġwh it","Ġ �","ad ays","s ki","ĠS V","Ġvir uses","30 6","ĠResp ons","Ġthe aters","ĠBr anch","ĠGene va","ĠM K","Ġunbel iev","Ġcommun ist","Orig inal","ĠRe ceived","ĠTrans fer","ĠAr g","In put","ĠStr ategy","Ġpal ace","the ning","D ri","Ġsent encing","umbn ail","Ġp ins","re cy","Ġs iblings","Get ting","ĠB U","ĠNorth west","Ġprolong ed","ĠSak ura","C omb","ĠB our","Ġinadequ ate","ĠK ash","Ġus ername","ĠImpro ve","Ġbatt ling","ĠM AC","Ġcurric ulum","Ġs oda","ĠC annon","Ġsens ible","sp ons","De cember","Ġw icked","ĠP engu","Ġdict ators","ĠHe arts","og yn","Ġsimilar ities","ĠSt ats","Ġh ollow","it ations","\": [","Ġh over","ĠList en","s ch","S und","Ġc ad","ĠPar ks","Ġl ur","Ġhy pe","ĠL em","N AME","is ure","Fr iday","Ġshoot s","Ġclos es","Ġd b","ĠR idge","ĠDiff erent","Ġrepl ies","ĠBroad way","op ers","Ġint oler","ĠZe us","akes pe","Ġpropri etary","Ġrequest ing","Ġcontro llers","ĠM IN","im edia","be cca","Ġexp ans","Ġoil s","B ot","ĠCh and","Ġpr inter","Ġto pped","ĠP OL","ĠEar lier","S ocial","av in","Ġdecre ases","ĠSe b","Ġspecific ations","ĠBl ast","ĠK urt","Ġfre el","B rown","Ġdil ig","ro e","ĠPro blem","ĠQu ad","Ġdecent ral","ĠV ector","an ut","Ġplug ins","ĠGreg ory","Ġfuck ed","el ines","ĠAmb assador","t ake","Ġcle ans","ong yang","An onymous","st ro","\" }","al ine","ĠO dd","ĠE ug","2 16","Ġbo il","ĠP owers","Ġnurs es","Ob viously","ĠTechn ical","Ġexceed ed","OR S","Ġextrem ists","Ġtr aces","ex pl","Ġcom r","ĠS ach",") /","Ġm asks","Ġsc i","B on","Ġreg ression","we gian","Ġadvis or","it ures","ĠV o","ex ample","ĠInst ruct","Ġs iege","Ġredu ctions","pt r","Ġstat utory","Ġrem oves","Ġp uck","red its","Ġbe e","Ġsal ad","Ġpromot ions","ĠJosh ua","with standing","ET H","ĠCh a","im us","Ġexpend iture","aun ting","Ġdelight ed","Ġ15 5","be h","Ġcar pet","ĠSp art","Ġj ungle","l ists","Ġbull ying","ĠNob el","ĠGl en","Ġreferen ced","Ġintrodu ces","se in","Ġcho pped","gl ass","ĠW rest","Ġneutral ity","Ġâ Ļ","Ġinvestig ator","Ġshel ves","Ġun constitutional","Ġreprodu ction","Ġmer chant","m ia","Ġmet rics","Ġexplos ives","ĠSon ia","Ġbod ily","Ġthick ness","Ġpredomin antly","ĠAb ility","Ġmon itored","IC H","Ġ] .","ĠMart inez","Ġvis ibility","Ġqu eries","Ġgen ocide","ĠWar fare","Qu ery","Ġstud ios","Ġemb ry","Ġcorrid or","Ġclean ed","com plete","ĠM H","Ġenroll ment","ING S","Ġimpact ed","Ġdis astrous","ĠY un","ĠCl aire","ĠBas ically","y t","uster ity","Ġindirect ly","w ik","Ġd od","ĠCar r","Ġam p","Ġprohib it","ĠIn itial","ĠR d","ij i","Ġeduc ate","c orn","i ott","ĠBeaut y","Ġdetect ive","ĠCon n","s ince","Ġst agger","Ġob ese","Ġb ree","olog ic","is se","walk er","Ġbl ades","Ġlaw ful","fun c","ĠBeh ind","Ġappet ite","Ġ( *","Ġt ennis","Ġoff spring","Ġj ets","Ġstruct ured","Ġafore mentioned","N ov","Ġsc aling","f ill","Ġst ew","Ġcur b","ĠStep han","ed In","S F","ob ic","é ŃĶ","ou g","ĠM M","Ġgen etically","ope z","13 6","Ġu mb","anc ers","Ġcoh ort","Ġmerch andise","Ġimp osing","ĠLegisl ature","ĠArch ive","iv ia","ĠN aval","Ġoff ences","Ġmir acle","Ġsn apped","Ġf oes","Ġextensive ly","ĠR af","Ġc ater","ed ience","K it","ĠB in","Ġrecomm ends","ĠC ities","Ġrig id","ĠRE AD","ĠNob le","ĠT ian","Ġcertific ates","ant is","o iler","ĠBudd hist","d id","Ġsurvey ed","Ġdown ward","Ġprint s","ĠMot ion","ron ics","ĠS ans","oss ibly","u ctions","Ġcolon ies","ĠDan ish","un it","Ġsp oil","Ġadvis ory","ber ries","Pl an","Ġspecific ation","op hers","ĠRes ource","Ġsh irts","prising ly","commun ications","Ġtriv ial","Ġmention ing","ise xual","Ġsupp lements","Ġsuper vision","B P","v or","Ġw it","Ġco oldown","Ġplaint iff","ĠReview s","ĠS ri","ĠM int","ĠSug ar","Ġafter ward","ĠPri est","ĠInvest ment","og ene","ĠT aking","Ġstretch ing","Ġinflamm ation","ĠTe hran","Ġl ining","Ġfree zing","ĠEnt ity","Ġins piring","spe cial","pr ice","Ġsu e","ĠP orter","oun ge","ET A","ĠD erek","ĠLu is","u o","ym ph","Ġex terior","ih il","ĠAsh ley","in ator","Ġnut rients","ĠTh rones","Ġfin ances","ĠIn spect","Ġspe cially","ĠRequ ired","ĠP TS","ĠViol ence","oint ed","sh ots","Ġex cerpt","co on","IN S","ĠG ri","Ġrecogn ised","We ek","You ng","Ġv om","is le","ĠCur ry","ĠBudd h","Ġnot ebook","Ġd urable","/ ?","ĠG ad","ĠP upp","Ġforg ive","p ark","Ġpersonal ities","an alysis","cl amation","Ġelev ator","Ġware house","ĠR ole","un n","Ġillust ration","ĠSc an","Ġatmosp heric","Im port","AN C","rict ed","f u","01 0","Ġar che","Ġreward ed","akespe are","Ġintern ally","ĠR BI","alk er","Ġeleph ant","ow itz","ĠP izza","Ġbip artisan","é s","Ġslow ed","ĠSt ark","Ġover ride","OU S","Ġ3 20","undred s","ĠDe ck","ĠC ensus","be e","14 6","ot or","Ġ ip","Ġu b","oc ations","ĠBut ton","r ice","Ġc ripp","ff f","Ġorig inated","Ġoverwhel med","app a","Ġfore most","âĢ ij","ĠL EG","re lease","eat ured","at ches","Ġre ps","Ġl ending","ĠRe ference","ĠCl ient","16 5","vent h","Com plete","ĠPat rol","Ġsw orn","c am","Ġshut tle","ĠR alph","Ġh ometown","- ,","on al","ĠB P","å ı","Ġpersu ade","ĠAlex and","Ġcomb ines","Ġv ivid","ĠL ag","Ġenc oding","Ġsal vation","w en","ĠRec overy","i ya","Un iversity","ĠB iden","Ġbud gets","ĠTex ans","f its","Ġhon ored","Ġp ython","T D","## #","cl one","Ġbl ink","ĠL iquid","Ġunemploy ed","Ġcl ashes","ĠCoun sel","Ġdirect ing","Ġpun ct","ĠFal cons","Ġsh ark","ĠDam ascus","Ġje ans","Ġemb ark","Ġse ize","Ġup wards","2 80","ĠE z","ĠAny thing","Ġex otic","l ower","ĠCreat or","ĠU m","Ġsubur bs","ber ger","ĠW end","Ġm int","ĠX X","ĠD ro","Ġsuff ers","Ġher b","t ree","Ġfrag ile","Ġflood ed","ĠAl cohol","ole an","ny der","ĠK O","F ram","Ġ13 6","Ġow ed","ĠMe lee","ĠH ash","Ġwh isk","Ġsu do","r r","Qu ick","app ro","Ġi i","ĠEx amples","he e","Ġpromot es","per ature","k ar","ĠHon or","Ġs odium","ĠL if","ros so","intend ent","Ġcorrespond ent","F ound","sec ret","Ġident ifies","ag ne","Ġl ou","ĠP P","Ġcoinc idence","m ove","Ġmilit ia","Ġinf iltr","ĠPrim ary","Ġpitch ing","ĠI b","ĠGO OD","ãĤ ¸","ĠW izards","ir al","ĠVen us","R R","ĠâĢ ķ","ĠCase y","Ġsad ly","Ġadm ire","Ġembarrass ed","c b","M el","Ġtub es","Ġbeaut ifully","ĠQueens land","Bel ow","re z","qu et","ple asant","Ġ «","C amp","Ġdec isive","19 98","ĠL amb","ut ton","h n","ĠJ agu","au nder","ĠC ord","Ġcl erk","Ġca ffe","Ġwip ed","Ġre im","ĠMount ains","Ġimprison ed","Ġdevelop s","ĠP ra","Ġmodel ing","Any one","ance l","ĠS it","Ġshield s","Ġl awn","Ġcard iovascular","Ġdemonstr ating","Ġpar se","ĠIsrael is","Ġeuro s","14 3","Ġgl orious","ins ki","ec d","Ġcondition ing","Ġhel pless","Ġmicro sc","ĠHar bor","Ġst akes","Ġ2 60","Ġun equ","ĠFl oyd","Ġd amp","Ġappar atus","ĠLaw s","Ġcoun ters","Ġindu ce","at able","ĠAh med","Ġsl am","N ovember","Ġpers ist","Ġim minent","á n","Ġsh red","Ġph ases","ĠEd monton","ĠArm strong","ĠMe et","ĠK itty","Ñ Ģ","c irc","ĠAd ult","Ġa rose","ĠX en","D an","g ow","Ġsuper f","ĠAd mir","Ġend ure","Ġkey word","yr us","Ġy arn","Ġpath way","ĠHop kins","mid t","Ġcens orship","d ependent","Ġinstruct or","S ources","Ġto e","Ġball oon","N ob","Ġsw ear","ĠCast ro","Ġgl oss","ĠK avanaugh","Ġremark ably","Ph otos","ĠN om","ĠS outheast","y ers","Ġvalid ation","Ġcann on","ĠVict ory","ĠPier re","Ġcaut ious","Aud io","Ġf etch","ĠG ift","ĠH yp","Ġrem edy","Z E","Ġsc ent","Ġbe ard","ĠR ut","- \"","Ġpat ents","H y","Ġun just","Ġpot ato","Ġforth coming","Ġche f","ĠR ift","aff e","ĠR OM","ĠL aunch","Ġp ads","ĠNe o","Ġon set","Ġsquee ze","s afe","Ġpref ix","ĠT M","ĠN early","ĠClin ical","ĠM ental","ot iation","ĠUn ic","ant ry","ĠC ir","Ġep it","à ¦","Ġextract ed","verse ly","ri ad","Ġstr ains","Ġto ps","Ġpo em","ĠRand y","ĠMap le","TH ER","up iter","ĠSS D","ļ é","Ġun con","per ing","Ġsle pt","in ers","Ġunder water","ĠEv idence","g one","20 5","Ġhistor ians","Ġsynt hesis","Ġf rog","b asketball","Ġvibr ant","Ġsub ord","Ġ3 65","ĠD ial","Ġcooper ate","HA HA","Ġgreet ed","15 8","Ġj azz","Ġinto x","ĠWalk ing","Ġsuper visor","ĠF usion","ĠMer cedes","s end","H am","s d","n l","Ġtour s","ĠF IFA","Ġcul p","g d","30 4","Ġple as","Ġillust rates","ĠColomb ia","Ġhighlight ing","ĠSum mary","Ġexp osing","ĠD ru","Ġir ony","r itional","ĠCar roll","ĠEll is","P ict","ĠR apt","Ġad apter","Ġun m","Ġcor pse","Ġceleb rities","D en","at um","ĠAp ocalypse","ĠW ag","lin ing","Ġhorm ones","R ub","ĠX i","ĠV aults","20 8","alky rie","inos aur","Ġfeed s","v ity","Ġdefe ating","W ait","Ġemphas ize","ĠSteel ers","yr inth","le ys","ĠWhe never","Current ly","ĠCl ock","Ġcollect ively","any on","ĠJ P","Ġment ality","Ġdownload s","Ġsurround ings","ĠBarn es","Ġflags hip","Ġindic ators","Ġgra pp","Jan uary","ĠElement al","ĠAthen a","ib al","Ġs ights","Ġcap ita","ĠTreat y","Ġvo iced","ĠG az","let te","Ġy a","Ġexp ired","Leg end","H ot","n ature","Ġunst able","Ġ2 80","à º","Com ment","AL E","Ġquest s","Ġhand ler","n is","Ġvers atile","Ġconce al","enge ance","ĠInter active","Ġobs essed","ĠDog s","Ġcr acked","S ound","s v","ĠD ylan","ro ads","f x","ĠCath olics","ĠH ag","Ġsl ammed","Ġgl owing","s ale","Ġtiss ues","ĠCh i","ne e","Ġc her","s ic","ur rection","Ġb acon","ul atory",") .\"","Ġir regular","FOR M","ass ed","Ġintention al","Ġcompens ate","ĠSpe aking","ĠS ets","15 3","Ġconvent ions","b ands","em ade","Ġe cc","ĠWin ston","ĠAssass in","ĠBelg ian","Ġdepend ence","Ġnic he","Ġb ark","ĠJ azz","Ġdisadvant age","Ġgas oline","Ġ16 5","çļ Ħ","ess a","mod ule","ang ular","O Y","ĠTreat ment","it as","ol ation","ĠArn old","Ġfe ud","ĠN est","Ġthe atre","ew ater","Ġmin ors","olic y","ĠH aven","div ision","Ġtr unk","F ar","ĠP ull","Ġcapt uring","Ġ18 00","ĠTe en","Ġex empl","Ġclin ics","ĠB urg","Ġsubst it","Ġpay load","ĠL av","ĠT roy","ĠW itness","Ġfrag ments","Ġpass words","Ġg ospel","ĠG in","Ġten ants","ol ith","S ix","Pre vious","ĠAg es","ĠDar win","Ġbl at","Ġem pathy","sm ith","b ag","ĠE cho","ĠC amb","ĠM add","ĠB oo","Ġred e","ĠBurn ing","Ġsmooth ly","ĠAd rian","ĠV ampire","ĠMon sters","ste am","Sty le","M a","re a","ĠD war","aly st","urs or","Ġelim ination","Ġcrypt o","ch t","ĠE ternal","â̦ ]","ĠS orce","I ll","N ER","Ġu h","Con clusion","w age","Ġresp ir","Ġrem inis","het ical","Ġg y","Ġutil ized","ic idal","Ġ19 00","Ġhun ters","ĠSw an","ĠRe act","Ġvis itor","ĠThanks giving","30 8","Post s","Ġh ips","19 97","om ers","Ġkn ocking","ĠVeh icle","Ġt il","Ġ13 8","Ġm i","ĠInvest igation","ĠKen ya","Ġcas ino","Ġmot ives","Ġreg ain","re x","Ġweek ends","Ġstab bed","bor o","Ġexplo ited","ĠHA VE","ĠTe levision","c ock","Ġprepar ations","Ġende av","ĠRem ote","ĠM aker","ĠPro du","ĠEv an","Ġinform ational","ĠLouis ville","15 4","ĠDream s","Ġpl ots","ĠRun ner","Ġhur ting","Ġacad emy","ĠMont gomery","n m","ĠL anc","ĠAl z","2 10","el ong","Ġretail er","Ġar ising","Ġrebell ion","Ġbl onde","play ed","Ġinstrument al","C ross","Ġret ention","Ġtherape utic","Ġse as","Ġinfant ry","ĠCl int","Ġprompt ing","Ġbit ch","Ġst ems","ĠK ra","Ġthe sis","ĠB og","ru ed","Ġk ings","Ġcl ay","ific ent","ĠY ES","ĠTh ing","ĠCub s","vey ard","els h","in arily","ĠE y","ĠRoll ing","Ġev olving","Ind ia","Ġrecogn izes","Ġgrad uation","is ers","Ġfert ility","ĠMil an","Comm and","Ġbox ing","Ġ19 43","Ġgl uten","ĠEm ir","Ġid ol","Ġcon ceived","ĠCre ation","Mer it","udd y","uss ions","ĠLie utenant","iet al","Ġunch anged","ĠSc ale","ĠCrime a","ball s","ator ial","Ġdepth s","Ġempir ical","Ġtrans m","Ġuns afe","miss ible","com fort","15 6","Ġmechan ic","00 2","l ins","Ġsm oked","P os","Ġslow ing","Ġl av","Tex as","Ġche ating","ĠMet ropolitan","eth yl","Ġdiscover ing","as se","Ġpen cil","ĠPy ongyang","Ġclos et","ĠShe et","ĠEnt ry","ou stic","Ġmy st","er ate","ari at","Ġminer als","Ġmusic ian","ĠP ul","ĠM az","24 9","Ġper missions","Ġ iv","en ary","ick ers","ĠB ing","he a","en able","Ġgri ev","Ġassert ed","ĠColon el","Ġaff idav","w o","Ġse ated","ĠR ide","Ġpaint ings","ĠP ix","Ġ13 7","ish i","umb ai","g otten","ĠEar l","Ġin ning","Ġc ensus","Ġtrave lled","ĠCons ult","18 5","b ind","Ġsimpl icity","Ġoverlook ed","ĠHelp ful","Ġmon key","Ġoverwhelming ly","Bl ood","ĠFl int","ĠJ ama","ĠPres ent","ĠR age","ĠT A","pt ive","Ġturn out","w ald","ĠD olphins","ĠV PN","Ġon ion","Ġcraft ing","m ma","ĠMerc ury","Ġarr ange","Ġalert s","ĠO T","zb ollah","Ġg ases","ĠRichards on","s al","l ar","Ġfro st","Ġlower ing","Ġacc laim","Ġstart ups","ĠG ain","ess ment","Ġguard ian","äº º","ĠP ie","ĠL inks","Ġmer its","Ġaw ake","Ġparent al","Ġexceed s","Ġid le","ĠPil ot","Ġe Bay","ĠAc cept","ipe g","C am","ĠK ot","Ġtrad ers","olit ics","unk er","ĠP ale","os i","an mar","Ġ19 47","ĠF ell","est ial","it ating","G F","ĠS r","if ted","Ġconnect or","ĠB one","ill es","2 60","h ma","Ġoverl ap","ĠGit Hub","Ġclean er","ĠBapt ist","ĠW AS","Ġlung s","Ñ ģ","ĠB UT","Ġc ite","Ġpit ched","reat ment","Ġtro phies","ĠN u","38 6","ĠPr ide","Ġattend ees","[ ]","17 9","Ġspat ial","Ġpri zes","ĠRel igion","Ġshow case","ĠC ategory","vid ia","T arget","Pro perty","? ,","Ġf usion","p ie","ĠU CLA","Ġsound track","Ġprin cess","ĠC aval","sh ould","Ġlim bs","Back ground","Ġlone ly","Ġc ores","ĠT ail","she et","Ġ13 2","R a","ãĤ «","ĠB olt","Ġbook ed","Ġadmin ister","Ġequ als","w y","Ġobserv ing","ĠBar on","ĠAd obe","Ġv irgin","ĠSocial ist","M ove","gh azi","ĠLind a","2 12","Ġbre wing","Ġmerch ants","bur se","Ġdiv or","Ġmet als","ĠN er","Ġsum s","ĠEn emy","Ġen vision","Ġgrant ing","ĠH oney","ĠSk yrim","Ġsoc io","gr aded","Ġselect ive","W ASHINGTON","Ġ19 48","ĠSir ius","ĠG ross","act ivity","ĠI van","Ġfur ious","BS D","ĠPre vious","Ġrespons ive","Ġchar itable","Ġle aning","ĠP ew","Ġviol ates","\\\\\\\\ \\\\\\\\","ĠCom ing","w ire","Ġpo et","Ġres olutions","comm and","ĠPortug uese","Ġnick name","Ġde af","Feb ruary","Ġrecogn ise","Ġentire ty","Ġseason al","pl aced","ĠTe legraph","Ġmicro phone","our ing","Ġgr ains","Ġgovern ed","Ġpost p","ĠW aters","in ement","Ġund ocumented","ĠCom cast","Ġf ox","Ġassault s","re on","man y","ĠJen kins","ĠAny way","Ġassess ments","Ġdown s","ĠM ouse","Ġsuper b","k t","ĠD ow","Ġtax ation","4 01","Ġsm iles","Ġundert aken","Ġex h","Ġenthusi astic","Ġtw ent","Ġgovernment al","Ġautonom y","ĠTechn ologies","ĠCh ain","Ġpreval ent","f b","Ġnic otine","og ram","j ob","Ġawa iting","ĠMen u","Ġdep uties","k ov","ish ops","But ton","ĠShan ghai","Ġdies el","ĠD uck","R yan","ĠPC s","N F","j ury","ent e","Ġinacc urate","edd y","Wh atever","Ġshow c","ĠN ad","od us","et r","Ġplaint iffs","ĠW OR","ĠAss ange","Ġpriv at","Ġpremium s","Ġt am","UR L","Ġel ites","ĠR anger","otten ham","ĠH off","ĠAt hens","Ġdefin ite","Ġs ighed","Ġeven ly","2 11","ĠAm ber","ak ia","Ġmail ing","Ġcr ashing","ĠConfeder ate","ru gged","W al","ĠDep ths","Ġjuven ile","Ġreact or","Introdu ction","ĠDel uxe","19 95","ĠS anchez","ĠM ead","iv able",": -","ĠPlan ning","ĠT rap","qu in","ĠProt ect","ve red","In formation","Ġkid ney","inn amon","l as","Ġpolic ing","Ġtoler ate","ĠQ i","Ġbi ased","F ort","ĠK i","s ave","Ġprivile ged","Ġbe asts","ĠGl as","ĠC inem","Ġcome back","Sund ay","Ġext inction","h ops","Ġtrans mit","Ġdoub les","ĠFl at","16 7","Ġdis puted","Ġinjust ice","f oo","V ict","role um","ĠJul ie","Con text","ĠR arity","iss ue","Comp onent","Ġcounsel ing","an ne","d ark","Ġobject ions","u ilt","Ġg ast","Ġpl ac","Ġun used","ãĥ ĩ","ĠT rial","ĠJ as","hed ral","ob b","Ġtempor al","ĠPR O","ĠN W","ĠAnn iversary","L arge","Ġther m","Ġd avid","Ġsystem ic","ĠSh ir","m ut","ĠNe pt","add ress","Ġscan ning","Ġunderstand able","Ġcan vas","C at","ĠZ oo","Ġang els","L O","ĠStat ement","ĠS ig","ov able","ĠA way","sh aring","ocr ats","st ated","Ġweigh ing","N or","w ild","B ey","Ġaston ishing","ĠReyn olds","Ġop ener","Ġtrain er","Ġsurg ical","p n","Ġadjust ing","whe el","Ġf rown","erv ative","Ġsusp end","With in","te in","Ġobst acle","Ġliber ties","ym es","Ġur anium","ans om","an ol","ub a","ĠL oss","Ġa rous","ĠHend erson","W ow","s pl","c ur","Ġ Ń","Ġtheir s","Dam age","Ġdownload ing","Ġdisc ern","ĠSt o","ĠFl a","Ġh ath","ĠA j","Ġun pleasant","Europe an","exp ensive","Ġscreens hot","ĠU V","Ġall ied","ĠPers ian","Ġmonop oly","Ġat om","ĠReds kins","\"> <","Ġcan cell","Ġcinem a","13 1","f air","ĠAlf red","Ġd uck","arg s","22 3","ĠIS I","Ġsign aling","in ar","Ġlaugh s","Ġfor wards","Ġreck less","Ġlisten ers","at ivity","Ġvast ly","n ant","L ess","ĠHun ting","ĠScient ific","IT ED","Ġkn ight","ĠH TC","us a","t mp","Ġr ude","ĠLegend ary","Ġar ises","B ad","ĠCl aim","pe g","Ġreal ities","Th ink","Ġ °","Ġro de","Ġstri ve","Ġan ecd","Ġshort s","Ġhypot hes","Ġcoord inated","ĠGand hi","ĠF PS","R ED","Ġsuscept ible","Ġshr ink","ĠCh art","Hel p","Ġ ion","de ep","rib es","ĠK ai","ĠCustom er","Sum mary","Ġc ough","w ife","Ġl end","Ġposition ing","Ġlot tery","ĠC anyon","Ġf ade","Ġbron ze","ĠKenn y","Ġbo asts","ĠEnh anced","rec ord","Ġemer gence","Ġa kin","ĠB ert","it ous","âĸ ij","Ġst ip","Ġexch anged","om ore","als h","Ġreserv oir","Ġstand point","W M","Ġiniti ate","Ġdec ay","Ġbrew ery","Ġter ribly","Ġmort al","lev ard","Ġrev is","N I","el o","Ġconf ess","ĠMS NBC","Ġsub missions","Cont roller","Ġ20 2","ĠR uth","} );","ĠAz ure","Ġ .\"","20 6","ĠMarket ing","Ġl aund","ien cies","Ġrenown ed","ĠT rou","ĠN GO","ble ms","Ġterr ified","Ġwar ns","Ġper t","Ġuns ure","4 80","ale z","ult z","ĠOut side","Ġst yl","ĠUnder ground","Ġp anc","Ġd ictionary","Ġf oe","rim inal","ĠNor wegian","Ġj ailed","Ġm aternal","é e","ĠLu cy","c op","Ch o","Ġuns igned","ĠZe lda","ĠIns ider","ĠContin ued","Ġ13 3","ĠNar uto","ĠMajor ity","16 9","ĠW o","ãĤ ĵ","Ġpast or","Ġinform al","Ð ½","an throp","jo in","ãģ Ĺ","it ational","N P","ĠWrit ing","f n","ĠB ever","19 5","Ġy elling","Ġdr astically","Ġe ject","Ġne ut","Ġth rive","ĠFre qu","ou x","Ġpossess es","ĠSen ators","ĠD ES","ĠSh akespeare","ĠFran co","ĠL B","uch i","Ġinc arn","Ġfound ers","F unction","Ġbright ness","ĠB T","Ġwh ale","ĠThe ater","m ass","ĠD oll","S omething","Ġecho ed","ĠHe x","c rit","af ia","Ġgodd ess","Ġele ven","ĠPre view","ĠAur ora","Ġ4 01","uls ive","ĠLog an","in burgh","ĠCent ers","ĠON LY","ĠA id","Ġparad ox","Ġh urd","ĠL C","D ue","c ourt","Ġoff ended","Ġeval uating","ĠMatthew s","Ġto mb","Ġpay roll","Ġextra ction","ĠH ands","if i","Ġsuper natural","ĠCOM M","] =","dog s","Ġ5 12","ĠMe eting","Rich ard","ĠMax imum","Ġide als","Th ings","m and","ĠReg ardless","Ġhum ili","b uffer","L ittle","ĠD ani","ĠN ak","Ġliber ation","ĠA be","ĠO L","Ġstuff ed","ac a","ind a","raph ic","Ġmos qu","Ġcampaign ing","Ġoccup y","S qu","r ina","ĠW el","ĠV S","Ġphys ic","Ġp uls","r int","oad ed","ET F","ĠArch ives","Ġven ues","h ner","ĠTur bo","Ġl ust","Ġappeal ed","que z","il ib","ĠTim othy","Ġo mn","d ro","Ġobs ession","ĠSav age","19 96","Gl obal","J es","2 14","Ġsl iding","Ġdisapp ro","ĠMag ical","Ġvolunt arily","g b","ane y","Ġprop het","ĠRe in","ĠJul ia","ĠW orth","aur us","Ġb ounds","ie u",")) )","Ġcro re","ĠCitiz en","S ky","Ġcolumn ist","Ġseek ers","ond o","IS A","ĠL ength","Ġnost alg","Ġnew com","Ġdet rim","ent ric","3 75","ĠG E","Ġaut op","Ġacadem ics","App Data","ĠS hen","Ġid iot","ĠTrans it","Ġteasp oon","W il","K O","ĠCom edy","> ,","Ġpop ulated","W D","Ġp igs","ĠO culus","Ġsymp athetic","Ġmar athon","19 8","Ġseiz ure","s ided","Ġd op","irt ual","L and","ĠFl oor","osa urs","... ]","Ġl os","Ġsubsid iary","E Y","ĠPart s","ĠSt ef","ĠJud iciary","Ġ13 4","Ġmir rors","Ġk et","t imes","Ġneuro log","Ġc av","ĠGu est","Ġtum or","sc ill","ĠLl oyd","E st","Ġcle arer","Ġstere otypes","Ġd ur","not hing","Red dit","Ġnegoti ated","---------------- --------","23 5","Ġfl own","ĠSe oul","ĠRes ident","ĠS CH","Ġdisappear ance","ĠV ince","g rown","Ġgrab s","r il","ĠInf inite","ĠTw enty","Ġpedest rian","Ġjer sey","ĠF ur","ĠInf inity","ĠEll iott","Ġment or","Ġmor ally","Ġob ey","sec ure","iff e","Ġantib iotics","ang led","ĠFre eman","ĠIntrodu ction","J un","Ġm arsh","ic ans","ĠEV ENTS","och ond","W all","icult y","Ġmisdem eanor","Ġl y","Th omas","ĠRes olution","Ġanim ations","ĠD ry","Ġinter course","ĠNew castle","ĠH og","ĠEqu ipment","17 7","Ġterrit orial","Ġarch ives","20 3","Fil ter","ĠMun ich","Ġcommand ed","ĠW and","Ġpit ches","ĠCro at","Ġrat ios","ĠM its","Ġaccum ulated","ĠSpecific ally","Ġgentle man","acer b","Ġp enn","Ġa ka","ĠF uk","Ġinterven e","ĠRef uge","ĠAlz heimer","Ġsuccess ion","oh an","d oes","L ord","Ġsepar at","Ġcorrespond ence","Ġsh iny","P rior","Ġs ulf","Ġmiser able","Ġded ication","( ).","Ġspecial ists","Ġdefect s","ĠC ult","ĠX ia","Ġje opard","ĠO re","Ab ility","Ġle ar","Ġamb itions","ĠB MI","ĠArab s","Ġ19 42","Ġpres ervation","ific ate","Ġash amed","l oss","ĠRest aur","Ġrese mble","Ġen rich","ĠK N","ĠCl an","fl oat","Ġplay able","IT T","Ġharm ony","arr ison","ĠWe instein","w ere","Ġpoison ing","ĠCom put","ĠWord Press","m ajor","ĠVal ve","F an","ĠTh row","ĠRom ans","ĠDep ression","ad os","Ġtort ured","Ġbal ancing","bott om","Ġacqu iring","ĠMon te","ard i","Ġa ura","Ġ# #","ĠStand ing","ĠAtl as","C F","Ġintr ins","ĠBen ghazi","Ġcamp ing","Ġt apped","bl ade","st rous","ĠR abb","ĠW ritten","t ip","ĠNe igh","ster dam","ĠAll ow","ĠHe aling","ĠR hod","n um","Ġcaffe ine","ĠPer cent","Ġbo o","Ġapp les","30 5","Ġwel coming","Ġappl aud","Ġa usterity"," ±","ĠRe ality","ef e","å ®","Ġsu cks","Ġtab s","ĠPay Pal","Ġback pack","Ġgif ted","abul ary","ĠSc out","ir teen","Ġch in","Ġo mitted","Ġnegative ly","Ġaccess ing","ĠE arn","Ġambul ance","Ġhead phones","Ġ20 5","ĠRef resh","p resident","ĠKit chen","ĠEnt ered","ĠS nyder","00 5","om ical","Ġborrow ed","ĠN em","Ġav iation","Ġst all","rim ination","Ġuniform s","it ime","ĠSim mons","ener gy","ab lished","y y","qual ified","Ġrall ies","ĠSt uart","fl ight","Ġgang s","r ag","Ġv ault","lu x","ĠCom par","Ġdesign ation","20 9","ĠJ os","d ollar","z ero","Ġwell s","30 3","Ġconstitu ents","Ġhe ck","Ġc ows","Ġcommand ers","Ġdifferent ial","ĠC atherine","29 9","Ġval ve","Ġbr ace","Ġperspect ives","c ert","f act","icular ly","ĠMc N","pl anes","Ġint ric","Ġpe as","ov an","Ġtoss ed","ret ch","ĠL opez","Ġunf amiliar","de ath","ĠA part","ĠCh ang","Ġrelie ved","rop he","Ġair ports","Ġfre ak","ut il","M ill","ĠCh in","ĠOw en","m ale","ĠBro ken","ĠWind s","ro b","r ising","Ġfire fighters","Ġauthor itarian","Ġ14 8","Bit coin","ex ternal","Ġbrow sers","iche ver","or ian","Ġun b","Ġpo ke","ĠZ ot","M id","ĠPop ular","Ġco vert","Ġcont ributes","Ġ6 50","Ġcont ention","G ate","Ġcons oles","Ġchrom os","ĠI X","Ġvis ually","ĠE isen","Ġjewel ry","Ġdeleg ation","Ġacceler ate","ĠR iley","Ġsl ope","Ġind oor","it ially","Ġhuge ly","Ġtun nels","Ġfin ed","Ġdirect ive","Ġfore head","ustom ed","Ġsk ate","Mus ic","g as","Ġrecogn izing","am bo","Ġover weight","ĠGr ade","Ù Ĭ","Ġsound ing","Ġlock ing","ĠR EM","St ore","Ġexc av","ĠLike wise","ĠL ights","Ġel bow","ĠSupp ly","w ic","Ġhands ome","19 94","C oll","Ġadequ ately","ĠAssoci ate","Ġstri ps","Ġcrack down","Ġmar vel","ĠK un","Ġpass ages","@@ @@","ĠT all","Ġthought ful","names e","Ġprost itution","bus iness","Ġball istic","person al","c ig","iz ational","R ound","ĠÂłĠÂł ĠÂłĠÂł","ĠCole man","Ġadm itting","ĠPl ug","Ġbit coins","ĠSu z","Ġfair ness","Ġsupp lier","Ġcatast rophic","ĠHel en","o qu","M arc","ĠArt icles","g ie","Ġend angered","Ġdest iny","ĠVol t","ol ia","ax is","Ġche at","Ġun ified","IC O","qu ote","30 2","ĠS ed","Ġsupp ression","Ġanaly zing","Ġsqu at","Ġfig uring","Ġcoordin ates","Ġch unks","Ġ19 46","Ġsub p","Ġw iki","ĠFor bes","ĠJ upiter","ĠE rik","im er","ĠCom mercial","\\ )","Ġlegitim acy","Ġd ental","ĠMe an","Ġdefic its","5 50","Orig inally","ĠHor ror","Ġcontam ination","ll ah","Ġconf isc","ĠCl are","T B","ĠF ailed","an ed","Ġrul er","ĠCont roller","Ġfemin ists","F ix","g ay","20 7","Ġr abbit","Th ird","ownt own","Ġgl ue","Ġvol atile","Ġsh ining","Ġf oll","Ġimp aired","Ġsup ers","æ Ī","Ġcl utch","ļé ĨĴ","Ġpro let","Ġ( !","Ġy elled","ĠK iev","ĠEr n","ĠSh ock","K B","Ġsit uated","qu ery","ĠN as","Ġan nex","char acter","ĠHol iday","Ġautom ation","ĠJ ill","ĠRem astered","Ġl inem","Ġwild erness","ĠHor izon","ĠGu inea","A Z","Ġmain land","Ġsec recy","LE ASE","Ġp unk","ĠProv ince","( ),","Spe ed","Ġhand ing","ĠSeb ast","S ir","r ase","Ġj ournals","Ġcon gest","ĠT ut","ir rel","Ġschizophren ia","Ġmis ogyn","health y","I ron","Ġreact ed","- $","25 2","Ġpl ural","Ġpl um","Ġbarg ain","Ġground ed","f inder","Ġdis se","ĠL az","O OD","Ġat roc","F actory","Ġmin ions","Ġo ri","ĠB rave","ĠP RE","ĠMy anmar","ĠH od","Ġexped ition","Ġexpl ode","ĠCo ord","Ġext r","ĠB rief","ĠAD HD","Ġhard core","feed ing","Ġd ile","ĠF ruit","Ġvacc ination","ĠM ao","osp here","Ġcont ests","- |","Ġf ren","isp here","R om","ĠSh arp","ĠTre nd","Ġdis connect","âĢ¢ âĢ¢","Ġper secution","Ear th","Ġhealth ier","38 4","Ġc ob","ĠTr inity","OW S","AN N","Ġspecial ty","Ġg ru","Ġcooper ative","wh y","Start ing","ĠIss ues","st re","ens or","Ġ18 5","Ad v","! ?","ĠRe vel","em ia","ĠH ulk","Ġcelebr ations","ĠS ou","ra ud","ĠKle in","Ġun real","con text","Ġpartners hips","Ġadop ting","t ical","Ġspl ash","ĠHe zbollah","c ategory","cycl op","xt on","ĠD ot","urd y","t z","Ġenvelop e","ĠN L","â ķ","Ġwhere in","Spe c","18 4","Ġte lev","al iation","Ġmyth s","å °","Ġrig orous","Ġcommun icating","Ġobser ver","Ġre he","ĠW ash","Ġapolog ized","ĠT in","Ġexpend itures","work ers","d ocument","Ġhes itate","ĠLen in","Ġunpredict able","Ġrenew al","cl er","ok ia","ĠCON T","Ġpost season","Tok ens","Ġex acerb","Ġbet ting","Ġ14 7","Ġelev ation","W ood","ĠSol omon","19 4","00 4","out put","Ġredu nd","ĠM umbai","Ġp H","Ġreprodu ce","ĠD uration","MA X","Ġb og","C BS","ĠBal ance","ĠS gt","ĠRec ent","Ġc d","Ġpo pped","Ġincomp et","pro p","ay an","g uy","Pac ific","Ġty r","Ġ{ {","ĠMy stic","ĠD ana","Ġmast urb","Ġge ometry","à ¢","ĠCor rect","Ġtraject ory","Ġdistract ed","Ġf oo","ĠW elsh","L uc","m ith","Ġrug by","Ġrespir atory","Ġtri angle","Ġ2 15","Ġunder graduate","ĠSuper ior","ch anging","_ -","Ġright ly","Ġrefere e","Ġluc rative","Ġun authorized","Ġresemb les","ĠGN U","ĠDer by","Ġpath ways","ĠL ed","Ġend urance","Ġst int","Ġcollect or","F ast","Ġd ots","Ġnational s","ĠSec urities","Ġwh ip","Par am","Ġlearn s","M agic","Ġdetail ing","m oon","Ġbroadcast ing","Ġb aked","26 5","hol m","ĠS ah","ĠHus sein","ĠCourt esy","17 4","Ġ14 6","Ġge ographic","pe ace","Ġjud ging","ĠS tern","B ur","Ġstory line","G un","ĠSt ick","24 5","30 7","ãĤ´ ãĥ³","ĠAdminist rator","Ġbur nt","Ġp ave","ch oes","Ex ec","Ġcamp uses","Res ult","Ġmut ations","ĠCh arter","Ġcapt ures","Ġcomp ares","Ġbad ge","S cient","Ġer ad","ier y","o i","ett es","ĠE state","Ġst rap","Ġproud ly","Ġf ried","Ġwithd rawn","ĠV oy","ph ony","It ems","ĠP ierce","b ard","Ġann otation","ant on","ill on","Im pro","... )","Ġhapp ier","---- --","ad just","Ġstaff ers","Ġactiv ism","Ġper f","Ġal right","N eed","Ġcomm ence","Ġopio id","ĠAm anda","E s","ĠP ars","ĠK aw","W orks","24 8","Ġind o","t c","end ant","ĠM oto","Ġlegal ization","OT E","Ġtask ed","Ġt sp","ĠACT IONS","16 6","Ġrefres hing","ĠN R","ĠPere z","Ġinfring ement","S Y","List en","in ning","k u","Ġrot ate","pro gram","ar ah","Des ign","Ġ( £","Ġst oring","Ġwar rants","Ġjud gement","ĠB rist","us ually","ph oto","ĠR an","ĠP ine","Ġoutrage ous","ĠValent ine","lu ence","ĠEvery body","Al tern","Ġrele vance","Ġtermin ated","Ġd essert","Ġfulf illed","Ġprosecut ed","ĠW ords","Ġm igrant","Ġcultiv ation","ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ","idel ity","ĠV ern","ĠLog in","Ġmetaph or","ĠT ip","Ġrecru its","ĠP ig","rib ing","Ġenthusi asts","ex per","Ġfright ening","ĠH air","ans on","str ate","Ġh i","He ight","Ġown ing","n one","Ġdis like","Ġkn ives","pher d","Ġloud ly","ĠAP Is","Dis play","ĠL ac","ĠUS S","ab l","ver ages","J ew","Ġ17 2","ĠHist orical","at oon","ĠPhys ics","in tern","Ġwarm th","Ġto pp","D M","Ġgun man","Ġem peror","od i","ãĥ £","in atory","ĠR ib","Ġ13 1","ĠSat urn","ĠSh ining","Ġw aking","Qu otes","Ġcomed ian","en berg"," ½","Ġbelie vers","Ġpaper work","c ustom","Ġle v","Ġl ament","Ġpour ing","22 2","p olitical","ĠSupp lement","m aid","Ġcruel ty","Ġt read","ys ics","A w","rit es","Ġmod ifier","ĠP osition","Ad am","l b","ub s","Ġimper fect","Ġcl usters","ĠEngine er","ĠC herry","Ġinaug uration","ĠS au","Ġembod iment","ĠUn cle","Ġover r","Ġexplos ions","c ule","ĠPrinc eton","ĠAndre a","Ġincorrect ly","Ġearn est","Ġpil gr","ĠS print","Ġslee ve","Ġhe ars","ĠAm azing","Ġbrow sing","ag in","Ġhom eland","Ġha w","Ġd iving","ist ered","17 8","Ġbarg aining","ĠArc ade","Ġdeleg ate","ters on","................................ ................................","ĠJackson ville","27 5","Ġst agn","Ġad am","ĠSher man","C B","Ġsub urb","ĠFood s","Ġconver ting","ĠAr ist","Ġch ambers","l ove","Ġam ino","ĠG an","Ġmad ness","m c","ĠUS E","def ined","Ġul tr","ind ust","Ġw olves","l ance","Add itionally","Ġcr acks","as ia","ĠRe ason","ĠP ump","Ġaccident al","ĠL aser","ĠR id","Ġinitial ized","ell i","Ġun named","Ġn oun","ĠPass ed","Ġhost age","ĠEth iop","sh irts","Ġun rel","ĠEmb assy","Ġ19 41","Ġat oms","Ġpur ported","16 4","ĠF i","Ġgall ons","ĠMon ica","Ġp g","en ment","Ġsort ed","ĠG ospel","Ġhe ights","Ġtr aced","Ġunder going","She ll","Ġs acks","Ġproport ions","Ġhall uc","F ont","ac et","Ġwar mer","ĠIN TER","Ġgrab bing","Pl ug","Ġreal ization","ĠBur ke","Ġen chant","AT ER","ĠSe ed","Ġabund ant","F M","Ġc ivic","V s","is i","Ġv ow","Ġre per","ĠPartners hip","Ġpenet ration","Ġax e","Ġsh attered","ĠZ ombies","Ġv inyl","ĠAl ert","e on","Ġoblig ed","ĠIll ust","ĠPl aza","ĠFront ier","Ġdavid jl","ĠSer ial","ĠH av","ĠNut rition","B i","Ġâĸ Ī","ĠJ ays","lin ux","Ġhur ry","Ġv oy","Ġhop eless","ĠSte alth","Ġ ãģ","ess ors","tt le","b org","ĠSaf ari","f ell","Ġw ary","d ue","ĠAb ove","H a","E LL","Ġnot or","ĠW on","T oo","Ġoccup ations","Ġposs essions","Ġinv iting","Ġpred ators","Ġacceler ated","Ġ15 7","uter te","ĠC ube","e ast","acc ount","G ive","Ġtrans plant","red ients","id able","Ġscreens hots","ĠG und","ĠF S","Ġtravel ers","Ġsens ory","ĠF iat","ĠRock ets","İ ĭ","_ {","F riend","Ġchar ming","AL S","Ġenjoy ment","m ph","Ġ5 000","ĠRE G","Ù Ĩ","b ia","Ġcomp ilation","ro st","ĠV P","ĠSch ne","201 9","Ġcop ying","M ORE","ĠFl ore","f alls","2 15","t otal","Ġdis ciples","d ouble","Ġexceed ing","Ġsm ashed","Ġconcept ual","ĠRom ania","ĠB rent","ĠI CE","ĠT ou","Ġg rap","Ġn ails","18 9","ãĥ ĺ","Ġproc ure","e ur","Ġconfir ming","ĠC ec","aw i","ĠEd en","Ġn g","Ġengine ered","at ics","Ġhook ed","Ġdisgust ing","ĠMur der","ãĤ ¿","L ibrary","Ġ16 8","Al most","hem atic","Men u","ĠNot re","ĠJ ur","Ġkidn apped","Ġhack er","ĠJ ade","Ġcreep y","Ġdraw ings","ĠSpons or","Ġcycl ists","ĠGob lin","Ġoptim ized","Ġst aged","ĠMc D","bet ween","A ge","en o","S ex","ĠW ide","n ings","av is","Ġincap able","ĠK ob","Ġreward ing","ĠL one","oles cent","Ġcontract ed","Ġstick y","J ose","B all","f est","ĠIn put","ĠRec ently","Ġto mat","squ are","App lication","Ġnit rogen","Ġdupl icate","ĠRec on","ĠD ear","L ondon","Ġint ra","Ġd ock","Ġout reach","ĠM illion","Ġmamm als","am pton","V AL","Ġsn aps","Ġd os","ĠWh ole","ĠRead y","T ry","ĠWinn ipeg","ear ance","Ġinc urred","ren ched","ĠNS W","il ot","rain e","Ġc ube","g ot","Ġrun way","etermin ed","ĠHaw ks","Ġsurviv or","ĠW ish","ĠD in","ĠDE F","ĠV ault","18 7","Ġmush rooms","Ġcris p","be y","ĠDisco very","Ġdevelopment al","Ġparad igm","Ġcha otic","ĠT su","Ġ3 33","b ons","Ġbacter ial","Ġcomm its","Ġcos mic","Ġme ga","oc ative","ĠP aint","ophob ic","Ġv ain","Ġcar ved","ĠTh ief","ĠG ul","ows hip","Ġc ites","ĠEd inburgh","Ġdimin ished","Ġacknowled ges","ĠK ills","Ġmic row","ĠHer a","Ġsen iors","Ġwhere by","H op","at ron","Ġun available","ĠN ate","Ġ4 80","Ġsl ated","ĠRe becca","ĠB attery","Ġgram mar","Ġhead set","Ġcurs or","Ġex cluding","any e","aunder ing","eb in","Ġfeas ible","ĠPub lishing","ĠLab s","ĠCl iff","ĠFerr ari","Ġp ac","vis ible","mark ed","pe ll","Ġpol ite","Ġstagger ing","ĠGal actic","Ġsuper st","Ġpar an","ĠOffic ers","ãĢ ģ","Ġspecific s","ul us","23 9","ĠP aste","AM P","ĠPan ama","ĠDe lete","angu ard","rest rial","Ġhero ic","ĠD y","ا ÙĦ","Ġincumb ent","Ġcr unch","t ro","Ġsc oop","Ġblog ger","Ġsell ers","ure n","Ġmedic ines","ĠC aps","ĠAnim ation","ox y","Ġout ward","Ġinqu iries","22 9","Ġpsych ologist","ĠS ask","ev il","Ġcontam inated","ãĤ ¨","he rence","Ġbrand ed","ĠAbd ul","z h","Ġparagraph s","Ġmin s","Ġcor related","er b","Ġimp art","Ġmil estone","ĠSol utions","ot le","Ġunder cover","Ġmar ched","ĠCharg ers","f ax","ĠSec rets","Ġr uth","we ather","Ġfemin ine","Ġsh am","Ġprest igious","igg ins","Ġs ung","hist ory","ett le","gg ie","Ġout dated","ol and","Ġper ceptions","ĠS ession","ĠDod gers","u j","ĠE ND","D oc","Ġdefic iency","Gr and","ĠJ oker","Ġretro spect","Ġdiagn ostic","Ġharm less","Ġro gue","ĠA val","E qu","Ġtrans c","ĠRoberts on","ĠDep ending","ĠBurn s","iv o","Ġhost ility","F eatures","ĵ ĺ","Ġdis comfort","ĠL CD","spec ified","ĠEx pect","3 40","Ġimper ative","ĠReg ular","Ch inese","Ġstate wide","Ġsy mm","Ġlo ops","Ġaut umn","N ick","Ġsh aping","Ġqu ot","Ġc herry","ĠCross ref","è¦ ļéĨĴ","Stand ard","he ed","ĠD ell","ĠViet namese","Ġo st","ĠV alkyrie","O A","Ass ad","Ġreb ound","ĠTra ffic","pl aces","æ ĺ","ĠB uc","17 2","Ġshel ters","Ġins isting","ĠCertain ly","ĠKenn eth","ĠT CP","Ġpen al","ĠRe play","he ard","Ġdial ect","iz a","ĠF Y","it cher","ĠD L","Ġspir al","Ġquarterback s","Ġh ull","Ġgo ogle","Ġto dd","ĠSter ling","ĠPl ate","Ġsp ying","mb ol","ĠReal m","ĠPro ced","ĠCr ash","Ġtermin ate","Ġprotest ing","C enter","gu ided","Ġun cover","Ġboy cott","Ġreal izes","s ound","Ġpret ending","ĠV as","19 80","Ġfram ed","Ġ13 9","Ġdesc ended","Ġrehab ilitation","Ġborrow ing","ĠB uch","Ġbl ur","R on","ĠFro zen","en za","Ch ief","ĠP oor","Ġtransl ates","M IN","Ġ2 12","J ECT","Ġerupt ed","Ġsuccess es","S EC","Ġpl ague","Ġg ems","d oms","Ġstret ches","ĠSp y","Ġstory telling","C redit","ĠP ush","Ġtra ction","Ġin effective","ĠL una","Ġt apes","Ġanaly tics","erc ise","Ġprogram mes","ĠCar bon","Ġbeh old","he avy","ĠConserv ation","ĠF IR","Ġs ack","ter min","ric ks","Ġhous ed","Ġunus ually","I ce","Ġexecut ing","ĠMor oc","ed ay","Ġed itions","Ġsm arter","ĠB A","Ġout law","Ġvan ished","ib a","AL SE","ĠSil va","23 8","C ould","Ġphilos opher","Ġevac uated","Sec ret","14 2","Ġvis as","ãĤ ¬","ĠM alt","ĠClear ly","ĠN iger","ĠC airo","ĠF ist","3 80","ĠX ML","aut o","it ant","Ġrein forced","Rec ord","ĠSurviv or","G Hz","Ġscrew s","parent s","Ġo ceans","ma res","Ġbra kes","vas ive","Ġhell o","ĠS IM","rim p","Ġo re","ĠArm our","24 7","Ġterr ific","Ġt ones","14 1","ĠMin utes","Ep isode","Ġcur ves","Ġinflamm atory","Ġbat ting","ĠBeaut iful","L ay","Ġunp op","v able","Ġr iots","ĠTact ics","b augh","ĠC ock","Ġorg asm","ĠS as","Ġconstruct or","et z","G ov","Ġant agon","Ġthe at","Ġde eds","ha o","c uts","ĠMc Cl","Ġu m","ĠScient ists","Ġgrass roots","ys sey","\"] =>","Ġsurf aced","Ġsh ades","Ġneighb ours","Ġad vertis","oy a","Ġmer ged","Up on","Ġg ad","Ġanticip ate","Any way","Ġsl ogan","Ġdis respect","I ran","ĠT B","act ed","Ġsubp oen","medi ately","OO OO","Ġwa iver","Ġvulner abilities","ott esville","ĠHuff ington","J osh","ĠD H","M onday","ĠEll en","K now","x on","it ems","22 8","Ġf ills","ĠN ike","Ġcum ulative","and als","I r","Ġ ì","Ġfr iction","ig ator","Ġsc ans","ĠVi enna","ld om","Ġperform ers","P rim","Ġb idding","M ur","Ġlean ed","ĠPri x","al ks","Ġ[ â̦]","ĠTw itch","ĠDevelop er","ĠG ir","Ġcall back","Ab stract","Ġacc ustomed","Ġfreed oms","ĠP G","ur acy","Ġl ump","is man",",, ,,","19 92","ĠR ED","Ġwor m","M atch","ĠPl atinum","I J","ĠOwn er","Tri via","com pl","Ġnew born","Ġfant as","O wn","Ġ19 59","Ġsymp ath","Ġub iqu","Ġoutput s","Ġal lev","Ġpr ag","K evin","Ġfav ors","Ġbur ial","Ġn urt","so lete","c ache","Ġ15 6","Ġunl ocks","te chn","M aking","Ġcon quer","ad ic","æ ĸ","Ġel f","Ġelect orate","ĠKurd s","ĠSt ack","ĠSam urai","Ġâ ĺħ","Ġ{ }","ĠS aid","ĠFall out","Ġkind ness","ĠCustom s","ĠBou levard","Ġhelicop ters","ot ics","ĠVe get","com ment","Ġcritic ised","Ġpol ished","ĠRem ix","ĠC ultural","Ġrec ons","Ġdo i","at em","Sc reen","Ġbar red","Com ments","ĠGener ally","Ġsl ap","7 20","V ari","p ine","Ġem pt","Ġh ats","ĠPlay ing","l ab","a verage","form s","ĠC otton","Ġcan s","ĠD ON","ĠSom alia","C rypt","ĠIncre ases","E ver","mod ern","Ġsur geon","3 000","Ġrandom ized","================================ ================================","B ern","im pl","ĠC OR","Ġpro claim","th ouse","Ġto es","Ġam ple","Ġpres erving","Ġdis bel","gr and","B esides","Ġsil k","ĠPat tern","h m","Ġenter prises","Ġaffidav it","ĠAdvis ory","Ġadvert ised","ĠRel igious","se ctions","psy ch","ĠField s","aw ays","Ġhasht ag","ĠNight mare","Ġv ampire","Ġfore nsic","rosso ver","n ar","Ġn avy","Ġvac ant","ĠD uel","Ġhall way","Ġface book","ident ally","ĠN RA","Ġm att","Ġhur ricane","ĠKir by","ĠP uzzle","Ġsk irt","ou st","du llah","Ġanal ogy","in ion","Ġtomat oes","ĠN V","ĠPe ak","ĠMe yer","Ġappoint ments","Ġm asc","Ġal ley","re hend","Ġchar ities","Ġund o","Ġdest inations","ĠTest ing","\"> \"","c ats","* .","Ġgest ures","gener al","Le ague","Ġpack ets","ĠInspect or","ĠBer g","Ġfraud ulent","Ġcritic ize","F un","Ġbl aming","nd ra","Ġsl ash","ĠE ston","Ġpropos ing","Ġwh ales","Ġtherap ist","Ġsub set","Ġle isure","EL D","ĠC VE","ĠAct ivity","Ġcul min","sh op","ĠD AY","is cher","ĠAdmir al","ĠAtt acks","Ġ19 58","Ġmem oir","Ġfold ed","Ġsex ist","Ġ15 3","ĠL I","Ġread ings","Ġembarrass ment","ĠEmploy ment","w art","ch in","Ġcontin uation","l ia","Rec ently","Ġd uel","Ġevac uation","ĠKash mir","Ġdis position","ĠR ig","Ġbol ts","Ġins urers","4 67","M ex","Ġret aliation","Ġmis ery","Ġunre asonable","r aining","I mm","ĠP U","em er","Ġgen ital","ãĤ ³","ĠC andy","Ġon ions","ĠP att","lin er","Ġconced ed","Ġf a","Ġfor c","ĠH ernandez","ĠGe off","deb ian","ĠTe ams","Ġc ries","Ġhome owners","23 7","A BC","Ġst itch","Ġstat istic","Ġhead ers","ĠBi ology","Ġmot ors","ĠG EN","ĠL ip","Ġh ates","Ġhe el","S elf","i pl","ED IT","ort ing","Ġann ot","ĠSpe ech","old emort","ĠJ avascript","ĠLe Bron","Ġfoot print","Ġf n","Ġseiz ures","n as","h ide","Ġ19 54","ĠBe e","ĠDecl aration","ĠKat ie","Ġreserv ations","N R","f emale","Ġsatur ated","Ġb iblical","Ġtroll s","Dev ice","ph otos","Ġdr ums","ãĥīãĥ© ãĤ´ãĥ³","N ight","f ighter","ĠH ak","ri ber","Ġc ush","Ġdiscipl inary","ba um","ĠG H","ĠSch midt","ilib rium","Ġs ixty","ĠKush ner","ro ts","Ġp und","ĠR ac","Ġspr ings","Ġcon ve","Bus iness","F all","Ġqual ifications","Ġvers es","Ġnarc iss","ĠK oh","ĠW ow","ĠCharl ottesville","ed o","Ġinterrog ation","ĠW ool","36 5","B rian","Ġâľ ĵ","Ġalleg es","ond s","id ation","ĠJack ie","y u","Ġl akes","Ġworth while","Ġcryst als","ĠJud a","Ġcomp rehend","Ġfl ush","Ġabsor ption","ĠO C","Ġfright ened","ĠCh ocolate","Mart in","Ġbu ys","Ġbu cks","Ġapp ell","ĠChampions hips","Ġlist ener","ĠDef ensive","Ġc z","ud s","ĠM ate","Ġre play","Ġdecor ated","Ġs unk","ĠV IP","ĠAn k","Ġ19 5","aa aa","Nob ody","ĠMil k","ĠG ur","ĠM k","ĠS ara","Ġse ating","ĠW id","Tr ack","Ġemploy s","Ġgig antic","AP P","ãĤ §","in ventory","Ġtow el","at che","l asting","ĠT L","Ġlat ency","Ġkn e","B er","me aning","Ġup held","Ġplay ground","Ġm ant","S ide","Ġstere o","Ġnorth west","Ġexception ally","Ġr ays","Ġrec urring","D rive","Ġup right","Ġab duct","ĠMar athon","Ġgood bye","Ġal phabet","h p","Ġcourt room","ring ton","ot hing","T ag","Ġdiplom ats","Ġbar bar","ĠAqu a","18 3","33 33","Ġmat urity","Ġinst ability","ĠAp ache","Ġ= ==","Ġfast ing","ĠGr id","Mod Loader","Ġ15 2","A bs","ĠOper ating","ett i","Ġacqu aint","Don nell","ĠK em","ĠFor ge","Ġarm ored","M il","Ġphilos ophers","in vest","Pl ayers","â Ī","Ġmy riad","Ġcomr ades","R ot","Ġremember ing","Ġcorrespond s","Ġprogram mers","ĠLyn n","Ġo lig","Ġco herent","yn chron","ĠChem ical","Ġj ugg","p air","post s","E ye","ĠIn ner","Ġsem ester","ott est","ĠEmir ates","ric anes","or ously","m its","ĠW is","Ġd odge","l ocation","Ġf aded","Am azon","ĠPro ceed","ĠIN FO","j ournal","ĠTru ck","T en","Ġ2 17","Ġstat utes","m obile","ĠT ypes","Rec omm","b uster","pe x","Ġleg ends","Ġhead ache","f aced","ĠWi Fi","if ty","ĠH ER","Ġcirc uits","ER ROR","22 6","ol in","Ġcyl inder","osp ace","ik ers","P rem","Qu ant","Ġconflic ting","Ġslight est","Ġfor ged","ion age","Step hen","ĠK ub","ĠOpp ortun","ĠHe al","Ġbl o","Ġrul ers","Ġh uh","Ġsubmar ine","f y","ass er","Ġallow ance","ĠKas ich","ĠT as","ĠAustral ians","Forge ModLoader","ĠâĨ ij","ĠMat rix","am ins","Ġ12 00","ĠAc qu","23 6","D ocument","ĠBre aking","19 3","ĠSub st","ĠRoll er","ĠPro perties","ĠN I","t ier","Ġcr ushing","Ġadvoc ating","Further more","keep ers","Ġsex ism","x d","Ġcall er","ĠS ense","chie ve","ĠT F","Ġfuel ed","Ġreminis cent","Ġobs ess","ur st","Ġup hold","ĠF ans","het ics","Ġâ Ĺ","ĠB ath","Ġbe verage","Ġo scill","25 4","Ġpol es","Ġgrad ual","Ġex ting","ĠS uff","ĠS uddenly","Ġlik ing","Ġ19 49","un ciation","am ination","ĠO mar","ĠL V","ĠCon sequently","Ġsynt hes","ĠG IF","Ġp ains","Ġinteract ing","u ously","inc re","Ġrum or","ĠScient ology","19 7","ĠZ ig","Ġspe lling","ĠA SS","Ġexting u","ms on","Ġg h","Ġremark ed","ĠStrateg ic","ĠM ON","å ¥","g ae","ĠWH AT","E ric","ĠCamp us","Ġmeth ane","Ġimag in","J UST","ĠAl m","X T","i q","ĠR SS","Ġwrong doing","att a","Ġbig ot","Ġdemonstr ators","ĠCal vin","ĠV illa","Ġmembr ane","ĠAw esome","Ġbenef ic","26 8","Ġmagn ificent","ĠL ots","G reg","ĠBor is","Ġdetain ees","ĠH erman","Ġwhis pered","Ġa we","Prof essor","fund ing","Ġphys iological","ĠDest ruction","Ġlim b","Ġmanip ulated","Ġbub bles","Ġpse ud","Ġhyd ra","ĠBrist ol","Ġst ellar","ĠExp ansion","ĠK ell","ĠInterest ingly","Ġm ans","Ġdrag ging","Ġec ological","ĠF it","Ġg ent","Ġbenef ited","ĠHait i","Ġpoly g","ãĥ İ","Ġ20 30","Ġpro w","Ġrecon struction","Ġwas t","Ġpsych ic","ĠGree ks","Hand ler","16 2","ĠP ulse","Ġsol icit","Ġsy s","Ġinflu x","ĠG entle","per cent","Ġprolifer ation","Ġtax able","Ġdisreg ard","Ġesc aping","Ġg inger","Ġwith stand","Ġdevast ated","ĠD ew","ser ies","Ġinject ed","ela ide","Ġturn over","he at","Ļ Ĥ","H appy","ĠSil ent","ãĤ Ń","iv ism","Ġir rational","AM A","Ġre ef","r ub","Ġ16 2","Ġbank ers","ĠEth ics","v v","Ġcritic isms","K n","18 6","M ovie","ĠT ories","Ġno od","Ġdist ortion","F alse","od ore","Ġt asty","Res earch","ĠU ID","- )","Ġdivor ced","ĠM U","ĠHay es","ĠIs n","ian i","ĠH Q","Ġ\" #","ign ant","Ġtra umatic","ĠL ing","H un","Ġsab ot","on line","r andom","Ġren amed","ra red","K A","d ead","é t","ĠAss istance","Ġse af","++++ ++++","Ġse ldom","ĠWeb b","Ġbo olean","u let","Ġref rain","ĠDI Y","ru le","Ġshut ting","Ġutil izing","load ing","ĠPar am","co al","oot er","Ġattract ing","ĠD ol","Ġher s","ag netic","ĠRe ach","im o","Ġdisc arded","ĠP ip","01 5","ü r","Ġm ug","Im agine","C OL","Ġcurs ed","ĠSh ows","ĠCurt is","ĠSach s","spe aking","ĠV ista","ĠFram ework","ong o","Ġsub reddit","Ġcr us","ĠO val","R ow","g rowing","Ġinstall ment","Ġgl ac","ĠAdv ance","EC K","ĠLGBT Q","LE Y","Ġac et","Ġsuccess ive","ĠNic ole","Ġ19 57","Qu ote","Ġcircumst ance","ack ets","Ġ14 2","ort ium","Ġguess ed","ĠFr ame","Ġperpet rators","ĠAv iation","ĠBen ch","Ġhand c","A p","Ġ19 56","25 9","r and","Net Message","d in","urt les","h ig","ĠV III","ff iti","ĠSw ords","b ial","Ġkidn apping","dev ice","Ġb arn","ĠEl i","auc as","S end","Con structed","Ġ ½","Ġneed les","Ġad vertisements","Ġv ou","Ġexhib ited","ĠFort ress","As k","B erry","TY PE","Ġcan cers","ump ing","ĠTerrit ory","Ġpr ud","Ġn as","Ġathe ist","Ġbal ances","ãģ Ł","ĠSh awn","& &","Ġland sc","ĠR GB","Ġpet ty","Ġex cellence","Ġtransl ations","Ġpar cel","ĠChe v","E ast","ĠOut put","im i","Ġamb ient","ĠTh reat","Ġvill ains","Ġ5 50","IC A","Ġtall er","Ġle aking","c up","Ġpol ish","Ġinfect ious","ĠK C","Ġ@ @","back ground","Ġbureaucr acy","ĠS ai","un less","it ious","ĠSky pe","At l","ID ENT","00 8","Ġhyp ocr","Ġpit chers","Ġguess ing","ĠF INAL","Bet ween","Ġvill agers","Ġ25 2","f ashion","ĠTun is","Be h","ĠEx c","ĠM ID","28 8","ĠHas kell","19 6","ĠN OR","Ġspec s","Ġinv ari","Ġgl ut","ĠC ars","Ġimp ulse","Ġhon ors","g el","Ġjurisd ictions","ĠBund le","ul as","Calif ornia","ĠIncre ase","Ġp ear","Ġsing les","Ġc ues","Ġunder went","ĠW S","Ġexagger ated","Ġdub ious","Ġfl ashing","L OG",") ].","J ournal","t g","V an","ĠI stanbul","ĠIn sp","ĠFrank en","D raw","Ġsad ness","Ġiron ic","ĠF ry","x c","Ġ16 4","is ch","W ay","ĠProtest ant","h orn","Ġun aff","ĠV iv","ill as","ĠProduct ions","ĠH ogan","Ġper imeter","ĠS isters","Ġspont aneous","Ġdown side","Ġdescend ants","Ġor n","w orm","Japan ese","Ġ19 55","Ġ15 1","ĠDo ing","els en","umb les","Ġrad ically","ĠDr um","ĠB ach","Ġli abilities","ĠO B","ĠElement ary","Ġmem e","yn es","Ġfinger print","ĠGr ab","Ġundert ake","Mem bers","ĠRead er","ĠSim s","g od","Ġhypot hetical","s cient","ĠA J","Ġchar ism","Ġad missions","ĠMiss ile","tr ade","Ġexerc ising","ĠBack ground","W ritten","Ġvoc als","whe ther","Ġv i","ĠW inner","Ġl itter","ĠSh ooting","ST EM","ãĤ ¡","ĠA FL","Ġvari ability","Ġe ats","ĠD PS","b row","Ġeleph ants","Ġstr at","Ġ Å","Ġsett lers","Matt hew","Ġin advert","H I","ĠIM F","ĠGo al","Ġnerv es","John son","ey e","ablish ment","Th ursday","BIL ITY","H ad","am oto","het amine","ep s","Ġmit ochond","Ġcomp ressed","ĠTre vor","ĠAnim als","T ool","L ock","Ġtwe ak","Ġpin ch","Ġcancell ation","P ot","Ġfoc al","ĠAst ron","17 3","ĠA SC","ĠO THER","umn i","Ġdem ise","d l","Ù ħ","Sem itism","Ġcr acking","Ġcollabor ative","Ġexpl ores","s ql","Ġher bs","Ġconfig urations","m is","ĠRes ult","ace y","ĠSm oke","Ġsan ct","el ia","Ġdeg ener","Ġdeep est","Ġscream ed","Ġn ap","Soft ware","ĠST AR","E F","ĠX in","spons ored","mans hip","23 3","Ġprim aries","Ġfilter ing","Ġas semble","m il","ĠMy ers","b ows","Ġpun ched","M ic","Ġinnov ations","Ġfun c","and o","Ġfr acking","ĠV ul","о Ð","osh op","ĠIm mun","Ġsett ling","Ġadolesc ents","Ġreb uilding","Ġtransform ing","Ġpar ole","Ġhar bor","Ġbook ing","ot ional","onge vity","ĠY o","b ug","Ġemer ges","ĠMethod s","ĠCh u","P res","ĠDun geons","Ġtra iling","ĠR um","ĠH ugh","å¤ ©","ĠE ra","ĠBatt les","Res ults","ĠTr ading","Ġvers a","c ss","ax ies","he et","Ġgre ed","19 89","Ġgard ens","Ġconting ent","P ark","ĠLeaf s","h ook","ro be","Ġdiplom acy","ĠF uel","ĠInv asion","Ġupgr ading","M ale","Ġe lic","Ġrelent less","ĠCo venant","ap esh","ĠT rop","T y","pro duction","art y","Ġpun ches","ak o","cyclop edia","ĠR abbit","ĠHD MI","Ġ14 1","Ġf oil","Item Image","ĠF G","Ġimplement ations","ĠP om","ixt ures","Ġaw ait","Ġ3 30","am us","Ġumb rella","Ġfore see","se par","Ġcircum cision","Ġperipher al","S ay","ĠExper t","In c","Ġwithd rew","ĠAnd ers","f ried","Ġradio active","ĠOp ening","Ġboard ing","ĠN D","Ġover throw","Act iv","W P","ĠAct s","× Ļ","Ġmot ions","v ic","ĠM ighty","ĠDef ender","a er","Ġthank ful","ĠK illing","ĠBr is","mo il","Ġpredict ing","26 6","ch oice","Ġkill ers","Ġinc ub","ĠChe st","ather ing","Ġpro claimed","fl ower","oss om","umbled ore","ĠCy cling","ĠOccup y","AG ES","P en","ĠY ug","Ġpack aged","Ġheight ened","c ot","st ack","C ond","Ġst amps","m age","Ġpersu aded","Ġens l","ĠCard inal","Ġsol itary","Ġpossess ing","ĠC ork","Ġev id","ĠT ay","Ġbl ues","Ġextrem ism","Ġlun ar","Ġcl own","Te chn","Ġfest ivals","ĠPv P","ĠL ar","Ġconsequ ently","p resent","Ġsom eday","ç İĭ","ĠMet eor","Ġtour ing","c ulture","Ġbe aches","S hip","c ause","ĠFl ood","ãĥ ¯","Ġpur ity","th ose","Ġem ission","b olt","Ġch ord","ĠScript ure","L u","Ġ$ {","cre ated","Other s","25 8","Ġelement al","Ġannoy ed","ĠA E","d an","ĠS ag","Res earchers","Ġfair y","âĢĵ âĢĵ","======== ====","Sm art","GG GG","Ġskelet ons","Ġpup ils","link ed","Ġur gency","en abled","ĠF uck","Ġcoun cill","r ab","U AL","T I","Ġlif es","Ġconf essed","B ug","Ġharm on","ĠCON FIG","ĠNe utral","D ouble","Ġst aple","ĠSH A","Brit ish","ĠSN P","AT OR","oc o","Ġswing ing","ge x","ole on","pl ain","ĠMiss ing","ĠTro phy","v ari","ran ch","Ġ3 01","4 40","00000000 00000000","Ġrest oring","Ġha ul","uc ing","ner g","Ġfut ures","Ġstrateg ist","quest ion","Ġlater al","ĠB ard","Ġs or","ĠRhod es","ĠD owntown","????? -","ĠL it","ĠB ened","Ġco il","st reet","ĠPort al","FI LE","ĠG ru","* ,","23 1","ne um","Ġsuck ed","Ġr apper","Ġtend encies","ĠLaure n","cell aneous","26 7","Ġbrow se","Ġover c","head er","o ise","Ġbe et","ĠG le","St ay","Ġm um","Ġtyp ed","Ġdiscount s","T alk","ĠO g","ex isting","ĠS ell","u ph","C I","ĠAust rian","ĠW arm","Ġdismiss al","Ġaver ages","c amera","Ġalleg iance","L AN","=\" #","Ġcomment ators","ĠSet ting","ĠMid west","Ġpharm ac","ĠEX P","Ġstain less","Ch icago","Ġt an","24 4","Ġcountry side","ĠV ac","29 5","Ġpin ned","Ġcr ises","Ġstandard ized","T ask","ĠJ ail","ĠD ocker","col ored","f orth","\" },","Ġpat rons","Ġsp ice","Ġm ourn","ĠM ood","Ġlaund ry","Ġequ ip","ĠM ole","y ll","ĠTH C","n ation","ĠSher lock","Ġiss u","ĠK re","ĠAmeric as","ĠA AA","Ġsystem atically","Ġcont ra","ĠS ally","Ġrational e","Ġcar riage","Ġpe aks","Ġcontrad iction","ens ation","ĠFail ure","Ġpro ps","Ġnames pace","Ġc ove","field s","ãĤ ĭ","Ġw ool","ĠC atch","Ġpresum ed","ĠD iana","r agon","ig i","Ġh amm","Ġst unt","ĠG UI","ĠObserv atory","ĠSh ore","Ġsmell s","ann ah","Ġcock pit","ĠD uterte","8 50","Ġopp ressed","bre aker","ĠCont ribut","ĠPer u","ĠMons anto","ĠAtt empt","Ġcommand ing","Ġfr idge","ĠR in","ĠChe ss","ual ity","Ġo l","Republic an","ĠGl ory","ĠW IN",".... ...","ag ent","read ing","Ġin h","J ones","Ġcl icks","al an","Ġ[ ];","ĠMaj esty","ĠC ed","op us","ate l","à ª","AR C","ĠEc uador","ãĥ ł","ĠK uro","Ġritual s","Ġcapt ive","Ġoun ce","Ġdisag reement","Ġsl og","f uel","P et","M ail","Ġexerc ised","Ġsol ic","Ġrain fall","Ġdev otion","ĠAss essment","Ġrob otic","opt ions","ĠR P","ĠFam ilies","ĠFl ames","Ġassign ments","00 7","aked own","Ġvoc abulary","Re illy","Ġc aval","g ars","Ġsupp ressed","ĠS ET","ĠJohn s","Ġwar p","bro ken","Ġstat ues","Ġadvoc ated","Ġ2 75","Ġper il","om orph","ĠF emin","per fect","Ġh atch","L ib","5 12","Ġlif elong","3 13","Ġche eks","Ġnum bered","ĠM ug","B ody","ra vel","We ight","ĠJ ak","ĠHe ath","Ġkiss ing","ĠJ UST","Ġw aving","u pload","Ġins ider","ĠPro gressive","ĠFil ter","tt a","ĠBe am","Ġviol ently","ip ation","Ġskept icism","Ġ19 18","ĠAnn ie","ĠS I","Ġgen etics","Ġon board","at l","ĠFried man","ĠB ri","cept ive","Ġpir ate","ĠRep orter","27 8","Ġmyth ology","Ġe clipse","Ġsk ins","Ġgly ph","ing ham","F iles","C our","w omen","Ġreg imes","Ġphotograp hed","K at","ĠMA X","Offic ials","Ġunexpected ly","Ġimpress ions","F ront",";;;; ;;;;","Ġsuprem acy","Ġs ang","Ġaggrav ated","Ġabrupt ly","ĠS ector","Ġexc uses","Ġcost ing","ide press","St ack","ĠR NA","ob il","Ġghost s","ld on","at ibility","Top ics","Ġreim burse","ĠH M","ĠDe g","Ġth ief","y et","ogen esis","le aning","ĠK ol","ĠB asketball","Ġf i","ĠSee ing","Ġrecy cling","Ġ[ -","Cong ress","Ġlect ures","P sy","Ġne p","Ġm aid","Ġori ented","A X","Ġrespect ful","re ne","fl ush","ĠUn loaded","re quest","gr id","ĠAltern atively","ĠHug o","Ġdec ree","ĠBuddh ism","and um","And roid","ĠCong o","ĠJoy ce","Ġacknowled ging","hes ive","ĠTom orrow","ĠH iro","th ren","ĠM aced","Ġho ax","ĠIncre ased","ĠPr adesh","W ild","____ __","16 1","Ġa unt","Ġdistribut ing","ĠT ucker","ĠSS L","ĠW olves","B uilding","ou lt","ĠLu o","ĠY as","ĠSp ir","ĠSh ape","ĠCamb od","ĠIP v","Ġm l","Ġext rad","39 0","ĠPenn y","d ream","Ġstation ed","opt ional","ew orthy",". ","ĠWorks hop","ĠRet ail","ĠAv atar","6 25","N a","ĠV C","ĠSec ure","M Y","19 88","oss ip","Ġpro state","Ġund en","Ġg amer","ĠCont ents","ĠWar hammer","ĠSent inel","3 10","Ġse gregation","ĠF lex","ĠM AY","Ġdr ills","ĠDrug s","Islam ic","Ġsp ur","Ġca fe","Ġimag inary","Ġgu iding","Ġsw ings","ĠThe me","ob y","Ġn ud","Ġbe gging","Ġstr ongh","Ġreject ing","Ġpedest rians","ĠPro spect","R are","s le","Ġconcess ions","ĠConst itutional","Ġbe ams","Ġfib ers","p oon","Ġinstinct s","pro perty","ĠB IG","Sand ers","im ates","Ġco ating","Ġcorps es","ĠTR UE","check ed","Ġ16 6","A sh","ĠJ S","ĠF iction","Ġcommun al","Ġener getic","oooo oooo","Ġnow adays","IL D","ib o","ĠSU V","R en","Ġdwell ing","Sil ver","Ġt ally","ĠM oving","Ġcow ard","Ġgener als","Ġhorn s","Ġcirc ulated","Ġrob bed","ĠUn limited","Ġharass ed","Ġinhib it","Ġcomp oser","ĠSpot ify","Ġspread s","3 64","Ġsu icidal","Ġno ises","ĠSt ur","Ġs aga","ĠK ag","is o","Ġtheoret ically","M oney","Ġsimilar ity","Ġslic ed","ut ils","ing es","\" -","Ġan th","Ġimp ed","Mod ule","Through out","Ġmen us","comm ittee","and i","ob j","in av","f ired","ĠAb dullah","Ġund ead","Ġfont s","H old","EN G","Ġsustain ability","Ġfl ick","Ġr azor","ĠF est","ĠChar acters","Ġword ing","Ġpopul ist","Ġcritic izing","Ġm use","v ine","Ġcard board","Ġkind ly","Ġfr inge","ĠThe ft","icult ural","Ġgovern ors","Ġ ����","Ġ16 3","Ġtime out","ĠA uth","Child ren","A U","Ġred emption","ĠAl ger","Ġ19 14","Ġw aved","Ġastron auts","og rams","Ġsw amp","ĠFinn ish","Ġcand le","Ġton nes","ut m","Ġr ay","Ġsp un","Ġfear ful","art icles","Ġca us","or ically","ĠRequ ires","ĠG ol","Ġpop e","Ġinaug ural","Ġg le","AD A","ĠIS IL","ĠOff ensive","Ġwatch dog","Ġbal con","ent ity","ĠH oo","Ġgall on","AC C","Ġdoub ling","Ġimpl ication","ĠS ight","Ġdoct r","---- ---","Ġ\\ \\","Ġm alt","R oll","Ġâī ¥","Ġrec ap","add ing","u ces","ĠB end","fig ure","Ġtur key","Ġsoc ietal","ĠT ickets","Ġcommer cially","Ġsp icy","Ġ2 16","ĠR amp","Ġsuperior ity","à ¯","ĠTr acker","C arl","ĠC oy","ĠPatri ot","Ġconsult ed","Ġlist ings","Ġsle w","reens hot","ĠG one","Ġ[ ...]","30 9","Ġh ottest","Ø ±","Ġrock y","ĠD iaz","Ġmass age","Ġpar aly","Ġp ony","A z","Ġcart ridge","ĠN Z","Ġsn ack","ĠLam ar","ple ment","ĠLes lie","Ġm ater","Ġsn ipp","24 6","Ġjoint ly","ĠBris bane","ĠiP od","Ġpump ing","Ġgo at","ĠSh aron","eal ing","Ġcor on","Ġan omal","rah im","ĠConnect ion","Ġsculpt ure","Ġsched uling","ĠD addy","at hing","Ġeyeb rows","Ġcur ved","Ġsent iments","Ġdraft ing","D rop","( [","Ġnom inal","ĠLeaders hip","ĠG row","Ġ17 6","Ġconstruct ive","iv ation","Ġcorrupt ed","ger ald","ĠC ros","ĠChe ster","ĠL ap","ãģ ª","OT H","D ATA","Ġal mond","pro bably","I mp","Ġfe ast","ĠWar craft","F lor","Ġcheck point","Ġtrans cription","Ġ20 4","Ġtwe aks","Ġrel ieve","S cience","Ġperform er","Z one","Ġtur moil","ig ated","hib it","ĠC afe","the med","Ġflu or","ben ch","Ġde com","ĠU nt","ĠBar rett","ĠF acts","Ġt asting","ĠPTS D","ĠSe al","ĠJuda ism","ĠDynam ic","ĠC ors","V e","ĠM ing","ĠTrans form","v on","ĠDef enders","ĠTact ical","ĠV on","ĠUn ivers","Ġdist orted","ĠB reath","?' \"","Ġag on","ĠDead ly","Ġl an","ĠCy cle","orn ed","Ġrel iably","Ġgl or","ĠMon key","ãĥ ¡","Ġad ren","Ġmicrow ave","ĠAl ban","irc raft","dig it","sm art","ĠD read","¯¯¯¯¯¯¯¯ ¯¯¯¯¯¯¯¯","{ {","ĠRoc hester","Ġsimpl ified","Ġinf licted","Ġtake over","Ġyour selves","ad itional","Ġmus cular","K S","Ġing en","T ax","ĠFe ature","27 7","Ġcru c","Ġcr ate","Ġun identified","Ġacclaim ed","ĠM anga","ĠFr ances","ĠNep al","ĠG erald","ĠKu wait","Ġsl ain","ĠHe b","ĠG oku","ãģ® æ","28 6","M rs","ĠC ody","ĠSan ctuary","01 6","Ġdism ant","Ġdatas et","ĠH ond","b uck","ĠPat terson","Ġpal ette","ĠG D","ic ol","ĠL odge","Ġplanet ary","ak in","ĠRegist ered","ab we","ĠPeters burg","Ġha iled","ĠP iece","S che","ĠDO J","Ġen umer","18 1","ĠObs erver","ĠB old","f ounded","com merce","Ġexplo its","ĠF inding","UR N","ĠS ne","ĠAc id","ay ette","ĠVal ues","Ġdr astic","Ġarchitect ural","Ġ\" .","× ķ","ump ed","Ġwra pping","Ġwid ow","ĠSl ayer","l ace","on ce","German y","av oid","Ġtem ples","P AR","à ´","ĠLuc ifer","ĠFl ickr","l ov","for ces","Ġsc outing","Ġlou der","tes y","Ġbefore hand","Ä ĵ","ĠNe on","ĠW ol","ĠTyp ically","ĠPolit ico","-+ -+","Ġbuild er","Ġder ive","K ill","Ġp oker","Ġambig uous","Ġlif ts","Ġcy t","Ġrib s","ood le","ĠS ounds","h air","ĠSynd rome","t f","Ġproport ional","u id","Ġper taining","ĠKind le","ĠNeg ro","Ġreiter ated","ĠTon ight","oth s","ĠCorn ell","Ġo wing","Ġ20 8","elf are","oc ating","ĠB irds","Sub scribe","Ġess ays","Ġburd ens","Ġillust rations","ar ious","ER AL","ĠCal cul","Ġx en","ĠLink edIn","ĠJ ung","Ġredes ign","Con nor","29 6","Ġrevers al","ĠAd elaide","ĠL L","Ġs inking","Ġg um","US H","c apt","ĠGr imm","Ġfoot steps","ĠCB D","isp ers","Ġpro se","Wed nesday","ĠM ovies","ed in","Ġoverturn ed","Ġcontent ious","US B","~~~~~~~~ ~~~~~~~~","ĠCo pper","Ġpoint less","N V","val ues","olph in","d ain","Ġdepos ited","ĠG W","Ġpreced ed","ĠCl a","ĠGo lem","ĠN im","ĠÎ ²","ĠEngine ers","m iddle","Ġfl att","oper ative","Ġcouncil s","imb abwe","el in","Ġstress ful","ĠL D","Ġres h","l ake","Ġwheel chair","ĠAltern ative","Ġoptim ize","oper ation","Ġpe ek","Ġones elf","ig il","Ġtrans itions","op athy","bl ank","Ġ16 9","17 1","________________________________ ________________________________","Ġl aundering","En c","ĠD EC","Ġwork outs","Ġsp ikes","Ġdin osaurs","Ġdiscrim inatory","P ool","R ather","38 5","R NA","tes ters","et o","ĠIdent ity","Ġve in","ĠBur ton","Ġarc ade","4 20","Ult imately","ĠSad ly","à °","p ill","Ġcub ic","ĠSpect rum","the se","st ates","Ġun official","h awks","ĠEVER Y","Ġrain bow","Ġincarcer ation","and ing","Ġsy ll","ĠEver ton","Ġ17 9","ĠSer bia","Ġ18 9","m eter","ĠMic key","Ġant iqu","Ġfact ual","ne ck","ĠN are","n orm","m ust","Ġhigh ways","Ġgl am","Ġdivid ing","ĠSquad ron","ĠMar tha","Ġbirth s","C over","//////// ////////","ĠW ong","Ph ot","ĠA LS","ri o","ĠNon etheless","ĠL emon","Ġ20 6","ĠE E","Ġderiv ative","ĠWW II","v ote","Ġthere in","Ġsepar ating","44 6","sy nc","ĠStre ets","Ġr att","Ġmunicip ality","ĠShort ly","Ġmon k",") ,\"","Ġscr ub","Ġoper atives","Ne ither","Pl ace","ĠLim it","F emale","ĠAct or","Char acter","Ġconstit uted","35 7","Ġprotest ed","ĠSt raw","ĠHe ight","ild a","ĠTy ph","Ġflood s","Ġcos metic","W AY","pert ure","up on","t ons","ess ing","ĠP ocket","Ġro oft","ĠC aucas","Ġant idepress","Ġincomp atible","EC D","Ġoper a","ĠCont est","Ġgener ators","l ime","Def ense","19 87","for um","Ġsav age","ĠHung arian","n z","Ġmet allic","Ġex pelled","Ġres idency","Ġdress es","66 6","ĠC lement","f ires","C ategory","Ġge ek","al is","Ġc emetery","educ ated","Ġc rawl","ĠUn able","ĠT yson","ak is","Ġp ardon","ĠW ra","Ġstrengthen ed","ĠF ors","33 5","ĠH C","ĠM ond","Ġvisual s","ĠBeat les","ett lement","Ġ ï","g ro","Ġb ash","Ġpo orest","Ġex cel","Ġaspir ations","ĠM unicip","ens ible","Ġceremon ies","Ġintimid ation","ĠCON TR","be ck","ĠK ap","as u","Ġtradem arks","ĠS ew","ĠComp etition","net work","ĠAr ri","ĠT et","Ro aming","W C","D at","Ġso b","Ġpair ing","Ġoverd ose","SA Y","ab er","Ġrev olt","ĠF ah","act ing","e q","est ation","F ight","ĠMar ks","27 3","Ġ17 8","R aw","ãģ ĭ","34 9","bl ocks","Ġver ge","est ine","ĠPod esta","Ġinv asive","Ġprofound ly","ĠA o","e ach","Ġl est","inter pret","Ġshr inking","Ġerr one","Ġche es","ly s","ĠI vy","ĠDirect ory","Ġhint ed","V ICE","Ġcontact ing","ĠG ent","he i","Ġlabel ing","Ġmerc ury","ĠL ite","Ġexp ires","Ġdest abil","rit is","c u","Ġfeather s","Ġste er","Ġprogram med","ĠV ader","Go ing","ĠE lim","Ġy o","ĠMic he","Ġ20 3","Ġslee ves","Ġb ully","ĠHum ans","36 8","Ġcomp ress","ĠBan ner","AR S","Ġa while","Ġcal ib","Ġspons orship","ĠDiff iculty","ĠP apers","Ġident ifier","} .","Ġy og","ĠSh ia","Ġclean up","Ġvib e","int rodu","im ming","Austral ia","Ġout lines","ĠY outube","tr ain","ĠM akes","Ġde ported","Ġcent r","ĠD ug","ĠB oulder","ĠBuff y","Ġinj unction","ĠHar ley","ĠG roups","ĠD umbledore","ĠCl ara","Ġ\" -","Ġsacrific ed","ep h","Sh adow","ib ling","Ġfreel ance","Ġevident ly","ph al","Ġret ains","M ir","Ġfin ite","d ar","ĠC ous","Ġrep aired","Ġperiod ic","Ġchampions hips","Ġaster oid","bl ind","Ġexpress ly","ĠAst ros","Ġsc aled","Ġge ographical","ĠRap ids","En joy","Ġel astic","ĠMoh amed","Mark et","be gin","Ġdisco vers","Ġtele communications","Ġscan ner","Ġen large","Ġsh arks","Ġpsy chedel","ĠRou ge","Ġsnap shot","is ine","X P","Ġpestic ides","ĠL SD","ĠDist ribution","re ally","Ġde gradation","Ġdisgu ise","Ġbi om","ĠEX T","Ġequ ations","Ġhaz ards","ĠComp ared",") *","Ġvirt ues","Ġeld ers","Ġenh ancing","ĠAc ross","er os","ang ling","Ġcomb ust","ucc i","Ġconc ussion","Ġcontrace ption","ĠK ang","Ġexpress es","Ġa ux","ĠP ione","Ġexhib its","Deb ug","OT AL","ĠAl ready","ĠWheel er","Ġexp ands","? :","Ġreconc iliation","Ġpir ates","Ġpur se","Ġdiscour age","Ġspect acle","R ank","Ġwra ps","ĠTh ought","Ġimp ending","O pp","ĠAng lo","ĠE UR","Ġscrew ed","ret ched","Ġencour agement","mod els","Ġconf use","mm m","ĠVit amin","âĸij âĸij","C ru","Ġkn ights","Ġdisc ard","Ġb ishops","ĠW ear","ĠGar rett","k an","ãĥ Ł","Ġmascul ine","cap ital","ĠA us","Ġfat ally","th anks","ĠA U","ĠG ut","12 00","Ġ 00000000","Ġsur rog","ĠBI OS","ra its","ĠWat ts","Ġresur rection","ĠElect oral","ĠT ips","4 000","Ġnut rient","Ġdepict ing","Ġspr ink","Ġm uff","ĠL IM","ĠS ample","ps c","ib i","gener ated","Ġspec imens","Ġdiss atisf","Ġtail ored","Ġhold ings","ĠMonth ly","ĠE at","po ons","Ġne c","ĠC age","ĠLot us","ĠLan tern","Ġfront ier","Ġp ensions","Ġj oked","ĠHard y","=-=- =-=-","r ade","U ID","Ġr ails","Ġem it","Ġsl ate","Ġsm ug","Ġsp it","ĠCall s","ĠJac obs","f eat","ĠU E","Ġrest ruct","Ġregener ation","Ġenerg ies","ĠCon nor","OH N","ĠChe ese","Ġg er","Ġresur rect","man agement","N W","Ġpres ently","ĠBru ins","M ember","ĠM ang","id an","Ġboost ing","w yn","+ .","requ isite","ĠNY PD","ĠMe gan","ĠCond itions","Ġp ics","nes ium","ĠR ash","Ġ17 4","ĠD ucks","Ġemb ro","z u","on ian","rel igious","Ġc raz","ĠAC A","ĠZ ucker","EM A","ĠPro s","We apon","ĠKn ox","ĠAr duino","Ġst ove","Ġheaven s","ĠP urchase","Ġher d","Ġfundra iser","Dig ital","5 000","Ġprop onents","/ âĢĭ","Ġj elly","ĠVis a","Ġmon ks","Ġadvance ment","ĠW er","Ġ18 7","e us","ert ility","Ġfet al","Ġ19 36","L o","Ġout fits","Ġstair case","b omb","Ġcustom ized","cl air","T ree","Ġm apped","ĠConsider ing","ĠTor res","Ġmeth yl","Ġapprox imate","Ġdo om","ĠHans en","Ġc rossover","Ġstand alone","ä ¼","Ġinv ites","Ġgra veyard","Ġh p","Donald Trump","Ġesc ort","G ar","Ġpredec essors","Ġh ay","Ġen zyme","ĠStra ight","vis ors","I ng","ane ously","ĠApp lied","Ġf ec","ĠDur ant","Ġout spoken","or b","Ġz eal","Ġdisgr ace","' ).","ĠChe ng","28 9","ĠRen a","ĠSu icide","29 4","Ġout raged","ĠNew man","ĠN vidia","ĠA ber","ĠB ers","Ġrecre ation","Wind ow","ĠD P","x e","Ġped oph","Ġfall out","ambo o","Ġpresent ations","ĠApp s","Ġh tml","3 45","ĠX XX","Ġrub bing","ĠLe ather","Ġhum idity","se ys","est ablished","ĠUn its","64 6","Ġrespect able","A uto","Ġthri ving","ĠInn ovation","ang s","Ext ra","reg ulation","29 8","p ick","Ex amples","ĠC J","Att ack","Ġdr acon","L T","Ġstick er","re rs","Ġsun ny","I ss","reg ulated","d im","ĠAb stract","Ġhus bands","Off ice","om ination","it ars","AN GE","asc al","ĠK ris","ĠInf antry","Ġm alf","ĠA the","ĠR ally","bal anced","................ ........","OU P","Ġmole cule","met ics","ĠSpl it","ĠInstruct ions","ĠN ights","c ards","Ġt ug","Ġcon e","å Ń","Ġt x","ĠDisc ussion","Ġcatast rophe","pp e","g io","Ġcommun ism","Ġhal ted","ĠGu ant","cle an","ĠSc hed","ĠK anye","Ġw ander","ĠSer iously","Ġ18 8","enn ial","f ollow","product ive","ĠFl ow","ĠS ail","Ġc raw","Ġsim ulations","or u","ang les","ĠN olan","Ġmen stru","4 70","Ġ20 7","aj a","Ġcas ually","board ing","Ġ2 22","ov y","ĠN umbers","um at","O E","28 7","ĠCle mson","Ġcert s","Ġsl id","ĠT ribe","Ġto ast","Ġfort unes","Ġf als","ĠComm ittees","Ġg p","Ġf iery","ĠN ets","ĠAn ime","Pack age","ĠComp are","l aughter","in fect","Ġatroc ities","Ġjust ices","Ġins ults","ĠVern on","Ġsh aken","Ġperson a","est amp","36 7","br ain","Ġexperiment ing","K en","ĠElect ronics","Ġ16 1","dom ain","Ġgraph ical","b ishop","Ġwho pping","ĠEv angel","Ġadvertis ers","ĠSpe ar","Ġb ids","Ġdestro ys","ut z","Ġunders c","ĠAD D","Ġan ts","ĠC um","ipp les","ĠF ill","Ġgl anced","Ġind icted","ĠE ff","Ġmis con","ĠDes ktop","Ġab ide","ãĥ Ģ","ĠI o","ĠC oul","Ġcaps ule","ĠCh rys","M ON","Ġund es","ĠI RA","Ġc itation","Ġdict ate","ĠNet works","ĠConf lict","ĠSt uff","x a","is ec","ĠChem istry","Ġquarter ly","William s","an an","O pt","ĠAlexand ria","out heastern","ĠSpring field","ĠBlack s","Ġge ography","24 2","Ġut most","ĠEx xon","ab outs","E VA","ĠEn able","ĠBar r","Ġdisag reed","ĠCy prus","Ġdement ia","Ġlab s","Ġubiqu itous","ĠLO VE","Ġconsolid ated","s r","Ġcream y","ĠTim ber","Reg ardless","ĠCert ificate","Ġ\" ...","ogen ous","Capt ain","Ġinsult ing","ĠSor os","ĠInst r","ĠBulgar ia","bet ter","Ġsuck ing","ĠDavid son","at z","Ġcoll ateral","g if","Ġplag ued","ĠC ancel","ĠGard ner","R B","Ġsix teen","Rem ove","ur istic","c ook","R od","Ġcompr ising","f le",") âĢĶ","ĠVik ing","g rowth","agon al","Ġsr f","af ety","m ot","N early","st own","ĠF actor","Ġautom obile","Ġproced ural","m ask","amp ires","Ġdisapp ears","j ab","3 15","Ġ19 51","ne eded","Ġd aring","le ader","Ġp odium","Ġun healthy","Ġm und","Ġpy ramid","oc re","Ġkiss ed","Ġdream ed","ĠFant astic","ĠG ly","å Ĭ","Ġgreat ness","Ġsp ices","Ġmet ropolitan","Ġcomp uls","i ets","101 6","ĠSh am","ĠP yr","fl ies","ĠMid night","Ġswall owed","Ġgen res","ĠL ucky","ĠRew ards","Ġdisp atch","ĠI PA","ĠApp ly","Ġa ven","al ities","3 12","th ings","Ġ( ).","Ġm ates","ĠS z","ĠC OP","ol ate","O FF","Ġre charge","c aps","ĠYork er","ic one","Ġgal axies","ile aks","D ave","ĠP uzz","ĠCelt ic","ĠA FC","27 6","ĠS ons","Ġaffirm ative","H or","Ġtutorial s","ĠC ITY","ĠR osa","ĠExt ension","Ser ies","Ġf ats","Ġr ab","l is","Ġun ic","Ġe ve","ĠSp in","Ġadul thood","ty p","Ġsect arian","Ġcheck out","ĠCy cl","S ingle","Ġmart yr","Ġch illing","88 8","ou fl","Ġ] ;","Ġcongest ion","m k","ĠWhere as","Ġ19 38","ur rencies","er ion","Ġbo ast","ĠPat ients","Ġch ap","ĠB D","real DonaldTrump","Ġexam ines","h ov","Ġstart ling","ĠBab ylon","w id","om ew","br ance","ĠOd yssey","w ig","Ġtor ch","ĠV ox","ĠMo z","ĠT roll","ĠAn s","Similar ly","ĠF ul","00 6","Un less","ĠAl one","st ead","ĠPub lisher","r ights","t u","ĠDoes n","Ġprofession ally","Ġcl o","ic z","Ġste als","Ġ á","19 86","Ġst urdy","ĠJoh ann","Ġmed als","Ġfil ings","ĠFr aser","d one","Ġmult inational","Ġf eder","Ġworth less","Ġp est","Yes terday","ank ind","Ġg ays","Ġb orne","ĠP OS","Pict ure","Ġpercent ages","25 1","r ame","Ġpot ions","AM D","ĠLeban ese","Ġr ang","ĠL SU","ong s","Ġpen insula","ĠCl ause","AL K","oh a","ĠMac Book","Ġunanim ous","Ġl enders","Ġhang s","Ġfranch ises","ore rs","ĠUp dates","Ġisol ate","and ro","S oon","Ġdisrupt ive","ĠSur ve","Ġst itches","ĠSc orp","ĠDomin ion","Ġsupp lying","Ar g","Ġtur ret","ĠL uk","Ġbr ackets","* )","ĠRevolution ary","ĠHon est","Ġnot icing","ĠSh annon","Ġafford ed","Ġth a","ĠJan et","! --","ĠNare ndra","ĠPl ot","H ol","se ver","e enth","Ġobst ruction","Ġ10 24","st aff","j as","or get","sc enes","l aughs","ĠF argo","cr ime","Ġorche str","Ġde let","ili ary","rie ved","Ġmilit ar","ĠGreen e","âĹ ı","ãģ ¦","ĠGu ards","Ġunle ashed","ĠWe ber","Ġadjust able","Ġcal iber","Ġmotiv ations","Ġà ł","m Ah","ĠL anka","hand le","Ġp ent","ĠR av","ĠAng ular","ĠK au","umb ing","Ġphil anthrop","Ġde hyd","Ġtox icity","e er","ĠY ORK","w itz","å ¼","ĠI E","commun ity","ĠA H","Ġret ali","Ġmass ively","ĠDani els","ĠD EL","Ġcar cin","Ur l","Ġrout ing","ĠNPC s","ĠR AF","ry ce","Ġwa ived","ĠGu atem","Every body","Ġco venant","Ġ17 3","Ġrelax ing","Ġqu art","al most","Ġguard ed","ĠSold iers","ĠPL AY","Ġout going","L AND","Ġre write","ĠM OV","ĠIm per","ĠS olution","Ġphenomen al","Ġl ongevity","Ġimp at","ĠN issan","ir ie","Ġod or","ĠZ ar","ok s","Ġmilit ias","ĠSP EC","Ġtoler ated","ars er","ĠBrad ford","+ ,","Ġsur real","s f","Can adian","Ġresemb lance","Ġcarbohyd rate","VI EW","Ġaccess ory","me al","larg est","ieg el","Some one","Ġtoug hest","os o","Ġfun nel","Ġcondemn ation","lu ent","Ġw ired","ĠSun set","Jes us","ĠP ST","ĠP ages","ĠTy coon","ĠP F","Ġselect ions","Ġ à¤","part isan","Ġhigh s","ĠR une","Ġcraft s","le ad","ĠParent s","Ġre claim","ek er","ĠAll ied","ae per","Ġlo oming","Ġbenefic iaries","ĠH ull","Stud ents","Jew ish","d j","Ġp act","tem plate","ĠOffic ials","ĠBay lor","Ġhe mp","Ġyouth s","ĠLevel s","ĠX iao","ĠC hes","Ġende avor","ĠRem oved","Ġhipp ocamp","H ell","ãĤ Ĭ","80 5","Ġd inosaur","ĠWr ath","ĠIndones ian","Ġcalcul ator","ĠD ictionary","Ġ4 20","ĠM AG","( _","! ,","t arians","Ġrestrict ing","rac use","Ġweek day","OU NT","Ġsh rugged","leg round","Ġb ald","ĠDo ctors","Ġt outed","ĠMax well","Ġ2 14","Ġdiplom at","Ġrep ression","Ġconstitu ency","v ice","r anked","ĠNap oleon","g ang","ĠFore ver","t un","Ġbul b","ĠPD T","ĠC isco","V EN","Ġres umed","Ste ven","ĠManit oba","Ġfab ulous","ĠAg ents","19 84","Ġam using","ĠMyster ies","Ġor thodox","fl oor","Ġquestion naire","Ġpenet rate","Ġfilm makers","ĠUn c","Ġst amped","Ġth irteen","Ġout field","Ġforward ed","Ġapp ra","Ġa ided","t ry","Ġunf ocused","ĠL iz","ĠWend y","ĠSc ene","Ch arg","Ġreject s","Ġleft ist","ĠProv idence","ĠBr id","reg n","Ġprophe cy","ĠL IVE","4 99","Ġfor ge","ĠF ML","Ġintrins ic","ĠF rog","Ġw ont","ĠH olt","Ġfam ed","CL US","aeper nick","ĠH ate","ĠC ay","Ġregister ing","ort ality","rop y","ocaly ptic","a an","n av","Ġfasc ist","IF IED","Ġimpl icated","ĠRes ort","ĠChand ler","ĠBr ick","P in","ys c","Us age","ĠHel m","us ra","âĺħ âĺħ","ĠAb bas","Ġunanim ously","Ġke eper","Ġadd icted","?? ?","Ġhelm ets","Ġant ioxid","aps ed","80 8","gi ene","Ġwa its","Ġmin ion","ra ved","ĠP orsche","Ġdream ing","Ġ17 1","ĠC ain","Ġun for","ass o","ĠConfig uration","k un","hard t","Ġn ested","ĠL DS","L ES","Ġt ying","en os","Ġc ue","ĠMar qu","sk irts","Ġclick ed","Ġexp iration","ĠAccording ly","ĠW C","Ġbless ings","Ġaddict ive","ĠN arr","y x","ĠJagu ars","Ġrent s","ĠS iber","Ġt ipped","ous se","ĠFitz gerald","Ġhier arch","out ine","Ġwa velength","> .","ch id","ĠProcess ing","/ +","r anking","E asy","ĠConst ruct","Ġt et","ins ured","H UD","Ġqu oting","Ġcommun icated","in x","Ġin mate","Ġerect ed","ĠAbs olutely","ĠSure ly","Ġun im","ĠThr one","he id","Ġcl aws","Ġsuper star","ĠL enn","ĠWh is","U k","ab ol","Ġsk et","ĠN iet","Ġper ks","Ġaff inity","Ġopen ings","phas is","Ġdiscrim inate","T ip","v c","Ġgr inding","ĠJenn y","Ġast hma","hol es","ĠHom er","Ġreg isters","ĠGl ad","Ġcre ations","Ġlith ium","Ġappl ause","unt il","Just ice","ĠTur ks","Ġsc andals","Ġb ake","t ank","M ech","ĠMe ans","ĠM aid","Republic ans","is al","wind ows","ĠSant os","Ġveget ation","33 8","t ri","Ġfl ux","ins ert","Ġclar ified","Ġmort g","ĠCh im","ĠT ort","Ġdiscl aim","met al","ĠAs ide","Ġindu ction","Ġinf l","Ġathe ists","amp h","Ġe ther","ĠV ital","ĠBu ilt","M ind","Ġweapon ry","S ET","Ġ18 6","ad min","g am","cont ract","af a","Ġderiv atives","Ġsn acks","Ġch urn","E conom","Ġca pped","ĠUnder standing","ĠH ers","ĠI z","Ġd uct","I ENT","augh ty","Ġâľ Ķ","ĠN P","Ġsa iling","In itialized","Ġt ed","Ġreact ors","ĠL omb","Ġcho ke","ĠW orm","Ġadm iration","Ġsw ung","ens ibly","Ġr ash","ĠGo als","ĠImport ant","Sh ot","ĠR as","Ġtrain ers","ĠB un","Work ing","Ġhar med","ĠPand ora","ĠL TE","Ġmush room","ĠCH AR","ĠF ee","ĠM oy","B orn","ol iberal","ĠMart ial","Ġgentle men","Ġling ering","Offic ial","Ġgra ffiti","ĠN ames","D er","Ġqu int","ist rate","aze era","ĠNOT ICE","ĠFlore nce","Ġpay able","Ġdep icts","ĠSpe cies","He art","âĶĢâĶĢâĶĢâĶĢ âĶĢâĶĢâĶĢâĶĢ","Ġencl osed","Incre ases","D aily","ĠL is","Ġenact ment","ĠB acon","ĠSt eele","dem and","Ġ18 3","Ġmouth s","Ġstr anded","Ġenhance ment","01 1","ĠWh ats","Ġhe aled","en y","ĠR ab","Ġ3 40","ĠLab yrinth","ro ach","ĠY osh","ĠCl ippers","Ġconcert s","Intern et","35 5","Ġstick ers","Ġter med","ĠAx e","Ġgrand parents","Fr ance","ĠCl im","ĠU h","ul ic","Ġthr ill","cent ric","ĠOver view","ĠCond uct","Ġsubstant ive","Ġ18 2","m ur","Ġstr ay","ĠCo ff","Ġrep etitive","ĠFor gotten","Ġqual ification","ew itness","ĠZ imbabwe","Ġsim ulated","ĠJ D","25 3","ĠW are","Ġun sc","T imes","Ġsum mons","Ġdis connected","Ġ18 4","ci us","ĠGu jar","od ka","Ġer ase","ĠTob acco","elect ed","Ġun cont","ĠShe pard","ĠL amp","Ġalert ed","Ġoper ative","arn a","u int","Ġneglig ence","ac ements","Ġsup ra","Ġprev ail","ĠSh ark","Ġbel ts","ãģ «","Ġt ighter","Engine ers","Ġin active","Ġexp onent","ĠWill ie","a ples","Ġhe ir","ĠH its","ian n","ĠS ays","Ġcurrent s","ĠBeng al","Ġar ist","B uffer","Ġbree ze","ĠWes ley","Col a","Ġpron oun","Ġde ed","ĠK ling","Ġof t","Ġinf lict","Ġpun ishing","Ġn m","ik u","OD UCT","01 4","Ġsubsid y","ĠDE A","ĠHer bert","ĠJ al","B ank","Ġdef erred","Ġship ment","B ott","Ġal le","b earing","HT ML","Off line","Ġ2 13","Ġscroll ing","Ġsc anned","ĠLib yan","ĠT OP","ch rom","d t","col umn","Psy NetMessage","Z ero","Ġtor so","0 50","âķ IJ","Ġimp erson","ĠSchw artz","ud ic","Ġpiss ed","ĠS app","25 7","ĠIS Ps","og l","Ġsuper vised","Ġad olescent","Ġatt ained","ĠDel ivery","ĠB unny","Ġ19 37","Ġmini ature","Ġo s","Ġ3 70","60 8","ĠMour inho","Ġinn ate","Ġtem po","ĠN M","ĠFall en","00 9","Ġprov ocative","Stream er","ĠBened ict","ĠBol she","Ġt urtle","ĠPC B","ĠEqu al","Direct or","ĠR end","Ġflu ids","Author ities","Ġcous ins","requ ency","ĠNeigh bor","s ets","sh ared","Char les","pass word","Ġg ears","Ġ2 11","ĠHard ware","ri ka","Ġup stream","H om","Ġdisproportion ately","iv ities","Ġund efined","Ġelect rons","Ġcommem or","Event ually","Ġ> <","Ġir responsible","2 18","ĠRe leased","ĠO VER","ĠI GN","ĠB read","st ellar","ĠS age","tt ed","dam age","ed ition","ĠPre c","Ġl ime","Ġconf inement","Ġcal orie","we apon","Ġdiff ering","ĠS ina","m ys","am d","Ġintric ate","k k","ĠP AT","ã o","st ones","lin ks","Ġr anch","Sem itic","Ġdifferent iate","ĠS inger","occup ied","Ġfort ress","c md","Ġinter ception","ĠAnk ara","Ġre pt","ĠSol itaire","Ġrem ake","p red","Ġd ared","aut ions","ĠB ACK","Run ning","Ġdebug ging","Ġgraph s","3 99","ĠNig el","Ġb un","Ġpill ow","Ġprog ressed","fashion ed","Ġob edience","ER N","Ġrehe ars","C ell","t l","S her","Ġher ald","ĠPay ment","ĠC ory","ĠDe pt","Ġrep ent","ĠWe ak","uck land","Ġple asing","Ġshort ages","Ġjur ors","ĠK ab","q qa","Ant i","Ġw ow","ĠRC MP","Ġt sun","ĠS ic","Ġcomp rises","Ġsp ies","Ġprec inct","n u","Ġur ges","Ġtim ed","Ġstrip es","ĠB oots","Ġy en","Adv anced","Ġdisc rete","ĠArch angel","employ ment","D iff","Ġmon uments","Ġ20 9","work er","Ġ19 6","ĠI g","utter stock","T PS","J ac","Ġhomeless ness","Ġcomment ator","Ġrac ially","f ing","se ed","E le","ell ation","Ġeth anol","Ġpar ish","ĠD ong","ĠAw akening","Ġdev iation","ĠB earing","ĠTsu k","Ġrec ess","Ġl ymph","ĠCann abis","å ľ","ĠNEW S","Ġd ra","ĠStef an","ĠWr ong","ĠS AM","Ġloose ly","Ġinterpre ter","ĠPl ain","Go vernment","Ġbigot ry","Ġgren ades","ave z","pict ured","Ġmand ated","ĠMon k","ĠPed ro","Ġl ava","27 4","Ġcyn ical","ĠScroll s","l ocks","M p","Ġcon gregation","orn ings","ph il","ĠI bid","Ġf erv","Ġdisapp earing","Ġarrog ant","sy n","ĠMa ver","ĠSu it","24 1","Ġab bre","ack ers","P a","ĠY el","Whe never","Ġ23 5","ĠV ine","ĠAn at","Ġext inct","LE T","Ġexecut able","V ERS","ox ide","D NA","ĠP rel","Ġresent ment","Ġcompr ise","ĠAv iv","Ġinter ceptions","Ġprol ific","IN A","ĠEr in","though t","2 19","ĠPsychiat ry","un ky","chem ist","H o","ĠMcC oy","Ġbr icks","L os","ri ly","ĠUS SR","Ġr ud","Ġl aud","ĠW ise","ĠEmer ald","Ġrev ived","Ġdam ned","ĠRep air","id em","ct ica","Ġpatri arch","ĠN urs","me g","Ġcheap est","re ements","empt y","ĠCele br","Ġdepri vation","ch anted","ĠTh umbnails","E nergy","ĠEth an","ĠQ ing","Ġopp oses","W IND","v ik","ĠM au","ĠS UB","66 7","G RE","ĠVol unte","nt on","C ook","å IJ","es que","Ġplum met","Ġsu ing","Ġpron ounce","Ġresist ing","ĠF ishing","ĠTri als","Ġy ell","Ġ3 10","Ġin duct","Ġpersonal ized","oft en","R eb","EM BER","Ġview point","Ġexist ential","() )","rem ove","MENT S","l asses","Ġev apor","Ġa isle","met a","Ġreflect ive","Ġentit lement","Ġdev ised","mus ic","asc ade","Ġwind ing","off set","Ġaccess ibility","ke red","Bet ter","ĠJohn ston","th inking","S now","ĠCroat ia","ĠAt omic","27 1","34 8","Ġtext book","ĠSix th","Ġ اÙĦ","Ġsl ider","ĠBur ger","b ol","S ync","Ġgrand children","Ġc erv","+ )","Ġe ternity","Ġtweet ing","Ġspec ulative","Ġpiv otal","ĠW P","ĠT ER","ynam ic","Ġu pl","ĠC ats","per haps","Ġclass mates","Ġblat ant","' -","Ġl akh","ant ine","ĠB org","i om","/ (","ĠAthlet ic","Ġs ar","OT A","ĠHoff man","Never theless","Ġad orable","Ġspawn ed","Ass ociated","ĠDom estic","Ġimpl ant","ĠLux em","ĠK ens","Ġp umps","ĠS AT","Att ributes","50 9","av our","Ġcentral ized","ĠT N","Ġfresh ly","ĠA chieve","Ġouts iders","her ty","ĠRe e","ĠT owers","ĠD art","ak able","Ġm p","ĠHeaven ly","Ġr ipe","ĠCarol ine","ry an","Ġclass ics","Ġret iring","Ġ2 28","Ġa h","Ġdeal ings","Ġpunch ing","ĠChap man","O ptions","max well","vol ume","Ġst al","Ġex ported","ĠQu ite","Ġnumer ical","B urn","F act","ĠKey stone","Ġtrend ing","Ġalter ing","ĠAfric ans","47 8","ĠM N","ĠKn ock","Ġtempt ation","Ġprest ige","Over view","ĠTrad itional","ĠBah rain","Priv ate","ĠH OU","Ġbar r","ĠT at","C ube","US D","ĠGrand e","ĠG at","ĠFl o","Ġres ides","Ġind ec","vol ent","Ġperpet ual","ub es","Ġworld view","ĠQuant um","Ġfil tered","Ġen su","orget own","ERS ON","ĠM ild","37 9","OT T","à ¥","Ġvit amins","Ġrib bon","Ġsincere ly","ĠH in","Ġeight een","Ġcontradict ory","Ġgl aring","Ġexpect ancy","Ġcons pir","Ġmon strous","Ġ3 80","re ci","Ġhand ic","Ġpump ed","Ġindic ative","Ġr app","Ġav ail","ĠLEG O","ĠMar ijuana","19 85","ert on","Ġtwent ieth","################ ################","ĠSw amp","Ġval uation","Ġaffili ates","adjust ed","ĠFac ility","26 2","Ġenz ymes","itud inal","Ġimp rint","S ite","Ġinstall er","ĠT RA","m ology","lin ear","ĠCollect ive","ig ating","ĠT oken","Ġspec ulated","K N","ĠC ly","or ity","Ġdef er","Ġinspect ors","appro ved","R M","ĠSun s","Ġinform ing","ĠSy racuse","ib li","7 65","Ġgl ove","Ġauthor ize","â̦â̦â̦â̦ â̦â̦â̦â̦","ĠCru ise","Ġcontract ing","she ll","IF E","ĠJew el","p ract","ĠPhot oshop","ĠKnow ing","h arm","Ġattract ions","ad an","et us","01 8","w agen","Al t","Ġmultip ly","Ġequ ilibrium",": {","ĠF ighters","ĠEd gar","Ġfour teen","Go vern","Ġmis use","Ġab using","Ġancest ry","ram er","64 4","Ġwor ms","Ġthick er","ĠComb ine","Ġpeas ants","Ġv ind","Ġcon quest","Ġm ocked","Ġc innamon","ĠC ald","ĠGall up","Ġavoid ance","Ġincarn ation","ĠStr at","Ġt asted","ent a","ĠN eal","p ared","Ġtermin ology","ject ion","Scient ists","ĠIN S","ĠDe e","Ġdirect ories","R oad","ĠSh ap","br ight","ĠDirect ors","ĠCol umn","Ġb ob","Ġprefer ably","Ġgl itch","f urt","Ġe g","id is","C BC","Ġsur rendered","Ġtest ament","33 6","ug gest","ĠN il","an other","Ġpat hetic","ĠDon na","Ġ2 18","ĠA very","Ġwhis key","Ġf ixture","ĠCon quest","Ġbet s","O cc","ĠLe icester","] .\"","Ġ) );","Ġfl ashes","45 6","Ġmask ed","ge bra","Ġcomput ed","che l","aud er","Ġdefe ats","ĠLiber ation","ĠOs ama","ĠV ive","Ch anges","Ch annel","Ġtar iffs","Ġm age","ĠS ax","Ġinadvert ently","ĠC RE","ĠRe aper","ink y","gr ading","Ġstere otyp","Ġcur l","ĠF ANT","Ġfram eworks","M om","ĠAn ch","Ġflav our","car bon","Ġperm itting","let cher","ĠMo zilla","ĠPark ing","ĠCh amp","Sc roll","Ġmurd erer","Ġrest ed","Ġow es","ĠP oss","AD D","IF F","res olution","ĠMin ing","Ġcompar ative","D im","Ġneighbour ing","ĠA ST","ĠT oxic","Ġbi ases","Ġgun fire","ur ous","ĠMom ent","19 83","Ġper vasive","tt p","ĠNorm ally","r ir","S arah","ĠAlb any","Ġun sett","ĠS MS","ip ers","l ayer","ĠWh ites","up le","Ġtur bo","ĠLe eds","Ġthat s","ĠMin er","M ER","ĠRe ign","Ġper me","ĠBl itz","Ġ19 34","Ġintimid ating","t ube","Ġecc entric","ab olic","box es","ĠAssoci ates","v otes","Ġsim ulate","um bo","aster y","Ġship ments","FF FF","an th","Ġseason ed","Ġexperiment ation","âĸ ł","law s","Me et","idd les","ant ics","R ating","IS IS","h ift","Ġfront s","b uf","01 7","Ġun att","ĠD il","le ases","ĠGard ens","77 7","t ouch","ve ll","45 8","Ġ= ====","s aving","Ġer osion","ĠQu in","Ġearn s","Ġaccomplish ment","ĠWe i","Ġ< [","____ _","Ġir rig","ĠT eddy","Ġconqu ered","ĠArm ored","Ġassert s","Ġmanip ulating","r é","Ġtranscript s","G allery","Ġplot ting","Ne il","Ġbetray al","load er","ĠS ul","Ġdispl acement","Ġroy alty","ĠW I","he it","ĠDev ices","alle l","Ġmunicipal ities","Ġcan al","St ars","ĠU AE","Ġ\" â̦","ĠC U","ab ove","Ġreson ance","ĠguiActive Un","add ed","ĠBra ves","ĠI bn","Ġhere by","ĠB RE","Ġshare holder","ĠH ir","ĠJ i","Ġstrange ly","Ġadm ired","Ġpl ight","Ġb achelor","ĠP ole","cipl inary","T ony","ĠArmen ian","Ġun man","ĠZion ist","St age","isco ver","Ġautom otive","Ġs idelines","Ġsl ick","ĠRena issance","ĠF UN","Im ages","ĠH aj","Ġp ing","Ġshort cut","ĠBl vd","ĠLook s","Ġbur sts","Ġcl amp","Ġm ish","Ġsort ing","Ġpatri ot","Ġcorrect ness","ĠScand inav","ĠCaval iers","p ython","az ar","Ġ3 75","ĠJa une","40 9","Ġdetrim ental","Ġstab bing","Ġpoison ed","Ġf ountain","oc ent","or st","ĠMar i","Ġr ains","ĠO vers","ĠInst itution","ud get","AM Y","t ale","ĠK R","ĠPr ices","Ġhead aches","Ġlands l","ĠA ura","Bon us","ĠZ hao","ĠH ip","Ġhop s","ĠKurd istan","Ġexplo iting","ry n","Ġhypocr isy","op ening","Ġgun shot","Ġw ed","inter stitial","Inter stitial","Ġam en","Bre aking","Ġmarket ed","W ire","ĠC rowd","Contin ue","ĠK nown","ĠEffect ive","ore an","iz ons","Jose ph","Ġescal ation","us ername","Ġcur tain","AT ES","ĠP AR","ĠM iy","Ġcounter fe","l ene","Ġcont enders","d aily","ĠAs c","ĠPhill ip","most ly","Ġfil ename","he ne","Ġresemb ling","Ġst aging","ĠCh loe","Ġw iring","H on","ĠRen ew","ott age","ĠHy brid","m uch","Ġstro kes","Ġpolicy makers","AP TER","ĠArk ham","pl ot","Ġassist ants","Ġde port","ĠSe ga","Ġinflu enza","ĠC ursed","ĠK obe","Ġskin ny","Prov ider","ĠR ip","Ġincrement al","product s","B F","Ġd ome","ĠC redits","Ġlos ers","int s","ĠBet ty","ĠTal ent","ĠD AM","L v","E ss","Ġd ens","tem p","J udge","od ic","Ġ' (","UR ES","ets k","V O","Ġretrie ved","Ġarchitect s","Ù ĩ","Ġeth ic","ĠSecond ary","st ocks","ad ia","Ġ3 25","ĠOp inion","Ġsimultane ous","Ġd izz","ul p","Ġsmugg ling","ipp ery","R andom","f acing","ĠD as","Ġstock p","Ġdiscl osures","po inter","Ġcor al","ĠSe lection","ĠP ike","ival ent","Ġruth less","ĠR im","Ġensu ing","ĠExper iment","Ġcongress man","Ġbelie ver","Ġun specified","ĠM ord","Ġknowledge able","ĠV ERY","T X","Ġstra ps","Ġtur f","apesh ifter","Ġmar ital","Ġfl ock","ãģ Ĩ","26 3","AM ES","ĠOpp osition","Ġtre asures","ĠG OD","Ġmodel ed","ĠWOR LD","Ġ( [","ĠUs age","H F","Ġ$ (","uss ed","Ġpione er","E ight","par se","b read","rit z","ĠMir anda","ĠK ant","++ )","ore n","Ġprov oked","Ġbre eds","ĠIn cludes","ĠPast ebin","ĠFl ip","J ava","Ġbr ink","Ġrum ored","Ġun seen","Ġgar nered","ĠDef in","al ted","Ġtatt oos","Ġhes itation","is itions","ĠWe aver","ĠReport ing","Ġtherap ies","Ġconsult ants","Ġresid ual","ĠMal i","ĠRom a","i ago","ĠRes idents","ub i","Ġremed ies","Ġadapt ive","ĠAl ive","ĠBar cl","Ġwal lets","c rypt","etermin ation","ĠPel osi","Ġsl ipping","oton in","Ġall iances","pat rick","ir is","Ġor th","ĠPer kins","ĠDe V","ĠG ets","Ġdry ing","ge e","fore st","ĠFor get","ore m","33 9","Ġvague ly","ĠD ion","ĠP orn","ĠH OW","Ġp neum","Ġrub ble","ĠT aste","enc ia","ĠG el","Ġd st","Ġ24 5","ĠMoroc co","inf lamm","ĠTw ins","Ġb ots","d aughter","ĠB alk","Ġbre thren","Ġlog os","Ġgo bl","f ps","Ġsub division","Ġp awn","Ġsquee zed","Ġmor ale","ĠD W","' \"","Ġkn ot","ook y","Ġdiv isive","Ġboost ed","ch y","ãĥ IJ","if act","Ġnewcom ers","ĠWrest ling","Ġsc outs","w olves","R at","Ġnin eteenth","ĠOs borne","St ats","Ġem powered","Ġpsych opath","ĠO EM","ugg age","ĠP K","ĠMoh ammad","P ak","Ġanarch ists","ĠExt ract","est hes","ĠStock holm","l oo","ĠG raph","Ġdeploy ing","ĠStr anger","ĠM old","Ġstaff er","Ġdiscount ed","uck le","ple ase","ĠLand ing","ÃŃ a","Ġ19 3","Ġan te","Ġrep etition","Ġ+ /-","Ġpar ody","Ġlive ly","AA A","ĠHor us","Ġp its","ind ers","L OC","ĠVen ice","40 6","ĠDis cover","â Ĩ","ellect ual","Ġp ens","Ġey el","ig uous","Im pl","Ġj oking","Ġinv al","ĠBel fast","Ġcredit ors","ĠSky walker","ov sky","Ġcease fire","Ġse als","is oft",") ).","ĠFel ix","IT S","Ġt resp","ĠBlock chain","ew are","ĠSch war","en ne","mount ed","ĠBe acon","les h","Ġimmense ly","Ġche ering","Em ploy","sc ene","ish ly","atche wan","ĠNic olas","Ġdr ained","ĠEx it","ĠAz erb","j un","Ġflo ated","u ania","De ep","Ġsuper v","Ġmyst ical","ĠD ollar","ĠApost le","ĠR EL","ĠProv ided","ĠB ucks","ãĥ ´","cut ting","Ġenhance ments","ĠPengu ins","ĠIsa iah","Ġj erk","ĠW yn","Ġst alled","Ġcryptoc urrencies","ĠR oland","sing le","Ġl umin","ĠF ellow","ĠCap acity","ĠKaz akh","W N","Ġfin anced","38 9","Ġt id","Ġcoll usion","ĠMy r","î Ģ","Sen ator","Ġped iatric","Ġneat ly","Ġsandwic hes","ĠArchitect ure","Ġt ucked","Ġbalcon y","Ġearthqu akes","qu ire","F uture","Ġhe fty","é Ĺ","Ġspecial izes","Ġstress es","Ġs ender","Ġmisunder standing","Ġep ile","Ġprov oke","ĠCol ors","Ġdis may","uk o","[ _","58 6","ne utral","Ġdon ating","ĠRand all","Mult i","Ġconvenient ly","ĠS ung","ĠC oca","Ġt ents","ĠAc celer","Ġpart nered","27 2","ir ming","ĠB AS","s ometimes","Ġobject ed","ub ric","p osed","LC S","gr ass","Ġattribut able","V IS","Israel i","Ġrepe ats","ĠR M","v ag","ut a","in ous","Ġin ert","ĠMig uel","æ Ń","ĠHawai ian","B oard","Ġart ific","ĠAzerb ai","as io","ĠR ent","A IN","Ġappl iances","Ġnational ity","Ġass hole","ĠN eb","Ġnot ch","h ani","ĠBr ide","Av ailability","Ġintercept ed","Ġcontin ental","Ġsw elling","ĠPers pect","b ies",". <","ith metic","ĠL ara","Ġtempt ing","add r","Ġoversee ing","cl ad","ĠD V","ĠGing rich","Ġm un","ĠApp ropri","Ġalter ations","ĠPat reon","Ġha voc","Ġdiscipl ines","Ġnotor iously","aku ya","ier i","? ).","ĠW ent","Ġsil icon","Ġtre mb","Cont ainer","K nown","Ġmort ar","est e","ick a","Ar thur","ĠPre viously","ĠMart y","Ġsp arse","g ins","Ġin ward","ĠParticip ant","C opy","ĠM isc","Ġantib iotic","ĠRet ro","Ġel usive","Ġass ail","ĠBatt alion","ĠB ought","Ġdimin ish","ĠEuro pa","s ession","ĠDanger ous","ies el","Ġdisbel ief","Ġbl asts","ext reme","ĠBoy d","ĠProject s","ĠGu ys","Ġunder gone","Ġgr ill","ĠDw ight","Ġ19 7","US ER","Ġfiles ystem","Ġcl ocks","T aylor","Ġwra pper","Ġfold ing","ous and","ĠPhilipp ine","ATION AL","ĠPer th","Ġas hes","Ġaccum ulate","ĠGate way","Sh op","orks hire","H an","ĠBar rel","ĠLe h","ĠX V","Ġwh im","Ġrep o","ĠC G","ĠM am","Ġincorpor ating","Ġbail out","Ġlingu istic","Ġdis integ","C LE","Ġcinem atic","ĠF iber","S yn","il ion","ĠCom pos","c hens","Ġne oc","Ġbo iled","F INE","on o","un cle","ik en","ĠB M","Î ¹","Ġreceipt s","Ġdisp osed","ĠTh irty","ĠR ough","ĠA BS","Ġnot withstanding","oll en","# $","Ġunrel iable","Ġbl oom","Ġmedi ocre","Ġtr am","ĠTas man","Ġsh akes","Ġmanifest o","ĠM W","Ġsatisf actory","Ġsh ores","Ġcomput ation","Ġassert ions","orm ons","ar ag","ab it","Dem ocrats","ĠL oot","ĠVol ks","ha ired","Ġgrav itational","S ing","ĠM iz","Ġthro ttle","Ġtyr anny","ĠView s","Ġrob ber","ĠMinor ity","Ġsh rine","sc ope","pur pose","Ġnucle us","our cing","ĠUS DA","ĠD HS","w ra","ĠBow ie","Sc ale","ĠB EL","x i","I ter","Ġ( ),","w right","Ġsail ors","ous ed","NAS A","ĠPro of","ĠMin eral","t oken","ĠF D","R ew","Ġe ll","6 30","Ġchance llor","ĠG os","Ġamount ed","ĠRec re","ome z","ĠOpt im","ĠOl ive","Ġtrack er","ow ler","ĠUn ique","R oot","Ġmar itime","ĠQur an","ĠAd apt","Ġecosystem s","ĠRe peat","ĠS oy","ĠI MP","Ġgrad uating","and em","P ur","ĠRes et","ĠTr ick","ĠPh illy","ĠT ue","ĠMalays ian","Ġclim ax","Ġb ury","Ġcons pic","ĠSouth ampton","ĠFl owers","Ġesc orted","ĠEduc ational","ĠI RC","Ġbrut ally","e ating","Ġpill ar","ĠS ang","ĠJ ude","ar ling","ĠAm nesty","Ġrem inding","ĠAdminist rative","hes da","Ġfl ashed","ĠP BS","per ate","fe ature","Ġsw ipe","Ġgra ves","oult ry","26 1","bre aks","ĠGu er","Ġsh rimp","ĠV oting","qu ist","Ġanaly tical","Ġtables poons","ĠS OU","Ġresear ched","Ġdisrupt ed","Ġj our","Ġrepl ica","Ġcart oons","b ians","} )","c opy","G ot","ou ched","P UT","Ġsw arm","not ations","s aid","Ġreb uilt","Ġcollabor ate","Ġr aging","Ġn ar","Ġdem ographics","ĠD DR","Ġdist rust","oss ier","ĠK ro","Ġpump kin","Ġreg rets","Ġfatal ities","ĠL ens","ĠO le","p d","Ġpupp et","ĠOut look","ĠSt am","O l","F air","U U","Ġre written","Ä ±","Ġfasc inated","Ġve ctors","Ġtrib unal","u ay","ĠM ats","ĠCo ins","[ [","Ġ18 1","Ġrend ers","ĠK aepernick","Ġesp ionage","Ġsum m","Ġd itch","Acc ount","Ġspread sheet","Ġmut ant","p ast","40 7","Ġd ye","Ġinit iation","Ġ4 000","Ġpunish able","Ġth inner","ĠKh al","Ġinter medi","D un","ĠGoth am","Ġeager ly","Ġvag inal","p owers","V W","ĠWATCH ED","Ġpred ator","ams ung","Ġdispar ity","Ġ[ *","Ġam ph","Ġout skirts","ĠSpir its","Ġskelet al","Ð »","ĠR ear","Ġissu ance","ĠLog ic","re leased","Z Z","ĠB ound","Ent ry","Ġex its","is ol","ĠFound er","Ġw re","ĠGreen land","ĠM MO","t aker","IN C","ãģ ¾","Ġhour ly","hen ko","Ġfantas ies","Ġdis ob","Ġdemol ition","ãĥ ĭ","Ġen listed","rat ulations","Ġmis guided","Ġens ured","Ġdiscour aged","m ort","Ġfl ank","Ġc ess","Ġreact s","ĠS ere","s ensitive","ĠSer pent","ass ad","Ġ24 7","Ġcalm ly","b usters","Ġble ed","ĠSt ro","Ġamuse ment","ĠAntar ctica","Ġs cept","ĠG aw","a q","ason ic","Ġsp rawling","n ative","atur ated","ĠBattle field","IV ERS","E B","ĠG ems","ĠNorth western","ĠFil ms","ĠAut omatic","Ġappre hend","ãģ ¨","Ġgui Name","Ġback end","Ġevid enced","ge ant","01 2","ĠS iege","Ġexternal To","Ġunfocused Range","ĠguiActiveUn focused","Ġgui Icon","ĠexternalTo EVA","ĠexternalToEVA Only","F ri","ch ard","en aries","Ġchief s","Ġc f","ĠH UD","Ġcorro bor","Ġd B","ĠT aken","ĠPat ricia","ra il","ĠCh arm","ĠLiber tarian","rie ve","Person al","ĠO UR","ger ies","Ġdump ing","Ġneurolog ical","it imate","ĠClint ons","raft ed","ĠM olly","Ġtermin als","reg ister","Ġfl are","Ġenc oded","Ġautop sy","p el","m achine","Ġexempt ions","ĠRoy als","d istance","Ġdraft s","Ġl ame","ĠC unning","Ġsp ouses","ĠMark ets","ĠCar rier","Ġimp lying","ĠY ak","s id","Ġl oser","Ġvigil ant","Ġimpe achment","Ġaug mented","ĠEmploy ees","Ġunint ended","tern ally","ĠW att","Ġrecogn izable","ess im","æ Ŀ","Ġco ated","r ha","Ġlie utenant","ĠLegisl ation","pub lished","44 4","01 3","Ġide ally","ĠPass word","Ġsimpl ify","ĠMet a","ĠM RI","Ġple ading","organ ized","hand ler","Ġun ravel","cor rect","Ġ icy","Ġparan oid","Ġpass er","Ġinspect ions","of er","ĠHealth care","28 3","ĠBr ut","iol a","for ge","ĠMed ieval","MS N","ie vers","ĠProgram ming","å ī","Ġ2 23","m u","ĠC LE","ug a","Ġsho ppers","Ġinform ative","ĠPl ans","Ġsupplement ation","ĠT ests","ty ard","ocy tes","ĠVeg a","ĠGujar at","erman ent","Ex cept","ĠL OT","all a","ĠC umm","ĠO sw","Ġven om","ĠDeb t","ĠD OWN","Ġreun ion","Ġm uc","ĠRel ief","Ġge op","ĠðŁ ĺ","al ogue","An th","ech o","Ġcor ros","Ġrepl ication","ĠBl azing","ĠD aughter","Ġinf lic","ĠLind sey","Ù Ī","28 4","Ex it","Ġgl oom","TA IN","Ġundermin ing","Ġadv ising","h idden","Ġover flow","Ġg or","urd ue","Ġe choes","enh agen","Ġimp uls","d rug","c ash","Ġas ync","Ġmir ac","at ts","p unk","Ġpiv ot","ĠLegisl ative","Ġblog gers","ĠCl aw","s burg","d yl","ĠRecomm end","Ġver te","Ġprohib iting","ĠPant her","Jon athan","Ġo min","Ġhate ful","28 1","ĠOr che","ĠMurd och","down s","Ġas ymm","G ER","Al ways","Ġinform s","ĠW M","ĠP ony","ĠApp endix","ĠAr lington","J am","Ġmedic inal","ĠS lam","IT IES","Ġre aff","ĠR i","F G","S pring","b ool","Ġthigh s","Ġmark ings","ĠRa qqa","ĠL ak","p oll","ts ky","ĠMort y","ĠDef inition","Ġdeb unk","end ered","ĠLe one","a vers","Ġmortg ages","App arently","N ic","ha us","ĠTh ousands","au ld","Ġm ash","sh oot","Ġdi arr","Ġconscious ly","H ero","e as","ĠN aturally","ĠDestroy er","Ġdash board","serv ices","R og","Ġmillenn ials","Ġinv ade","- (","Ġcomm issions","ĠA uckland","Ġbroadcast s","Ġfront al","Ġcr ank","ĠHist oric","Ġrum ours","CT V","Ġster il","Ġboost er","rock et","ãĤ ¼","ut sche","ĠP I","Ġ2 33","ĠProdu cer","ĠAnaly tics","Ġinval uable","Ġunint ention","ĠC Y","Ġscrut in","Ġg igg","Ġeng ulf","Ġprolet ariat","Ġh acks","ĠH ew","ar ak","ĠSl ime","ield ing","ag her","ĠEll iot","Ġtele com","Ġ2 19","ult an","ĠAr bor","ĠSc outs","B an","Ġlifes pan","Ġbl asp","38 8","Ġjud iciary","ĠContin ental","ask ing","Mc C","L ED","Ġbag gage","ĠSorce rer","Ġrem nants","ĠGriff ith","ets u","ĠSub aru","ĠPerson ality","des igned","ush ima","agn ar","Ġrec oil","Ġpass ions","\\ \":","Ġte e","Ġabol ition","ĠCreat ing","j ac","Ġ19 4","01 9","Ġpill ars","ric hed","/ \"","t k","Ġlive lihood","Ġro asted","ah on","ĠH utch","ass ert","Ġdivid end","Ġkn it","Ġd aunting","Ġdisturb ance","Ġsh ale","Ġcultiv ated","Ġrefriger ator","L B","ĠN ET","Ġcommercial s","Ġthink ers","45 5","Ġch op","B road","Ġsuspic ions","Ġtag ged","l ifting","Ġsty lish","ĠShield s","Short ly","Ġt ails","A uth","ST E","ĠG AME","Ġse ism","ĠK is","olog ne","Ġcow ork","Ġforc ibly","Ġthy roid","ĠP B","AN E","mar ried","h orse","Ġpoly mer","ĠCh al","od or","DE BUG","ĠCon text","Ġbl iss","Ġpin point","ĠMat hemat","leg ram","ĠWeek end","Ġlab elled","Ġb art","it les","Ġest rogen","âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ","\" '","Ġvis ibly","Ġouts ider","aid a","Are a","Ġdisse min","Ġdish onest","ĠCl osed","ĠBullet in","ĠRam sey","sw ord","ĠX I","our ced","S ame","34 6","ĠRe pe","ĠK ou","c ake","em is","C ache","ĠMe aning","ĠEn light","onom y","Ġmanifest ation","sw orth","J ay","Ġch ore","ö r","D ream","Ġsanction ed","Ġcult urally","ĠA ra","N av","Ġthe ological","Ġstr ut","ĠV O","ĠHand book","Ġconstruct ing","Ġ ¶","ĠBenef its","ĠPsych ological","s ac","å ¸","p olicy","ĠMat ters","ĠReport ed","ĠBy te","Ġvit ro","ĠM aiden","Ġl am","ĠJenn ings","Ġgar ment","ĠRut gers","ĠStaff ord","ĠWell ington","Ġinter mitt","Ġn pm","Ġord eal","Ġplug ged","o oming","in ished","fram ework","Ġtim ber","Ġc ass","Ġ8 50","il ess","ĠRed ux","7 68","St re","Ġsurpass ed","w hel","Ġparalle ls","Ġve il","ĠG I","ĠR EST","Ġread iness","s ort","Ġmod ifying","ĠSl ate","ru ff","Ġmar ble","Ġinf rared","Ġaud itor","ĠFANT ASY","ĠP overty","ĠS PD","Ġ\" (","K y","RA Y","Ġexecut ions","ĠBever ly","ĠMarx ism","ĠBur st","ĠK ali","est ones","Clear ly","E ll","ãģ §","ĠProceed ings","T oken","IF IC","ñ a","Cent ral","ĠH aley","ĠD rama","Ġform ations","OR N","Book s","Ġdom inating","ĠFly ers","ĠCompan ion","Ġdiscipl ined","ĠYug oslav","ĠSpell s","Ġv engeance","Ġland lords","L en","ĠO gre","ano ia","Ġpier cing","Ġcon greg","Ġscore r","ob ia","Ġnic kel","ĠLear ns","Ġre jo","Ġmaster piece","Fl ash","Ġinhab ited","ĠOpen GL","ĠD ud","ĠI CO","Ġar ter","Ġpl ur","Ġmaster y","Ġlong standing","st ed","Ġw ines","Ġtelev ised","ĠSh rine","ĠBay ern","Ġâ ĵĺ","Ġencl osure","j ohn","Ġprophe ts","ĠRes urrection","ĠOrd ers","Ġun even","r als","Ġd wind","ĠL ah","ĠSl oven","37 8","Ġins istence","aff le","ĠCl one","Ġhard ship","ĠCongress man","Ġple ad","Ġreview ers","Ġc ured","Ġ19 35","as ley","f ake","ĠTh inking","yd ia","P ART","ĠD ota","o it","Ġwh ipped","Ġb ouncing","ĠHispan ics","com ings","Ġcann abin","ĠCh ambers","ĠZ ack","Option al","Ġco ats","Ġprow ess","ĠNort on","Ġplain ly","Ġfre ight","Ġinhib ition","Ġcl am","Ġ30 3","ke f","ale igh","L uke","Ġpsych o","ator ium","M ED","Ġtreat ies","Ġind isc","Ġd c","OP S","Ġresil ient","ĠInter state","Ġsl ack","Ġmund ane","Ġestab lishes","35 9","Ġstr ained","Ġn ond","S us","Ġcast e","ar ate","ie ving","Ġunfair ly","Ġpars er","on ial","urs ive","V ia","ĠOtt o","ĠAuthor ities","stro ke","K R","ĠMer cy","Ġfurn ished","Ġout set","Ġmet ic","19 82","olith ic","ĠT ent","og ical","ĠA ircraft","Ġh ides","ĠBec ame","Ġeduc ators","re aching","Ġvol atility","Ġtodd ler","ĠNAS CAR","ĠTw elve","ĠHigh lights","Ġgra pe","Ġspl its","Ġpe asant","Ġre neg","ĠMS I","Tem p","st ars","Ġtre k","ĠHy de","b inding","Ġreal ism","Ġox ide","ĠH os","Ġmount s","Ġbit ing","Ġcollaps ing","Ġpost al","Ġmuse ums","Ġdet ached","Ġrespect ing","Ġmonop ol","Ġwork flow","ĠC ake","Tem plate","ĠOrgan isation","Ġpers istence","36 9","C oming","B rad","Ġredund ant","ĠG TA","Ġb ending","Ġrev oked","Ġoff ending","Ġfram ing","Ġprint f","Comm un","mem bers","Out side","Ġconst rued","Ġc oded","F ORE","Ġch ast","Ch at","Ind ian","ĠY ard","? !\"","ĠP orts","ĠX avier","ĠR ET","' .\"","ĠBo at","iv ated","ich t","umer able","D s","ĠDun n","Ġcoff in","Ġsecure ly","ĠRapt ors","ĠB es","Install ation","Ġin ception","ĠHealth y","end ants","Ġpsych ologists","ĠShe ikh","c ultural","ĠBlack Berry","sh ift","F red","oc he","Ġc akes","ĠS EO","ĠG ian","ĠAs ians","og ging","e lement","Ġpund its","ĠV augh","ĠG avin","Ġh itter","Ġdrown ed","Ġch alk","ĠZ ika","Ġmeas les","80 2","â̦ ..","ĠAW S","] \"","Ġdist ort","ĠM ast","Ġantib odies","ĠM ash","Mem ory","ĠUg anda","ĠPro b","Ġvom iting","ĠTurn s","Ġoccup ying","Ġev asion","ĠTher apy","Ġprom o","Ġelect r","Ġblue print","ĠD re","pr iced","ĠDep ot","Ġallev iate","ĠSom ali","m arg","n ine","Ġnostalg ia","ĠShe pherd","Ġcaval ry","Ġtor ped","ĠBlood y","x b","Ġs ank","Ġgo alt","report print","embed reportprint","clone embedreportprint","ĠIn itially","ĠF ischer","Ġnot eworthy","c ern","Ġin efficient","raw download","rawdownload cloneembedreportprint","c ation","ĠD ynasty","l ag","D ES","Ġdistinct ly","ĠEston ia","Ġopen ness","Ġg ossip","ru ck","W idth","ĠIb rahim","Ġpet roleum","Ġav atar","ĠH ed","ath a","ĠHog warts","Ġc aves","67 8","Ġsafegu ard","ĠM og","iss on","ĠDur ham","sl aught","ĠGrad uate","Ġsub conscious","ĠEx cellent","ĠD um","---- -","Ġp iles","ĠW ORK","ĠG arn","ĠF ol","ĠAT M","Ġavoid s","ĠT ul","Ġble ak","EL Y","iv ist","light ly","P ers","ĠD ob","ĠL S","Ġins anity","Î µ","atal ie","En large","Ġtw ists","Ġfault y","Ġpir acy","Ġimp over","Ġrug ged","ĠF ashion","Ġs ands","' ?","sw ick","Ġn atives","Ġhe n","ĠNo ise","ãĥ Ĺ","Ġg reens","Ġfree zer","Ġd ynasty","ĠFather s","ĠNew ark","Ġarchae ological","Ġo t","ob ar","Ġblock ade","Ġall erg","L V","Ġdeb it","ĠR FC","ĠMil ton","ĠPress ure","Ġwill ingly","Ġdisproportion ate","Ġopp ressive","Ġdiamond s","Ġbelong ings","19 70","Ġbell s","Ġimperial ism","Ġ2 27","Ġexpl oding","ĠE clipse","Ġ19 19","Ġr ant","Ġnom inations","34 7","Ġpeace fully","ric a","ĠF UCK","Ġvib ration","mal ink","Ġro pes","ĠIv anka","ĠBrew ery","ĠBook er","ĠOw ens","go ers","Serv ices","ĠSn ape","Ġ19 1","39 5","Ġ2 99","just ice","Ġb ri","Ġdisc s","Ġprom inently","Ġvul gar","Ġsk ipping","l ves","Ġtsun ami","37 4","ĠU rug","ĠE id","rec ated","p hen","Ġfault s","ĠStart ed","9 50","Ġp i","Ġdetect or","Ġbast ard","Ġvalid ated","Space Engineers","OUR CE","Ġ( ~","Ġuns ur","Ġaff irmed","Ġfasc ism","Ġres olving","ĠCh avez","ĠC yn","Ġdet ract","L ost","Ġrig ged","Ġhom age","ĠBrun o","55 5","ec a","Ġpress es","Ġhum our","Ġsp acing","Ġ' /","olk ien","C oun","OP ER","T re","S on","ĠCambod ia","ier re","m ong","o zy","Ġliquid ity","ĠSov iets","ĠFernand o","Ġ2 29","Ġsl ug","ĠCatal an","elect ric","Ġsc enery","ĠH earth","Ġconst rained","Ġgoal ie","ĠGu idelines","ĠAm mo","ĠPear son","Ġtax ed","Ġfet us","Resp onse","ĠAlex is","th ia","G uy","Ġrecon struct","Ġextrem es","Ġconclud ing","ĠP eg","ook s","Ġded uctions","R ose","Ġground breaking","ĠT arg","ãĥ ģ","ĠRe ve","res ource","Ġmo ons","Ġelectrom agnetic","Ġamid st","ĠVik tor","N ESS","B ACK","Ġcomm ute","ĠAna heim","Ġfluct uations","6 40","Ġnood les","ĠCop enhagen","ĠT ide","ĠGri zz","ĠS EE","Ġpip elines","Ġsc ars","end o","ag us","ĠE TF","/ #","ĠBec ome","44 8","Ġvis c","ĠRecomm ended","Ġj umper","Ġcogn ition","Ġassass in","Ġwitness ing","ĠSet up","Ġl ac","v im","IS M","p ages","SS L","35 8","Ġad ject","indust rial","l ore","cher y","Ġgl itter","Ġc alf","Flor ida","Ġspoil ers","Ġsucceed s","Ġch anting","Ġslog ans","ĠTr acy","Vis it","rol ogy","Ġm ornings","Ġline age","Ġs ip","Ġintense ly","Ġflour ish","ĠSle eping","ĠF em","or por","ĠK lan","ĠDar th","h ack","ĠNi elsen","Ġtum ors","Ġprocure ment","ĠY orkshire","Ġra ided","K Y","An na","Ġ// [","ĠDis order","ĠMust ang","ĠW en","ĠTry ing","s q","Ġdeliver ies","Ġshut ter","Ġcere bral","Ġbip olar","ĠC N","l ass","j et","Ġdeb ating","> :","Ġe agle","gr ades","ĠD ixon","UG C","M AS","ĠDr aco","ĠMach ines","aff er","Ġem an"," ²","pr on","ĠG ym","Ġcompar atively","ĠTrib unal","PR O","Ġle x","Ġfert ile","Ġdep ressing","Ġsuperf icial","ess ential","ĠHun ters","g p","Ġprom inence","L iber","ĠAn cest","ote chnology","Ġm ocking","ĠTra ff","ĸ ļ","Med ium","I raq","Ġpsychiat rist","Quant ity","ĠL ect","Ġno isy","5 20","G Y","Ġsl apped","ĠM TV","Ġpar a","p ull","Mult iple","as her","Ġn our","ĠSe g","Spe ll","v ous","ord ial","Sen ior","ĠGold berg","ĠPl asma","ne ed","Ġmess enger","ere t","Ġteam ed","Ġliter acy","ĠLe ah","ĠD oyle","Ġem itted","U X","Ġev ade","Ġm aze","Ġwrong ly","ĠL ars","Ġstere otype","Ġpled ges","Ġarom a","ĠM ET","Ġac re","ĠO D","Ġf f","Ġbrew eries","ĠH ilton","und le","ĠK ak","ĠThank fully","ĠCan ucks","in ctions","ĠApp ears","Ġco er","Ġundermin ed","ro vers","And re","Ġbl aze","um ers","Ġfam ine","amp hetamine","ulk an","Am ount","Ġdesper ation","wik ipedia","develop ment","ĠCor inth","uss ia","Jack son","L I","N ative","R s","Oh io","ĠKath leen","F ortunately","Ġattend ant","ĠPre ferred","ĠDid n","ĠV s","M is","Ġrespond ent","Ġb oun","st able","Ġp aved","Ġunex pl","ĠChe ney","L M","ĠC ull","bl own","Ġconfront ing","oc ese","serv ing","W i","ĠLith uania","ann i","Ġst alk","h d","Ġv ener","AP H","ynchron ous","UR R","um ably","hist oric","H alf","H ay","Ġresil ience","spe ction","Ġabandon ing","O bs","ĠDeb bie","Ġgrad ient","ĠPl aint","ĠCan al","AR CH","Ġexpans ive","Ġfun g","Ġb ounced","U nd","Ġprec autions","Ġclar ification","Ġd agger","Ġgri ps","Ġ µ","ĠRiver a","ĠUnd ead","is ites","ĠFIR ST","ñ o","aud i","Ġhost ages","Ġcompl iant","Ġal umni","Se ven","Ġcyber security","e ither","Col lect","Ġinvari ably","ĠS oci","Ġlaw maker","Ġa le","ĠPerson ally","N azi","Ġcustom ization","ĠPro c","ĠSask atchewan","eat uring","Ġsp ared","Ġdiscontin ued","Ġcomput ational","ĠMotor ola","Ġsuprem acist","government al","Ġparad ise","ĠDown ing","ĠNik on","Ġcat alyst","ber ra","Tor onto","8 75","bet a","ĠMac ron","Ġunreal istic","ve ctor","ĠVeh icles","it iveness","ĠR V","ĠCol bert","s in","o ji","ent in","ĠKr ish","hell o","ff ield","ok y","ĠT ate","Ġmap le","Ġa ids","chem ical","33 4","n uts","ĠWar p","Ġx x","ĠRob b","umer ous","_- _","ft ime","ĠV W","Ġw inger","ĠD ome","t ools","ĠP V","ĠGe orgetown","Ġg eared","Ġjihad ists","Ġc p","Ġster oids","M other","cler osis","ĠDR M","nes ia","Ġl inger","Ġimm ersive","ĠC OUN","Ġoutwe igh","ens ual","B and","Ġtransform s","mat ched","ps ons","ĠJud icial","f actor","Ġrefer ral","Ġodd ly","ĠW enger","B ring","ĠB ows","60 2","IC LE","Ġl ions","ĠAcad emic","ĠTh orn","ĠRa ider","kef eller","St orage","L ower","ĠOr t","ĠEqu ality","AL T","ĠS OC","T ypes","Ġl yn","ĠAss et","co at","TP P","C VE","ĠPione er","app lication","Mod ern","ĠH K","En vironment","Al right","R ain","IP P","ĠShi ite","Ġm ound","ĠAb ilities","cond ition","St aff","Ġcompet ence","ĠM oor","ĠDi ablo","Ġwith held","Ġost ensibly","ĠB rom","Ġms g","Ġden omin","ĠRef erences","ĠF P","Ġplun ged","Ġp amph","m oving","cent ral","Ġdown right","Ġf ading","T al","T yp","ĠTh y","uk es","it he","Ġo ve","Ġbatt led","Ġseaf ood","Ġfig ur","ĠR D","c rop","Ġsqu ads","{ \\","à ¹","ĠE h","Ġinterview ing","ĠQ in","Ġas piring","PL IC","Ġcla uses","ĠG ast","ĠN ir","Ġl uggage","Ġh ose","Ġsystem d","Ġdesc ending","ĠRev ised","ĠR ails","al ign","70 9","33 7","Ġf ug","charg ing","t ags","Ġut er","k ish","WAR NING","49 0","prof its","Ġvoy age","Ġa ce","ĠV anguard","ĠT anks","ĠM uk","Ġ2 26","S afe","Ar mor","Ġvolcan ic","Ġwom b","ĠM IL","Ġbegin ner","ĠRec ogn","ĠA AP","PL AY",") !","Ġdetect ing","c n","Ġbre aches","Bas ically","ĠP ag","ĠMunicip al","ĠInd ie","ĠL af","ĠDis able","ĠOl son","Ġrest rained","Ġrul ings","Ġhum ane","ev ents","ĠCinem a","display Text","ĠH atch","action Date","onna issance","Ġassault ing","ĠL ug","CH AT","Ġvig orous","ĠPer se","Ġintoler ance","ĠSnap chat","ĠSh arks","Ġd ummy","ĠDi agn","ĠGu itar","im eters","40 3","RE G","A x","Ġsepar ates","ĠMah m","Ġt v","j ah","O OL","C irc","ĠWinds or","uss ian","Ġintu ition","Ġdis dain","ĠDon ovan","Ġ2 21","E mb","Ġcondem ning","Ġgener osity","zz y","Ġpant ies","ĠPre vent","Action Code","AN A","34 2","external ActionCode","Ġspec ifying","Ġcryst all","J ere","Ġru pt","ĠApp rentice","Ġprof iling","Ð º","St rike","Ġsid eline","Ġoblig ated","Ġocc ult","Ġbureaucr atic","ant ically","rupt ed","neg ative","ĠEthiop ia","ĠC ivic","Ġins iders","el igible","ĠTV s","ĠB AR","ĠT I","i ologist","ĠA IR","Ġsubstit uted","Ar ab","ĠS aul","ĠY og","p rem","Ġbuild ers","Ġstation ary","Ġdoubt ful","Ġvig orously","Ġthr illing","Ph ysical","ĠCare y","ĠHyd ra","geon ing","ĠS ly","y ton","Ġborrow ers","ĠPark inson","Ġ ë","ĠJama ica","Ġsat ir","Ġinsurg ents","ĠF irm","Ġis ot","ĠK arn","our ning","ak ens","doc s","l ittle","ĠMon aco","CL ASS","Tur key","L y","ĠCon an","ass ic","Ġstar red","ĠPac ers","et ies","Ġt ipping","M oon","ĠR w","s ame","Ġcav ity","Ġgo of","ĠZ o","Sh ock","um mer","Ġemphas izes","Ġreg rett","Ġnovel ty","Ġen vy","ĠPass ive","r w","50 5","Ġind ifferent","ĠR ica","ĠHim self","ĠFred die","Ġad ip","ä¸ Ģ","Ġbreak out","Ġhur ried","ĠHu ang","ĠD isk","Ġro aming","?????- ?????-","U V","ĠRick y","ĠS igma","Ġmarginal ized","Ġed its","Ġ30 4","mem ory","Ġspec imen","29 3","ãģ ¯","Ġvert ically","Ġaud ition","ĠHe ck","Ġc aster","ĠHold ings","ad al","ĠC ron","ĠL iam","Ġdef lect","P ick","ĠDeb ug","RE F","Ġvers atility","ot hes","class ified","ĠMah ar","ĠH ort","C ounter","st asy","not iced","33 1","ĠSh im","f uck","ĠB ie","Ġair ing","ĠPro tein","ĠHold ing","Ġspect ators","ili ated","ĠThat cher","n osis","ãĥ¼ ãĥ³","Te le","B oston","ĠTem pl","st ay","Ġdecl arations","47 9","Vol ume","ĠDesign er","ĠOver watch","id ae","Ġon wards","Ġn ets","ĠMan ila","part icularly","Ġpolit ic","o other","Ġport raits","Ġpave ment","c ffff","Ġs aints","Ġbegin ners","ES PN","Ġshort comings","âķIJ âķIJ","Ġcom et","ĠOrgan ic","qu el","Ġhospital ized","Bre ak","Ġpe el","dyl ib","asp x","ur ances","ĠT IM","P g","Ġread able","ĠMal ik","Ġm uzzle","Ġbench marks","d al","ĠV acc","ĠH icks","60 9","ĠB iblical","he ng","Ġover load","ĠCivil ization","Ġimm oral","Ġf ries","ãĤ Ĵ","Ġreprodu ced","Ġform ulation","j ug","ire z","g ear","Ġco ached","Mp Server","ĠS J","ĠK w","In it","d eal","ĠO ro","ĠL oki","ĠSong s","Ġ23 2","ĠLou ise","asion ally","Ġunc ond","olly wood","Ġprogress ives","ĠEn ough","ĠDo e","Ġwreck age","Ġbr ushed","ĠBase Type","Ġz oning","ish able","het ically","ĠC aucus","ĠH ue","Ġk arma","ĠSport ing","Ġtrad er","Ġseem ing","ĠCapt ure","4 30","b ish","Ġt unes","Ġindo ors","ĠSp here","ĠD ancing","TER N","Ġno b","ĠG ST","m aps","Ġpe ppers","F it","Ġoverse es","ĠRabb i","ĠR uler","vert ising","off ice","xx x","Ġra ft","Ch anged","Ġtext books","L inks","ĠO mn","ãĢ ij","Ġinconven ience","ĠDon etsk","= ~","Ġimplicit ly","Ġboost s","ĠB ones","ĠBo om","Cour tesy","Ġsens ational","AN Y","Ġgre edy","ed en","Ġinex per","ĠL er","ĠV ale","Ġtight en","ĠE AR","ĠN um","Ġancest or","S ent","ĠH orde","urg ical","all ah","Ġsa p","amb a","ĠSp read","tw itch","Ġgrand son","Ġfract ure","Ġmoder ator","ĠSe venth","ĠRe verse","Ġestim ation","Cho ose","Ġpar ach","Ġbar ric","ãĢ IJ","Ġcomp ass","Ġall ergic","âĢ ķ","OT HER","err illa","Ġw agon","Ġz inc","Ġrub bed","ĠFull er","ĠLuxem bourg","ĠHoo ver","Ġli ar","ĠEven ing","ĠCob b","est eem","Ġselect or","ĠB rawl","is ance","ĠE k","Ġtro op","Ġg uts","ĠApp eal","ĠTibet an","Ġrout ines","ĠM ent","Ġsummar ized","steam apps","Ġtr anqu","Ġ19 29","or an","ĠAut hent","Ġg maxwell","Ġappre hens","Ġpo ems","Ġsa usage","ĠWeb ster","ur us","Ġthem ed","Ġl ounge","Ġcharg er","Sp oiler","Ġsp illed","h og","ĠSu nder","ĠA in","ĠAng ry","Ġdis qual","ĠFrequ ency","ĠEther net","Ġhel per","Per cent","Ġhorr ifying","Ġa il","ĠAll an","EE E","ĠCross ing","44 9","Ġh olog","ĠPuzz les","ĠGo es","eren n","60 4","ãģ ı","ĠRaf ael","Ġatt en","ĠE manuel","Ġup ro","ĠSus p","P sych","ĠTr ainer","ĠN ES","ĠHun ts","bec ue","Ġcounsel or","R ule","Ġtox ins","Ġb anners","r ifice","Ġgreet ing","Ġfren zy","Ġall ocate","Ġ* )","ex pr","50 3","ĠCh ick","ĠT orn","Ġconsolid ation","ĠF letcher","sw itch","fr ac","cl ips","ĠMcK in","ĠLun ar","Mon th","IT CH","Ġscholar ly","rap ed","39 8","Ġ19 10","Ġe greg","Ġin secure","Ġvict orious","cffff cc","Ġsing led","Ġel ves","ĠW ond","bur st","Ġcam oufl","ĠBL ACK","Ġcondition ed","ç ī","ans wered","Ġcompuls ory","asc ist","Ġpodcast s","ĠFrank furt","bn b","Ġne oliberal","ĠKey board","ĠBel le","w arm","Ġtrust s","Ġins ured","ĠBu cc","us able","60 7","ĠPl ains","Ġ18 90","Ġsabot age","Ġlod ged","f elt","Ġg a","ĠN arc","ĠSal em","Ġsevent y","ĠBl ank","p ocket","Ġwhis per","Ġm ating","om ics","ĠSal man","ĠK ad","Ġan gered","Ġcoll isions","Ġextraord inarily","Ġcoerc ion","G host","b irds","è Ģ","k ok","Ġper missible","avor able","Ġpo inters","Ġdiss ip","ac i","Ġtheat rical","ĠCos mic","Ġforget ting","Ġfinal ized","å¤ §","y out","l ibrary","Ġbo oming","ĠBel ieve","ĠTe acher","ĠL iv","ĠGOOD MAN","ĠDomin ican","OR ED","ĠPart ies","Ġprecip itation","ĠSl ot","R oy","ĠComb ined","Ġinteg rating","Ġch rome","Ġintest inal","ĠRe bell","Ġmatch ups","Ġblock buster","ĠLore n","ĠLe vy","Ġpre aching","ĠS ending","ĠPur pose","ra x","f if","Ġauthor itative","ĠP ET","ast ical","Ġdish on","Ġchat ting","Ġ\"$ :/","Connect ion","Ġrecre ate","Ġdel inqu","Ġbro th","ĠD irty","ĠAd min","z man","Ġscholars hips","Ġ25 3","cont act","als a","7 67","c reen","abb age","Ġ19 15","Ġbl ended","Ġal armed","L anguage","35 6","Ġbl ends","ĠCh anged","W olf","Ġhe pat","Creat ing","Ġper secut","Ġsweet ness","art e","Ġforfe iture","ĠRober to","im pro","N FL","ĠMag net","Det ailed","Ġinsign ificant","ĠPOL IT","ĠBB Q","ĠC PS","Ġse aw","amin er","m L","end if","f inals","Ġ26 5","u ish","Ġ} )","ĠPro blems","Ġem blem","Ġserious ness","Ġpars ing","Ġsubst itution","Ġpress ured","Ġrecy cled","ale b","Rub y","Ġprof iciency","Dri ver","ĠW ester",": '","AF TA","Ġm antle","ĠClay ton","fl ag","Ġpractition er","c overed","ĠSt ruct","add afi","4 25","ĠTown ship","ĠHyd ro","Lou is","34 3","Ġcond o","ĠT ao","Ġutil ization","Ġnause a","ĠDem s","rid ges","p ause","Ġform ulas","Ġchall enger","37 6","Ġdefect ive","ĠRail way","ĠPub Med","Ġyog urt","l bs","ĠNor folk","OP E","ĠMood y","Ġdistribut or","Ġscroll s","Ġextract s","St an","Ġv iability","Ġexp oses","Ġstar vation","ĠStep s","ĠD odd","f ew","ST D","33 2","Ġclos ures","Ġcomplement ary","ĠS asha","ump y","Ġmon et","Ġartic ulate","ĠDo ct","k iller","Ġsc rim","Ġ2 64","Ġprost itutes","Ġse vered","Ġattach ments","Ġcool ed","L ev","ĠF alk","f ail","Ġpolic eman","ĠD ag","Ġpray ed","ĠK ernel","Ġcl ut","Ġc ath","Ġan omaly","St orm","em aker","ĠBreak fast","ul i","o ire","J J","h z","Oper ation","ĠS ick","35 4","ĠGuatem ala","R ate","Ġexp osures","f aces","ĠArch ae","ra f","ĠM ia","Ġ20 25","Ġop aque","Ġdisgu ised","ĠHead quarters","S ah","Ġp ots","9 78","ĠM alf","Ġfrown ed","Ġpoison ous","ĠCon vers","ee ks","Ġcr ab",".\" \"","Ġtre ason","Ġr anc","Ġescal ating","Ġwar r","Ġmob s","Ġl amps","ĠSun shine","ĠBrun swick","Ph ones","Ġspe lled","ĠSk ip","Ġ20 50","Ġ19 11","ĠPl uto","ĠAm end","Ġme ats","38 7","Ġst omp","ĠZh ou","ĠLevi athan","ĠHaz ard","ad v","ĠOr well","Ġal oud","Ġb umper","ĠAn arch","ub untu","ĠSer ious","f itting","ĠOption al","ĠCec il","RE AM","Ġser otonin","Ġcultiv ate","ag ogue","} \\","Ġmos ques","ĠSun ny","Ġre active","rev olution","ĠL up","ĠFed ora","Ġdefense man","ĠV ID","ist ine","Ġdrown ing","ĠBroad casting","Ġthr iller","ĠS cy","Ġacceler ating","Ġdirect s","od ied","b ike","d uration","Ġpain fully","R edd","Ġproduct ions","Ġg ag","Ġwh ist","Ġs ock","Ġinf initely","ĠConc ern","ĠCit adel","Ġlie u","Ġcand les","ogene ous","arg er","Ġheaven ly","inflamm atory","Per formance","C s","ruct ose","az aki","Ġp essim","Ġinf erence","Ġpow d","ĠZ oe","Ġpain ts","Ġd azz","pt a","-------- ---","Ġins pir","ĠExper imental","ĠKn ife","reg or","b ors","Ġshow ers","rom eda","Ġs aint","Ġben ign","ĠJ iang","Ġenvision ed","Ġsh roud","IF T","H O","Ġsh uff","ĠI CC","Ġse greg","Ġrevis it","ighth ouse","L i","Ġsub strate","ĠSe as","ĠRew ard","ĠH ep","ĠBr ass","s bm","Ġelim inates","Ġst amina","ĠV AT","ĠLo an","Ġconst raint","Ġappropri ated","Ġp es","ĠA LE","r anging","Ġ40 4","39 2","Ġintellectual s","ach u","Ġrestruct uring","ĠLe vin","Ġrun es","Ġdelight ful","Ġcarbohyd rates","ĠMod els","ĠExp o","Ġtransport ing","all oc","Ġring ing","S amsung","Ġscarce ly","ĠURL s","ĠM AS","Ġprot otypes","Ġnarr ator","ĠCPU s","cd n","ĠBart on","Ġdecided ly","ĠSh u","ix ir","oc ious","ĠMy st","N intendo","Ġre use","Ġforg iven","F ew","in ical","n at","Ġseam less","ĠEv a","ĠE VE","ĠJ O","land ers","Ġso fter","neg ie","Ġtrans ient","Ġorb ital","Ġfulf il","ĠK om","Hop efully","Ġdynam ically","ĠHun ger","å Ľ","ĠArmen ia","el man","ber to","Ġp ige","ĠID s","lim it","Ġve ins","Ġso aring","p acks","Gold en","ĠCr ab","ist or","ĠR PM","Ġ$ $","g ression","Ġjihad ist","Ġgam ble","Ġcare g","Ġinf lated","F ace","ĠFire arms","ĠEm manuel","â Ŀ","Ġsh ocks","gr ab","Ġspl end","ĠHP V","ab ortion","Ab ove","Ent ity","play ers","Ġcomm enced","ul ence","Ġfulfill ment","Ġembod iments","ĠW elfare","Ġha il","Ġ< @","tt en","Ġcat cher","ĠJ azeera","Ġvolcan o","Ġstabil ize","ĠHand ler","Ġintens ified","ĠAb rams","Ġhum iliation","p aced","60 5","ĠCent OS","Spe cific","Ġhe ed","ĠC AM","ĠGal ile","D ie","Ġabol ished","ĠThom son","ĠTe achers","ĠW ass","j ong","ĠIS BN","ĠAll ies","sh ake","å ·","v ict","How ard","Ġde em","Ġexceed ingly","ĠSmart stocks","ib e","Ġdoor way","Ġcompet ed","ig mat","Ġnational ists","Ġg room","ĠKe en","Ġdispos able","de cl","ĠT olkien","ĠSche me","Ġb iod","Ġav id","ĠEl on","ag ar","ĠT SA","R oman","Ġartific ially","Ġadvis ors","X L","ĠInf erno","36 6","Ġted ious","ĠPhot ography","ĠCar rie","Ġtro pe","ĠSand ra","Ġdec imal","Que en","ĠGund am","ĠO M","ote ch","N BA","Ġ19 32","Ġent renched","ĠMar ion","Ġfr aternity","Lab our","Hen ry","Ġlat itude","E ither","Ġenh ances","ĠPot ential","Ġsh ines","id ad","Ġbread th","Ġcapac ities","ĠðŁ ĻĤ","ĠBron x","Ġsex es","Ġdifferent iation","Ġheavy weight","ĠT aj","d ra","Ġmigr ate","Ġexhaust ion","ĠR UN","els ius","ĠCu omo","Ġgu itars","Ġcl ones","ĠSom ew","ĠP ry","------------ -","Ġwarr anted","cy cles","Ġsalv age","Ġdis ks","R ANT","ĠNGO s","ĠMart ian","\":[ {\"","Ġadd icts","oj ure","il let","Ġamazing ly","art ments","p ixel","ĠGPU s","Lay out","è £","ĠTam il","ĠBas il","Ġimpart ial","ĠSt ructure","f ork","b ryce","Ġr idge","ĠHamb urg","ri ous","Ġbl itz","cig arettes","Ġcan ned","40 2","Ġiron ically","Ġcompassion ate","ĠHaw kins",". #","ĠCat hedral","Ġrall ied","in ternal","Ġqu ota","st akes","T EXT","m om","Ġcomple tes","Ġ23 8","Ġsh rug","ãĥ ij","ĠN inth","Ġrev ise","ĠProv ider","Ġtre acher","Ġqu asi","ĠPR ES","Ġdep osition","Ġconfidential ity","iss ors","Ġim balance","Ġspan ning","Ġang ular","ĠC ul","commun ication","ĠNor a","ĠGen ius","op ter","Ġs acked","Sp ot","Ġfine ly","ĠCH R","28 2","w aves","Pal est","ĠRo hing","N L","è ¿","Ġsh itty","ĠSc alia","4 75","Pro gress","Ġreferen cing","Ġclass rooms","ab ee","Ġs od","hes ion","70 8","ĠZucker berg","ĠFin ish","ĠScot ia","ĠSav ior","ĠInstall ation","an tha","( -","Ġ30 2","ĠP unk","Ġcr ater","yout u","Ġro ast","Ġinflu encing","Ġd up","ĠJ R","ĠG rav","Ġstat ure","Ġbath rooms","A side","W iki","me an","ĠZ ak","ĠOn es","ĠN ath","Ġhyper t","Ġcommence ment","C ivil","Ġmoder ately","Ġdistribut ors","Ġbreast feeding","Ġ9 80","ĠS ik","ĠC ig","ĠAM ER","R IP","ĠCare er","ust ing","Ġmess ed","Ġe h","ĠJ ensen","/ $","Ġblack mail","Ġconvers ions","Ġscientific ally","Ġmant ra","p aying","Ġiv ory","ĠCour ts","OU GH","aunt let","Ser ial","B row","ĠH undreds","3 23","Ġpe e","Ġlin ux","Ġsub mer","ĠPrinc ipal","48 5","ĠD SL","ĠCous ins","Ġdoctr ines","ĠAthlet ics","Ġ3 15","ĠK arma","Ġatt ent","ur ger","Ġpresc ribe","Ġenc aps","ĠC ame","Ġsecret ive","ĠCr imes","d n","C lean","ĠEgypt ians","ĠCar penter","Ġ ll","H um","ĠMil o","Ġcapital ists","Ġbrief ed","T we","ĠBas in","elve t","M os","Ġplun ge","ĠKa iser","ĠFu j","ill in","Ġsafegu ards","Ġo ste","ĠOpportun ity","ĠM afia","ĠCall ing","ap a","ur ban","br ush","ill ard","c é","int elligence","ĠL ob","ĠDru id","Ġsm oother","Ġfoot ing","Ġmotor ists","arc ity","Ġmascul inity","Ġm ism","Ġabdom inal","ĠTa vern","ĠR oh","Ġesc apes","s igned","Anth ony","Ġsacrific ing","Ġintim acy","Ġan terior","ĠK od","Ġmot if","Ġg raz","Ġvisual ization","Ġguitar ist","ĠTro tsky","m agic","D ar","ĠMor i","Ġw ards","Ġtoile ts","l est","Ġtele port","ĠSund ays","ĠPl at","ET S","Ġe Sports","Pat rick","ĠK atherine","en ko","Ġhas sle","ĠM ick","gg les","Ġh ob","aint ain","Ġair borne","Ġsp ans","Ġch ili","Ġa perture","Ġvolunte ered","ĠInc ident","ĠF res","ĠVeter an","augh tered","ing o","Ġun insured","CL OSE","Ġf use","Ġer otic","Ġadvert ise","ra ising","Text ure","Ġatt ends","ĠRE AL","udd led","Ġsm oot","Ġ30 5","ĠWill is","Ġbl ond","An alysis","ĠV T","on ica","Ġstrongh old","R F","N M",". >>","Ġprosper ous","Ġbo asted","29 2","ĠManufact uring","PR ESS","g ren","Ġpharm acy","ĠRoc kefeller","k ai","Ġth umbs","ĠH ut","Ġmother board","Ġguard ians","ĠAl ter","ll ular","Ġsh ack","Ġwise ly","Ġback bone","erv a","Ġsu icides","ĠMcG regor","ij ah","E mer","ĠB rav","Ġdesign ate","P OST","produ ced","Ġcleans ing","irl wind","ex istent","ĠHum ph","ĠPay ne","Ġv ested","Å ¡","Ġstring ent","ion a","Ġuns ub","Ġsum med","ĠHer cules","sub ject","ĠR agnar","ĠN os","Ġcharacter ization","Ġsav vy","ĠDaw son","ĠCas ino","Ġf ri","ĠBar rier","Ġmis information","Ġins ulation","Ġcorrid ors","Ġair planes","ĠNo ct","ah i","Ġ19 16","k b","arm ac","Ġsh un","Ġsche ma","Ġhorr ified","Ġ23 9","aund ers","N B","i ates","er ity","ĠSh ard","Ġr arity","Ġgroup ed","ĠGh ana","again st","ĠBi ological","ĠA ware","ow ell","Ï Ħ","ĠBe au","sh aw","H ack","ĠJul ius","US S","ol son","aun a","c ru","ĠMaur ice","ĠI k","Ġsequ encing","Ġradical s","Ġ( ?,","v irtual","Ġany ways","Ġreper c","Ġhand lers","Ġhes itant","é ĥ","ĠM F","ple mentation","ass ociated","Ġcampaign ed","ĠY ue","ut ations","ĠY oga","Ġsim mer","Ġro ds","Ġmel ody","Ġconv oy","v ideos","Ġscreen ed","N eg","ochem ical","Ġ( ))","Ġultr as","Ġant ip","ĠIsland ers","70 4","Ġfet ish","Ġridic ulously","ĠK art","Ġmitochond rial","Ġinterf ering","Build er","Ġover fl","Ġac ne","ĠM ud","ĠK err","f lex","ĠPost al","ĠBalt ic","47 7","ĠPers ons","our age","H B","ĠM use","ĠImm ortal","ĠDri ving","Ġpet itions","Ġsubsc ript","Ġs orce","ĠProcess or","ut on","S ony","Ġph on","Ġr aced","ĠAnth rop","Ġday time","ĠEx ercise","Add ing","Ġeng ages","ĠQual comm","Ġmir acles","Ġmem es","ĠDr ink","ĠOri oles","Ġhair s","ĠPol ar","ath om","Ġsl ippery","ĠR emy","Ġcar amel","ĠY EAR","Ġal k","I gn","a ution","ĠMer lin","ĠC ran","Ġap ologies","Ġ4 10","Ġout ing","ĠMem ories","app ointed","Ġcount ered","u ld","pos ing","Ġfire wall","ĠW ast","ĠW et","work ed","se ller","Ġrepe aled","ere o","ass uming","BL IC","m ite","ĠCEO s","ĠChap el","ellig ent","________________ ________","D og","Ġw art","Ġsubsc riber","s ports","Ġbe gged","ĠM V","Ġsem if","eth ical","Ġpre ach","Ġrev ital","Ġpun itive","Ġshort cuts","Ġinstit uted","ĠWars aw","Ġabdom en","ĠK ING","Ġsuper intendent","Ġf ry","ĠGe o","T OR","Ġcontrad ictions","apt ic","Ġlandsc apes","b ugs","Ġcl ust","Ġvol ley","c ribed","Ġt andem","Ġrob es","WH AT","Ġpromot er","Ġel oqu","review ed","ĠD K","ĠPl ato","Ġf ps","T ank","ĠDer rick","Ġpriorit ize","as per","ĠHond uras","ĠCom pleted","ne c","Ġm og","n ir","ĠMay o","DE F","st all","in ness","ĠVolks wagen","Ġprec aution","ĠM ell","i ak","ist ries","Ġ24 8","Ġoverl apping","Sen ate","ĠEnh ance","res y","rac ial","OR TS","ĠM ormons","Str ong","ĠCo ch","Mex ico","ĠMad uro","Ġj ars","Ġcan e","W ik","oll a","iff erence","Ġphysic ist","ĠMag gie","Ġ28 5","Ġdep iction","ĠMcL aren","J u","Ġsl ows","Ġcommission ers","ĠWill ow","ĠExpl os","hov ah","Ġtechn ician","Ġhom icides","ĠFl av","ĠTr uman","Ġ100 00","u ctor","Ġsh ader","News letter","45 7","Ġre ver","Ġhard ened","Ġwhere abouts","Ġrede velop","Ġcar bs","Ġtra vers","Ġsqu irrel","Ġfoll ower","Ġs ings","50 8","Ġrabb its","emon ium","Ġdocument ing","Ġmisunder stood",") '","R ick","gg ies","Ġprem ie","Ġsk ating","Ġpass ports","Ġf ists","aged don","H aw","AC P","0 80","ĠThough ts","ĠCarl son","Ġpriest hood","h ua","Ġdun geons","ĠLo ans","Ġant is","Ġfamiliar ity","ĠS abb","op al","ĠIn k","st rike","Ġc ram","Ġlegal ized","Ġcu isine","Ġfib re","Tra vel","ĠMon ument","OD Y","eth y","Ġinter state","ĠP UR","em porary","ĠArab ian","develop ed","Ġsadd le","Ġg ithub","ĠOff er","ĠIS P","ro let","ĠSUP ER","ĠDen is","Ġmultipl ier","Ġstir red","Interest ingly","Ġcustom ary","Ġbill ed","he x","Ġmultipl ied","Ġfl ipping","ĠCros by","Ġfundament als","ia e","ĠPlay ed","ĠAt om","am azon","ĠFl am","ee z","activ ated","Ġtables poon","Ġliberal ism","ĠPal in","ĠP atel","N um","ĠT AM","Ġs urn","ĠRel oaded","Ġco ined","\" ],","ĠCl ash","ĠAg u","Ġprag matic","ĠActiv ate","Ġ8 02","Ġtrail ers","Ġsil hou","Ġprob es","Ġcirc us","ĠB ain","ĠLind say","ĠAb bey","Del ivery","Ġconcess ion","Ġgast ro","ĠSpr ite","Ä Ł","and el","Ġg imm","Ġaut obi","ĠT urtle","Ġwonder fully","ĠHar am","ĠWorld wide","ĠHand le","Ġtheor ists","Ġsle ek","ĠZh u","ograph ically","EG A","ĠOwn ers","ath s","ĠAntar ctic","n atal","=\" \"","fl ags","`` ``","Ġs ul","K h","Ġpot assium","Ġlinem an","Ġcere al","ĠSe asons","Ġ20 22","Ġmat hematic","Ġastron omers","prof essional","Ġf ares","cknow led","Ġch i","Ġyoung sters","Ġmistaken ly","Ġhem isphere","ĠDiv inity","r one","Ġ\" ,","r ings","Ġattract s","v ana","å ¹","C AP","Ġplay list","Ġpor ch","ãģ £","Ġincorpor ates","Ġso ak","Ġassert ing","ĠTerror ism","ĠP ablo","J a","ces ter","Ġfear ing","ĠPr ayer","Ġescal ated","G W","Ġro be","ĠBright on","ac ists","ĠSym phony","ĠDwar f","ĠPar ade","ĠLe go","Ġinex pl","Ġl ords","le af","RA G","l iber","Ġcig ars","ĠJe hovah","60 6","WIND OWS","ĠLiber ia","eb us","He avy","Ġl ubric","ĠR W","angu ages","Ġnarrow ed","com puter","ĠE mber","Ġmurder ing","Ġdown stream","ĠT uls","ĠT ables","Top ic","ĠAcc uracy","= /","l ost","ĠRe i","Ġprogress es","b ear","Ġestablish ments","Just in","ĠPe ach","ĠG omez","å ¿","ĠTri angle","Id ent","ĠH ive","Res ources","Ġmix es","ĠAss uming","M u","Ġhyp oc","Ġs ane","ĠW an","id ious","Su ccess","Ġ io","Ang el","Ġdanger ously","ĠCreat ure","W ORK",": [","ĠKat rina","List ener","M iller","ĠId lib","h ang","Ġcircum vent","h ref","Ġcel estial","ĠWe eks","ĠP ug","ĠDal ton","Ġsubpoen a","uk u","Ġpers isted","pe i","old ing","ĠDoc uments","ĠH ast","ĠC ENT","Ġprim er","Ġsyn onymous","Ġn ib","om bs","Ġnot ation","ĠD ish","ĠAt mosp","Ġforb id","ĠAN G","pat tern","l os","Ġproject iles","b rown",".\" ,","ĠVen om","Ġfierce ly","ub lished","ĠU ran","ĠNic arag","4 10","ĠC AL","OT OS","ĠMir acle","ĠEn chant","Ġguard ing","app end","Att ach","Ġlevel ed","Ġcond oms","ih ilation","64 9","Ġnight mares","ĠTHE Y","ĠST ART","ĠK inn","Ġroomm ate","Ġhy giene","o pping","J ob","Ġl vl","ĠV ER","ĠKe eping","ab etic","Ġformat ting","eral a","Ġrev isions","Ġres urg","T el","ĠGood man","35 3","p od","Ġind isp","ĠTrans lation","Ġg own","ĠM und","Ġc is","Ġby stand","col lect","ĠPun jab","act ively","ĠG amb","te ll","Ġimport ing","g encies","Ġloc om","ĠBr ill","H oly","ĠBer ger","Ġshow down","Ġrespond ers","IL Y","Ġt akedown","le ted","Ġmat tered","Ġpredict ive","Ġover lay","G PU","ĠV ick","Ġconvey ed","T ab","pe er","Sc an","Ġdefensive ly","v ae","Ġappro ving","Ġt iers","ĠV ia","quer ade","ĠSaud is","Ġdemol ished","ĠProp he","Ġmon o","Ġhospital ity","H AM","ĠAri el","M OD","ĠTor ah","Ġbl ah","ĠBel arus","erent ial","ĠT uc","Ġbank er","39 7","Ġmosqu it","ĠScient ist","ĠMus ical","Ġh ust","Sh ift","Ġtor ment","Ġstand off","E duc","ĠF og","Ġampl ifier","Sh ape","Inst ance","ĠCrit ics","Ġda emon","H ouston","Ġmatt ress","ĠID F","Ġobsc ene","ĠA mer","hett i","Ġcomp iling","35 2","vere tt","ĠRed uction","ist ration","ĠBl essed","ĠB achelor","3 16","Ġpr ank","ĠVul can","dd ing","Ġm ourning","ĠQu int","ĠBl aster","test ing","Ġsed iment",">> >","ĠE ternity","ĠWH ERE","ĠM aze","Ġreact ing","ĠAl v","oms day","ĠC RA","Ġtransl ator","Ġbog us","at u","We bsite","oll s","Ġbapt ism","Ġs ibling","ĠAut umn","ve z","ãģ® é","gu ards","Ge org","assad ors","ĠFre ud","Ġcontin ents","ĠReg istry","Bern ie","ĸļ 士","Ġtoler ant","ĠU W","Ġhor ribly","99 5","ĠMID I","Ġimpat ient","oc ado","er i","ĠWor st","ĠNor ris","ĠTalk ing","Ġdef ends","ens able","Ġ20 21","Ġanat omy","L ew","Ġdraw er","ĠCan berra","Ġpatri otic","é¾įå ĸļ士","ĠAv g","AR M","Ġundis closed","Ġfare well","45 9","b able","ĠAll ison","OL OG","Ġcon co","t ight","ĠAC PI","ĠM ines","l ich","ĠâĶ ľ","represent ed","200 000","Ġenthusi ast","OT S","b il","ĠIng redients","Ġinvent or","ĠMy SQL","³³ Âł","ĠAB OUT","with in","Ġm k","B ul","ĠF ake","Ġdracon ian","W a","hel m","ĠTer ran","erv ille","Ġcommon place","SI ZE","Ġ\" <","re place","ograph s","ĠSE LECT","inc ible","ĠMost ly","ĠShe ffield","ĠID E","ugg le","Ġcit ations","h urst","ĠUn ix","Ġunle ash","ĠP iper","ĠN ano","Ġsucc umb","Ġreluct ance","Ġ25 00","ĠMer chant","Ġwire t","Ġcomb os","ĠBirth day","Ġchar coal","ĠU PS","ĠFair fax","Ġdrive way","ĠT ek","ĠP itch","ove re","Ġtechn icians","ĠAct ual","fl ation","ĠF iscal","ĠEm pty","an amo","Ġmag nesium","Ġsl ut","Ġgrow ers","Invest igators","( ):","ĠS atellite","ĠKe ynes","miss ive","l ane","Ġb orough","3 44","ĠTE AM","ĠBet hesda","C V","h ower","ĠR AD","Ġch ant","ĠR iy","Ġcompos itions","Ġmild ly","Ġmedd ling","Ġag ility","ane ers","5 01","Ġsyn th","ling er","29 1","Ġex claimed","Part y","Ġcont amin","ĠMan or","ĠResp ond","Ġpra ising","Ġman ners","fle et","Sum mer","ĠLy nd","ĠDef initely","gr im","Ġbow ling","st ri","ç Ľ","y nt","Ġmand ates","D IV","Ġreconc ile","view s","ĠDam on","vet te","F lo","ĠGreat est","il on","ic ia","Ġportray al","Ġcush ion","50 4","19 79","oss al","App lic","sc ription","Ġmit igation","AT S","p ac","Ġer ased","Ġdefic iencies","ĠHolland e","ĠX u","Ġb red","Ġpregn ancies","f emin","Ġem ph","Ġpl anners","Ġout per","utter ing","Ġperpet rator","Ġm otto","ĠEll ison","ĠNE VER","Ġadmitted ly","AR I","ĠAzerbai jan","Ġmill isec","Ġcombust ion","ĠBott le","ĠL und","ĠP s","ĠD ress","Ġfabric ated","Ġbat tered","Ġs idel","ĠNot ting","Fore ign","ĠJer ome","0 20","ĠAr bit","Ġkn ots","ĠR IGHT","M oving","ãģ Ļ","Ġsur geries","Ġcour thouse","Ġm astered","Ġhover ing","ĠBr an","ĠAl ison","Ġsaf est","m ilitary","Ġbull ied","Ġbar rage","Read er","ES E","ĠGe ographic","T ools","3 14","ĠGe ek","ro th","gl ers","ĠF IN","Ï ģ","ĠA ston","al tern","48 8","Ġveter in","G amer","Ġint el","ren ches","Sh ield","Ġam nesty","ĠB har","Ġp iled","Ġhonor able","ĠInst itutes","Ġso aked","Ġcom a","ĠE FF","34 1","by tes","ĠG mail","le in","ĠCanad iens","m aterial","I l","Ġinstruct ors","ĠK Y","Ġconce ive","ub b","ĠP ossible","Ġeas ing","ĠChrist ina","Ġcar ic","ĠHD R","R OM","Ġsho vel","de lete","Ġp uff","ĠCh anging","Ġseam lessly","Att ribute","Ġacqu isitions","ak ery","ĠE F","Ġaut istic","ĠT akes","ĠPow der","ĠSt ir","5 10","ĠBub ble","sett ings","ĠF owler","Ġmust ard","Ġmore over","Ġcopyright ed","ĠLED s","15 00","æ ī","ĠH IS","en f","Ġcust od","ĠH uck","G i","Ġim g","An swer","C t","j ay","ĠInf rastructure","Ġfeder ally","L oc","Ġmicro bes","Ġover run","dd s","ot ent","adi ator",">>>> >>>>","Ġtorn ado","Ġadj ud","Ġintrig ued","Ġs i","ĠRevel ation","pro gress","Ġburgl ary","ĠSai yan","ĠK athy","Ġser pent","ĠAndre as","Ġcomp el","ess ler","ĠPl astic","ĠAd vent","ĠPos itive","ĠQ t","ĠHind us","reg istered","ular ity","Ġrighteous ness","Ġdemon ic","u itive","ĠB DS","ĠGre gg","c ia","ĠCrus ade","ĠSina i","W ARE","+ (","Ġme ll","Ġder ail","y ards","A st","Ġnotice ably","ĠO ber","R am","Ġun noticed","Ġse q","av age","T s","Ġ6 40","Ġconced e","Ġ] )","F ill","Ġcapt ivity","ĠImprove ment","ĠCrus ader","ara oh","M AP","æ Ĺ","Ġstr ide","al ways","F ly","N it","Ġal gae","ĠCook ing","ĠDo ors","Mal ley","Ġpolic emen","ãģ į","Ġastron aut","access ible","49 5","ĠR AW","cl iffe","udic rous","Ġdep ended","al ach","Ġvent ures","ra ke","Ġt its","ĠH ou","Ġcond om","ormon al","Ġind ent","Ġupload ing","Foot note","Import ant","Ġ27 1","Ġmind ful","Ġcont ends","C ra","Ġcal ibr","ĠO ECD","plug in","F at","ĠIS S","ĠDynam ics","ans en","68 6","' ),","Ġsp rite","Ġhand held","ĠH ipp","=~ =~","Tr ust","Ġsem antics","ĠBund es","ĠRen o","ĠLiter ature","s ense","G ary","ĠA eg","ĠTr in","EE K","Ġcler ic","ĠSS H","Ġch rist","Ġinv ading","ib u","Ġen um","aur a","Ġal lege","ĠInc redible","B BC","Ġth ru","Ġsa iled","Ġem ulate","Ġin security","Ġc rou","Ġaccommod ations","Ġincompet ent","Ġsl ips","ĠEarth qu","s ama","IL LE","Ġi Phones","as aki","Ġby e","Ġar d","Ġext ras","Ġsl aughtered","Ġcrowd funding","res so","Ġfil ib","ĠER ROR","ĠT LS","e gg","ĠIt al","Ġen list","ĠCatal onia","ĠSc ots","Ġser geant","Ġdiss olve","N H","Ġstand ings","ri que","I Q","Ġbenef iciary","Ġaqu arium","You Tube","ĠPower Shell","Ġbright est","ĠWar rant","S old","Writ ing","Ġbegin nings","ĠRes erved","ĠLatin os","head ing","Ġ4 40","Ġrooft op","AT ING","Ġ3 90","VP N","G s","k ernel","turn ed","Ġprefer able","Ġturn overs","ĠH els","S a","ĠShin ji","ve h","ĠMOD ULE","V iol","Ġex iting","Ġj ab","ĠVan illa","Ġac ron","ĠG ap","ber n","A k","ĠMc Gu","Ġend lessly","ĠFar age","ĠNo el","V a","M K","Ġbr ute","ĠK ru","ĠES V","ĠOl ivia","âĢ ł","ĠK af","Ġtrust ing","Ġh ots","3 24","Ġmal aria","Ġj son","Ġp ounding","ort ment","Count ry","Ġpostp oned","Ġunequ iv","? ),","ĠRo oney","udd ing","ĠLe ap","ur rence","sh apeshifter","ĠH AS","os ate","Ġca vern","Ġconserv atism","ĠB AD","Ġmile age","Ġarrest ing","V aults","Ġmix er","Dem ocratic","ĠB enson","Ġauth ored","8 000","Ġpro active","ĠSpirit ual","t re","Ġincarcer ated","ĠS ort","Ġpe aked","Ġwield ing","re ciation","×Ļ ×","P atch","ĠEm my","Ġex qu","tt o","ĠRat io","ĠP icks","ĠG ry","ph ant","Ġf ret","Ġeth n","Ġarch ived","% -","c ases","ĠBl aze","Ġim b","c v","y ss","im ony","Ġcount down","Ġaw akening","ĠTunis ia","ĠRe fer","ĠM J","Ġun natural","ĠCar negie","iz en","ĠN uggets","he ss","Ġev ils","64 7","Ġintrodu ctory","l oving","ĠMcM ahon","Ġambig uity","L abel","ĠAlm ighty","Ġcolor ing","ĠCl aus","set ting","N ULL","ĠF avorite","ĠS IG","> (","ĠSh iva","ĠMay er","Ġstorm ed","ĠCo verage","we apons","igh am","Ġun answered","Ġle ve","Ġc oy","c as","b ags","as ured","Se attle","ĠSant orum","ser ious","Ġcourage ous","ĠS oup","Ġconfisc ated","Ġ// /","Ġuncon ventional","Ġmom s","ĠRohing ya","ĠOrche stra","ĠPot ion","Ġdisc redit","ĠF IL","f ixed","ĠDe er","do i","ĠDim ension","Ġbureaucr ats","et een","Ġaction Group","oh m","Ġb umps","ĠUt ility","Ġsubmar ines","ren heit","re search","ĠShap iro","Ġsket ches","Ġde ceptive","ĠV il","es ame","ĠEss entially","Ġramp age","isk y","Ġmut tered","th ritis","Ġ23 6","f et","b ars","Ġpup il","ĠTh ou","o S","s ong","Ġfract ured","Ġre vert","pict ure","Ġcrit erion","us her","Ġreperc ussions","ĠV intage","ĠSuper intendent","Offic ers","Ġflag ged","Ġbl ames","Ġin verse","ograp hers","Ġmakes hift","Ġdev oid","Ġfoss ils","ĠArist otle","ĠFund s","Ġde pleted","ĠFl u","ĠY uan","Ġw oes","Ġlip id","Ġsit u","requ isites","Ġfurn ish","ĠSam ar","Ġshame ful","Ġadverse ly","Ġad ept","Ġrem orse","Ġmurder ous","uck les","ĠE SL","Ġ3 14","s ent","Ġred ef","ĠC ache","ĠP urs","ig ans","Ġ4 60","Ġpres criptions","Ġf res","F uck","ocr ates","Tw enty","ĠWe ird","ĠT oggle","ĠC alled","itiz ens","Ġp oultry","Ġharvest ing","ãĤ¦ ãĤ¹","Bott om","Ġcaution ed","t n","39 6","ĠNik ki","Ġeval uations","Ġharass ing","Ġbind ings","ĠMon etary","Ġhit ters","Ġadvers ary","un ts","Ġset back","Ġenc rypt","ĠC ait","Ġl ows","eng es","ĠN orn","Ġbul bs","Ġbott led","ĠVoy ager","3 17","Ġsp heres","p olitics","Ġsubt ract","Ġsens ations","Ġapp alling","Ġ3 16","Ġenvironment ally","ĠST EM","Ġpub lishes","5 60","Ġdilig ence","48 4","Ġadv ises","Ġpet rol","Ġimag ining","Ġpatrol s","ĠInt eger","ĠAs hes","act us","ĠRad iant","ĠL T","it ability","ht aking","Set ting","Ġnu anced","ĠRe ef","ĠDevelop ers","N i","pie ces","99 0","Lic ense","Ġlow ers","ĠOtt oman","3 27","oo o","Ġqu itting","mark ets","Beh ind","Ġbas in","Ġdoc s","an ie","fl ash","ct l","Ġcivil ized","ĠFuk ushima","\"] ,\"","ĠK S","ĠHonest ly","ar at","Ġconstruct s","ĠL ans","ĠD ire","ĠLI KE","ĠTrou ble","Ġwith holding","ĠOb livion","Ġsan ity","any a","Con st","Ġgro cer","ĠC elsius","Ġrecount ed","ĠW ife","B order","ate red","h appy","Ġspo iler","Ġlog ically","H all","Ġsucceed ing","Ġpoly morph","Ġax es","ĠShot gun","ĠS lim","ĠPrin ciples","ĠL eth","art a","Ġsc or","Sc reenshot","Ġrelax ation","#$ #$","Ġdeter rent","idd y","Ġpower less","Ġles bians","Ġch ords","ĠEd ited","se lected","Ġseparat ists","000 2","Ġair space","Ġturn around","Ġc unning","P ATH","P oly","Ġbomb ed","Ġt ion","x s","Ġwith hold","Ġw aged","ĠLiber ties","Fl ag","Ġcomfort ing","45 4","ĠI ris","are rs","Ġr ag","Ġrel ocated","ĠGu arant","Ġstrateg ically","Ġgam ma","uber ty","ĠLock heed","g res","Ġgr illed","ĠLow e","st ats","ĠR ocks","Ġsens ing","Ġrent ing","ĠGe ological","ا Ø","ot rop","Ġse w","Ġimproper ly","48 6","Ġâĸ ł","Ġstar ving","ĠB j","Disc ussion","3 28","ĠCom bo","ĠFix es","N AT","Ġstri ving","th ora","Ġharvest ed","ĠP ing","Ġplay ful","Ġaven ues","Ġoccup ational","Ġw akes","ĠCou rier","Ġdrum mer","ĠBrow ser","ĠH outh","it u","Ġapp arel","p aste","Ġhun ted","ĠSecond ly","l ain","X Y","ĠP IN","ic ons","Ġcock tails","Ġs izable","Ġhurd les","est inal","ĠRecre ation","Ġe co","64 8","ĠD ied","m int","Ġfinger prints","Ġdis pose","ĠBos nia","ts y","22 00","Ġins pected","ĠF ou","Ġf uss","Ġamb ush","ĠR ak","Ġmanif ested","Pro secut","Ġsuff ice","ren ces","Ġcompens ated","ĠC yrus","Ġgen us","ĠWolver ine","ĠTrend s","Ġh ikes","ĠSe en","Ġen rol","C old","Ġpol itely","ĠSl av","ĠRu pert","Ġey ewitness","ĠAl to","Ġun comp","Ġposter ior","M ust","ĠHer z","Ġprogress ively","Ġ23 4","Ġind ifference","ĠCunning ham","Ġacadem ia","Ġse wer","Ġast ounding","ĠA ES","r ather","Ġeld est","Ġclim bs","ĠAdd s","Ġout cry","Ġcont ag","ĠH ouses","Ġpe pt","ĠMel ania","interest ed","ĠU CH","ĠR oots","ĠHub bard","ĠT BD","ĠRoman ian","fil ename","St one","ĠIm pl","Ġchromos ome","C le","d x","Ġscram bled","ĠP t","Ġ24 2","OP LE","Ġtremend ously","St reet","Ġcra ving","Ġbund led","ĠR G","p ipe","Ġinj uring","Ġarc ane","Part icip","ĠHero ic","st y","Ġto pping","ĠTemp est","rent ices","b h","Ġpar anoia","ĠUnic ode","Ġegreg ious","Ġ\\ '","ĠOsw ald","Ġgra vel","ĠSim psons","Ġbl and","ĠGuant anamo","Writ er","lin ers","ĠD ice","J C","Ġpar ity","Ġs ided","Ġ23 7","ĠPyr rha","at ters","d k","F ine","comp an","Ġform ulated","ĠId ol","il ers","hem oth","ĠF av","Ġintr usion","Ġcar rots","ĠL ayer","ĠH acker","Ġ ----------------","Ġmoder ation","é ģ","oc oc","Ġcharacter ize","ĠTe resa","Ġsocio economic","Ġper k","ĠParticip ation","tr aining","ĠPaul o","ph ys","Ġtrust worthy","Ġembod ied","ĠMer ch","c urrency","ĠPrior ity","Ġte asing","Ġabsor bing","Ġunf inished","ĠCompar ison","Ġdis ple","writ ers","Ġprofess ions","ĠPengu in","Ġang rily","ĠL INK","68 8","ĠCor respond","Ġprev ailed","Ġcart el","l p","as ms","ĠRed emption","ĠIslam ists","effect s","d ose","ĠL atter","ĠHal ifax","Ġv as","ĠTop ics","ĠN amed","advert ising","zz a","IC ES","Ġret arded","ach able","ĠPupp et","ĠItem Level","Ġret ract","Ġident ifiable","A aron","ĠB uster","s ol","hel le","as semb","H ope","r anged","B a","ĠP urch","é Ģ","ĠSir i","Ġarri vals","Ġ19 12","Ġshort ened","Ġ3 12","Ġdiscrep ancy","ĠTem perature","ĠWal ton","Ġkind erg","p olit","Ġrem ix","Ġconnect ors","ãĥĺ ãĥ©","ĠKazakh stan","dom inated","Ġsu gars","im ble","ĠPan ic","ĠDem and","ĠCol ony","on en","ĠM ER","7 75","ur ia","aza ar","ĠDeg ree","P ri","Ġsun shine","Ġ25 1","Ġpsychedel ic","Ġdigit ally","ĠBra un","Ġsh immer","Ġsh ave","ĠTel esc","ĠAst ral","ĠVenezuel an","ĠO G","Ġc rawling","Int eg","ĠFe ather","Ġunfold ing","Ġappropri ation","Ġè£ı è","ĠMob ility","ĠN ey","- .","b ilt","L IN","ĠT ube","ĠCon versely","Ġkey boards","ĠC ao","Ġover th","Ġla ure",">> \\","ĠV iper","ach a","Off set","ĠR aleigh","ĠJ ae","J ordan","j p","Ġtotal itarian","Connect or","Ġobserv es","ĠSpart an","ĠIm mediately","ĠSc al","C ool","Ġt aps","Ġro ar","P ast","Ġch ars","ĠB ender","ĠShe ldon","Ġpain ter","Ġbe acon","ĠCreat ures","Ġdownt urn","Ġh inder","ĠAnd romeda","à Ľ","cc oli","ĠF itness","et rical","Ġutil izes","Ġsen ate","Ġen semble","Ġche ers","T W","Ġaff luent","k il","ry lic","ord ering","Com puter","Ġgru esome","ost ics","ĠUb isoft","ĠKel ley","Ġw rench","Ġbourgeois ie","IB LE","ĠPrest on","w orn","ar ist","reat ing","Ġst ained","ar ine","Ġsl ime","EN N","Ġche sts","Ġground water","ann ot","ĠTr ay","ĠLoc ke","ĠC TR","Ġd udes","ĠEx ternal","ĠDec oder","Ġpar amed","ĠMed line","80 9","ĠD inner","rup al","g z","ĠG um","ĠDem o","j ee","Ġd h","ber man","arch s","Ġen qu","ĠEp stein","Ġdevast ation","Ġfriends hips","ĠAr d","Ġ23 1","ĠRub in","ĠDist ance","Ġsp urred","Ġd ossier","Ġover looking","\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\","Fore st","ĠCom es","\\ \",","ĠIran ians","Ġf ixtures","L aughs","Ġcur ry","ĠKing ston","Ġsqu ash","Ġcat alogue","Ġabnormal ities","Ġdigest ive",".... .....","Ġsubord inate","og ly","Ġ24 9","M iddle","Ġmass ac","Ġburg ers","Ġdown stairs","Ġ19 31","39 4","ĠV G","Ġl asers","ĠS ikh","ĠAlex a","der ived","Ġcycl ist","ãģ® éŃĶ","onel iness","!!!! !!!!","Ġbuff s","leg ate","Ġrap ing","Ġrecomm ending","ro red","Ġmult icultural","un ique","Ġbusiness men","Ġune asy","ĠM AP","Ġdisp ersed","cipl ine","J ess","ĠK erala","å §","Ġabst raction","Sur v","U h","Ġprin ters","ij a","ow der","Ġanalog ous","ĠA SP","af er","Ġunfold ed","Ġlevel ing","Ġbre ached","ĠH earing","Ġn at","Ġtransl ating","crit ical","Ġant agonist","ĠYes terday","Ġfuzz y","w ash","m ere","Ġbe wild","ĠM ae","V irgin","ph rase","Ġsign aled","ĠH IGH","Ġprot ester","Ġgar ner","unk nown","Ġk ay","Ġabduct ed","Ġst alking","am n","Ġdes erving","ĠR iv","ĠJ orge","Ġscratch ing","ĠS aving","ip ing","Ġte ase","Ġmission ary","ĠMor row","T IME","P resent","Ġchem otherapy","tern ess","ĠH omes","ĠP urdue","Ġst aunch","ĠWhit ney","ĠTH ERE","Î ¼","iat us","ĠErn est","ĠDe ploy","Ġcove ted","F ML","ĠDial ogue","Ġex ited","f ruit","Ġner d","\":\" \",\"","Ġv ivo","ru ly","4 60","ĠAm en","rehens ible","Ġâ ĺ","D IR","Ġad herence","Ġche w","ĠCo ke","ĠSerge i","dig ital","ĠNe ck","g ently","enth al","/ )","Ġwe ary","Ġgu ise","ĠConc ord","ĠOn ion","at cher","Ġb inge","ĠDirect ive","Ġman ned","ans k","Ġill usions","Ġbillion aires","38 3","oly n","odynam ic","ĠWhe at","ĠA lic","Ġcol oured","ĠN AFTA","ab o","Ġmac ros","ind ependent","s weet","Ġsp ac","ĠK abul","Ġ Ä","em e","Ġdict ated","Ġsh outs","= {","Ġr ipping","ĠSh ay","ĠCr icket","direct ed","Ġanalys ed","ĠWAR RANT","ag ons","ĠBlaz ers","Ġche ered","Ġar ithmetic","ĠTan z","37 3","ĠFl ags","Ġ29 5","Ġw itches","ĠIn cluded","ĠG ained","ĠBl ades","G am","ĠSam antha","ĠAtl antis","ĠPr att","Ġspo iled","ĠI B","ĠRam irez","Pro bably","re ro","ĠN g","ĠWar lock","t p","Ġover he","Ġadministr ations","Ġt int","Ġreg iment","Ġpist ols","Ġblank ets","Ġep ist","Ġbowl s","Ġhydra ulic","Ġde an","Ġj ung","Ġasc end","70 5","ĠSant iago","à ®","Ġun avoid","ĠSh aman","re b","Ġstem ming","99 8","ĠM G","st icks","esthes ia","ER O","Ġmor bid","ĠGr ill","ĠP oe","any l","Ġdele ting","ĠSurve illance","Ġdirect ives","Ġiter ations","ĠR ox","ĠMil ky","F ather","Ġpat ented","44 7","Ġprec ursor","Ġm aiden","ĠP hen","ĠVe gan","ĠPat ent","K elly","Redd itor","Ġn ods","Ġvent ilation","ĠSchwar z","Ġw izards","Ġomin ous","ĠHe ads","ĠB G","Ġl umber","ĠSp iel","Ġis Enabled","Ġancest ral","ĠSh ips","Ġwrest ler","ph i","Ġy uan","ĠRebell ion","Ġice berg","Ġmag ically","Ġdivers ion","ar ro","yth m","ĠR iders","ĠRob bie","ĠK ara","ĠMain tenance","ĠHer b","Ġhar ms","p acked","ĠFe instein","Ġmarry ing","Ġbl ending","ĠR ates","Ġ18 80","Ġwr ink","ĠUn ch","ĠTor ch","desc ribed","Ġhuman oid","ilit ating","ĠCon v","ĠFe ld","IGH TS","Ġwhistlebl ower","ort mund","ets y","arre tt","ĠMon o","ĠI ke","ĠC NBC","ĠW AY","ĠMD MA","ĠIndividual s","Ġsupplement al","Ġpower house","ĠSt ru","F ocus","aph ael","ĠCol leg","att i","Z A","Ġp erenn","ĠSign ature","ĠRod ney","Ġcub es","idd led","ĠD ante","ĠIN V","iling ual","ĠC th","Ġso fa","Ġintimid ate","ĠR oe","ĠDi plom","ĠCount ries","ays on","Ġextrad ition","Ġdis abling","ĠCard iff","Ġmemor andum","ĠTr ace","Ġ?? ?","se ctor","ĠRou hani","ĠY ates","ĠFree ze","Ġbl adder","M otor","ĠProm ise","ant asy","Ġforesee able","ĠC ologne","cont ainer","ĠTre es","ĠG ors","ĠSin clair","Ġbar ring","key e","Ġsl ashed","ĠStat istical","é ĩ","Ġâĸ º","All ows","Ġhum ility","Ġdr illed","ĠF urn","44 3","Ġse wage","Ġhome page","Ġcour tyard","Ġv ile","Ġsubsid iaries","aj o","direct ory","Ġam mon","V ers","charg es","Ġ} }","ĠCh ains","Ġ24 6","n ob","Ġper cept","Ġg rit","Ġfisher men","ĠIraq is","ĠDIS TR","ĠF ULL","ĠEval uation","g raph","at ial","Ġcooper ating","Ġmel an","Ġenlight ened","Ġal i","t ailed","Ġsal ute","Ġweak est","ĠBull dogs","U A","ĠAll oy","Ġsem en","oc ene","ĠWilliam son","s pr",", âĢĶ","ĠG F","itt ens","Be at","ĠJ unk","iph ate","ĠFarm ers","ĠBit coins","ig ers","d h","ĠL oyal","p ayer","Ġentert ained","Ġpenn ed","Ġcoup on","Que ue","Ġweaken ing","c arry","Ġunderest imate","Ġshoot out","Ġcharism atic","ĠProced ure","Ġprud ent","in ances","Ġric hes","Ġcort ical","Ġstr ides","Ġd rib","ĠOil ers","5 40","ĠPer form","ĠBang kok","Ġe uth","S ER","Ġsimpl istic","t ops","camp aign","Q uality","Ġimpover ished","ĠEisen hower","Ġaug ment","ĠH arden","Ġinterven ed","Ġlist ens","ĠK ok","Ġs age","Ġrub bish","ĠD ed","Ġm ull","pe lling","Ġvide ot","Produ ction","D J","m iah","Ġadapt ations","Ġmed ically","Ġboard ed","Ġarrog ance","Ġscra pped","Ġopp ress","FORM ATION","Ġj unction","4 15","EE EE","S kill","Ġsub du","ĠSug gest","ĠP ett","Ġle tt","ĠMan ip","ĠC af","ĠCooper ation","T her","Ġreg ained","¶ æ","ref lect","Ġth ugs","ĠShel by","Ġdict ates","ĠWe iner","ĠH ale","Ġbatt leground","s child","Ġcond ol","h unt","osit ories","Ġacc uses","Fil ename","Ġsh ri","Ġmotiv ate","Ġreflect ions","N ull","ĠL obby","¥ µ","ĠS ATA","ĠBack up","Ñ ĥ","n in","ĠCor rection","Ġju icy","ut ra","ĠP ric","Ġrest raining","ĠAir bnb","ĠAr rest","Ġappropri ations","Ġsl opes","Ġmans laughter","Ġwork ings","ĠH uss","ĠF rey","Le ave","ĠHarm ony","ĠF eder","Ġ4 30","Ġt rench","Ġglad ly","Ġbull pen","ĠG au","b ones","Ġgro ove","Ġpre text","ã ħĭ","Ġtransm itter","ĠComp onent","Ġunder age","ĠEm pires","T ile","Ġo y","ĠMar vin","ĠC AS","Ġbl oss","Ġrepl icated","ĠMar iners","Marc us","ĠBl ocks","Ġliber ated","Ġbutter fly","Fe el","Ġfer mentation","Ġyou tube","Ġoff end","ĠTer m","res ist","Ġcess ation","Ġinsurg ency","Ġb ir","ĠRa ise","59 5","Ġhypothes es","50 2","Ġpl aque","ocr at","Ġjack ets","ĠHuff Post","am ong","Ġconf er","48 7","ĠL illy","Ġadapt ing","ĠF ay","Ġsh oved","ve c","Ġref ine","Ġg on","Ġgun men","z ai","ĠShut tle","ĠI zan","Ġ19 13","Ġple thora","· ·","Ġ5 10","Ġp uberty","Ġ24 1","ĠWe alth","ĠAl ma","ĠM EM","ĠAd ults","C as","pr ison","R ace","Ġwater proof","Ġathlet icism","Ġcapital ize","ĠJu ice","Ġillum inated","ĠP ascal","Ġirrit ation","ĠWitness es","ad le","ĠAst ro","Ġf ax","ĠEl vis","Prim ary","ĠL ich","ĠEl ves","Ġres iding","Ġst umble","3 19","ĠP KK","Ġadvers aries","D OS","ĠR itual","Ġsm ear","Ġar son","ident al","Ġsc ant","Ġmon archy","Ġhal ftime","Ġresid ue","Ġind ign","ĠSh aun","ĠEl m","aur i","A ff","W ATCH","ĠLy on","hel ps","36 1","Ġlobby ist","Ġdimin ishing","Ġout breaks","Ġgo ats","f avorite","ĠN ah","son ian","ĠBo oster","Ġsand box","ĠF are","ĠMalt a","Ġatt Rot","ĠM OR","ld e","Ġnavig ating","T ouch","Ġunt rue","ĠDis aster","Ġl udicrous","Pass word","ĠJ FK","blog spot","4 16","ĠUN DER","ern al","Ġdelay ing","T OP","Ġimpl ants","ĠAV G","ĠH uge","att r","Ġjournal istic","ĠPe yton","ĠI A","R ap","go al","ĠProgram me","Ġsm ashing","w ives","print ln","ĠPl ague","in us","EE P","Ġcru iser","ĠPar ish","umin ium","Ġoccup ants","ĠJ ihad","m op","Ġp int","Ġhe ct","ĠMe cca","direct or","ĠFund ing","ĠM ixed","Ġst ag","T ier","Ġg ust","Ġbright ly","ors i","Ġup hill","R D","Ġles ions","ĠBund y","liv ious","Ġbi ologist","ĠFac ulty","ĠAuthor ization","Ġ24 4","All ow","ï ¸","ĠGi ul","Ġpert inent","ot aur","es se","ĠRo of","Ġunman ned","35 1","ĠSh ak","ĠO rient","Ġend anger","D ir","Ġrepl en","ed ient","Ġtail or","Ġgad gets","Ġaud ible","âĺ Ĩ","N ice","Ġbomb ard","ĠR ape","Ġdef iance","ĠTW O","ĠFilip ino","Ġunaff ected","erv atives","Ġso ared","ĠBol ton","Ġcomprom ising","ĠBrew ers","R AL","ĠA HL","icy cle","Ġv ampires","Ġdi pped","oy er","ĠX III","Ġsidew ays","ĠW aste","ĠD iss","ĠâĶľ âĶĢâĶĢ","$ .","Ġhabit ats","ĠBe ef","tr uth","tr ained","spl it","R us","And y","ĠB ram","RE P","p id","è£ ħ","ĠMut ant","An im","ĠMar ina","Ġfut ile","hig hest","f requency","Ġepile psy","Ġcop ing","Ġconc ise","Ġtr acing","ĠS UN","pan el","ĠSoph ie","ĠCrow ley","ĠAd olf","ĠShoot er","Ġsh aky","ĠI G","ĠL ies","ĠBar ber","p kg","Ġupt ake","Ġpred atory","UL TS","/ **","Ġintox icated","ĠWest brook","od der","he ment","Ġbas eman","AP D","st orage","ĠFif ty","ed itor","G EN","UT ION","ir ting","Ġse wing","r ift","Ġag ony","ĠS ands","Ġ25 4","C ash","Ġl odge","Ġp unt","N atural","ĠIde as","Ġerrone ous","ĠSens or","ĠHann ity","Ġ19 21","Ġm ould","ĠG on","kay a","Ġanonym ously","ĠK EY","Ġsim ulator","W inter","Ġstream ed","50 7","? \",","Ġte ased","Ġco efficient","Ġwart ime","ĠTH R","' '.","ĠBank ing","mp ire","Ġf andom","Ġl ia","G a","Ġdown hill","Ġinterpre ting","Ind ividual","N orm","Ġjealous y","bit coin","Ġple asures","ĠToy s","ĠChev rolet","ĠAd visor","IZ E","Ġrecept ions","70 6","C ro","Ġ26 2","Ġcit rus","ir u","Review er","ject ed","U ES","an z","19 81","ĠWork er","Ġcompl ied","ores cent","contin ental","T on","ĠPr ism","ĠShe ep","Ġ28 8","n ox","ĠV og","O rd","Ġreal ms","te k","Ġirrig ation","Ġbicy cles","Ġelectron ically","p oly","t all","() );","Ġaest hetics","ĠInteg rated","Expl ore","Ġd unk","47 6","p ain","ĠJac ques","ĠD mit","Fram es","Ġreun ited","Ġhum id","D ro","P olitical","Ġyouth ful","Ġent ails","Ġmosqu ito","36 3","spe cies","Ġcoord inating","ĠMay hem","ĠMagn us","M ount","Impro ved","ĠST ATE","ATT LE","Ġflow ed","Ġtack led","Ġfashion ed","Ġre organ","iv ari","f inger","Ġreluct antly","et ting","ĠV and","you ng","ĠGar land","Ġpresum ption","Ġamen ities","ĠPle asant","on ential","ĠO xy","Ġmor als","ĠY ah","Read y","Sim on","En h","D emon","Ġcl ich","Mon itor","ĠD U","Ġwel comes","Ġstand out","Ġdread ful","Ġban anas","Ġball oons","h ooting","bas ic","Ġsuff ix","Ġd uly","can o","Ch ain","at os","Ġgeop olitical","Ġ( &","ĠGem ini","ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ","Ġacqu itted","L uck","prot ect","10 24","Ġsc arcity","Ġmind fulness","ec ided","D N","pr ime","ĠPres idents","ĠVID EO","Ġ( âĪĴ","add ock","N OR","ĠP ru","p un","ĠL OL",")) ))","ĠL iqu","ĠS AS","Ġsty ling","Ġpunish ments","Ġnum b","Ġasc ertain","ĠRock ies","f lu","Th umbnail","Ġperpet rated","ĠSem i","Ġdis arm","ĠOld er","ĠEx ception","Ġexponent ially","ĠCommun ities","Ġabol ish","ĠPart ner","pt oms","Ġ7 77","ĠFo ley","ĠC ases","Ġgre ase","ĠReb irth","G round","Ġ; )","ĠDoct rine","ik ini","Y e","ĠBl ossom","Ġpers ists","b ill","Ġinf usion","Ġbud dies","9 11","ĠPat ient","Ġdem os","Ġacquaint ance","ĠP aw","at ari","Ġx ml","Ġfasc ination","ĠSer ve","Ï Ĥ","br anded","Ġa z","Return s","Ġover shadow","Ġro am","Ġspeed y","n umbered","hel ial","Ġdisc iple","Ġass urances","g iven","pect ing","ĠN atalie","çĶ °","Ġmosquit oes","rote in","Ġnumer ic","Ġindepend ents","Ġtrans itional","Ġreaction ary","ĠMech dragon","do ctor","Ġshort est","Ġsequ ential","ĠB ac","ĠAccount s","ãģ Į","ach y","ract ive","ĠReg iment","Ġbreat htaking","ffic iency","ĠB ates","Ġ3 11","Ġward robe","ft s","ĠBer k","Sim ply","ĠRivers ide","iver ing","ident ial","lu cent","Ġen riched","ĠCon ver","ĠG iving","ãĥ Ļ","Ġlegal ize","ĠF TC","Ġfre aking","M ix","Ġter restrial","es ian","ci ents","W ing","LO AD","Ġled ge","ĠViol ent","ĠMet all","Ġ30 8","Ġs outheastern","hett o","M eat","Ġslow down","Ġret reated","Jere my","end as","**** *","er ic","Ġre ins","opp able","ĠHuman ity","ear ances","rig an","C amera","Ġwa ivers","s oc","Ġalter ation","trans form","ĠC emetery","50 6","Ġindef inite","Ġstim ulating","y g","60 3","ĠS op","Ġdescript ive","Ph ase","ĠEd mund","Ġpneum onia","vent us","A mb","Ġlabor atories","ĠEx clusive","ug ar","W ere","Ġmalf unction","Ġhomosexual s","Ġ---- ---","un i","Ġturb ines","ĠEqu ity","D u","Ġmind ed","ĠR H","ĠBlack hawks","Ġfe ats","Ġ17 00","re pl","36 2","lad en","Ġindisp ensable","ly ss","tt i","Ġre el","Ġdiver ted","Ġlik eness","Ġsubscript ions","Ġfing ert","Ġfil thy","dest ruct","d raft","ĠBernard ino","l aunch","Ġper plex","ĠS UM","car b","Ġswe ater","ĠVent ure","ĠJ ag","ĠCele b","ĠV oters","Ġstead fast","Ġathlet ics","ĠHans on","ĠDr ac","Tr acker","Ġcomm end","ĠPres idency","ĠD ID","in formed","Ġweb page","P retty","Ġforce fully","ãĥĥ ãĤ¯","Ġrel ocation","Ġsat ire","â ī","ĠSunder land","æ Ħ","V oice","???? ????","Ġinform ant","Ġbow el","ĠUn iform","Ġ ...\"","Ġpur ge","Ġpic nic","ĠU mb","ĠU PDATE","ĠSapp hire","ĠSt all","le arn","Ġobject ively","Ġob liter","Ġlooph ole","Ġjour neys","Ġo mission","Pro s","ĠSid ney","pl oma","Ġspray ed","Ġg uru","Ġtra itor","Ġtim et","Ġsn apping","ĠSe vent","urn al","ĠUk ip","Ġb owed","por al","l iberal","R os","Quest ions","i OS","Ġsummar ize","ST AT","Ġ18 50","ap est","Ġl ender","ĠVari able","br inging","ĠL ORD",", )","Ġcollaps es","x iety","ĠN ed","Y D","ĠSch a","Ġantib ody","Ġdis band","y re","ill usion","Ġro ver","s hed","ĠHiro sh","cc i","Ġcal am","ĠMort on","P interest","Ġ19 28","ĠE uras","ord es","Ġf ences","ĠIn ventory","ĠVal encia","ĠU d","ĠT iff","Ġsqu e","Ġqu otation","Ġtroubles ome","er ker","QU EST","ĠKing doms","s outh","Ġle vy","Pr ince","ĠSt ing","Ġnick named","Ġapp e","Ġphot ographic","Ġcorp us","re ference","ĠT rog","U nt",") =(","ĠLat via","Ġactiv ating","Ġlicense e","Ġdispar ities","ĠNews letter","ãĥĥ ãĥĪ","Ġfree ing","ĠJe ep","ĠPer ception","ins k","Ġsil icone","ĠHay den","Le an","ĠSuz uki","ibr arian","66 8","Ġsp or","Ġcorrel ations","ag hetti","Ġtu ber","ĠIP CC","il us","ĠV u","Ġwealth iest","ĠCarb uncle","an za","Ġfool ed","ĠZ ur","Ġd addy","ran o","il ian","Ġknock out","f man","requ ired","ĠWik ileaks","ĠD uffy","ON T","Ġins ol","ĠObject s","Ġb ou","ĠNord ic","ĠIns ert","sc an","Ġd ancers","Ġid iots","major ity","ĠNev ille","ĠFree BSD","Ġt art","pan ic","69 0","Ġcoc oa","Ġsam pled","Ġlook up","Ind ust","Ġinject ions","gen re","Ġa u","Ġroad way","Ġgen itals","K ind","ĠEx aminer","ĠY az","F resh","Ġpar alysis","ĠAl uminum","Ġre ap","ok é","Ġsl oppy","ĠTun nel","pos ium","ner y","en ic","Ġher bal","ĠOut er","ĠBuild er","Ġinc ur","Ġide ologies","Ġback ups","cons uming","ĠDet ect","de ck","ĠKN OW","ĠG ret","ĠM IC","Ġtough ness","ĠEx hibit","Ġh ive","L es","ĠSCH OOL","ĠAt ari","ald e","ĠN ull","and estine","m ouse","Ġbrig ade","48 9","Ġrev ol","ĠLaw son","ĠW ah","op oly","eb ted","ĠS aunders","Ġ3 13","ĠW inc","Ġtab oo","ĠHel met","Ġw edge","ch ip","ĠT ina","b g","Ġinf uri","r n","Ġanomal ies","ĠSy nc","ĠEx am","ĠComm it","ĠDi ary","ĠALS O","ĠDe bor","omed ical","Ġcomprehens ion","6 55","Ġempower ing","Ġ ire","Ġju ices","ĠE TH","ĠBox ing","=\" /","Ġfacilit ated","p oke","ĠPars ons","ĠMod er","tra vel","Ġcivil izations","Ġliber tarians","Ġrun e","ĠCl arks","at hed","Ġcampaign ers","ĠDis patch","ĠFah renheit","ĠCap com","-------- --","Ġl ace","Ġdr aining","Ġl iner","ĠArt ificial","é n","t ask","] ).","ĠGM O","ĠOper ator","ord inary","ĠInf luence","ĠU ps","Ġpot ency","uss en","osp ons","ĠSw im","ĠDead line","Un ity","Ġcul inary","Ġenlight enment","Ġwe arer","Ġmin ed","Ġp ly","Ġinc est","ĠDVD s","W alk","B TC","Tr ade","Ġdev al","ib and","ĠOvers ight","Palest inian","Ġd art","Ġm ul","L R","Ġrem ovable","ĠReal ms","ì Ŀ","Ġmisc ar","ĠV ulkan","68 5","è re","ĠS ap","Ġmer ging","ĠCar ly","che ster","Ġbr isk","Ġlux urious","ĠGener ator","Ġbit terness","Ġed ible","Ġ24 3","T G","Ġrect angle","With No","bel ow","J enn","Ġdark est","Ġh itch","Ġdos age","Ġsc aven","ĠK eller","ĠIllust rated","Certain ly","ĠMaver icks","Marg inal","Ġdiarr hea","Ġenorm ously","Ġ9 99","sh r","qu art","Ġadam ant","ĠM ew","Ġren ovation","Ġcerv ical","ĠPercent age","en ers","ĠKim ber","Ġflo ats","Ġde x","ĠW itcher","ĠSwan sea","d m","Ġsal ty","y ellow","Ġca pe","ĠDr ain","ĠPaul a","ĠTol edo","les i","Mag azine","ĠW ick","ĠM n","ĠA ck","ĠR iding","AS ON","Ġhom ophobic","AR P","Ġwand ered","C PU","ood oo","ĠP ipe","Ġtight ening","ĠBut t","3 18","Ġdesert ed","S ession","Ġfacilit ating","J ump","Ġemer gencies","OW ER","Ġexhaust ive","ĠAF TER","Ġheart beat","ĠLab el","ack y","ĠCert ified","ilt ration","Z e","ĠU tt","Ġ13 00","Ġpres ume","ĠDis p","Ġsur ged","Ġdoll s","Col umb","Ġchim pan","ĠR azor","Ġt icks","Ġcouncill or","Ġpilgr image","ĠReb els","ĠQ C","ĠA uction","x ia","ik k","b red","Ġinsert ion","Ġco arse","d B","SE E","ĠZ ap","ĠF oo","Ġcontem por","ĠQuarter ly","ot ions","ĠAl chemist","ĠT rey","ĠDu o","S weet","80 4","ĠGi ov","Ġfun n","N in","h off","Ġram ifications","Ġ19 22","ĠExper ts","az es","Ġgar ments","ar ial","ĠN ab","Ġ25 7","ĠV ed","Ġhum orous","ĠPom pe","Ġn ylon","Ġlur king","ĠSerge y","ĠMatt is","Ġmisogyn y","ĠComp onents","ĠWatch ing","ĠF olk","ract ical","B ush","Ġt aped","Ġgroup ing","Ġbe ads","Ġ20 48","Ġcon du","quer que","Read ing","Ġgriev ances","Ult ra","Ġend point","H ig","ĠSt atic","ĠScar borough","L ua","ĠMess i","a qu","ĠPsy Net","ĠR udd","Ġa venue","v p","J er","Ġsh ady","ĠRes ist","ĠArt emis","Ġcare less","Ġbro kers","Ġtemper ament","Ġ5 20","T ags","ĠTurn ing","Ġut tered","Ġp edd","Ġimpro vised","Ġ: (","Ġtab l","Ġpl ains","16 00","press ure","ĠEss ence","marg in","friend s","ĠRest oration","Ġpoll ut","ĠPok er","ĠAugust ine","ĠC IS","ĠSE AL","or ama","Ġth wart","se ek","Ġp agan"," º","cp u","Ġg arn","Ġass ortment","ĠI LCS","t ower","Recomm ended","Ġun born","ĠRandom Redditor","ĠRandomRedditor WithNo","Ġparaly zed","Ġeru ption","Ġinter sect","ĠSt oke","ĠS co","B ind","å ¾","ĠP NG","ĠNeg ative","ĠNO AA","Le on","Ġall oy","ĠL ama","ĠD iversity","5 75","Ġunderest imated","ĠSc or","Ġm ural","Ġb usted","so on","l if","Ġnone x","Ġall ergy","ĠUnder world","ĠR ays","ĠBl asio","Ġh rs","ĠD ir","Ġ3 27","by ter","Ġrepl acements","Ġactiv ates","ri ved","M H","Ġp ans","ĠH I","Ġlong itudinal","Ġnu isance","al er","Ġsw ell","ĠS igned","s ci","ĠIs les","ĠA GA","Ġdef iant","Ġson ic","oc on","K C","ĠA im","t ie","ah ah","Ġm L","D X","Ġb isc","ĠBill board","ĠSY STEM","NE Y","ga ard","Ġdist ressed","former ly","Al an","Ġche fs","Ġopt ics","ĠC omet","ĠAM C","Ġredes igned","irm ation","Ġsight ings","38 2","3 11","ĠW B","Ġcont raction","ĠT OTAL","D ual","Ġstart led","Ġunderstand ably","Ġsung lasses","ETH OD","Ġd ocker","Ġsurf ing","ĠH EL","ĠSl ack","ton es","Ġsh alt","Vis ual","49 8","Dep artment","c ussion","Ġunrest ricted","Ġt ad","Ġre name","employ ed","Ġeduc ating","Ġgrin ned","bed room","ĠActiv ities","ĠV elvet","ĠSW AT","Ġsh uffle","ig or","Ġsatur ation","F inding","c ream","ic ter","Ġv odka","tr acking","te c","Ġfore ground","iest a","Ġve hement","ĠEC B","ĠT ie","E y","Ġt urtles","ĠRail road","ĠKat z","ĠFram es","Ġmen ace","ĠFell owship","ĠEss ential","ugg ish","Ġdri p","ch witz","ĠKy oto","s b","ĠN ina","Param eter","Ġal arms","ĠCl aud","Ġpione ering","Ġchief ly","ĠSc ream","Col lection","Ġthank fully","ĠRonald o","åŃ IJ","st rip","ĠDisney land","com mercial","See ing","S oul","Ġevac uate","Ġc iv","ĠAs he","Ġdiv ides","ĠD agger","rehens ive","Ġber ries","ĠD F","Ġs ushi","Ġplur ality","W I","Ġdisadvant aged","Ġbatt alion","ob iles","45 1","Ġcl ing","Ġunden iable","ĠL ounge","Ġha unt","p he","Ġquant ify","Ġdiff ered","Ġ[* ]","ĠV iz","c um","sl ave","Ġvide og","Ġqu ar","Ġbund les","ĠAl onso","t ackle","Ġneur onal","Ġlandsl ide","conf irmed","ĠDep th","Ġrenew ables","B ear","ĠMaced onia","Ġjer seys","Ġb unk","ĠSp awn","ĠControl s","ĠBuch anan","Ġrobot ics","Ġemphas izing","ĠTut orial","h yp","ist on","Ġmonument al","æ °","ĠCar ry","Ġt bsp","en ance","H ill","art hed","Ġro tten","De an","Ġtw isting","Ġgood will","Ġimm ersion","L iving","Ġbr ushes","ĠC GI","ĠAt k","tr aditional","Ġph antom","ĠSt amina","Ġexpans ions","ĠMar in","Ġembark ed","ĠE g","int estinal","ĠPE OPLE","ĠBo oth","ĠApp alach","Ġreleg ated","V T","M IT","Ġmust er","Ġwithdraw ing","Ġmicrosc ope","ĠG athering","ĠC rescent","ĠArgent ine","ĠDec re","ĠDomin ic","Ġbud s","ant age","ĠI on","Ġwid ened","ONS ORED","ĠGl oves","iann opoulos","raz en","fe el","Ġrepay ment","Ġhind sight","ĠRE ALLY","ĠPist ol","ĠBra h","Ġwat ts","Ġsurv ives","Ġfl urry","iss y","Al ert","ĠUrug uay","Ph oenix","S low","ĠG rave","ĠF ir","Ġmanage able","Ġtar iff","ĠU DP","ĠPist ons","ĠNiger ian","Ġstrike outs","Ġcos metics","whel ming","f ab","c ape","pro xy","Ġre think","Ġover coming","sim ple","Ġw oo","Ġdistract ing","ĠSt anton","ĠTuls a","ĠD ock","65 9","Ġdisc ord","ĠEm acs","ĠV es","ĠR OB","Ġreass uring","Ġcons ortium","Muslim s","3 21","Ġprompt s","se i","ĠH itch","imp osed","ĠF ool","Ġindisc rim","wr ong","bu querque","D avis","! ]","Ġtim eless","ĠNE ED","Ġpestic ide","Ġrally ing","ĠCal der","Ġå ¤","Ġx p","ĠUn le","ĠEx port","lu aj","B uff",") [","Ġsq or","S audi","Ġis tg","Ġindul ge","pro c","Ġdisg usted","Ġcomp ounded","Ġn em","Ġschool ing","ĠC ure","process ing","S ol","Ġpro verb","it ized","ĠAlv arez","Ġscar f","Ġrect angular","re ve","Ġh ormonal","ĠSt ress","itiz en","Ġ4 25","girl s","ĠNo ir","ĠR app","Ġmar ches","ch urch","ĠUs es","Ġ40 5","ĠBer m","Ġord inances","ĠJud gment","Charg es","ĠZ in","Ġdust y","Ġstraw berries","Ġper ce","ĠTh ur","ĠDebor ah","net flix","ĠLam bert","Ġam used","ĠGu ang","Y OU","R GB","ĠC CTV","Ġf iat","r ang","Ġf ederation","ĠM ant","ĠB ust","ĠM are","respect ive","ĠM igration","ĠB IT","59 0","Ġpatriot ism","Ġout lining","reg ion","ĠJos é","Ġbl asting","ĠEz ra","B s","Ġundermin es","ĠSm ooth","Ġcl ashed","rad io","Ġtransition ing","ĠBucc aneers","ĠOw l","Ġplug s","Ġh iatus","ĠPin ball","Ġm ig","ĠNut r","ĠWolf e","Ġinteg ers","Ġor bits","ĠEd win","ĠDirect X","b ite","Ġbl azing","v r","Ed ge","ĠP ID","ex it","ĠCom ed","ĠPath finder","ĠGu id","ĠSign s","ĠZ er","ĠAg enda","Ġreimburse ment","M esh","i Phone","ĠMar cos","ĠS ites","h ate","en burg","Ġs ockets","p end","Bat man","v ir","ĠSH OW","Ġprovision al","con n","ĠDeath s","AT IVE","Pro file","sy m","J A","Ġnin ja","inst alled","id ates","eb ra","ĠOm aha","Ġse izing","ĠBe asts","Ġsal ts","M ission","Gener ally","ĠTr ilogy","he on","leg ates","Ġd ime","Ġf aire","par able","G raph","Ġtotal ing","Ġdiagram s","ĠYan uk","ple t","ĠMe h","Ġmyth ical","ĠStep hens","aut ical","ochem istry","Ġkil ograms","Ġel bows","anc ock","ĠB CE","ĠPr ague","Ġimpro v","ĠDev in","Ġ\" \\","par alle","Ġsuprem acists","ĠB illion","Ġreg imen","inn acle","Ġrequ isite","ang an","ĠBur lington","ain ment","ĠObject ive","oms ky","G V","Ġun ilateral","Ġt c","Ġh ires","ment al","Ġinvol untary","Ġtrans pl","ĠASC II"," ¨","Ev ents","Ġdoub ted","ĠKa plan","ĠCour age","ig on","ĠMan aging","ĠT art","Ġfalse hood","ĠV iolet","Ġair s","Ġfertil izer","Brit ain","Ġaqu atic","ou f","W ords","ĠHart ford","Ġeven ings","ĠV engeance","qu ite","G all","ĠP ret","Ġp df","ĠL M","ĠSo chi","ĠInter cept","9 20","Ġprofit ability","ĠId le","ĠMac Donald","ĠEst ablishment","um sy","Ġgather ings","ĠN aj","Charl ie","Ġas cent","ĠProt ector","Ġal gebra","Ġbi os","for ums","EL S","Introdu ced","Ġ3 35","Ġastron omy","Cont ribut","ĠPol ic","Pl atform","Ġcontain ment","w rap","Ġcoron ary","ĠJ elly","man ager","Ġheart breaking","c air","ĠChe ro","c gi","Med ical","ĠAccount ability","! !\"","oph ile","Ġpsych otic","ĠRest rict","Ġequ itable","iss ues","Ġ19 05","ĠN ek","c ised","ĠTr acking","Ġo zone","Ġcook er","ros is","Ġre open","Ġinf inity","ĠPharm aceutical","ens ional","Att empt","ĠR ory","Mar co","Ġawa its","H OW","t reated","Ġbol st","Ġreve red","Ġp ods","opp ers","00 10","Ġampl itude","ric an","SP ONSORED","Ġtrou sers","Ġhal ves","ĠK aine","ĠCut ler","ĠA UTH","Ġsplend id","Ġprevent ive","ĠDud ley","if acts","umin ati","ĠY in","Ġad mon","ĠV ag","Ġin verted","Ġhast ily","ĠH ague","L yn","Ġled ger","Ġastron omical","get ting","Ġcirc a","ĠC ic","ĠTenn is","Lim ited","Ġd ru","ĠBY U","Ġtrave llers","Ġp ane","ĠInt ro","Ġpatient ly","Ġa iding","Ġlo os","ĠT ough","Ġ29 3","Ġconsum es","Source File","Ġ\"\" \"","Ġbond ing","Ġtil ted","Ġmenstru al","ĠCel estial","UL AR","Plug in","Ġrisk ing","N az","ĠRiy adh","Ġacc redited","Ġsk irm","é Ľ","Ġexam iner","Ġmess ing","Ġnear ing","ĠC hern","ĠBeck ham","Ġsw apped","Ġgo ose","K ay","Ġlo fty","ĠWal let","Ġ[ '","Ġap ocalypse","Ġb amboo","ĠSP ACE","ĠEl ena","Ġ30 6","ac ons","Ġtight ened","Ġadolesc ence","Ġrain y","Ġvandal ism","ĠNew town","Ġcon ject","c akes","Ġche ated","Ġmoder ators","par ams","E FF","Ġdece it","ĠST L","ĠTanz ania","ĠR I","Ġ19 23","ĠEx ile","the l","Ġthe olog","Ġquir ky","ĠIr vine","Ġneed y","or is","U m","K a","Ġmail box","3 22","Ġb os","ĠPet ra","K ING","Ġenlarg ed","O ften","Ġbad ass","Ġ3 43","ĠPl aces","ĠC AD","Ġpr istine","Ġinterven ing","d irection","Ġl az","ĠD SM","Ġproject ing","ĠF unk","ag og","pay ment","n ov","Ġch atter","AR B","Ġexam inations","ĠHouse hold","ĠG us","F ord","4 14","B oss","Ġmy stic","Ġle aps","ĠB av","ul z","b udget","Foot ball","Ġsubsid ized","Ġfirst hand","Ġcoinc ide","oc ular","Con n","ĠColl abor","Ġfool s","am ura","ah ar","r ists","Ġsw ollen","Ġexp ended","ĠP au","s up","Ġsp ar","Ġkey note","s uff","Ġunequ al","Ġprogress ing","str ings","ĠGamer gate","Dis ney","ĠEle ven","om nia","Ġscript ed","Ġear ners","bro ther","ĠEn abled","æ ³","Ġlar vae","ĠL OC","m ess","Wil son","ĠTem plate","success fully","Ġparam ount","Ġcamoufl age","Ġbind s","ĠQu iet","ĠSh utterstock","r ush","Ġmasc ot","fort une","ĠCol t","ĠBe yon","hab i","Ġha irc","Ġ26 7","ĠDe us","Ġtw itch","Ġconcent rating","Ġn ipples","c ible","Ġg ir","N Z","M ath","n ih","Requ ired","Ġp onder","ĠS AN","Ġwedd ings","Ġl oneliness","N ES","ĠMah jong","69 5","add le","ĠGar ner","ĠC OUR","Br idge","Ġsp ree","ĠCald well","Ġbri bery","Ġ���� ����","plug ins","Ġr acket","Ġchamp agne","vers ible","V ote","Ġmod ifiers","May or","6 80","Ġassemb lies","ĠS ultan","ĠN ing","ĠLad ies","Ġsulf ur","Ġor bs","Ġ---- -","____ ___","ĠJournal ism","Ġes ports","Ġl ush","Ġh ue","Ġspect ral","H onest","ãĥ ı","Ġbus hes","Ġrein forcement","Ġre opened","ĠWhe els","ĠM org","rie ving","Ġaux iliary","Ġj Query","ĠB AT","tes que","Ġver tex","p ure","f rey","ãĤ º","d os","Ġty ph","Ġc ull","Ġe q","Ġdec on","Ġtoss ing","Ġdispar ate","ĠBr igham","print f","led ged","Ġsu nd","Ġco zy","Ġhepat itis","per forming","Ġav al","ĠG G","f uture","Ġpet ertodd","ĠKos ovo","Ġmagn ets","Al ready","ĠEd ison","ĠCe res","ĠRA ID","Ġbrill iance","57 6","Ġder ives","Ġhypert ension","ĠÎ Ķ","Ġlamb da","Ġfl air","Ġmission aries","Ġrap es","ĠSt arter","ĠMon ths","Ġdef y","Ġseism ic","ĠR aphael","Ġeuro zone","65 6","z sche","Ġscr atched","Ġb ows","ĠLenn on","ĠGa ia","Ġdri pping","f acts","A le","Ġfrog s","ĠBre ast","ogene ity","ĠProsecut or","Ġampl ified","ĠHod g","ĠF n","Th ousands","ĠNI H","ĠMonitor ing","FT WARE","ĠPri ebus","ĠG rowing","hun ter","Ġdiagn ose","ĠM ald","ĠL R","Ġcrown ed","Ġburst ing","Ġdiss olution","j avascript","Ġuseful ness","ĠExec ution",": (","ĠIv ory","a ah","Ġpersecut ed","viol ence","ist as","ĠCr ate","Ġimpuls es","ĠSp ani","ed es","Hand le","ĠZ erg","think able","Last ly","Ġspont aneously","Ġinconven ient","Ġdismiss ing","Ġpl otted","Ġeight y","Ġ7 37","r ish","ĠThor nton","ath am","Ġsit com","V en","Rec ipe","t el","l und","Ġcle ars","ĠSas uke","Ġ25 8","Ġopt ing","Ġen raged","est hetic","ĠA e","uch s","Pre p","Fl ow","Ġrun off","ĠE ating","ĠG iles","ĠAct ing","res ources","ib aba","Ġr pm","Ġske wed","ĠBl anc","ĠS akuya","Ġhot ter","Ġ19 24","op ian","ck o","Ġcr umbling","Ġcapt ains","ĠAppropri ations","le aders","dro pping","an uts","Ġrevers ing","ĠP ose","ĠS ek","Sc ot","ĠIde a","c ise","ĠSloven ia","Ġ3 17","Do ctor","Ġcro cod","ald i","Se a","ĠFar rell","Ġmerc enaries","ĠR NC","ĠGu ess","Ġp acing","M achine","Streamer Bot","ĠChar ity","Ġ29 8","Ġcann ons","ĠTob y","TPP StreamerBot","ĠPass ion","cf g","Th om","Ġbad ges","ĠBern stein",". âĢĵ","ĠP OP","ĠCon j","Ġinitial ization","Ġbiod iversity","D ub","Ġfeud al","Ġdisclaim er","Ġc row","Ġign ition","ar f","S HA","Ġk Hz","h azard","ĠArt ists","oe uv","67 9","ĠRud y","N ine","ĠRam adan","å ½","itt o","Ġadren aline","C ert","Ġsmell ed","Ġimp unity","Ġag endas","ĠRe born","ĠCon cent","ĠSe ems","Ġo mega","ĠDust in","Ġback er","ĠSau ce","ĠBoy le","W IN","Ġsp ins","Ġpa uses","u pt","Ġshred ded","Ġstra pped","ĠCor ruption","Ġscr atches","Ġn i","Ġatt ire","ĠS AF","Factory Reloaded","ĠI PS","Ġ( %","Ġsem inar","f ocus","c ivil","Ġ18 60","int osh","Ġcontin ual","Ġabbre vi","ĠS ok","oc obo","X M","Ġfr antic","Ġunavoid able","Ġar tery","Ġannot ations","b ath","Cl imate","Ġd ors","ĠSl ide","co ord","ĠRel oad","ĠL DL","ĠLove craft","Ġunim agin","Ġresemb led","Ġbarr acks","n p","Ġsurrog ate","Ġcategor ized","ãĤ ©","Ġvacc inated","Ġdrain age","Ġind ist","ĠWhats App","Ġ18 70","oler ance","inv oke","am orph","Ġrecon nect","Ġem anc","Ġblind ness","Ġ12 80","intern et","c ollar","Ġalt ru","Ġab yss","ĠT RI","65 7","Ġinf used","HE AD","Ġforest ry","ĠWood y","ĠC i","w i","s am","78 4","hol iday","Ġmog ul","ĠF ees","ĠD EN","In ternal","ur bed","f usc","at om","ĠIll usion","Ġpoll ed","Ġfl ap","Ġco ax","L GBT","An aly","ĠSect ions","ĠCalif orn","em n","Ġh ither","ĠN IGHT","Ġn ailed","ĠPip eline","39 1","o of","ĠPr imal","vere nd","Ġsl ashing","Ġret ri","avi our","Ġdepart ing","g il","IS C","Ġmid way","Ġultras ound","Ġbeh aving","ĠT ara","class es","V irtual","ĠColon ial","Ġstri pping","Ġorchestr ated","ĠGra ves","45 2","ĠIron ically","ĠWrit ers","Ġl ends","ĠMan z","Ġra ven","Ġoxid ative","Ġ26 6","EL F","act ually","asc ar","D raft","Ġfavour able","Ġhumili ating","Ġf idelity","ĠH of","ĠX uan","49 6","Ġlay ered","at is","79 0","Ġpay check","it on","K ar","ĠVM ware","ĠFar mer","Ġserv ic","gl omer","Ġsl ump","ĠFab ric","ĠD OC","est ing","Ġreass ure","Ġph yl","v olt","it ory","R ules","Ġoxid ation","Ġpri zed","Ġmist ress","ĠDj ango","WAR N","å ij","Ġenc ode","ĠFeed back","Ġstupid ity","I an","ĠYugoslav ia","× ¨","ac l","UT E","19 77","Ġqual ifies","Ġpuls es","pret ty","Ġfro ze","Ġs s","Iter ator","Ġur gently","Ġm ailed","ĠCh am","Ġsust aining","Ġbas il","Ġpupp ies","il ant","ĠP LEASE","l ap","ace ous","F ear","ĠMaster y","aut omatic","ĠT AG","Ġant im","ag les","47 3","fram es","Ġwh ispers","ĠWho ever","Ġbra very","ĠUK IP","ract ions","\"\" \"","Ġt ame","Ġpart ed","every thing","CON T","Ġind ebted","Ġadd r","re k","IR ED","Ġem inent","cl inton","Ġo usted","Ġreview er","Ġmelt down","Ġre arr","ĠY ao","the real","aby te","Ġst umbling","Ġbat ches","Ġ25 9","Ġcontrace ptive","Ġprost itute","ens is","De cl","ĠSt rikes","M ilitary","ĠO ath","v acc","pp ings","05 2","Ġpart Name","amp ing","Rep orts","K I","CH R","Ġsubt ly","sw ers","Bl ake","us ual","Ġcontest ants","Ġcart ridges","ĠGRE AT","Ġbl ush","ĠâĢ º","47 2","Ġreason ed","ãĥ ¤","paralle led","Ġd yn","ag ate","Ġnight ly","å Ĩ","55 6","Ġsem antic","ĠAdv oc","Ġ !!","Ġdisag rees","ĠB W","V eh","Ġharm ing","Ġembr aces","Ġstri ves","Ġin land","ĠK ard","Ġhe ats","ĠGin ny","ut an","ern aut","yl ene","ĠE lev","J D","Ġh ars","ĠStar r","Ġsk ysc","Ġcollabor ators","Us ually","Ġrev olutions","ĠSTAT S","Ġdism antle","Ġconfident ly","Ġkin etic","Al i","Ġpercent ile","Ġextract ing","ill ian","est ead","Ġphysic ists","ĠMarsh al","Ġfell owship","Ġd ashed","ĠU R","ĠSi oux","ĠComp act","am ide","P ython","ĠLe igh","ĠPharm ac","ist rates","her ical","Ġf ue","ĠE min","Ġ( {","ĠNeighbor hood","Ġdisrupt ing","ĠD up","Ġg land","ĠSe v","ĠMar ian","arg on","ĠD und","Ġ< !--","Ġstr and","Ġstadium s","z os","Ġpsych osis","ĠR ack","Ġbrilliant ly","ï¸ ı","Ġsubmer ged","ĠInst it","ĠCh ow","Ġc ages","ĠH ats","ĠU rs","Ġdil uted","us at","ien ne","ĠMembers hip","ĠBur k","Ġ ie","Ġarche type","D rug","ult on","ĠSp ock","ĠMcK ay","ĠDep end","F eatured","S oc","19 78","ĠB ere","Ġrelent lessly","Ġcripp ling","Ġar thritis","çĶ Ł","ĠTrop ical","ĠBul g","ĠCher yl","Ġadm irable","Ġsub title","Over ride","Ġorig inating","ĠC CP","Ġsw ore","ĠSo le","ĠDis orders","3 29","Ġprocess ion","Ġref urb","Ġimm ersed","requ ently","Ġskept ics","Ġcer amic","m itter","en stein","b elt","ĠT IT","b idden","Ġf ir","m ist","> ]","Ġwe ave","ĠParad ox","Ġentr usted","ĠBarcl ays","Ġnovel ist","og ie","80 6","Ġnin ety","Ġdisag reements","@@@@ @@@@","ĠAus chwitz","c ars","ĠL ET","t ub","arant ine","P OS","Ġback story","Ġcheer ful","ĠR ag","ek a","bi ased","Ġinexper ienced","ak ra","ĠW itt","t an","Ġrap ist","Ġplate au","ch al","ĠInqu is","exp ression","Ġc ipher","Ġsh aving","add en","re ly","( \\","ism a","ĠReg ulatory","CH AR","ily n","N VIDIA","G U","Ġmur m","la us","Christ opher","Ġcontract ual","ĠPro xy","ĠJa ime","ĠMethod ist","Ġstew ards","st a","per ia","Ġphys iology","Ġbump ed","Ġf ructose","Austral ian","ĠMet allic","ĠMas querade","ar b","Ġprom ul","Ġdown fall","Ġbut cher","Ġb our","ĠIN FORMATION","ĠB is","pect s","ad ena","Ġcontempl ating","ar oo","cent ered","ĠPe aks","Us ed","Ġmod em","Ġg enders","Ġ8 000","37 1","Ġm aternity","ĠR az","Ġrock ing","Ġhandgun s","ĠD ACA","Aut om","ĠN ile","Ġtum ult","ĠBenef it","ĠAppro ach","works hop","ĠLe aving","G er","inst ead","Ġvibr ations","Ġrep ositories","49 7","ĠA unt","ĠJ ub","ĠExp edition","Al pha","Ġs ans","Ġoverd ue","Ġoverc rowd","Ġlegisl atures","Ġp aternal","ĠLeon ardo","Ġexp ressive","Ġdistract ions","Ġsil enced","tr ust","Ġb iking","Ġ5 60","Ġpropri et","Ġimp osition","Ġcon glomer","Ġ= ================================================================","ĠTe aching","ĠY ose","int ensive","T own","Ġtroll ing","ĠGr ac","ĠAS US","Y o","Ġspecial s","ĠNep h","ĠGod zilla","Dat abase","ĠHe gel","Ġ27 2","19 76","ĠGl oria","Ġdis emb","ĠInvestig ations","ĠB ane","ag ements","St range","Ġtre asury","ĠPl ays","Ġundes irable","Ġwid ening","Ġverb ally","Ġinf ancy","Ġcut ter","f ml","Ġ21 00","prot otype","f ine","Ġdec riminal","Ġdysfunction al","Ġbes ie","ĠErn st","z eb","Ġnort heastern","Ġa ust","por ate","ĠMar lins","Ġsegreg ated","ew orld","ĠMa her","Ġtra verse","Ġmon astery","ur gy","G ear","s and","Com pl","ĠE MP","Ġpl ent","ĠMer cer","Ġ27 6","TA BLE","Config uration","H undreds","Ġpr ic","Ġcollabor ating","ĠPar amount","ĠCumm ings","Ġ( <","Ġrecord er","Ġfl ats","Ġ4 16","wh ose","Font Size","ĠOr bit","Y R","Ġwr ists","Ġb akery",") }","ĠB ounty","ĠLanc aster","Ġend ings","acc ording","ĠSal am","e asy","75 5","ĠBur r","ĠBarn ett","onom ous","Un ion","Ġpreced ence","ĠScholars hip","ĠU X","Ġroll out","Ġbo on","al m","ĠCan ter","æ µ","Ġround ing","Ġcl ad","Ġv ap","ĠF eatured","is ations","Ġ5 40","pol ice","Ġunsett ling","Ġdr ifting","ĠLum ia","ĠObama Care","ĠF avor","Hy per","ĠRoth schild","ĠMil iband","an aly","ĠJul iet","H u","Ġrec alling","a head","69 6","Ġunf avorable","Ġd ances","O x","Ġleg ality","Ġ40 3","rom ancer","Ġinqu ire","ĠM oves","\\ \">","ĠVari ant","ĠMess iah","ĠL CS","ĠBah á","75 6","Ġeyeb row","Ġ ¥","ĠMc F","ĠFort y","M as","Ġpan icked","Ġtransform ations","q q","Ġrev olves","ring e","ĠA i","ax e","Ġon ward","ĠC FR","ĠB are","log in","Ġliqu ids","Ġde comp","second ary","il an","ĠCon vert","ami ya","Ġprosecut ing","Ġâī ¡","ĠYork ers","ĠByr ne","sl ow","aw ei","J ean","Ġ26 9","ĠSky dragon","Ġ é","ĠNicarag ua","ĠHuck abee","ĠHigh ly","Ġamph ib","ĠPast or","ĠL ets","Ġbl urred","Ġvisc eral","ĠC BO","Ġcollabor ated","z ig","Leg al","Ġapart heid","Ġbr id","Ġpres et","ĠD ET","ĠAM A","× Ķ","arch ing","auc uses","build er","Ġpo etic","Ġem ulator","ĠMole cular","Ġhon oring","ise um","Ġtract or","ĠCl uster","ĠCal m","ared evil","Ġsidew alks","Ġviol in","Ġgeneral ized","ĠAle c","Ġemb argo","Ġfast ball","ĠHT TPS","ĠL ack","ĠCh ill","ri ver","C hel","ĠSw arm","ĠLev ine","ro ying","L aunch","Ġkick er","Ġadd itive","ĠDe als","W idget","cont aining","Ġescal ate","ĠOP EN","Ġtwe aked","Ġst ash","Ġsp arks","ĠEs sex","ĠE cc","Ġconv ict","Ġblog ging","I ER","ĠH L","Ġmurd erers","75 9","ĠH ib","Ġde pl","ĠJ ord","S ac","Ġdis sect","ĠHow e","os her","Ġcustom izable","ĠFran z","Ġat ro","Ä ĩ","Ġ000 4","Ġout post","R oss","Ġglyph osate","ĠHast ings","ĠBE FORE","Ġsh ove","o pped","ĠSc ala","Ġam ulet","an ian","Ġexacerb ated","Ġe ater","47 1","UM E","Ġpul p","izont al","ĠZ am","ĠAT I","imm une","aby tes","Ġunnecess arily","ĠC AT","ĠAx is","Ġvisual ize","à ī","ĠRad ical","f m","Doc uments","ĠFor rest","Ġcontext ual","ĠSy mbol","Ġtent ative","ĠDO ES","ĠGood s","Ġintermitt ent","} :","medi ated","Ġridic ule","Ġathe ism","Ġpath ogens","ĠM um","Ġre introdu","Ġ30 7","i HUD","Ġflash light","Ġsw earing","Ġp engu","B u","Ġrot ated","ĠCr ane","Ġ() );","Ġfashion able","Ġendors ing","46 3",") [","Ġingest ion","Ġcook s","Ġ9 50","ot omy","ĠIm am","Ġk a","Ġte aser","ĠGhost s","ĠãĤ µ","19 69","Ï ĥ","ub by","Ġconver ter","zan ne","end e","ĠPre par","ĠNic kel","ĠChim era","h im","ĠTyr ann","ĠSabb ath","ĠNich ols","Ġra pt","ih ar","Ġshe lling","Ġillum inate","Ġdent ist","ut or","ĠInteg ration","Ġwh ims","ĠLiter ary","Be aut","Ġp archment","ag ara","Br and","Ġder og","â̦ )","ĠNor se","Ġunw itting","Ġc uc","Ġborder line","Ġupset ting","Ġrec ourse","Ġd raped","ĠRad ar","Ġcold er","ĠPep si","im inary","], [","65 8","V i","ĠF rem","ĠP es","Ġveter inary","ĠT ED","ĠEp idem","n ova","k id","Ġdev out","o ct","j ad","M oh","ĠP AY","Ġge ometric","Ġ3 23","Ġcircum ference","ich ick","19 75","ĠY uri","ĠSh all","ĠH over","un in","S pr","Ġg raft","ĠHapp iness","Ġdisadvant ages","att acks","Ġhub s","ĠStar Craft","é ĸ","Ġgall eries","ĠKor ra","Ġgrocer ies","ĠGors uch","Ġrap ists","Ġfun gi","ĠTyph oon","V ector","ĠEm press","b attle","4 68","Ġparas ite","ĠBom ber","S G","ex ist","ĠP f","Ġun se","Ġsurge ons","B irth","ĠUn sure","ĠPrint ed","ĠBehavior al","ĠA ster","Pak istan","Ġun ethical","Ġs v","ĠIo T","Ġlay outs","P ain","Ġconst ants","ĠL W","ĠB ake","Ġtow els","Ġdeterior ation","ĠBol ivia","Ġblind ed","ĠW arden","ĠMist ress","Ġon stage","Ġcl ans","ĠB EST","19 60","Ġant ique","Ġrhet orical","ĠPer cy","ĠRw anda",", .","B ruce","Ġtra umat","ĠParliament ary","Ġfoot note","id ia","ĠLear ned","se eking","gen ic","Ġdim ensional","H ide","èĢ ħ","Ġintrig ue","in se","Ġle ases","Ġapp rentices","w ashing","Ġ19 26","V ILLE","Ġsw oop","s cl","Ġbed rooms","on ics","ĠCr unch","comp atible","Ġincap ac","ĠYemen i","ash tra","z hou","d anger","Ġmanifest ations","ĠDem ons","AA F","Secret ary","ACT ED","L OD","Ġam y","ra per","eth nic","4 17","Ġpos itives","Ġ27 3","ĠRefuge es","Ġus b","ĠV ald","odd y","ĠMahm oud","As ia","Ġskull s","ĠEx odus","ĠComp et","ĠL IC","ĠM ansion","ĠA me","Ġconsolid ate","storm s","ont ent","99 6","Ġcl en","Ġm ummy","fl at","75 8","ĠV OL","oter ic","n en","ĠMin ute","S ov","Ġfin er","R h","ly cer","Ġreinforce ments","ĠJohann es","ĠGall agher","Ġgym n","S uddenly","Ġext ortion","k r","i ator","T a","Ġhippocamp us","N PR","ĠComput ing","Ġsquare ly","Ġmod elling","ĠFor ums","ĠL isp","ĠKrish na","Ġ3 24","Ġr ushes","Ġens ued","Ġcre eping","on te","n ai","il ater","ĠHorn ets","Ġob livious","IN ST","55 9","Ġjeopard y","Ġdistingu ishing","j ured","Ġbeg s","sim ilar","ph ot","5 30","ĠPark way","Ġs inks","ĠHearth stone","ib ur","ĠBat on","Av oid","Ġd ancer","Ġmag istrate","ary n","Ġdisturb ances","ĠRom ero","Ġpar aph","Ġmis chief","âĸ ĵ","ĠSh aria","Ġur inary","r oute","iv as","f itted","Ġeject ed","ĠAl buquerque","Ġ4 70","Ġirrit ated","ĠZ ip","ĠB iol","à į","Ġden ounce","Ġbin aries","ĠVer se","Ġopp os","ĠKend rick","ĠG PL","Ġsp ew","ĠEl ijah","ĠE as","Ġdr ifted","so far","Ġannoy ance","ĠB ET","47 4","ĠSt rongh","it ates","ĠCogn itive","oph one","ĠIdent ification","ocr ine","connect ion","Ġbox er","ĠAS D","ĠAre as","Y ang","t ch","ull ah","Ġdece ive","Comb at","ep isode","cre te","W itness","Ġcondol ences","ht ar","Ġhe als","Ġbuck ets","ĠLA W","B lu","Ġsl ab","ĠOR DER","oc l","att on","ĠSteven son","ĠG inger","ĠFriend ly","ĠVander bilt","sp irit","ig l","ĠReg arding","ĠPR OG","Ġse aling","start ing","Ġcard inal","ĠV ec","ĠBe ir","Ġmillisec onds","we ak","per se","Ġster ile","ĠCont emporary","ĠPh ant","ĠCl o","Ġout p","Ġex iled","Ġ27 7","Ġself ie","Ġman ic","Ġn ano","ter ms","Alex ander","Ġres olves","Ġmillenn ia","Ġexpl odes","Ġconst ellation","Ġadul tery","m otion","D OC","Ġbroad casters","Ġkinderg arten","ĠMay weather","ĠE co","ich o","Ġ28 7","l aun","Ġm ute","Ġdisc reet","Ġpres chool","Ġpre empt","De lete","ĠFre ed","P i","H K","Ġblock er","ĠC umber","Ġw rought","d ating","Ġins urer","Ġquot as","Ġpre ached","Ġev iction","ĠReg ina","ĠP ens","Ġsevent een","ĠN ass","D ick","Ġfold s","Ġd otted","ĠA ad","Un iversal","Ġp izz","ĠG uru","Ġso ils","Ġno vice","ĠNe ander","Ġst ool","Ġdeton ated","ĠPik achu","ĠMass ive","IV ER","ĠAb del","Ġsubdu ed","Ġtall est","Ġprec arious","Ġa y","r ification","ĠOb j","c ale","Ġun question","cul osis","ad as","igr ated","D ays","Ġque ens","ĠGaz ette","ĠCol our","ĠBow man","ĠJ J","ï ve","Ġdomin ates","Stud ent","Ġm u","Ġback log","ĠElect ro","Tr uth","48 3","Ġcond ensed","r ules","ĠCons piracy","Ġacron ym","hand led","ĠMat te","j ri","ĠImp ossible","l ude","cre ation","Ġwar med","ĠSl ave","Ġmis led","Ġfer ment","ĠK ah","ink i","ke leton","cy l","ĠKar in","Hun ter","Reg ister","ĠSur rey","Ġst ares","ĠW idth","ĠN ay","ĠSk i","Ġblack list","uck et","Ġexp ulsion","im et","Ġret weet","vant age","Fe ature","Ġtro opers","Ġhom ers","9 69","Ġconting ency","ĠW TC","ĠBrew er","fore ign","W are","S olar","Ġund ue","RE C","ulner able","path ic","ĠBo ise","Ġ3 22","Ġarous ed","ĠY ing","ä¸ į","uel ess","Ġp as","Ġmor p","Ġfl oral","Ex press","ud ging","k B","ĠGr anted","Ø ¯","ĠMich a","ĠGoth ic","ĠSPEC IAL","ĠRic ardo","F ran","Ġadminister ing","6 20","por a","Ġ ®","Ġcomprom ises","Ġb itten","Ac cept","Th irty","Ð ²","Ġmater ially","ĠTer r","ig matic","ch ains","Ġdo ve","stad t","Mar vel","FA ULT","Ġwind shield","Ġ3 36","ad ier","Ġsw apping","Ġflaw less","ĠPred ator","ĠMiche le","Ġprop ulsion","ĠPsych ic","Ġassign ing","Ġfabric ation","Ġbar ley","l ust","Ġtow ering","Ġalter cation","ĠBent ley","Sp here","Ġtun a","ĠClass es","Fre edom","un er","L ady","v oice","Ġcool est","or r","Ġpal p","$ {","Ġhyster ia","ĠMet atron","p ants","Ġspawn ing","Exper ts","ĠInvest ors","ĠAn archy","Ġshr unk","ĠVict im","Ġ28 9","Ġec stasy","ĠB inding","58 5","ĠMel ody","57 8","ot ally","ĠE tsy","lig a","Ġapplaud ed","Ġswe ating","Ġredist ributed","Ġpop corn","Ġsem inal","f ur","ĠNeuro science","R and","ĠO st","ĠMadd en","ĠIncre asing","ĠDaw kins","ĠSub way","Ġar sen","cons erv","B UR","Ġsp iked","ĠLy ft","ĠImper ium","ĠDrop box","Ġfav oured","Ġencomp asses","gh ost","Ġins pires","Ġbur geoning","ĠY oshi","ĠVert ical","ĠAud itor","Ġint ending","Ġfilib uster","Bl oom","f ac","ĠCav s","ign ing","Ġcowork ers","ĠBarb arian","rem ember","FL AG","Ġaudit ory","ason ry","Col lege","Ġmut ed","gem ony","ob in","ĠPsych o","9 68","Ġlav ish","Ġhierarch ical","ĠDr one","ou k","Ġcripp led","ĠMax im","Sl ot","Ġqu iz","ĠV id","if ling","Ġarchae ologists","Ġabandon ment","d ial","le on","ĠF as","T ed","Ġr aspberry","Ġmaneu vers","Ġbehavi ours","Ġins ure","Ġrem od","Sw itch","h oe","Ġsp aced","Ġafford ability","ĠF ern","not ation","ĠBal anced","Ġoccup ies","en vironment","Ġneck lace","Ġsed an","F U","ĠBrav o","Ġab users","ĠAn ita","met adata","ĠG ithub","ait o","ĠF aster","ĠWass erman","ĠF lesh","Ġth orn","r arily","ĠMer ry","w ine","Ġpopul ace","ĠL ann","Ġrepair ing","Ġpsy che","Ġmod ulation","aw aru","âĢĭ âĢĭ","ari j","Ġdecor ations","Ġapolog ise","ĠG arg","app ly","Ġgive away","ĠFl an","ĠWy att","U ber","Ġauthor ised","ĠMor al","HAHA HAHA","activ ate","Ġtorped o","ĠF AR","Ġam assed","ĠA ram","ark in","ĠVict ims","st ab","Ġo m","ĠE CO","Ġopio ids","Ġpurpose ly","ĠV est","Ġer g","at an","ĠSur gery","Ġcorrect ing","ĠOrt iz","ĠBe et","Ġrev oke","Ġfre eway","ĠH iggins","F ail","ĠFar ms","ĠAT P","h ound","Ġp oking","ĠCommun ists","mon ster","iment ary","Ġunlock ing","Ġunf it","we ed","en ario","at ical","ĠEnlight enment","ĠN G","ĠComp ensation","de en","ĠWid ow","ĠCind y","ĠAfter wards","Ġ6 000","ikh ail","ag ically","Ġrat ified","Ġcasual ty","H OME","p sey","f ee","Ġspark ling","Ġd é","Ġconcert ed","C atal","Ġcomp lying","ĠA res","ĠD ent","Sh ut","Ġsk im","ad minist","Ġhost ilities","ĠG ins","Ġ6 08","Ġm uddy","ĠMc Int","ĠDec ay","5 25","Ġconspic uous","ĠEx posure","Ġresc ind","Ġwear able","Ġ3 28","our met","ah s","ĠRob ots","Ġe clips","inst ance","ĠRE PORT","ĠApp l","0 30","ĠSk ies","01 00","Ġfall acy","S ocket","ĠRece iver","Ġsol ves","ĠButter fly","ĠSho pping","ĠFI RE","65 4","Med ic","Ġsing ers","ĠNeed less","'' ''","isher s","ĠD ive","58 8","Ġselect ively","Ġcl umsy","88 9","Ġpurch aser","ear ned","ard y","Ġbenef iting","eng lish","Ġyield ing","ĠP our","Ġspin ach","Ġdel ve","ĠC rom","6 10","Ġexport ing","ĠMA KE","Ġ26 3","Ġg rop","Ġenv oy","ĠInqu iry","ĠLu igi","d ry","ĠT uring","Thumbnail Image","ĠVar iety","Ġfac et","Ġfl uffy","Ġexcerpt s","Ġsh orth","ĠOl sen","CL UD","Ġrel iant","ĠUN C","T our","Ġbat hing","Comp any","Ġglobal ization","P red","ĠMalf oy","Ġh oc","j am","craft ed","ĠBond s","ĠKiss inger","Eng land","Ġorder ly","cat entry","Ġ26 1","Ġexch anging","ĠInt ent","ĠAmend ments","D OM","Ġst out","³³³³³³³³ ³³³³³³³³","ĠAir bus","Ġ27 8","hy de","P oll","Item ThumbnailImage","Ġlooph oles","ĠPill ar","Ġexpl or","St retch","A part","Ġun married","Lim it","ĠTransform ers","Ġintellect ually","unct ure","18 00","Ġd arn","B razil","Ġleft over","ber us","f red","Mine craft","3 26","ĠForm s","Ġproof s","ĠDes igned","Ġindex es","ĠSupp ose","EM S","ĠL oving","ĠBon nie","im ating","OT US","Ġconduct or","Ġbehav ed","ĠF ren","Ġsy nerg","Ġmillenn ium","Ġcater ing","ĠL auder","W r","ĠY iannopoulos","ĠAT F","Ġensl aved","Ġawaken ed","D VD","ĠED ITION","ĠConc ert","ĠChall enger","ĠH aku","umer ic","Ġdep recated","ĠSH AR","4 12","Ġdy stop","Ġtremb ling","Ġdread ed","ĠSp ac","p adding","Re pl","ĠG arrison","M ini","Ġun paralleled","am ar","URR ENT","w reck","c ertain","t al","ĠC LS","app ings","Ġsens ed","Ġf encing","ĠPas o","ĠDes k","Ġsc off","Ġcontem plate","ĠL iga","l iquid","75 7","Ġapp rentice","ĠUCH IJ","5 70","ĠTh ousand","ĠIll um","Ġchampion ed","ãĤ Į","Ġelect ors","Ġ3 98","ĠH ancock","round ed","ĠJ OHN","Ġuns atisf","Ġqual ifier","ĠGad get","EN E","Ġdead liest","ĠPl ants","Ġ ions","Ġacc ents","Ġtwe aking","Ġsh aved","F REE","ĠCh aser","Again st","9 60","Ġmeth amphetamine","Ġnormal ized","Ġ$ \\","ĠPre cision","ĠGu am","Ġch oked","ĠX II","ĠCast ing","Tor rent","Ġscal p","ĠJagu ar","w it","Ġsem ic","ix ie","ĠG ould","Ġconf ines","N usra","ĠL on","ĠJ ugg","y cle","ĠCod ec","E gypt","Ġrest rain","ĠAl iens","Ġch oking","ĠD unk","ĠBell a","ab c","Ġsl ang","Ġneuro trans","s av","Ġempower ment","â ĨĴ","Ġclim bers","ĠM im","ĠF ra","ros se","Cap ital","ĠCth ulhu","Inter face","Ġprof icient","ĠIN TO","Ġ3 18","ront al","5 80","ĠDes pair","K enn","Ġscrim mage","ĠCo at","as ions","Ġwall paper","ĠJ ol","Ġresurg ence","Ġant iv","ĠB alls","² ¾","Ġbuff ers","Ġsub system","ĠSt ellar","ĠL ung","A IDS","Ġerad icate","Ġblat antly","Ġbehav es","ĠN un","Ġant ics","ex port","DE V","w b","Ġph p","ĠInteg rity","Ġexplore r","Ġrev olving","auth ored","g ans","Ġbas k","Ġas ynchronous","å į","TH ING","69 8","G ene","ĠR acer","ĠN ico","iss ued","Ġser mon","p ossibly","Ġsize of","Ġentrepreneur ial","ox in","ĠMin erva","Ġpl atoon","n os","ri ks","A UT","ĠAval anche","ĠDes c","ij 士","ĠP oc","Ġconf erred","Î »","Ġpat ched","F BI","66 2","Ġfract ures","Ġdetect s","Ġded icate","Ġconstitu ent","Ġcos mos","W T","Ġswe ats","Ġspr ung","b ara","s olid","Ġuns us","Ġbul ky","ĠPhilipp e","ĠFen rir","Ġtherap ists","ore al","^^ ^^","Ġtotal ed","Ġboo ze","ĠR PC","Prosecut ors","Ġdis eng","ĠSh ared","Ġmotor cycles","Ġinvent ions","Ġlett uce","ĠMer ge","ĠJ C","Ġspiritual ity","ĠWAR NING","Ġunl ucky","ĠT ess","Ġtong ues","ĠD UI","T umblr","Ġle ans","Ġinv aders","Ġcan opy","ĠHur ricanes","ĠB ret","ĠAP PLIC","id ine","ick le","Reg arding","Ġve ggies","Ġe jac","ju ven","F ish","D EM","ĠD ino","Th row","ĠCheck ing","be ard","( &","Ġj ails","Ġh r","trans fer","iv ating","Ġfle ets","ĠIm ag","ĠMc Donnell","Ġsnipp et","Is a","ĠCh att","ĠSt ain","ĠSet FontSize","ĠO y","ĠMathemat ics","49 4","Ġelectro ly","ĠG ott","ĠBr as","B OOK","ĠF inger","d ump","Ġmut ants","Ġrent als","Ġinter tw","Ġc reek","ail a","Bro ther","ĠDisc ord","pe e","raw ler","Ġcar p","Ġ27 9","ãĤ· ãĥ£","rel ations","Ġcontr asts","Col umn","Ġrec onnaissance","Ġun know","Ġl ooting","Ġregul ates","Ġopt imum","ĠChero kee","ĠA ry","Lat est","Ġroad side","Ġd anced","ĠUnic orn","A cknowled","Ġuncont roll","ĠM US","at io","ch ance","ha ven","VAL UE","Ġfavour ites","Ġceremon ial","b inary","pe ed","wood s","EM P","Ġv ascular","Ġcontempl ated","Ġbar ren","ĠL IST","Y ellow","ospons ors","Ġwhisk y","ĠM amm","ĠDeV os","min imum","H ung","44 2","P ic","ĠSnap dragon","77 6","Ġcar ving","Ġund ecided","Ġadvantage ous","Ġpal ms","ĠA Q","Ġst arch","L oop","Ġpadd le","Ġfl aming","ĠHor izons","An imation","bo ost","Ġprob abilities","ĠM ish","Ġex odus","ĠEditor ial","Ġfung us","Ġdissent ing","ĠDel icious","rog ram","ĠD yn","d isk","t om","Ġfab rics","ĠC ove","ĠB ans","Ġsoft en","ĠCON S","Ġin eligible","Ġestim ating","ĠLex ington","pract ice","of i","Ġshe dding","ĠN ope","Ġbreat hed","ĠCorinth ians","y ne","ek i","B ull","Ġatt aching","reens hots","Ġanaly se","ĠK appa","Ġuns ustainable","Ġinter pol","ank y","he mer","Ġprot agonists","Ġform atted","ĠBry ce","ĠAch illes","ĠAb edin","sh ock","Ġb um","b os","qu a","ĠW arn","q t","ĠDi abetes","8 64","ĠIn visible","Ġvan ish","Ġtrans mitting","Ġmur ky","ĠFe i","Ġawa ited","ĠJur assic","umm ies","Ġmen acing","g all","C ath","B uilt","ild o","ĠV otes","Ġon t","Ġmun itions","ĠFre em","ÃŃ n","Ġdec ency","lo pp","ie ved","ĠG ord","Ġun thinkable","ĠNews week","Ġ3 21","He at","Ġpresent er","ji ang","Ġpl ank","ĠAval on","Ġben z","ĠR out","Ġslam ming","ĠD ai","ou ter","ĠCook ie","ĠAlic ia","ge y","Ġvan ity","Ġow l","á µ","t ested","ĠAw akens","Ġcan v","Ġblind ly","ĠRid ley","ĠEm ails","Requ ires","ĠSer bian","ograp hed","if rame","eter ia","Ġaltern ating","qu iet","Ġsoc iology","ĠUn lock","ĠCommun ism","Ġo ps","Ġatt ribution","Ġab duction","ĠAb ram","Ġsidel ined","ĠB OOK","Ġref ining","ĠFe eling","ĠOs lo","ĠPru itt","r ack","ang ible","Ġcaut iously","ĠM ARK","eed s","M ouse","ĠStep h","ĠP air","S ab","99 7","ĠBa al","B ec","Ġcomm a","ĠP all","ĠG ael","Ġmisunder stand","ĠP esh","Order able","Ġdis mal","ĠSh iny","% \"","Ġreal istically","Ġpat io","ĠG w","ĠVirt ue","Ġexhaust ing","wh atever","oph ys","y ip","4 18","Ad just","ĠWa iting","ess on","ĠMaz da","ĠDo zens","Ġstream lined","Ġincompet ence","ĠM eth","Ġeth os","ON ES","Ġincent iv","Ġgr itty","ĠBut cher","Head er","Ġexp onential","à Ł","Ġcorrel ate","Ġcons ensual","s ounding","R ing","Orig in","Ġcon clusive","fe et","ac ly","ĠF ernandez","Buy able","Ġd ucks","aunt lets","Ġel ong","Ġ28 6","Ġsim ul","G as","ĠK irst","Ġprot r","ĠRob o","ĠAo E","op ol","Ġpsych ologically","sp in","ilater ally","ĠCon rad","W ave","44 1","ĠAd vertisement","ĠHarm on","ĠOri ental","is Special","Ġpresum ptive","Ġw il","ĠK ier","ne a","Ġp pm","Ġhar bour","ĠW ired","comp any","Ġcor oner","atur days","ĠP roud","ĠN EXT","ĠFl ake","val ued","ce iver","Ġfra ught","Ġc asing","Ġrun away","Ġg in","ĠLaure nt","ĠHar lem","ĠCur iosity","qu ished","Ġneuro science","ĠH ulu","Ġborrow er","Ġpetition er","ĠCo oldown","W ARD","Ġinv oking","conf idence","For ward","Ġst s","pop ulation","Delivery Date","Fil m","ĠC ov","quick Ship","quickShip Available","prim ary","isSpecial Orderable","inventory Quantity","channel Availability","BO X","ĠMulti player","ĠJen ner","77 8","ĠM d","Ġ~ /.","M N","Ġchild ish","Ġantioxid ant","ĠChrom ebook","Ġ27 4","Ġscreen play","Ġadvent urous","ĠRelations hip","respons ive","ming ton","Ġcorner stone","ĠF ey","F IR","Ġrook ies","ĠF eaturing","Ġorig inate","Ġelectro des","ant es","Ġscript ures","Ġgl ued","Ġdiscont ent","Ġaff licted","lay out","B rave","Ġm osa","ĠQuant ity","ĠH ik","w inner","H ours","Ġent ail","ĠCell s","olog ue","Ġv il","Ġpre acher","Ġdecor ative","d ifferent","Ġprejud ices","ĠSm oking","ĠNotting ham","so Type","Ġrhyth ms","ĠAl ph","bl ast","Ste el","ĠDaniel le","Ġstr ife","Ġrem atch","so DeliveryDate","ĠF ork","t rip","ol ulu","hes es","C G","ĠPOLIT ICO","ost a","ĠDr ift","é¾įå ¥","é¾įå¥ ij士","Ġvet ting","ĠJin ping","ĠRec ession","Min or","ĠF raud","enf ranch","Ġconven ed","ĠNA ACP","ĠMill ions","ĠFarm ing","ĠW oo","ĠFl are","rit o","imm igrant","Ġvac ancy","ĠHE AD","ĠV aj","eg al","ĠV igil","Stud y","Ġru ining","Ġr acks","Ġhe ater","ĠRand olph","ĠBr ush","ĠT ir","Ø ¨","Ġc ov","% ]","Ġrecount s","ĠO PT","ĠM elt","Ġtr uce","Ġcas inos","Ġcrus ade","Ġcarn age","Ġstri pe","ĠK yl","Text ures","Ġ6 98","Ġpro clamation","Ġgood ies","Ġ........ ..","pro claimed","P olit","Ġtop ical","Ġspecial ize","ĠA min","g m","Ġanch ored","Ġbear ings","s ample","ĠHigh land","ĠAut ism","Ġmerc enary","Ġinterview er","L ER","ĠSom ers","Ġembry o","ĠAss y","Ġ28 1","ĠEd iting","ĠCh osen","6 60","Ġp ci","ĠThunder bolt","BI LL","Ġchuck led","jri wal","h of","Ġearth ly","() {","ind ependence","Ġdisp ers","ĠV endor","ĠG areth","Ġp als","P enn","ĠSub mit","ic um","Th u","Ġcl andestine","Ġcann ibal","ĠCl erk","E Stream","gal itarian","âĻ ¥","g ew","Ġhor rend","ĠL ov","ĠRe action","ocr in","Class ic","Ġecho ing","Ġdiscl osing","ĠIns ight","og un","ĠInc arn","upload s","pp erc","guy en","Ġ19 01","ĠB ars","68 7","Ġb ribes","ĠFres no","ur at","ĠRe ese","Ġintr usive","Ġgri pping","ĠBlue print","ĠR asm","un ia","man aged","ĠHeb do","Ġ3 45","Ġdec oding","Ġpo ets","Ġj aws","ĠF IGHT","am eless","ĠMead ows","ĠHar baugh","Inter view","ĠH osp","ĠB RA","Ġdelet ion","m ob","W alker","ĠMoon light","ĠJ ed","ĠSoph ia","Ġus ur","Ġfortun ately","ĠPut ting","ĠF old","Ġsan itation","Ġpart isans","IS ON","B ow","ĠCON C","ĠRed uced","ĠS utton","Ġtouch screen","Ġembry os","âĢ¢âĢ¢ âĢ¢âĢ¢","ĠK rug","com bat","ĠPet roleum","Ġam d","ĠCos mos","Ġpresc ribing","Ġconform ity","ours es","Ġplent iful","Ġdis illusion","ĠEc ology","itt al","Ġf anc","Ġassass inated","regn ancy","Ġperenn ial","ĠBul lets","Ġst ale","Ġc ached","ĠJud ith","ĠDise ases","All en","Ġl as","Ġsh ards","ĠSu arez","ĠFriend ship","inter face","ĠSupp orters","add ons","46 2","ĠIm ran","ĠW im","Ġnew found","ĠM b","An imal","Ġd arling","and e","Ġrh y","ĠTw isted","pos al","yn ski","Var ious","× ľ","ĠK iw","uy omi","Ġwell being","ĠL au","an os","Ġunm ist","Ġmac OS","Ġrest room","ĠOl iv","ĠAir ways","Ġtimet able","9 80","Ġrad ios","v oy","ias co","Ġcloud y","ĠDraw ing","Any thing","Sy ria","ĠH ert","st aking","Ġun checked","Ġb razen","ĠN RS","69 7","onom ic","est ablish","Ġl eng","Ġdi agonal","ĠF ior","L air","ĠSt ard","Ġdef icient","jo ining","be am","Ġomn ip","Ġbl ender","Ġsun rise","Mo ore","ĠF ault","ĠCost ume","ĠM ub","Fl ags","an se","Ġpay out","ĠGovern ors","ĠD illon","ĠBan ana","N ar","Ġtra iled","Ġimperial ist","um ann","ats uki","4 35","ĠRoad s","Ġsl ur","ĠIde ally","Ġt renches","C trl","Ġmir rored","ĠZ el","ĠC rest","Comp at","ĠRoll s","sc rib","ĠTra ils","omet ers","w inter","Ġimm ortality","il ated","Ġcontrad icts","un iversal","ill ions","ĠM ama","opt im","AT URE","Ġge o","et ter","ĠCar lo","4 24","Ġcanon ical","ĠStrongh old","n ear","Ġperf ume","Ġorche stra","od iac","Ġup he","Ġreign ing","vers ive","Ġc aucuses","ĠD EM","Ġinsult ed","Ġ---- --","ĠCr ush","Ġroot ing","ĠWra ith","Ġwh ore","Ġto fu","C md","ĠB ree","Ġ$ _","Ġr ive","ĠAd vertising","Ġw att","ĠH O","Ġpersu asive","ĠParam eters","Ġobserv ational","ĠN CT","ĠMo j","ĠSal on","Ġtr unc","Ġexqu isite","ĠMar a","Ġpo op","ĠAN N","Ex c","ĠWonder ful","ĠT aco","Ġhome owner","ĠSmith sonian","orpor ated","mm mm","Ġlo af","ĠYam ato","ĠInd o","Ġcl inging","á s","Ġimm utable","h ub","Or ange","Ġfingert ips","ĠWood en","ĠK idd","ĠJ PM","ĠDam n","C ow","c odes","48 2","Ġiniti ating","ĠEl k","ĠCut ting","Ġabsent ee","ĠV ance","ĠLil ith","G UI","Ġobsc ured","Ġdwar ves","ĠCh op","ĠB oko","Val ues","Ġmult imedia","Ġbrew ed","Reg ular","CRIP TION","ĠMort al","Ġa pex","Ġtravel er","Ġbo ils","Ġspray ing","Rep resent","ĠStars hip","4 28","Ġdisappro val","Ġshadow y","Ġlament ed","ĠRe place","ĠFran ç","67 7","d or","Ġunst oppable","Ġcoh orts","gy n","ĠClass ics","ĠAm ph","Ġsl uggish","ĠAdd iction","ĠPad res","Ġins cription","Ġin human","min us","ĠJere miah","at ars","Ter ror","ĠT os","ĠSh arma","ast a","c atch","Ġpl umbing","ĠTim bers","Sh ar","H al","ĠO sc","Ġcou pling","hum ans","Ġsp onge","Ġid ols","ĠSp a","ĠAdv ocate","ĠBe ats","lu a","Ġtick ing","Ġload er","ĠG ron","8 10","Ġstim ulated","Ġside bar","ĠManufact urer","ore And","19 73","Ġpra ises","ĠFl ores","dis able","ĠElect rical","ra ise","E th","Ġmigr ated","Ġlect urer","K ids","ĠCa vern","Ġk ettle","Ġgly c","ĠMand ela","ĠF ully","å§ «","FIN EST","Ġsquee zing","ĠRy der","amp oo","oreAnd Online","Inst oreAndOnline","Buyable InstoreAndOnline","Ġcommem orate","ĠRamp age","Aust in","ĠSh roud","ĠRu ins","9 15","ĠK H","Ġwater front","ĠE SC","b aby","ĠC out","ĠEm blem","Ġequival ents","49 2","Un ique","ĠNiet zsche","brow ser","Ġim itation","ĠWere wolf","ĠKir in","ac as","' ,\"","Ġà ¾","Review ed","Ġc unt","Ġvo ic","ĠLen ovo","Ġbond ed","48 1","Ġinhib itors","Ġendeav ors","ĠHav ana","ĠSt out","ĠJ olly","A ctor","*/ (","Ġoccur rences","ĠT ens","Incre ased","ĠACT ION","Ġ ãĢĮ","ĠRank ings","ĠB reat","Ġ30 9","D ou","Ġimpact ing","ĠDuc hess","pre fix","Q B","Ġsummon ing","Ġbest owed","ĠKe pler","ĠPOW ER","c ube","ĠK its","ĠG rip","Ġop ium","Ġrep utable","t oc","ich ael","ĠR ipple","Ġcaf é","ĠZ oom","ĠBur ma","Ġwa ive","Ġst alls","Ġdem eanor","inc erity","Ġfluor ide","ĠSH OULD","Par is","Ġlong ing","Ġpl at","Ġgross ly","Ġbull s","Ġshowc asing","ex pected","ĠG addafi","engine ering","Re peat","ĠK ut","Ġconce ivable","Ġtrim med","osc ope","ĠCand idate","ĠT ears","rol og","Lew is","S UP","Ġroad map","Ġsal iva","Ġtrump et","Jim my","Ġmirac ulous","Ġcolon ization","Ġam put","ĠGN OME","ate ch","D ifferent","ĠE LE","ĠGovern ments","ĠA head","ãħĭ ãħĭ","word press","L IB","ĠIn clude","ĠDor othy","0 45","ĠColomb ian","Ġle ased","88 4","Ġde grading","ĠDa isy","i ations","Ġbapt ized","Ġsurn ame","co x","Ġblink ed","ãĥ ¢","Ġpoll en","Ġder mat","Ġre gex","ĠNich olson","ĠE ater","ç ľ","rad or","Ġnarrow er","Ġhur ricanes","Ġhalluc inations","r idden","ISS ION","ĠFire fly","Ġattain ment","Ġnom inate","Ġav ocado","ĠM eredith","Ġt s","Ġreve rence","Ġe uph","Ġcr ates","ĠT EXT","Ġ4 43","Ġ3 19","J SON","iqu ette","Ġshort stop","ic key","Ġpro pelled","Ġap i","ĠTh ieves","77 9","Ġovers aw","Ġcol i","ĠNic ola","Ġover cl","ik awa","ĠC yr","Ġ38 4","78 9","ĠAll ows","10 27","Det roit","TR Y","set up","ĠSocial ism","Sov iet","s usp","ĠAP R","ĠShut down","Ġal uminium","zb ek","ĠL over","GGGG GGGG","Ġdemocr acies","Ġ19 08","ĠMer rill","ĠFranco is","gd ala","Ġtraff ickers","ĠT il","ĠGo at","Ġsp ed","ĠRes erv","Ġpro d","55 2","Ġc ac","ĠUn iv","ĠSch we","Ġsw irling","ĠWild erness","ĠEgg s","Ġsadd ened","Ġarch aic","H yd","Ġexcess ively","B RE","Ġaer ospace","ĠVo ices","Cra ig","Ġign ited","In itially","ĠMc A","Ġhand set","Ġreform ing","Ġfrust rations","ĠDead pool","ĠBel ichick","ract or","ĠRagnar ok","ĠD rupal","ĠApp roximately","19 20","ĠHub ble","arm or","ĠSar as","ĠJon as","Ġnostalg ic","Ġfeas ibility","Sah aran","Ġorb iting","Ġ9 70","R u","Ġsh in","ĠInvestig ators","Ġinconsist encies","ĠP AN","B G","Ġgraz ing","Ġdetect ors","ĠStart up","ĠFun ny","ĠNa omi","Consider ing","Ġh og","ut f","ce mic","Ġfort ified","ĠFun ctions","Ġcod ec","nut rition","H at","\" !","micro soft","55 8","ĠTh in","ĠA CE","Al ias","ĠO PS","p apers","P K","ãĢ İ","Ġimpro bable","N orthern","equ al","Ġlook out","Ġty res","ĠMod ified","ĠK op","Abs olutely","Ġbuild up","sil ver","Ġaud i","Ġgro tesque","ĠSab er","ĠPres byter","ON Y","Ġglac iers","ĠSho als","ĠK ass","ĠH RC","ĠNic ol","ĠL unch","ĠF oss","âĸ Ĵ","AD RA","ĠOne Plus","o ing","ground s","Ġincident al","Ġdatas ets","68 9","ĠClarks on","Ġassemb ling","ĠCorrect ions","Ġdrink ers","Ġqual ifiers","Ġle ash","Ġunf ounded","ĠH undred","Ġkick off","T i","Ġrecon cil","ĠGr ants","ĠCompl iance","ĠDexter ity","Ġ19 06","w arn","D allas","Max imum","n ard","av ia","be aut","ens itivity","tr ace","Ġpione ers","ĠF ract","ãĢ ı","Ġpre cept","Ġgloss y","ĠI EEE","Ac ross","Ġ6 80","S leep","che on","Ġsatir ical","ĠMin otaur","ĠCla ude","Ġr é","ape go","Ġcar rot","ĠSem in","ino a","Ġz o","Ind ependent","Ġdiagn oses","ĠC ue","M AR","Ġrend ition","ĠK ik","Ġpath ology","Ġselect s","Link edIn","Ġass ay","ĠD res","Ġtext ual","post ed","IT AL","ĠM aul","N eal","Ġinter connected","Ġerr atic","ĠVir us","Ġ5 30","Ġenvironmental ists","ĠP helps","Ġeng agements","ĠIN ST","Ġeconom ical","nox ious","Ġg earing","izz y","Ġfavor ably","ĠMcG ill","T erm","Ġh anged","Ġball park","ĠRe yes","Ġbe ware","ĠP sal","ĠMass acre","q i","Ġin accessible","acly sm","Ġfr ay","ill ac","Ġbitter ly","ĠCert ification","Mich igan","Ġir respective","al ore","Em pty","Ġendorse ments","Ġund et","f g","equ ipped","Ġmerc iless","ĠC ust","Ġimm ature","Ġvou cher","ĠBlack well","Ñ ı","h awk","dis ciplinary","ile e","ĠMak oto","ĠD ude","ãĥĩ ãĤ£","Y ears","Ġin ver","Ġsh aman","ĠY ong","ip el","ell en","ĠCath y","br ids","Ġs arc","65 1","N ear","Ġground work","Ġam az","Ġ4 15","ĠHunting ton","hew s","ĠB ung","Ġarbit rarily","ĠW it","ĠAl berto","Ġdis qualified","best os","46 1","Ġp c","Ġ28 4","ro bat","Rob in","Ġh ugs","ĠTrans ition","ĠOcc asionally","Ġ3 26","ĠWh ilst","ĠLe y","Ġspaces hip","cs v","Ġun successfully","ĠA u","le ck","ĠWing ed","ĠGrizz lies",". �","Ġne arer","ĠSorce ress","ĠInd igo","El se","8 40","let es","Co ach","Ġup bringing","ĠK es","Ġseparat ist","Ġrac ists","Ġch ained","Ġabst inence","lear ning","Ġrein stated","Ġsymm etry","Ġremind ers","ĠChe vy","Ġm ont","Ġexempl ary","ĠT OR","Z X","Ġqual itative","ĠSt amp","ĠSav annah","ĠRoss i","Ġp aed","Ġdispens aries","ĠWall s","ĠCh ronic","Ġcompliment ary","ĠBeir ut","Ġ+ ---","igs list","Ġcrypt ographic","mas ters","ĠCap itals","Ġmax imal","Ġent ropy","Point s","Ġcombat ants","l ip","ĠGl ob","ĠB MC","ph ase","th ank","HT TP","Ġcomm uter","Ġ\\( \\",".. /","ĠReg ener","ĠDO I","ĠActiv ision","Ġsl it","os al","RE M","Ġch ants","Y u","Ke ys","Bre xit","ĠFor ced","Ari zona","Ġsquad ron","IS O","ĠMal one","Ġ3 38","Ġcontrast ing","Ġt idal","Ġlib el","Ġimpl anted","Ġupro ar","ĠC ater","Ġpropos itions","M anchester","ĠEuro s","it amin","G il","ĠEl ven","ĠSe ek","ĠB ai","Ġredevelop ment","ĠTown s","ĠL ub","! \",","al on","K rist","Ġmeas urable","Ġimagin able","Ġapost les","Y N","7 60","Ġster oid","Ġspecific ity","ĠL ocated","ĠBeck er","ĠE du","ĠDiet ary","uts ch","ĠMar ilyn","Ġbl ister","ĠM EP","ĠK oz","ĠC MS","y ahoo","ĠCar ney","Ġbo asting","ĠC aleb","By te","read s","ad en","Pro blem","ĠWood ward","S we","S up","ĠK GB","Set up","Ġtac it","Ġret ribution","Ġd ues","ĠM ü",". ?","ä¸ Ń","p ots","Ġcame o","ĠP AL","educ ation","A my","like ly","g ling","Ġconstitution ally","ĠHam m","ĠSpe ak","Ġwid gets","br ate","Ġcra ppy","ĠI ter","Ġanticip ating","ĠB out","P ixel","ĠY ep","ĠLaur ie","Ġh ut","Ġbullet in","ĠSal vation","Ġch ats","ear able","Honest ly","AL TH","onse qu","c ult","isco very","ovy ch","Ġse lves","ĠSat oshi","S ounds","Ġconver gence","ĠRosen berg","19 74","Ġnas al","Ġfull est","Ġfer ocious","x us","ist e","AM S","Ġlobb ied","Ġso othing","ĠGun n","t oday","0 24","Ġinspir ational","ĠN BN","p b","g ewater","or ah","all owed","ĠCol iseum","Ġspecial izing","Ġinsane ly","ĠT ape","del ay","Ġt arn","ĠP ound","Ġmel anch","Ġdeploy ments","il and","Ġless en","Ġfur ry","ĠUE FA","Ġblood shed","ĠMe ier","ither ing","Ġhe irs","ĠJ aw","ax ter","ĠPublic ations","Ġal ters","int ention","ĠWinc hester","d etermination","ĠLif etime","th in","Mon ster","7 80","Ġapprox imation","Ġsuper markets","ĠSecond s","or os","h uge","Ġb ribe","ĠLIM ITED","un ed","Ġmis interpret","ĠIn jury","Ġ3 67","Ġthreshold s","ĠCarn ival","Ġgastro intestinal","Ġguid eline","Ġde ceived","f eatures","Ġpurported ly","ĠRon nie","ĠNew t","Ġsp acious","as us","Ġsuperhero es","ĠCyn thia","le gged","k amp","ch io","Ġth umbnail","ĠShir ley","ill ation","Ġshe ds","ĠZ y","E PA","Ġdam s","Ġy awn","n ah","ĠPe ggy","ĠE rie","ĠJu ventus","ĠF ountain","r x","don ald","al bum","ĠComp rehensive","Ġc aching","ĠU z","ulner ability","ĠPrinc iple","ĠJ ian","ing ers","cast s","ĠOs iris","ch art","t ile","ĠTiff any","ĠPatt on","ĠWh ip","Ġovers ized","J e","ĠCind erella","ĠB orders","ĠDa esh","M ah","Ġdog ma","Ġcommun ists","v u","Coun cil","Ġfresh water","Ġw ounding","Ġdeb acle","Ġyoung ster","Ġthread ed","ĠB ots","ĠSav ings","ãģ Ĥ","ol ing","oh o","Ġillum ination","M RI","Ġlo osen","tr ump","ag ency","ur ion","Ġmoment arily","ĠCh un","ĠBud apest","ĠAl ley","D isk","Ġaston ished","ĠCon quer","ĠAccount ing","h aving","ĠWe in","ĠAl right","Ġrev olver","Ġdel usion","Ġrelic s","Ġad herent","qu ant","Ġhand made","or io","Ġcomb ating","c oded","Ġquad ru","re th","N ik","ĠTrib al","ĠMyster ious","Ġin hal","ĠWin ning","ĠClass ification","ch anged","Ġun ab","Ġsc orn","icip ated","w l","ond uctor","Ġrein forcing","ĠChild hood","an ova","Ġadventure r","Ġdoctor al","ĠStrateg ies","Ġengulf ed","ĠEnc ounter","Ġl ashes","Crit ical","ric ular","ĠU TF","oci ation","check ing","ĠConsult ing","Run time","per iod","ĠAs gard","Ġdist illed","ĠPas adena","ĠD ying","ĠCOUN TY","Ġgran ite","Ġsm ack","Ġparach ute","ĠS UR","Virgin ia","ĠF urious","78 7","ĠO kin","Ġcam el","ĠM bps","19 72","ĠCh ao","ĠC yan","j oice","ef er","ĠW rap","ĠDeb ate","S eg","Ġfore arm","ĠIgn ore","Ġtim estamp","Ġprob ing","ĠNo on","ĠGra il","f en","Ġdorm ant","ĠFirst ly","ĠE ighth","ĠH UN","ĠDes ire","or as","Girl s","ĠDes mond","z ar","am ines","O AD","exec ute","Ġbo obs","ĠAT L","_ (","Chel sea","Ġmasturb ation","ĠCo C","Ġdestroy er","ĠCh omsky","Ġsc atter","ĠAss ets","79 6","ĠC argo","Ġrecept ive","ĠSc ope","Ġmarket ers","Ġlaun chers","Ġax le","ĠSE A","se q","ĠM off","f inding","ĠGib bs","Georg ia","extreme ly","N J","Ġlab orers","st als","Ġmed iation","ĠH edge","at own","Ġi od","des pite","v ill","J ane","ex istence","Ġcoinc ided","ĠUt ilities","ĠChe ap","Ġlog istical","Ġcul mination","ĠNic otine","p ak","F older","Ġrod ents","st uff","Ġlaw fully","Ġreper to","io ch","j j","Dial ogue","HH HH","lic tion","Look s","Ġ29 7","Ġtur rets","ĠAb andon","Ġinc ess","ĠTraff ord","Ġcur led","Ġprefer ring","Ġprivat ization","Ġir resist","ĠP anda","ĠSh ake","ĠMc Gr","ãĥ Ħ","und ers","Ġdiscrim inated","Ġbart ender","I LE","Atl antic","Ġprop ensity","ĠW iz","ĠG im","con ference","Ġrein forces","G h","w agon","Ġe erie","F al","Ġhug ged","rac ist","R IC","F u","Ġf iller","ĠSt ub","Ġeng raved","ĠWrest le","Ġimagin ative","ĠPe er","ĠFact ors","an us","ĠDrac ula","mon itor","Ġrou ters","ib ia","ĠBoo lean","end ale","ĠSl aughter","ĠSh ack","R FC","ĠSpiel berg","S ax","ĠPH OTO","ĠCl over","ĠR ae","Dep ending","ĠMem or","ar am","Ġpier ced","Ġcur tains","v ale","ĠInqu isition","ĠP oke","Ġforecast ing","Ġcompl ains","S ense","ĠHer mes","isc overed","Ġb ible","ĠMor ph","Ġg erm","78 5","D ON","Ġcon gen","Ġcr ane","ĠD PR","Ġrespect fully","R oom","ĠN aw","ĠDal ai","re ason","ĠAng us","Educ ation","ĠTitan ic","Ë ľ","Ġo val","un ited","Ġthird s","Ġmoist ur","ĠC PC","M iami","Ġtent acles","ĠPol aris","ex c","ex clusive","ĠPra irie","Ġcol ossal","ĠBl end","sur prisingly","ÃŃ s","Ġindo ctr","Ġbas al","ĠMP EG","und o","Spl it","Develop ment","Ġlan tern","19 71","Ġprov ocation","Ġang uish","ĠB ind","ĠLe ia","duc ers","ipp y","conserv ancy","Ġinitial ize","ĠTw ice","ĠSu k","Ġpred ic","Ġdi ploma","Ġsoc iop","Ing redients","Ġhamm ered","ĠIr ma","Q aida","Ġglim ps","ĠB ian","Ġst acking","Ġf end","gov track","Ġun n","dem ocratic","ig ree","Ġ5 80","Ġ29 4","Ġstraw berry","ID ER","Ġcher ished","ĠH ots","Ġinfer red","Ġ8 08","ĠS ocrates","O regon","ĠR oses","ĠFO IA","Ġins ensitive","Ġ40 8","Recomm end","ĠSh ine","Ġpain staking","UG E","ĠHell er","ĠEnter prises","I OR","ad j","N RS","L G","Ġalien ated","Ġacknowled gement","ĠA UD","ĠRen eg","Ġvou chers","Ġ9 60","Ġm oot","ĠDim ensions","Ġc abbage","B right","g at","ĠK lu","Ġlat ent","Ġz e","ĠM eng","Ġdis perse","Ġpand emonium","H Q","Ġvirt uous","ĠLoc ations","ee per","prov ided","Ġse ams","ĠW T","iz o","PR OV","Ġtit anium","Ġrecol lection","Ġcr an","Ġ7 80","ĠN F","49 1","64 2","p acking","59 8","text ure","Sp ider","fre edom","cipl ed","ĠTAM ADRA","âĻ ¦","aut hent","ĠW ANT","r ified","Ġr ites","Ġuter us","k iss","Ġâī ¤","Ġsk illet","Ġdis enfranch","ĠGa al","Comp an","Ġage ing","gu ide","B alt","Ġiter ator","Ġdiscretion ary","t ips","Ġprim ates","ĠTechn ique","ĠPay ments","az el","ĠR OCK","stant ial","0 60","Ġd mg","ĠJack ets","ĠPlay off","Ġnurs ery","ĠSy mb","art on","Ġannex ation","Color ado","Ġco ils","ĠSh oes","âĦ¢ :","ĠRo z","COM PLE","ĠEve rest","ĠTri umph","J oy","G rid","à ¼","process or","ĠPros per","ĠSever us","ĠSelect ed","r g","ĠTay yip","St ra","Ġski ing","Ġ? )","Ġpe g","Tes la","Ġtime frame","Ġmaster mind","ĠN B","scient ific","ĠSh it","gener ic","IN TER","N UM","Ġst roll","ĠEn ix","ĠM MR","ĠE MS","m ovie","Ĥ ª","Ġminim izing","idd ling","Ġilleg itimate","Ġprot otyp","Ġpremature ly","Ġmanual s","obb ies","ĠCass idy","D EC","des ktop","Ġaer os","Ġscreen ings","Ġdeb ilitating","ĠGr ind","nature conservancy","Ġf ades","ter mination","assets adobe","F actor","Ġdefinitive ly","P oké","ap ult","ĠLaf ayette","C orn","ĠCor al","Ġstagn ant","T ue","Ġdissatisf action","G ender","Ġkid neys","ĠG ow","ĠDef eat","ĠAsh ton","Ġcart els","Ġfore closure","ĠExpl ore","stre ngth","ot in","Ġveterin arian","Ġf umble","Ġpar ap","ĠSt rait","r ils","Ġpr ick","ĠBerm uda","ĠAm munition","skin ned","Ġab ound","ĠB raz","Ġshar per","ĠAsc ension","Ġ9 78","Ġpreview s","Ġcommun ion","ĠX Y","Ġph ony","Ġnewcom er","Ġ3 32",".\" ,\"","Ġredist ribution","Prot ect","ĠSo f","K al","Ġlip stick","w orst","Ġtang led","Ġretrospect ive","int eger","Ġvolunte ering","Ġ19 07","Ġ --------------------","ic hen","Ġunve iling","Ġsen seless","Ġfisher ies","\\ -","Ġh inges","Ġcalcul us","My th","Ġund efeated","Ġoptim izations","Ġdep ress","Ġbill board","ĠY ad","ĠPy ramid","Is n","I de","Ġleg ion","ĠK ramer","ent anyl","Ġpenet rating","ĠHaw th","ĠPR ODUCT","ĠGer ard","ĠP act","ĠIn cluding","ĠEl ias","ĠEl aine","vis ual","Ġhum ming","Ġcond esc","ĠF asc","ä¸ Ĭ","Ġe galitarian","Ġdev s","ĠD ahl","O ps","D H","ĠB ounce","id ated","ald o","Ġrepublic an","Ġh amb","ĠS ett","ograph ies","CH APTER","Ġtrans sexual","Ġsky rocket","ans wer","Ġmark up","Ø ª","Ġhero ine","Comp are","ĠT av","Be ast","Ġsuccess ors","Ġna ïve","ĠBuck ley","st ress","me at","Ġdownload able","Ġindex ed","Ġsc aff","ĠL ump","ĠHom o","Stud io","In sp","Ġr acked","far ious","ĠPet ty","Ex ternal","Ġ19 09","W ars","com mit","put ers","Ġun ob","ĠEr r","ĠE G","ĠAl am","ĠSiber ia","ĠAtmosp heric","IS TER","ĠSatan ic","trans lation","ĠL oud","tra umatic","l ique","Ġreson ate","ĠWel ch","Ġspark ing","ĠT OM","t one","Ġout l","Ġhandc uffed","ĠSer ie","8 01","Ġland marks","ĠRee ves","Ġsoft ened","Ġdazz ling","ĠW anted","month s","Mag ikarp","Ġunt reated","ĠBed ford","M i","ĠDynam o","O re","79 5","Ġwrong ful","Ġl ured","Ġcort isol","Ġve x","d rawn","ile t","Download ha","ĠF action","Ġlab yrinth","Ġhij acked","w aters","er ick","Ġsuper iors","ĠRow ling","ĠGu inness","Ġt d","99 2","Ġune arthed","Ġcentr if","Ġsham eless","P od","ĠF ib","Ġ icing","Ġpredict or","Ġ29 2","fore station","con struct","C and","@ #","Ġag itated","Ġre pr","OV A","Ġkn itting","ĠLim a","Ġf odder","68 4","ĠPerson a","k l","7 01","Ġbreak up","á ¸","Ġapp alled","Ġantidepress ants","ĠSus sex","Har ris","ĠTher mal","ee ee","U pload","Ġg ulf","Ġdoor step","ĠSh ank","L U","ĠM EN","ĠP ond","s orry","Ġmis fortune","n ance","Ġb ona","M ut","Ġde graded","ĠL OG","ĠN ess","an imal","Ġa version","und own","Ġsupplement ed","ĠC ups","Ġ50 4","Ġdep rive","ĠSpark le","Å Ĥ","ĠMed itation","auth ors","ĠSab an","ĠN aked","air d","ĠMand arin","ĠScript ures","ĠPerson nel","ĠMahar ashtra","Ġ19 03","ĠP ai","ĠMir age","omb at","Access ory","Ġfrag mented","T ogether","Ġbelie vable","ĠGl adiator","al igned","ĠSl ug","M AT","Ġconvert ible","ĠBour bon","amer on","ĠRe hab","nt ax","Ġpowd ered","pill ar","Ġsm oker","ĠMans on","ĠB F","5 11","ĠGood ell","ĠD AR","m ud","g art","Ġob edient","ĠTrans mission","ĠDon ation","8 80","Ġbother ing","Material s","ãĤ ±","dest roy","Ġfore going","Ġanarch ism","ĠK ry","ice ps","Ġl ittered","ĠSch iff","Ġanecd otal","un its","Ġf ian","ĠSt im","ĠS OME","ĠInv aders","Ġbehaviour al","ĠVent ures","Ġsub lime","Ġfru ition","ĠPen alty","Ġcorros ion","¶ ħ","Ġlik ened","Ġbesie ged","ween ey","ĠCre ep","Ġlinem en","mult i","ic ably","ud der","Ġvital ity","Ġshort fall","ĠP ants","ap ist","H idden","ĠDro ps","med ical","Ġpron unciation","ĠN RL","Ġinsight ful","J V","ĠBe ard","ĠCh ou","Ġchar ms","Ġb ins","Ġamb assadors","ĠS aturdays","Ġinhib itor","ĠFr anch","6 01","', '","ĠCon or","art ney","ĠX peria","g rave","be es","ĠProtest ants","Ġso aking","ĠM andal","Ġph ased","Ġ6 60","Ġsc ams","Ġbuzz ing","ĠItal ians","ĠLoren zo","ĠJ A","Ġhes itated","Ġcl iffs","ĠG OT","ingu ishable","Ġk o","Ġinter ruption","Z ip","Lear ning","Ġundersc ores","ĠBl ink","K u","57 9","ĠAut ob","I RE","Ġwater ing","Ġpast ry","8 20","Ġvision ary","ĠTempl ar","awa ited","Ġpist on","Ġant id","current ly","Ġp ard","Ġw aging","Ġnob ility","ĠY us","Ġinject ing","f aith","ĠP ASS","å º","Ġret ake","ĠPR OC","Ġcat hedral","b ash","Ġwrest lers","Ġpartner ing","Ġn oses","Ġ3 58","Trans form","am en","Ġb outs","ĠId eal","ĠConstant in","Ġse p","ĠMon arch","att en","ĠPe oples","mod ified","Ġmor atorium","Ġpen chant","Ġoffensive ly","Ġprox ies","ok ane","ĠTaiwan ese","ĠP oo","ĠH OME","us ional","Ġver bs","ĠO man","vis ory","Ġpersu asion","Ġmult it","Ġsc issors","G ay","ow ay","oph ysical","l us","gn u","Ġap ocalyptic","Ġabsurd ity","Ġplay book","Ġautobi ography","I UM","Ġsne aking","ĠSim ulation","pp s","ell ery","Plan et","Ġright fully","Ġn iece","ĠN EC","ĠIP O","ĠDis closure","lean or","ous y","ST ER","Ġ28 2","Cru z","Ch all","64 3","ĠSurv ive","ĠF atal","ĠAm id","ap o","We apons","D EN","7 70","ĠGreen wald","Ġlin en","al os","Ġpollut ants","ĠPCI e","k at","Ġp aw","ĠK raft","C hem","ĠTermin ator","Ġre incarn","Ġ] [","ĠSe eds","Ġsilhou ette","ĠSt ores","Ġgro oming","ĠD irection","ĠIs abel","ĠBr idges","ðŁ ij","E ED","ĠM orsi","Ġval ves","ĠRank ed","ĠPh arma","ĠOrgan izations","Ġpenet rated","ĠRod ham","ĠProt oss","Ġove rest","Ġex asper","ĠT J","Ġ 000000","Ġtrick le","Ġbour bon","WH O","Ġw retched","Ġmicrosc opic","Ġcheck list","Ġad orned","R oyal","Ad minist","ĠRet irement","ĠHig hest","We ather","ile ge","Ġincre ments","ĠC osponsors","Ġmas se","ĠS inn","r f","Ġh ordes","as sembly","75 4","ĠNat asha","ĠTY PE","ĠGEN ERAL","Ġarr anging","Ġ40 7","l ator","Ġg lean","Ġdisc redited","Ġclin icians","UN E","Ġachie ves","ĠEm erson","com plex","= [","Ġprincip ally","Ġfra il","p icked","Ġthan king","Ġre cl","ĠL AST","Ġsupp ressing","il ic","Ġantidepress ant","ĠLis bon","Ġth or","Ġsp a","Ġking doms","ĠPear ce","em o","Ġpl ung","Ġdiv est","Ġ ********************************","b is","osp els","ad r","Sp irit","hall a","P ink","end ez","Ġresurrect ed","esc ape","ĠRosen stein","Ġge ological","Ġnecess ities","Ġcarn iv","ĠE lys","ĠBar ney","Ġ29 6","dig y","ST ON","D OWN","Ġmil estones","Ġk er","Ġdismant ling","Ġre prim","Ġcross ings","19 45","Ġpatri archy","Ġblasp hemy","Ġ3 59","met ry","ĠOb esity","ĠDiff erences","bl ocking","ãĥķ ãĤ¡","ich ita","ĠSab ha","ph alt","ĠCol o","ual a","effic ients","ĠMed ina","con sole","55 7","ĠHann ibal","ĠHab it","ĠF ever","Ġthen ce","Ġsyn agogue","Ġessential s","Ġw ink","ĠTr ader","ID A","ĠSp oiler","ĠIceland ic","ĠHay ward","Ġpe ac","Ġmal ice","Ġflash back","Ġth w","Ġlay offs","L iquid","Ġtro oper","Ġh inge","ĠRead ers","Ph ill","ĠB auer","Cre ated","Ġaud its","ac compan","Ġunsus pecting","ier a","6666 6666","Ġbro ch","Ġapprehend ed","ĠM alk","cer ning","ĠCod ex","O VER","M arsh","ĠD eng","ĠExp ression","Ġdisrespect ful","Ġasc ending","t ests","ĠPlaint iff","ster y","ĠAl ibaba","din and","ĠDem psey","Applic ations","mor al","Ġthrough put","Ġquar rel","Ġm ills","Ġhe mor","ĠC ASE","terror ist","st im","ifest yle","ro zen","CE PT","Ar k","u ci","lect ic","Ġirrit ating","she ets","A y","Ġrede emed","Ġhorn y","ĠTe ach","ĠS ear","dem ocracy","4 65","ĠRest ore","Ġstand by","ĠP is","iff in","Ġsleep y","Ġextr ater","Ġcompl iments","Fram eworks","Ġinstall s","Ġb anging","sur face","found land","Ġmetaph ysical","Ġ28 3","oul s","dev ices","Ar gs","ĠSac rifice","ĠMcC orm","es on","Cons ervative","ĠM ikhail","see ing","is ively","ĠRo oms","ĠGener ic","Ġenthusi astically","Ġgri pped","Ġcomed ic","ĠElectric ity","Ġgu errilla","Ġdec oration","ĠPerspect ive","Ġconsult ations","Ġun amb","Ġplag iar","Ġmagic ian","Ġe rection","ĠTour ism","or ied","ro xy","11 00","T am","Ī è","Î ³","× ª","ĠPred ators","Nit rome","Ġtelesc opes","project s","Ġun protected","Ġst ocked","ĠEnt reprene","nex pected","Ġwast ewater","V ill","Ġint imately","Ġi Cloud","ĠConst able","Ġspo of","Ġne farious","Ġfin s","Ġcens or","ĠMod es","ĠEs per","ar bon","Ġinter sections","Ġlaud ed","Ġphys i","Ġgener ously","ĠThe Nitrome","ĠTheNitrome Fan","Ġar isen","ĠÙ Ī","Ġg lands","ĠPav ilion","ĠGu pta","Ġuniform ly","Ġr amps","ri et","ĠWH EN","ĠVan essa","Ġrout ed","Ġlim p","ĠC PI","p ter","int uitive","Ġv aping","Ġexperiment ed","ĠOlymp us","ĠAm on","Ġsight ing","Ġinfiltr ate","ĠGentle man","Ġsign ings","ĠMe ow","ĠNav igation","che cks","4 33","Ġel apsed","ĠBulg arian","esp ie","ĠS OM","d uring","Ġsp ills","anc a","ĠPly mouth","M AL","Ġdomest ically","ĠWater gate","ĠF AM","k illed","ed ited","ĠYour self","Ġsynchron ization","ĠPract ices","ST EP","Ġgen omes","ĠQ R","not ice","Ġloc ating","z in","Ġ3 29","al cohol","Ġk itten","V o","Ġr inse","Ġgrapp le","ĠSc rew","ĠD ul","A IR","Ġle asing","ĠCaf é","Ġro ses","ĠRes pect","Ġmis lead","Ġperfect ed","Ġnud ity","Ġnon partisan","ĠCons umption","Report ing","Ġnu ances","Ġdeduct ible","ĠSh ots","Ġ3 77","Ġæ ľ","ano oga","Ben ef","ĠB am","ĠS amp","if ix","Ġgal van","ĠMed als","rad ius","Ġno bles","Ġe aves","igr ate","K T","ĠHar bour","u ers","Ġrisk ed","re q","Ġneuro t","get table","ain a","Rom ney","Ġunder pin","Ġlo ft","ĠSub committee","ĠMong ol","b iz","Ġmanif ests","ass isted","ĠG aga","Ġsy nergy","Ġreligious ly","ĠPre f","ĠG erry","T AG","ĠCho i","4 66","beh ind","ĠO u","Gold Magikarp","Ġhemor rh","R iver","Ġtend on","Ġinj ure","ĠF iona","Ġp ag","Ġag itation","|| ||","ur an","ĠE SA","Ġest eem","Ġdod ging","Ġ4 12","r ss","Ġce ases","ex cluding","Ġint akes","Ġinsert s","Ġemb old","ĠO ral","up uncture","4 11","ĠUn ified","ĠDe le","Ġfurn ace","ĠCoy otes","ĠBr ach","L abor","Ġhand shake","Ġbru ises","Gr ade","éĹ ĺ","ĠGram my","ile en","St ates","ĠScandinav ian","ĠKard ash","8 66","Ġeffort lessly","ĠDI RECT","ĠTH EN","ĠMe i","ert ation","19 68","Ġgro in","w itch","Requ irements","98 5","Ġroof s","Ġest ates","ĠH F","Ġha ha","Ġdense ly","ĠO CT","Ġpl astics","Ġincident ally","ĠTr acks","ĠTax es","Ġch anted","Ġforce ful","ĠBie ber","ĠK ahn","K ent","ĠC ot","lic ts","F ed","Ġhide ous","ĠVer d","ĠSynd icate","ĠIl legal","J et","ĠD AV","re asonable","c rew","Ġfundamental ist","Ġtruth ful","ĠJ ing","Ġl il","Ġdown ed","Ġen chanted","ĠPolic ies","ĠMcM aster","ĠH are","ides how","Ġpar ams","en cers","gorith m","Ġallow ances","Ġturb ulent","Ġcomplex ities","ĠK T","Ġ3 37","ĠGen etic","F UN","D oug","t ick","Ġg igs","ument hal","Ġpatriarch al","Ġcal c",", ...","Ġc out","ĠGu an","Ġpath ological","ĠR ivals","Ġunder rated","Ġflu orescent","ĠJ iu","arna ev","ĠQu an","Ġ4 29","Ġ à¨","M ario","Con struct","ĠC itation","ĠR acial","ĠR SA","ĠF idel","Ġ3 95","Person ally","C ause","à »","rad ical","in en","Ġvehement ly","ĠPap a","Ġintern ship","Ġfl akes","ĠRe ck","Luck ily","B ra","20 20","rav ings","R N","W onder","Ser iously","Ġre usable","Ġpoll uted","ĠP eng","le igh","ind le","Ġcircuit ry","ĠMad onna","ĠB ART","Res idents","att ribute","Phil adelphia","Cl ub","Ġplan ner","Ġfr antically","Ġfaith fully","ĠTerrit ories","ĠL AT","ĠAnders en","an u","ĠP ARK","ĠS ora","i age","ĠPlay offs","ĠG CC","4 27","Ġab norm","ĠL ever","Ġdisob edience","As ync","ĠShe a","V ert","Ġsk irts","ĠSaw yer","x p","Ġwors ening","Ġsc apego","ĠAng le","oth al","Ġtro ve","ĠSt y","ĠN guyen","mar ine","ide on","Dep ths","Bl og","ĠIll uminati","Ġtract s","Ġorgan ise","Ġo str","F s","Ġlever aging","ĠD aredevil","as ar","Ġl ang","Ġex termin","urs ions","ĠRom o","ãĤ¤ ãĥĪ","Ġcont ended","Ġencounter ing","ĠTable t","ĠAltern ate","sk ill","Ġswe ets","Ġco hesive","cap acity","Ġrep ud","Ġl izard","ro o","Ġpilgr ims","ĠR uff","ĠInstr ument","ĠLog o","uit ous","E H","Ġsales man","Ġank les","L ed","ĠPat ty","ud os","Own er","Ġdiscrep ancies","k j","M U","Ġuncond itional","Dragon Magazine","i ard","O ak","ĠConvers ation","be er","ĠOs aka","D elta","us ky","Ġsecret ion","Ġpl aza","Ġm ing","Ġde pletion","ĠM ous","ĠI TS","ĠH imal","ĠFle ming","Ġcyt ok","ĠH ick","Ġbat ters","ĠInt ellectual","6 75","é r","IS ION","ĠQu entin","ĠCh apters","ih adi","Ġco aster","WAY S","ĠL izard","ĠY or","and ering","S kin","ha ust","ab by","Ġportray ing","Ġwield ed","d ash","Ġprop onent","Ġr ipple","Ġgrap hene","Ġfly er","Ġrec urrent","Ġdev ils","Ġwater fall","æĺ ¯","go o","Text Color","Ġtam pering","IV ES","TR UMP","ĠAb el","ĠS AL","ĠHend ricks","ĠLu cius","b ots","Ġ40 96","IST ORY","Gu est","ĠN X","in ant","Ben z","ĠLoad ed","ĠCle ver","t reatment","Ġta vern","Ġ3 39","ĠT NT","ific antly","Tem perature","F el","Ġunder world","ĠJud ges","Ġ< +","Ġst ump","Ġoccup ancy","Ġab er","ĠF inder",") \",","ĠN unes","res et","in et","ect omy","Ġwell ness","ĠP eb","quart ered","and an","Ġneg atives","ĠTh iel","ĠCl ip","ĠL TD","Ġbl ight","Ġreperto ire","K yle","Ġqu er","ĠC es","Ġha pl","98 9","ĠTh ames","isc opal","Des k","ivari ate","ĠEx cellence","found ation","Ġâ ĩ","X i","Ġmyster iously","esty les","Ġper ish","ĠEng els","ĠDE AD","09 0","}} }","ĠUn real","Ġrest less","ID ES","orth odox","ĠInter mediate","Ġdin ners","ĠTr out","ĠSe ym","ĠHall s","og ged","Ġtraged ies","Ġdid nt","67 6","Ġail ments","Ġobserv able","ĠV ide","ad apt","ĠD usk","Ġprofessional ism","ĠPres cott","ĠInd ies","p ox","ĠMe hran","W ide","Ġend emic","ĠPar an","B ird","Ġped als","ĠI U","ĠAdam ant","ĠH urt","Ġcorrel ates","urd en","Ġspons oring","cl imate","ĠUnivers ities","ĠK not","enn es","ĠDam ian","ĠAx el","S port","Ġbar b","ĠS no","sh own","ste en","ud ence","Ġnon violent","Ġhom ophobia","Ġbiom ass","ĠDet ail","Ġsrf N","ĠT une","accompan ied","I ENCE","Al bert","ĠMong o","z x","ĠCer berus","or bit","c ens","Ġsl ay","SH ARE","H Y","Ġb rawl","ĠPro be","Ġnonex istent","ĠClare nce","ĠBlack burn","Ġport als","ĠR ita","ĠRem ain","ĠLe vant","Ġtrick ed","ĠF erry","aver ing","ĠStraw berry","ĠAn swers","Ġhorrend ous","ĠA man","Supp lement","ĠT oad","Ġpe eled","Ġman oeuv","ĠU zbek","mond s","ĠH ector","Ġ40 2","pe es","fix es","Ġd j","Ġres umes","Ġaccount ant","Ġadvers ity","Ġham pered","ĠL arson","Ġd oping","part s","H ur","Ġbe arded","Ġy r","ĠPlug in","å¥ ³","Ġ/ **","rol ley","Ġwaters hed","ĠSub mission","if lower","AS C","Ġcho ir","Ġsculpt ures","m A","incre asing","ai i","Ġsne akers","Ġconfront s","ĠEle phant","ĠEl ixir","Ġrec al","ĠT TL","w idget","ĠW ax","ĠGr ayson","Ġha irst","Ġhumili ated","ĠWAR N","app iness","ĠT TC","F uel","Ġpol io","Ġcomplex es","Ġbab e","ĠX IV","P F","). [","P arts","Ġ4 35","M eg","ĠY ards","ĠAL P","Ġy ells","Ġprin ces","Ġbull ies","ĠCapital ism","ex empt","FA Q","ĠSp onge","ĠAl a","Ġpleas antly","Ġbu f","Ġden ote","Ġunp ublished","Ġkne eling","asc a","Ġl apse","al ien","99 4","Ġrefere es","ĠLaw yers","S anta","Ġpuzz ling","ĠProm etheus","ĠPh araoh","ĠDel ay","Ġfacilit ates","ĠC ES","Ġjew els","Ġbook let","ond ing","Ġpolar ization","ĠMor an","ĠSal ad","ĠS OS","ĠAdv ice","PH OTOS","IC AN","iat ures","ex press","ĠWonder land","ĠC ODE","ĠCL ASS","9 75","Ġg rep","ĠD iesel","ĠGl ac","! ?\"","Ġr m","o ine","disc rimination","ĠN urse","m allow","Ġv ortex","ĠCons ortium","Ġlarge Download","stra ight","augh lin","G rad","Ġpublic ized","ĠW aves","ĠRed d","Ġfest ivities","ĠM ane","ar ov","Ġfleet ing","ĠDr unk","ug en","C ele","Ġchromos omes","ĠD OT","-+-+ -+-+","Ġbus iest","ĠBe aver","Sy rian","ĠK yr","k as","ĠCross Ref","19 50","76 01","Ġrepe aling","ĠWin ners","ĠMac ro","ĠD OD","bl ance","S ort","64 1","Ġmet re","ĠD irk","Ġgo ggles","Ġdraw backs","Ġcomplain ant","Ġauthor izing","Ġantit rust","oper ated","Ġm ah","Ġexagger ation","Am azing","ĠSer aph","Ġha ze","w ow","Ġextingu ished","Ġcan yon","ĠB osh","Ġv ents","Ġsc rape","Cor rect","4 26","Ġav g","Dem and","ĠâĪ ¼","Ġmicrobi ota","\"} ],\"","ĠSt ev","B io","ĠPlan es","Ġsuggest ive","Ġdec ipher","ĠRefuge e","ĠKe jriwal","ĠGreen peace","Ġdecl ass","ĠSound ers","Ġth o","Ġdec rypt","Ġbr ushing","ĠJane iro","ip op","S i","8 77","ĠGeoff rey","Ġc pu","ĠHaz el","Ġview points","Ġcris py","ĠNot ification","Ġsold er","ĠMod est","ĠHem isphere","Ġcass ette","in cludes","Ġident ifiers","ĠC ALL","in cent","T odd","ĠSwe ep","Ġ3 34","b oss","Ġsm ir","gin x","Ġtown ship","Ġg rieving","ĠMos que","Net flix","AS ED","ĠMillenn ials","oc om","19 67","Ġbold ly","s leep","Ġes che","arij uana","Ġsw irl","ĠPen al","Ġneglig ent","ĠStephen son","K ER","ĠZ oro","ris is","Ġlocal ization","ĠSeym our","ĠAng lic","red itation","prot ection","ĠPa ige","Ġo mit","ĠR ousse","ĠT ub","Ġinv itations","t ty","Ġm oss","ph ysical","C redits","Ġan archy","Ġchild care","Ġl ull","ĠM ek","ĠL anguages","lat est","ĠSan ford","Ġus ability","Ġdiff use","ĠD ATA","Ġsp rites","ĠVeget a","ĠProm otion","ãĥ¼ ãĤ¯","rict ing","z ee","Tur kish","ĠTD s","pro ven","57 1","Ġsmug glers","707 10","Ġreform ed","ĠLo is","Ġun fl","ĠWITH OUT","ĠReturn ing","ann ie","ĠTom as","Fr anc","ĠProf it","ĠSER V","ĠR umble","ik uman","es an","Ġt esters","Ġgad get","Ġbrace let","ĠF SA","comp onent","Ġparamed ics","Ġj an","ĠRem em","ĠSk inner","Ġl ov","ĠQu ake","rom a","Ġfl ask","Pr inc","Ġover power","Ġlod ging","ĠK KK","ret te","Ġabsor bs","w rote","Ġ ,\"","K ings","ĠH ail","ĠFall ing","xt ap","ĠHel ena","ire ns","L arry","Ġpamph let","ĠC PR","G ro","ĠHirosh ima","Ġhol istic","\". [","Ġdet achment","Ġas pire","Ġcompl icit","ĠGreen wood","Ġresp awn","ĠSt upid","ĠFin ished","f al","b ass","Ġab hor","Ġmock ery","ĠFe ast","VID EO","Ġcon sec","ĠHung ry","P ull","ĠH ust","it ance","? ãĢį",") --","ĠPar allel","con v","4 69","ha ar","w ant","P aper","m ins","ĠTor o","ĠTR UMP","ĠR ai","D W","ĠW icked","ĠL ep","Ġfun ky","Ġdetrim ent","ios is","ache v","Ġde grade","im ilation","Ġret ard","Ġfrag mentation","Ġcow boy","ĠY PG","ĠH AL","Parent s","ĠS ieg","ĠStra uss","ĠRub ber","× IJ","Fr ag","Ġp t","Ġoption ally","ĠZ IP","ĠTrans cript","ĠD well","88 2","M erc","ĠM OT","ãĥ¯ ãĥ³","Ġhun ts","Ġexec utes","In cludes","Ġacid ic","ĠRespons ibility","ĠD umb","we i","And erson","ĠJas per","ight on","abs olutely","Ad ult","Ġpl under","Mor ning","ĠT ours","ĠD ane","Î º","ĠT EST","ĠG ina","Ġcan ine","aw an","Ġsocial ists","ĠS oda","Ġimp etus","ĠSupplement ary","oli ath","ĠKinn ikuman","mitted ly","second s","Ġorganis ers","Ġdocument aries","Vari able","GRE EN","Ġres orts","Ġbr agging","Ġ3 68","Art ist","w k","bl ers","Un common","ĠRet rieved","Ġhect ares","Ġtox in","r ank","Ġfaith s","ĠG raphic","Ġve c","ĠL IA","Af rican","Ġard ent","end iary","L ake","ĠD OS","cient ious","ĠOk awaru","ĠAll y","ĠTim eline","D ash","ĠI c","contin ue","Ġt idy","Ġinstinct ively","ĠP ossibly","ĠOut door","ĠWould n","Ġl ich","ĠBr ay","ĠA X","Ġà ī","Ġ+ #","\\ '","Direct ory","ab iding","Ġf eral","ic ative","but t","Ġper verse","S alt","Ġwar ped","Ġnin eteen","Ġcabin ets","Ġsrf Attach","ĠSl oan","Ġpower ing","reg ation","F light","se vere","Ġst ren","Ġc og","ap ache","Ġâ Ŀ","Ġcaf eteria","p aces","ĠGrim oire","uton ium","Ġr aining","Ġcir cling","Ġlineback ers","c redit","Ġrep atri","ĠCam den","lic ense","Ġly ric","Ġdescript or","Ġval leys","Ġre q","Ġback stage","ĠPro hibition","ĠK et","Op ening","S ym","æĸ ¹","Ġserv ings","Ġoverse en","Ġaster oids","ĠMod s","ĠSpr inger","ĠCont ainer","è »","ĠM ens","Ġmult im","Ġfire fighter","pe c","Ġchlor ine","Ð ¼","end i","Ġsp aring","Ġpolyg amy","ĠR N","ĠP ell","Ġt igers","Ġflash y","ĠMad ame","S word","Ġpref rontal","Ġpre requisite","uc a","Ġw ifi","Ġmiscon ception","Ġharsh ly","ĠStream ing","ot om","ĠGiul iani","foot ed","Ġtub ing","ind ividual","z ek","n uclear","m ol","Ġright ful","49 3","Ġspecial ization","Ġpassion ately","ĠVel ocity","ĠAv ailability","T enn","Ġl atch","ĠSome body","Ġhel ium","cl aw","Ġdi pping","XX X","Ġinter personal","7 10","Ġsub ter","Ġbi ologists","ĠLight ing","Ġopt ic","Ġden im","end on","ĠC orm","Ġ3 41","ĠC oup","Ġfear less","Ġal ot","ĠCliff ord","ĠRun time","ĠProv ision","up dated","lene ck","Ġneur on","Ġgrad ing","ĠC t","sequ ence","in ia","con cept","Ġro aring","ri val","ĠCaucas ian","Ġmon og","key es","Ġappell ate","Ġlia ison","EStream Frame","ĠPl um","! .","Ġsp herical","Ġper ished","Ġbl ot","Ġben ches","Ġ4 11","Ġpione ered","Ġhur led","Jenn ifer","ĠYose mite","Ch air","Ġreef s","Ġelect or","ĠAnt hem","65 2","Ġun install","Ġimp ede","Ġbl inking","Ġgot o","Dec re","A ren","Ġstabil ization","ĠDis abled","ĠYanuk ovych","Ġoutlaw ed","ĠVent ura","ten ess","Ġplant ation","Ġy acht","ĠHu awei","Ġsol vent","Ġgr acious","Ġcur iously","Ġcapac itor","Ġc x","ĠRef lex","Ph ys","ĠC f","pt in","cons ervative","Ġinv ocation","c our","F N","ĠNew ly","H our","As ian","ĠLe ading","ĠAer ospace","An ne","Ġpre natal","Ġdeterior ating","H CR","ĠNorm andy","ol ini","ĠAm bro","9 10","Ġset backs","ĠT RE","Ġs ig","ĠSc ourge","59 7","79 8","Game play","Ġm sec","M X","Ġprice y","ĠL LP","aker u","Ġover arching","ĠB ale","Ġworld ly","Cl ark","Ġscen ic","Ġdisl iked","ĠCont rolled","T ickets","ĠE W","ab ies","ĠPl enty","Non etheless","Ġart isan","Trans fer","ĠF amous","Ġinf ield","ble y","Ġunres olved","ĠML A","ãĤ Ĥ","Cor rection","Ġdemocr at","ĠMore no","ro cal","il ings","Ġsail or","Ġr ife","h ung","Ġtrop es","Ġsn atched","ĠL IN","ĠB ib","ES A","ĠPre v","ĠCam el","run time","Ġob noxious","4 37","Ġsum mers","Ġunexpl ained","ĠWal ters","cal iber","Ġg ull","ĠEnd urance","ä½ ľ","Ġ3 47","Ir ish","Ġaer obic","Ġcr amped","ĠHon olulu","à ©","us erc","ec ast","AC Y","ĠQu ery","ãĤ¹ ãĥĪ","Bet a","Ġsuscept ibility","ĠSh iv","ĠLim baugh","Ġà ĸ","ĠN XT","ĠM uss","ĠBrit ons","ES CO","EG IN","Ġ% %","Ġsec ession","ĠPat ron","ĠLu a","n aires","ĠJPM organ","us b","ocy te","Ġcouncill ors","ĠLi ang","f arm","Ġnerv ously","Ġattract iveness","ĠK ov","j ump","Pl ot","Ġst ains","ĠStat ue","ĠApost les","he ter","ĠSUP PORT","Ġoverwhel m","Y ES","Ġ29 1","d ensity","Ġtra pping","M it","Ġf ide","ĠPam ela","atl antic","Dam n","Ġp ts","OP A","Ġserv icing","Ġoverfl owing","ul o","ĠE rit","t icket","light ing","ĠH mm","ãĥ¼ ãĥ«","im oto","Ġchuck le","4 23","ãģ ķ","sh ape","Ġque ues","Ġanch ors","ãĤ¼ ãĤ¦ãĤ¹","F er","Ġaw oke","Ġ6 66","h ands","Ġdiver gence","Ġ50 5","T ips","Ġdep ot","Ġske w","ĠDel iver","op ot","Ġdiv ul","ĠE B","uns igned","ĠUn i","X box","Ġfor ks","Ġ7 02","å ¯","Ġpromot ers","ĠV apor","Ġlev ied","sl ot","Ġpig ment","Ġcyl inders","C RE","Ġsn atch","Ġperpet ually","Ġl icking","ĠFe et","ĠKra ken","ĠHold en","ĠCLS ID","m r","Ġproject or","Ġden otes","Ġchap el","ĠTor rent","b ler","R oute","ĠDef endant","ĠPublisher s","ĠM ales","ĠInn ov","ĠAg ility","rit er","ty mology","st ores","L ind","Ġf olly","ĠZur ich","B le","Ġnurt ure","Ġcoast line","uch in","D omin","Ġfri vol","ĠCons olid","res ults","M J","Ġphyl ogen","Ġha uled","ĠW iley","ĠJess ie","ĠPrep are","ĠE ps","Ġtreasure r","I AS","Ġcolon ists","Ġin und","ĠWW F","ĠCon verted","6 000","out side","ĠApp earance","ĠRel ic","ĠM ister","s aw","Ġresult ant","Ġadject ive","ĠLaure l","ĠHind i","b da","Pe ace","Ġreb irth","Ġmembr anes","Ġforward ing","Ġcoll ided","ĠCar olyn","K ansas","5 99","ĠSolid GoldMagikarp","Be ck","Ġstress ing","ĠGo o","ĠCooper ative","Ġf s","ĠAr chie","L iter","ĠK lopp","J erry","Ġfoot wear","War ren","Ġsc ree","h are","Under standing","P ed","Ġanth ology","ĠAnn ounce","M ega","Ġflu ent","Ġbond age","ĠDisc ount","il ial","C art","ĠNight mares","Sh am","ĠB oll","uss ie","H ttp","Atl anta","Ġun recogn","ĠB id","Ġunder grad","Ġforg iving","ĠGl over","AAAA AAAA","4 45","V G","pa io","kill ers","Ġrespons ibly","Ġmobil ize","Ġeffect ed","ĠL umin","Ġk ale","Ġinfring ing","ann ounced","Ġf itt","b atch","ĠT ackle","ĠL ime","ĠAP P","uke mia","Ġrub y","Ġex oner","ĠCas ual","0 70","Ġpel vic","Ġautom ate","ĠK ear","ĠCoast al","Ġcre ed","Ġbored om","ĠSt un","ri ott","Ĥ İ","Ġregener ate","Ġcomed ians","ĠOP ER","Sp ons","id ium","on is","L ocated","05 7","Ġsusp ense","ĠD ating","C ass","Ġneoc ons","ĠShin zo","Ġaw oken","ch rist","ĠMess ages","att led","ĠSpr ay","ĠSp ice","C W","Ġshield ing","ĠG aul","Am id","Ġparam ilitary","Ġmult if","ĠTan ner","il k","Ġgodd amn","g ements","Ġbe friend","m obi","Ġ3 88","fold er","acc a","Ġins in","g ap","N ev","fif th","Ġpsychiat ry","b anks","TH IS","Ġhar b","ac qu","Ġfac ade","ĠPower Point","80 3","Ġbl uff","Sh ares","Ġfavor ing","El izabeth","Ãį Ãį","Ġr anger","77 2","ĠAr che","h ak","ĠGen etics","ĠF EMA","Ġev olves","Ġest e","ĠP ets","ĠM é","ĠInterest ing","ĠCanter bury","ch apter","ĠStar fleet","Sp anish","Ġdraw back","ĠNor wich","9 70","n orth","ag anda","Ġtransform ative","ram ids","bi ology","ad ay","Ġpropag ation","ĠGam ma","ĠDen ise","ĠCalcul ator","ent imes","ĠB ett","Ġapp endix","ĠHD D","AK ING","Ġst igmat","Ġhol ster","Ġord inarily","Ch ance","ĠCont rary","Ġad hesive","Ġgather s","6 12","re au","ony ms","ew ays","Ġindu ces","Ġinterchange able","se m","Wh it","Ġtr ance","Ġincorpor ation","ĠExt ras","Fin ancial","Ġawkward ly","ĠStur geon","ĠH Y","Norm ally","ĠEnd ing","ĠAss ist","enc rypted","Ġsub jug","Ġn os","Ġfan atic","C ub","C U","?\" .","Ġirre versible","å Ĥ","03 1","ĠH AR","sp read","ul ia","= $","Sc ope","L ots","Ġlif estyles","ol on","Ġf eds","Ġcongrat ulate","web kit","Ġindist inguishable","ĠSw ing","Ġcommand ments","qu ila","ab ella","m ethyl","ann abin","Ġo vere","Ġlob ster","ĠQU EST","ĠCONT IN","bern atorial",":::: ::::","ĠTra ve","ĠSam oa","AN I","75 2","Ð ´","userc ontent","ĠMod erate","y eah","ĠK itt","Ġwe e","Ġstuff ing","ĠInter vention","ĠD ign","Ġware houses","ĠF iji","Ġpel lets","Ġtake away","ĠT ABLE","ĠClass ical","col lection","Ġland fall","ĠMus cle","Ġsett les","ĠAD V","Ġ3 44","L aura","Ġf ared","ĠPart ial","4 36","oss ibility","ĠD aly","ĠT arant","ĠFu ji","am l","c ence","55 1","ĠProced ures","ĠO CD","ĠU D","t in","Q UI","ach o","4 38","Ġgl itches","Ġenchant ment","Ġcalcul ates","IR O","ĠH ua","alys es","ĠL ift","um o","Ġle apt","Ġhypothes ized","ĠGust av","it ans","VERS ION","æ ł","Rog er","Ġr and","ĠAd apter","Ġ3 31","ĠPet ition","k ies","M ars","Ġunder cut","ze es","ĠLy ons","ĠDH CP","Miss ing","Ġretire es","Ġins idious","el i","> )",". ãĢį","Ġfinal ists","ĠA ure","Ġacc user","Ġwas tes","ĠY s","ĠL ori","Ġconstitu encies","Ġsupp er","Ġmay hem","or ange","Ġmis placed","Ġmanager ial","Ġex ce","ĠCL I","Ġprim al","ĠL ent","Cry stal","h over","ĠN TS","end um","Ġd w","ĠAl c","n ostic","Ġpres erves","ĠTs arnaev","Ġtri pled","rel ative","Arc ade","k illing","ĠW EEK","ĠH anna","D ust","Com pleted","ģ «","Ġappro ves","ĠSur f","ĠLuther an","ven ants","Ġrobber ies","we ights","soft ware","at ana","ug al","Ġgrav y","ĠC ance","OLOG Y","ly ak","Ton ight","Ġunve il","Ġ19 04","ĠMin ion","ent ious","st ice","pack ages","ĠG EAR","Ġg ol","ĠHutch inson","ĠProf ession","ĠG UN","ĠDiff erence","ĠTsuk uyomi","ĠLes bian","6 70","Ġfug itive","ĠPlan etary","-------------------------------- ------------------------","Ġacc rued","Ġch icks","Ġsto pp","Ġblock ers","C od","Ġcomment ers","ĠSomew here","ĠPhot ographer","the me","Ġmay oral","w u","Ġanten nas","Ġrev amped","ĠSubject s","it é","im ura","Ġentr ances","liter ally","Ġten ets","ĠO MG","ĠMP H","ĠDon key","ĠOff ense","Ġ\" +","Sn ap","ĠAF B","Ġan imate","ĠS od","His panic","Ġinconsist ency","D b","F Y","Ex port","Ġa pe","Ġpear l","ib el","ĠPAC s","Ġ{ \\","Ġact u","ĠHS BC","camp us","Ġpay off","Ġde ities","ĠN ato","ou ple","Ġcens ored","ĠCl ojure","Ġconf ounding","en i","Ġreck on","op he","Ġspot ting","Ġsign ifies","Ġprop el","Ġfest ive","S uggest","Ġpled ging","ĠB erman","Ġrebell ious","Ġovershadow ed","Ġinfiltr ated","j obs","67 2","Ġscal able","Ġdomin ion","ĠNew foundland","ĠMead ow","Ġpart itions","AM I","Ġsupplement ary","str ument","Ġhair y","Ġperpet uate","Ġnuts hell","ĠPot ato","ĠHob bit","Ġcur ses","Flo at","Ġquiet er","Ġfuel ing","Ġcaps ules","ĠL ust","ĠH aunted","Exec utive","Ġchild birth","G re","Ġrad iant","å İ","Ġm alls","Ġin ept","ĠWarrant y","Ġspect ator","E h","t hens","Ġculmin ating","æ ©","ary a","ãĤ ®","ilit arian","ĠOR IG","ĠSp ending","pt ives","ĠS iren","ĠRec ording","ay ne","Ġv im","Ġspr ang","T ang","ĠM FT","mor ning","ĠWe ed","m peg","cess ion","ĠCh ung","7 30","w arning","56 2","handed ly","P oor","P olitics",": #","Ġp ian","Ġfec es","ĠDocument ation","Ġban ished","Ġ3 99","ĠAR C","Ġhe inous","J ake","ĠAm ir","way ne","v re","os henko","Ġnotebook s","Ġfound ational","Ġmarvel ous","ixt ape","Ġwithdraw als","Ġh orde","ĠD habi","is able","ĠK D","Ġcontag ious","ĠD ip","ĠAr rows","Ġpronoun s","Ġmorph ine","ĠB US","68 2","Ġk osher","fin ished","ĠInstr uments","Ġf used","yd en","ĠSal mon","F ab","aff ected","K EN","C ENT","Dom ain","Ġpoke mon","ĠDr inking","G rowing","ĠInvestig ative","ĠA ether","em i","Ġtabl oid","Ġrep ro","ĠNot withstanding","ĠBers erker","Ġdram as","Ġclich é","Ġb ung","ĠU RI","ĠD os","0 44","Ġpast ors","Ġl s","Ġac rylic","aun ts","Ed ward","Ġmajor ities","B ang","Ġfield ing","ĠRepl acement","ĠAl chemy","pp ard","ĠRome o","ĠSan ct","ĠLav rov","ib ble","Inst ruct","Ġimp ractical","ĠPlay boy","ce phal","Ġsw aps","Ġk an","ĠThe o","Ġillust rating","Ġdismant led","ĠTrans gender","ĠG uth","UG H","Ġtriumph ant","Ġencomp ass","Ġbook mark","udd in","j er","Ġpred icate","ES H","Ġwhen ce","ĠAB E","Ġnon profits","Se qu","Ġdi abetic","Ġp end","Ġheart felt","sh i","Ġinter acts","ĠTele com","Ġbombard ment","dep ending","ĠLow ry","ĠAd mission","ĠBl ooming","ust ration","ene gger","B rew","Ġmol ten","ĠNer d","P IN","âĸ Ģ","ave ment","Ġtou red","Ġco efficients","ĠTray von","ans son","Ġsand y","t old","fl ows","Ġpop ulous","ĠT inder","ĠBl iss","R achel","Min imum","Ġcontest ant","ĠRed uce","ĠMor se","ĠGrass ley","ĠClick er","Ġexp r","Ġs incerity","Ġmar qu","Ġelic it","ĠPro position","ĠDemon ic","Ġtac os","G reek","Ġpost war","Ġin sofar","ĠP ork","Ġ35 2","doctor al","walk ing","Ġmid term","ĠSam my","sight ed","ĠTR ANS","ic i","AL D","ĠUS L","ĠF ISA","ĠAm pl","ĠAlex andra","ine lli","Tr ain","Ġsign ify","ĠVers us","Ġob fusc","Ġk h","Ġagg ro","ĠRen ault","Ġ3 48","5 18","ox icity","0 22","ĠTw ist","Ġgoof y","D ynamic","Ġbrief ings","m ight","8 99","Ġderog atory","T ro","Ġfor ging","ĠKor an","ĠMar ried","ĠBuc s","Ġpal ate","ĠCon version","m able","4 13","Ġ( _","Ġs iph","ĠN EO","col lege","Ġmarg inally","Ġfl irt","ĠTra ps","ĠP ace","é »Ĵ","Ġgoalt ender","Ġforb ids","Ġcler ks","ĠT ant","ĠRobb ins","ĠPrint ing","Ġpremie red","Ġmagn ification","ĠT G","ĠR ouse","ĠM ock","odynam ics","Ġpre clude","ism o","ĠPul itzer","Ġaval anche","ĠK odi","rib une","ĠL ena","Elect ric","Ġref inery","Ġend owed","Ġcounsel ors","Ġd olphin","ĠM ith","Ġarm oured","hib ited","Beg in","ĠP W","O il","ĠV or","ĠShar if","ĠFraz ier","est ate","Ġj ams","Pro xy","Ġband its","ĠPresbyter ian","ĠPrem iere","t iny","ĠCru el","Test ing","Ġhom er","ĠV ERS","ĠPro l","ĠDep osit","ĠCoff in","Ġsemin ars","Ġs ql","ĠDef endants","Altern atively","ĠR ats","ç «","ethy st","' >","Ġiss uer","58 9","Ġch aired","ĠAccess ories","man ent","Ġmar row","ĠPrim ordial","C N","Ġlimit less","ĠCarn age","Ġund rafted","q v","IN ESS","on ew","Ġco hesion","98 7","Ġne cks","Ġfootball er","ĠG ER","Ġdetect able","ĠSupport ing","ĠCS V","oc ally","k Hz","Ġund e","Ġsh one","Ġbud ding","tra k","Stand ing","ĠStar craft","ĠKem p","Ben ch","Ġthw arted","ĠGround s","ath i","L isa","Dial og","ĠS X","V ision","Ġingen ious","Ù IJ","Ġfost ering","ĠZ a","ĠIn gram","Ġ\" @","N aturally","6 16","0 35","ĠF AC","H mm","55 4","Ġacceler ator","ĠV end","Ġsun screen","Ġtuber culosis","rav iolet","ĠFunction al","ĠEr rors","ed ar","19 66","ĠSpect re","ĠRec ipes","88 5","ĠM ankind","L iverpool","Ġ| --","Ġsubst itutes","ĠX T","w ired","Ġinc o","ĠAf gh","E va","ic c","S ong","K night","Ġdilig ently","ĠBroad cast","A id","Ġaf ar","ĠH MS","aton in","ĠGr ateful","Ġfire place","ĠOm ni","e uro","ĠF RE","ĠSh ib","ĠDig est","t oggle","Ġheads ets","Ġdiff usion","ĠSqu irrel","ĠF N","Ġdark ened","out her","Ġsleep s","ĠX er","gun s","Ġset ups","Ġpars ed","Ġmamm oth","ĠCur ious","g ob","ĠFitz patrick","ĠEm il","im ov","........ .....","ĠB enny","Second ly","Ġheart y","Ġcons on","st ained","Ġgal actic","cl ave","Ġplummet ed","Ġp ests","Ġsw at","Ġrefer rals","ĠLion el","h oly","Ġunder dog","ĠSl ater","ĠProv ide","ĠAm ar","ress or","å Į","ong a","Ġtim id","Ġp iety","ĠD ek","Ġsur ging","az o","Ġ6 10","Ġdes ks","ĠSp okane","ĠAn field","Ġwars hips","ĠCob ra","Ġar ming","clus ively","ĠBad ge","ag ascar","ĠPR ESS","ĠMcK enzie","ĠFer dinand","burn ing","Af ee","Ġtyr ann","ĠI w","ĠBo one","100 7","ĠRe pt","Ċ Âł","Ġcar avan","ĠD ill","ĠBundes liga","Ch uck","Ġheal er","ãĥ¼ãĥ Ĩ","ĠH obby","Ġneg ate","Ġcrit iques","section al","mop olitan","Ġd x","Ġouts ourcing","ĠC ipher","t ap","Sh arp","Ġup beat","Ġhang ar","Ġcru ising","ĠNi agara","Ġ3 42","ill us","ĠS v","Ġsubt itles","Ġsqu ared","Ġbook store","Ġrevolution aries","ĠCarl ton","ab al","Ut ah","Ġdesp ise","ĠU M","cons ider","aid o","Ġc arts","ĠT urtles","Tr aining","Ġhonor ary"," ¢","Ġtri angles","4 22","Ġreprint ed","Ġgrace ful","ĠMong olia","Ġdisrupt ions","ĠB oh","Ġ3 49","Ġdr ains","Ġcons ulate","Ġb ends","Ġm afia","ur on","ĠF ulton","m isc","Ġren al","Ġin action","ck ing","Ġphot ons","Ġbru ised","ĠC odes","og i","Ġn ests","ĠLove ly","ĠLib re","ĠD aryl","Ġ# ##","S ys",". ,\"","Ġfree zes","est ablishment","and owski","Ġcum bers","ĠSt arg","ĠBom bs","Ġleg ions","Ġhand writing","Ġgr un","ĠC ah","sequ ent","Ġm oth","ĠMS M","Ins ert","F if","Ġmot el","Ġdex ter","ĠB ild","hearted ly","Ġpro pe","ĠText ure","ĠJ unction","ynt hesis","oc ard","ĠVer a","ĠBar th","Ġμ g","Ġl ashed","Ġ35 1","ĠZ amb","ĠSt aples","ĠCort ex","ĠCork er","Ġcontinu um","ĠWR ITE","unt a","rid or","Ġde ems","0 33","ĠG OLD","p as","Ġrep ressive","ãĥĨ ãĤ£","Ġbaff led","Sc ar","Ġc rave","Ġ ______","Ġentrepreneurs hip","ĠDirector ate","Ġ' [","Ġv ines","Ġasc ended","ĠGR OUP","ĠGood bye","Ġdo gged","ãĥ´ ãĤ¡","Man ufact","Ġunimagin able","ri ots","ier rez","Ġrel ativity","ĠCraft ing","ra ught","ud en","c ookie","Ġassass ins","Ġdissatisf ied","ac ci","Ġcondu it","Sp read","ĠR ican","n ice","izz le","Ġsc ares","ĠWH Y","ph ans","5 35","Ġprot racted","ĠKrist en","5 36","ĠSc rib","ĠNe h","Ġtwent ies","Ġpredic ament","Ġhandc uffs","Ġfruit ful","ĠU L","ĠLud wig","Ġatt est","ĠBre aker","Ġbi ologically","ĠDeal er","Ġrenov ations","f w","ess en","Al ice","ĠHen ri","Ġun ilaterally","ĠS idd","h ai","ĠSt retch","S ales","Ġcumbers ome","ĠJ avier","Ġtrend y","Ġrot ting","ĠChall enges","Ġscra ps","Ġfac ets","ĠVer onica","ĠVer ge","ĠS ana","Al ien","ĠR ih","Ġrad ial","ect ar","Ġ6 30","cl i","Mar ie","Ġwild fire","ĠCat o","h ander","Ġwait ress","Ġch ops","ĠS ECTION","Ġblunt ly","ĠCat alog","n ian","stud y","Ġpat rolling","ĠT enth","nex us","ĠN ON","op sy","Ġsc athing","s ie","Ġdeterior ated","V B","Naz is","Ġdep ictions","Ġauthent icated","ĠCon ce","k rit","Ġpromul g","ĠL ONG","U FC","ĠVis itors","ĠRec all","Ġrehab ilit","ĠSL I","Ġglac ier","ĠB ite","Ġ50 3","Ġvom it","Ġfer mented","ĠKh alid","Ġgrad ed","ĠMag icka","ĠIch igo","power ful","ic ators","75 3","Ġsh rew","Ġ35 6","Ġlegal izing","Ġall otted","ĠArch demon","ith ing","igg urat","V OL","Le od","Ġo ily","Ġindu cing","Ġamy gdala","Ġadm ins","ĠAcqu isition","C AN","Ġsche matic","Ġmo an","ĠCamer oon","Ġt ink","Ġmer ry","Ġbutter flies","ĠGo ff","Ġworks pace","ĠCor ona","Ġj avascript","ĠD olphin","ĠCant or","4 64","to e","AP S","ĠAg ing","Ġpadd ed","ĠZ heng","ĠHe ld","Ġest ranged","Ġ7 70",". }","ĠDun ham","Ġsm okes","Ġcap itals","und ai","Sh in","ĠFound ing","Ġent itle","Ġcenter piece","D iscover","Ġthere to","al ert","ĠN ou","ĠAnaly st","l c","F H","FI ELD","ĠP OV","gr ay","Ġar cs","ĠH OT","Ġr s","Ġoblig atory","ĠArchitect s","ĠS ven","ĠF EC","0 200","Christ mas","ĠAlban ia","rat om","58 7","Ġhard ships","Ġaut os","ĠCharg es","Ġap es","Ġ3 76","wal let","Ġintox ication","Ġgobl in","Ġ5 70","++++++++ ++++++++","ĠYel p","ĠMag netic","ĠBr iggs","R ail","Ġspawn s","ĠW iggins","Ġshowc ased","Ġres orted","ub en","Ġwh ipping","Ġim itate","Ġdigest ion","ĠUS PS","ĠG est","Ġye a","ĠT ight","ind al","ic as","` .","C AST","'' ;","ĠF et","opath ic","In valid","Ġregrett ed","Ġbro ccoli","ĠSc ores","e ve","Ġpost ings","Ġaccum ulating","Ġneed less","elf th","Ġmay ors","Ġsc rib","Ġanecd otes","Ġbot ched","ĠRib bon","ĠConstant ine","i uses","ess es","Ġdev ise","Comp ared","Ġp udding","Ġg arg","Ġev oke","79 7","Ġdet ox","9 09","ĠPie ces","ĠMcC artney","Ġmet ast","ĠK rypt","P OR","Ġt ending","ĠMerch ants","Pro of","ĠV arg","ĠPort able","ãĥ¼ãĥĨ ãĤ£","B rain","25 00","Ġfol iage","Ø ¹","Ġment ors","ĠA ires","Ġminimal ist","Ġing ested","ĠTro jan","ĠQ ian","inv olved","0 27","Ġer oded","RA FT","Ġbl urry","M ob","Ġbuff et","ĠFn atic","ae a","KN OWN","ĠIn it","s afety","en um","ACT ION","ĠCrus her","ĠD ates","Ġ ................","c alling","ak ov","Ġvent ured","Ġ5 55","au ga","H art","ĠA ero","M AC","Ġthin ly","Ġar ra","ST ATE","ild e","ĠJac qu","ĠFem ales","Ġthe orem","Ġ3 46","Ġsmart est","ĠPU BLIC","ĠK ron","ĠB its","ĠV essel","ĠTele phone","Ġdec ap","Ġadj unct","ĠS EN","mer ga","Ġred acted","Ġpre historic","Ġexplan atory","ĠRun s","ĠUtt ar","ĠM anny","ĠAUTH OR","ĠUnle ashed","ĠBow ling","be ans","79 3","Ġunivers es","Ġsens it","ĠK ung","re peat","ctr l","Ġp aced","Ġfull er","Cl ock","Ġrec omb","ĠF aul","ĠB unker","Ġpool ed","Ġan a","ĠM outh","LL OW","hum ane","Ġbull do","ĠMicha els","f am","Ġwreck ed","Ġport rays","ĠWh ale","ĠH es","Ġguess es","ĠBrow se","ĠL APD","Ġconsequ ential","ĠInn ocent","ĠD RAG","Ġtrans gress","ĠO aks","Ġtri via","ĠRes on","ĠA DS","-- +","ĠT oll","Ġgrasp ing","ĠTHE M","ĠT ags","ĠCon clusion","Ġpract icable","Ġho op","Ġunintention ally","Ġign ite","ĠM ov","ur ized","le hem","Ter min","Ġcolour ful","ĠLin ear","ĠEll ie","G y","Ġman power","Ġj s","Ġem oji","ĠSHAR ES","_ .","0000 7","Ġsophistic ation","Ġunders core","Ġpract ise","Ġbl ob","op ens","Uk raine","Ke eping","Y C","J R","ult imate","Cl aim","Ġautom obiles","99 3","ste el","Ġpart ing","ĠL ank","... ?","Ġ38 5","Ġremem brance","Ġe ased","Ġcov ari","ĠS ind","Effect ive","Ġdisse mination","ĠMo ose","ĠCl apper","br ates","App ly","Ġinv is","Ġwors ened","âĢĶ -","Ġlegisl ator","ĠL ol","ĠRow e","Ġdealers hip","um ar","id ences","Ġinvestig ates","Ġc ascade","Ġbid der","ĠB EN","Iron ically","Ġpres iding","Ġd ing","Ġcontrad icted","Ġshut s","ĠF IX","Ġ3 66","Dist rict","Ġsin ful","ĠChar isma","o ops","Ġtot ality","Ġrest itution","ĠOpt imus","ĠD ah","Ġcl ueless","urn ed","Ġnut rit","Ġland owners","Ġfl ushed","Ġbroad en","m ie","Ġprint ln","Ġn ig","ĠCorp us","J en","Ġprot o","ĠWik imedia","ĠPal o","C OR","Ġstory lines","Ġevangel icals","ĠDar rell","Ġrot or","ĠH W","sk illed","ery l","Ġbe gg","ĠBl umenthal","Ġwe aving","Ġdown wards","ĠJack et","ĠANG EL","Te chnology","Ġes oteric","alde hyde","Ġfur iously","Ġforeign er","We ak","CH O","ĠH ound","Exper ience","ĠPlay station","ĠM IA","ĠU ng","cl oth","ag all","Ġcal ming","iz ens","St ruct","ĠW itches","ĠCeleb ration","Ġ........ ......","pt roller","ĠTC U","Ġb unny","ãĥ į","ut orial","Ġup scale","ĠSt a","ĠCol ossus","Ġchlor ide","ĠZ ac","ĠRe asons","ĠBrook ings","ĠWH ITE","][ /","ĠL ose","9 05","Ġunders ide","ern els","Ġv ape","do zen","upp et","ĠST OP","mat ical","ĠStat ements","hed dar","P AC","Custom er","Ġmem os","ĠP J","end ars","ĠLim its","l augh","Ġstabil ized","ĠALE C","Y A","Up grade","al am","Ġtechn o","Ġan ew","fore seen","Ġcolleg iate","ĠPy ro","ĠD ism","Ġfront line","Ġammon ia","I U","Qu ite","John ny","ass in","G OP","ĠSt yles","ĠSovere ign","acter ial","5 49","ĠR IP","ĠL ists","Ġ3 64","ĠRece p","s ocket","ĠByr d","ĠCand le","An cient","Ġappell ant","en forcement","ace a","ans ki","Ġold s","88 6","Ġsl urs","Ġem pires","Ġbuck le","Ġalien ation","ĠAber deen","Ġunic orn","Ġoverr iding","ĠL X","pp a","Ġdesp ised","ĠB ugs","ĠB ST","S outhern","5 33","Ġhall mark","ĠPost er","Ġstem med","Ġprincip als","ĠT ECH","ĠSand wich","It aly","Ġche esy","ĠSet TextColor","ĠProt ective","ĠC ohn","J O","apt op","Re ason","Lead er","ĠUnder stand","ĠFr idays","ĠContin uous","Ġcl ipping","ĠR ye","Ġber th","tim er","ann is","re act","Ġbuff alo","ĠPar as","Ġ6 55","Ġpres ided","ĠSun rise","Ġve ts","Ġcl oves","ĠMcC ull","Stre ngth","G AN","Ġill iter","ĠPric ing","l é","Ġresist or","Ġbr un","ĠSuff olk","Ñ ĭ","ĠL iver","Re leased","Ġwhat s","8 60","ĠMe asures","Ġden ouncing","ĠRy zen","Ġsou ven","Ġcareg ivers","ch ini","ĠScar lett","Ġt rough","Cong ratulations","Ġtax is","ĠTrad ition","j it","Ġtable top","Ġhither to","Ġdis information","off ensive","h ra","ĠDISTR ICT","Ġcompl icate","chen ko","ĠRecon struction","Ġpalp able","Ġa usp","Ġ4 28","Ġshowc ases","ĠPublic ation","know ledge","inn on","4 19","Ġretri eval","and ers","Ġref ute","Ġinqu ired","g ur","Ġneg ativity","Ġcons erve","Ġafter life","Ġpres upp","ĠGill espie","Ġm t","ĠD N","T ap","Ġper pend","ĠS my","does n","Ġsp illing","Ġhyp ers","K ate","® ,","ke pt","ĠP owered","Ġj a","ĠK lux","ard e","ab an","Ġ4 44","Ġflatt ened","ĠImprove ments","urg a","ĠK und","Ġins cribed","Ġfac ult","Ġunpre pared","ĠCons umers","Ġsatisf ies","Ġpul monary","Ġinf iltration","Ġex ternally","Ġcongrat ulations","ag han","Ġair liner","Ġfl ung","Ġfly ers","G D","Ġsnipp ets","Ġrec ursive","Ġmaster ing","L ex","Ġovert ly","v g","Ġluck ily","Ġenc ro","ĠLanc et","ĠAbyss al","function al","Ġs ow","Ġsqu id","Ġnar ration","Ġn aughty","ĠHon our","ĠSpart ans","Ġsh atter","ĠTac oma","ĠCal ories","ĠR aces","Sub mit","Ġpurpose fully","w av","ĠY ok","F est","ĠG err","Met ro","Ġit iner","f amous","Ġ\" {","in line","was her","Iss ue","ĠCL IENT","oz o","Vers ions","7 25","ĠGl ock","Ġshield ed","ĠPC R","ENC Y","ĠWe ld","ĠSim pl","Ġredirect ed","ĠK ham","Ġ( >","Ġlab ou","Ġdi apers","ss l","Ġcell ar","organ isms","ore sc","ĠBer ks","did n","Sh ipping","C hest","Ġund one","Ġmillion aire","Ġc ords","ĠYoung er","appropri ately","Ġsequ els","u ve","ant icipated","Ġle wd","ĠSh irt","ĠDmit ry","V eter","Ġsl aying","ĠY ar","Ġcompl ication","I owa","ĠEric a","ĠBL M","g irlfriend","b odied","6 26","19 63","Ġintermedi ary","Ġcons olation","M ask","ĠSi em","ow an","Beg inning","Ġfix me","Ġculmin ated","Ġcon duc","ĠVolunte er","Ġpos itional","Ġgre ets","ĠDefin itions","Ġthink er","Ġingen uity","Ġfresh men","ĠMom ents","Ġ35 7","ate urs","ĠFed Ex","s g","69 4","Ġdwind ling","ĠBO X","sel age","Ġt mp","Ġst en","ĠS ut","Ġneighbourhood s","Ġclass mate","f ledged","Ġleft ists","Ġclim ates","ATH ER","ĠScy the","ul iffe","Ġs ag","Ġho pped","ĠF t","ĠE ck","ĠC K","ĠDo omsday","k ids","Ġgas ped","Ġmon iker","ĠL od","ĠC FL","t ions","r ums","fol ios","Ġm d","Ġunc anny","Ġtrans ports","ĠLab rador","Ġrail ways","Ġappl iance","ĠCTR L","æ Ģ","Pop ulation","ĠConfeder acy","Ġunb earable","Ġdors al","ĠIn form","op ted","ĠK ILL","Mar x","Ġhypoc ritical","q us","ĠN umerous","ĠGeorg ian","ĠAmbro se","ĠL och","Ġgu bernatorial","ĠX eon","ĠSupp orts","ens er","ee ly","ĠAven ger","19 65","Ar my","Ġju xtap","Ġcho pping","ĠSpl ash","ĠS ustainable","ĠFin ch","Ġ18 61","ict ive","at meal","ĠG ohan","Ġlights aber","ĠG PA","ug u","ĠRE PL","vari able","Ġher pes","Ġdesert s","ac iously","Ġsitu ational","week ly","ob l","Ġtext ile","ĠCorn wall","Ġcontrace ptives","ĠA ke","] -","ä¹ ĭ",": ,","ĠW em","ĠB ihar","Ġ' .","Ġbe re","Ġanal ogue","ĠCook ies","Ġtake off","Whe el","Ġmaj estic","Ġcomm uting","0 23","ĠCor pse","ass ment","min i","Ġgor illa","ĠAl as","ere e","Ġacquaint ances","ĠAd vantage","Ġspirit ually","Ġey ed","pm wiki","ĠE nder","Ġtrans lucent","Ġnight time","ĠIM AGES","5 45","ĠK amp","ĠFre ak","Ġ ig","Port land","4 32","ĠM ata","Ġmar ines","Ġh ors","ater asu","ĠAtt ribution","Ġ-------- -","Ġk ins","ĠBEL OW","++ +","Ġre eling","ol ed","Ġcl utter","ĠRel ative","Ġ4 27","B US","Ġa vert","ĠChe ong","ĠA ble","ĠPry or","Develop er","Ġen cyclopedia","ĠUSA F","ĠG arry","Sp ain","Bl ocks","Ġexp osition","ĠGamer Gate","W OR","Ġstockp ile","Ġclot hed","ĠT one","ĠR ue","t umblr","Ġtreacher ous","Ġf rying","Ñ Į","ĠS ph","Ġrest raints","Ġemb odies","ĠG es","S afety","Ġnegoti ators","min ing","ĠAppalach ian","L OS","ĠJenn a","Ġpass ers","ç ĭ","sn ap","Ġshort en","creat or","Ġinn umerable","uther land","67 4","ĠW OM","ĠAs cend","ĠArm ory","ĠTrans action","K ick","Ġsuit case","day Name","Ġwaste ful","mar riage","ĠMcC abe","ite ch","ĠO ss","Cl osure","ĠTreasure r","Ġindec ent","ĠD ull","Ġresid ences","19 59","ĠS ettlement","Ham ilton","Ġself ies","ĠRank ing","ĠBark ley","ĠB ore","ĠW CS","ĠMar itime","ĠH uh","ĠForest ry","Ġcultiv ating","ĠBall ard","Ġg arrison","ĠSD L","9 30","Ġnas cent","Ġirresist ible","Ġaw fully","\\/ \\/","Ġequ ate","Ġanthrop ology","ĠSylv ia","Ġintest ine","Ġinnoc uous","cess ive","ag ra","ĠMet roid","G rant","8 55","ģ ĸ","Ġ\" _","ãĥĥ ãĥī","Ġappra isal","ĠFred dy","04 6","Ġ40 6","Ġ18 30","Ġd ocking","St atic","Ġp ont","ĠVolt age","ĠSt ead","ĠMort gage","ĠJon ah","Y L","CLASS IFIED","Ġas bestos","nik ov","Ġcoll agen","ĠOrb ital","P ocket","7 99","Ġhy brids","inc hes","Ġinv oice","und y","Ġinequ alities","T rend","w ashed","B ALL","Ġluc id","ĠComment ary","Ġw itty","Br andon","Ġbru ising","Ġ6 20","es cent","box ing","P OL","Ġ3 78","R ect","Ġlic ences","ĠMcG ee","p ressed","D anny","Ġj ammed","ord inate","Ġle th","Ġdistingu ishes","ĠYam aha","IL S","ĠH ume","ĠC ategories","Rober ts","Ch art","Ġbeet le","ĠGra veyard","Ġ($ )","o ÄŁ","Ġtw ilight","are lla","á ½","Ġbooth s","ĠH HS","ĠFeld man","Ġexcav ation","Ġphilosoph ies","at ography","ĠGar age","te chnology","Ġunfor gettable","Ġver ifying","Ġsubord inates","E ls","Ġne b","G aming","EN A","ĠAchieve ment","it ters","ĠG abe","Ġd umps","for cer","Ġpo ignant","ĠM BA","ĠHe idi","ime i","Ġm ages","Ġliber ate","Ġcircum cised","ĠMer maid","ĠMat th","t ogether","ĠW ichita","Ġstore front","ĠAd in","V II","Four th","Ġexplore rs","W ER","Not able","Bro ok","m ens","F aith","-------- -","ĠJ ou","¬ ¼","Ġpine apple","Ġam alg","el n","ark able","ĠãĤµ ãĥ¼ãĥĨãĤ£","ĠãĤµãĥ¼ãĥĨãĤ£ ãĥ¯ãĥ³","Ġov arian","ĠE choes","Ġhairc ut","Ġp av","Ġch illed","anas ia","Ġsty led","Ġd ab","ni per","Ġminister ial","ĠD UP","T an","Ġsul ph","ĠD eter","ĠBo hem","od an","Ġeduc ator","â ĵĺ","sp ir","Ch icken","ĠE leanor","Ġqu i","Ġheav iest","Ġgrasp ed","U RA","Ġcro oked","Jess ica","pro blem","Ġpred etermined","Ġman iac","Ġbreath s","ĠLauder dale","Ġh obbies","y z","Cr ime","Ġcharism a","d L","Ġle aping","Ġk ittens","Ang elo","ĠJ ACK","ĠSu zanne","Ġhal ting","ENT ION","Ġswall owing","ĠEarthqu ake","Ġeight eenth","ĠN IC","ĠIN F","ĠCons cious","Ġparticular s","circ le","7 40","Ġbene volent","Ġ7 47","Ġ4 90","Ġr undown","ĠVal erie","ĠB UR","Ġcivil isation","ĠS chn","W B","ot ide","intern ational","Ġj ohn","Ġ19 02","Ġpe anuts","Ġflav ored","k us","Ġro ared","Ġcut off","é £","Ġorn ament","Ġarchitect ures","Ġ3 69","ol or","ĠWild e","ĠC RC","ĠAdjust ed","Ġprov oking","land ish","Ġrational ity","Ġjust ifies","Ġdisp el","Ġa meric","ĠPol es","Ø ©","Ġen vis","ĠD oodle","ä½ ¿","igs aw","auld ron","Techn ical","T een","up hem","ĠX iang","Ġdetract ors","ĠZ i","ĠJournal ists","Ġconduc ive","ĠVolunte ers","Ġs d","Know ing","Ġtrans missions","ĠPL AN","ĠL IB","Ġall uded","Ġob e","Ġd ope","ĠGold stein","Ġwavelength s","ĠDest ination","nd a","ug i","Ġattent ive","ĠLe an","ral tar","Ġman g","mb uds","ak ings","b ender","Ġacc ol","Ġcraw led","N OW","Min nesota","Ġflour ished","ĠZ up","ĠSuper visor","ĠOliv ier","Ex cellent","Ġwid en","D one","Ġw ig","Ġmiscon ceptions","Cor p","W an","Ġvener able","ĠNot ably","ĠKling on","an imate","Bo ost","ĠS AY","miss ing","ibli ography","mel on","Ġpay day","Ø ³","bo le","Ġve iled","ĠAl phabet","It alian","Ġever lasting","ĠR IS","ĠC ree","rom pt","Ġh ating","Ġgrin ning","Ġge ographically","OS H","Ġwe eping","ĠÂłĠÂłĠÂłĠÂł ĠÂłĠÂłĠÂłĠÂł","Ġimpe cc","Let ter","Ġblo ated","PL A","ĠFe in","Ġper sever","Th under","Ġa ur","ĠR L","Ġpit falls","âĸ º","Ġpredomin ant","Ġ5 25","7 18","AP E","7 14","Ġfarm land","ĠQ iao","Ġv iolet","ĠBah amas","Ġinflic ting","ĠE fficiency","Ġhome brew","Ġundert ook","Ġcur ly","ĠHard ing","man ia","59 6","Ġtem pered","Ġhar rowing","ĠP ledge","ĠFranken stein","è ª","M otion","Ġpredict ably","ĠExpl osion","oc using","er d","col o","FF ER","Ġback field","ĠV IDE","ue bl","N arr","ĠArg ument","Ġgen omic","Ġbout ique","Ġbatt ed","ĠB inary","Ġg amb","ĠRh ythm","67 3","Ġa float","ĠOlymp ia","Y ING","Ġend if","is in","Ġwin ters","Ġsc attering","I v","D istance","Ġtr u","ĠCom fort","Ġne xus","Ġair flow","ĠByz antine","p ayers","con i","ĠB etsy","D eal","ĠN ug","ĠContin ent","red ibly","Ġoptim izing","al beit","Ġec static","ĠPro to","ç ·","iv ot","âĸ Ħ","em p","rou nder","Ġcl out","ĠI ST","66 3","ĠDoll ars","ĠD AC","Ġsubsc ribed","Ġrehears al","Ġam ps","ĠSh ang","es m","Ġspr inkle","Ġassail ant","ĠO o","ĠCoin base","T act","Ġret ina","Ġn uns","R ON","att o","Ġj ug","ĠSV G","Ġb ikini","ĠFI LE","ĠFound ers","ep ort","ĠK P","Ġrest ores","ĠTh ick","Ġash ore","Ġappro vals","R ender","M AG","G raham","ĠCort ana","ãĥ³ ãĤ¸","ss h","or ians","ars ity","ĠInsp ired","u pper","Ġsign alling","Ġreb uke","Ġfl ares","Ġdownt ime","Stud ies","Ġstagn ation","ĠSequ ence","Ġgr unt","Ġass ures","ĠPL A","59 2","Ġintra ven","d epend","Sus an","ĠManz iel","Man ia","Cont ract","Ġsl ams","Ġcult ured","Ġcred itor","L IST","ĠH UM","ĠChatt anooga","serv ed","Ġclo aked","ĠF TP","p owder","ĠSt ella","uct ive","Ġcheap ly","ĠMU CH","ĠGalile o","Ġsu ites","spe ech","Ġdeliber ations","ĠCh ips","« ĺ","Bal ance","ĠWyn ne","ĠAk ron","Ass et","Ġhon oured","Ġed ged","Like wise","anim ous","ĠW age","ĠEz ek","ad vertisement","ĠRT X","ĠM AD","Ġmigr ating","ĠS QU","Ġ4 75","Ed ited","Ġshorth and","ĠBas ics","Ġcro tch","ĠEV EN","Ġv m","effic iency","Ġcal ves","ĠF rie","ĠBrill iant","Ġstri kers","Ġrepent ance","Ġarter ies","r l","B ed","h ap","Ġcrypt ography","ĠSab res","Ġ4 14","vi ks","ih ara","aps es","T alking","Ġintertw ined","Ġdoc ks","Ġalle le","ĠArt ifact","ĠH IM","t orn","ç ķ","Ġop acity","ĠE ly","os uke","Ġn ipple","Ġhand written","ĠV K","ĠChamber lain","ĠLa os","ig raph","g row","Ġtr illions","Ġdescend ant","ĠSail or","as uring","Ġce ilings","ĠWare house","f lying","ĠGl ow","Ġn ont","Ġmiscar riage","Ġrig s","Ġmin istries","Ġelabor ated","Ġdel usional","ĠHum ane","Ġ3 79","n ets","Ġblack out","add ers","Ġn p","ĠT ire","ro sc","Ġsub div","Ġlink age","Ġchron ological","ĠHER O","Ġres ettlement","ĠVin yl","Ġpast oral","ĠMob il","ĠBar bar","Co oldown","ĠF ritz","c riminal","re pe","Ġbell ig","ĠBre ed","Ġ4 18","Ġsem blance","ij k","Ġcur tail","Ġclin ch","cont ained","ĠProm pt","ast on","Ġw i","Ġpursu its","5 15","ĠGl oss","Ġfl ips","Ġcoup ons","Ġcl oning","ĠLike ly","Rem oved","ĠQu artz","r ices","ĠSpe ars","Ġp ious","Ġdep reciation","ĠD are","oun ces","am az","O nt","Ġp innacle","d ocker","0 26","ĠW yr","ĠPro per","Ë Ī","n il","By tes","Ġseek er","t rial","Ġunf olds","ĠMar se","Ġextravag ant","ĠSurviv ors","RED ACTED","ĠSpeed way","ĠCra igslist","sub mit","ĠGener ations","Ġup holding","Ġblood stream","ĠMiss ions","ĠL awn","Ġlim bo","ene i","H uh","ĠWild cats","pre p","ĠMark us","ĠFor bidden","rit ic","IN O","Ġexhib iting","requ ent","ch uk","Ġhabit ual","ĠComp atibility","Dr ag","RIP T","uj ah","GR OUND","Ġdelinqu ent","Ġburn er","Ġcontempor aries","Ġgimm ick","load s","Ġno zzle","p odcast","ĠW ak","ĠStat en","ĠK uh","ãģ ĵ","inter rupted","Ġinv incible","ĠBurn ett","cig arette","ĠPeb ble","ĠTem porary","ĠMar ino","58 2","Ġwast eland","ident ly","T x","Ġr ite","ĠPan asonic","ĠM iddles","ĠHort on","ae us","Ġc uring","Ġm ats","Ġadj ourn","Ġfears ome","pe z","bo ats","Ġpro pell","Ġconflic ted","ĠAng er","Ġinsurg ent","K arl","Ġco ales","Ġsouth western","Ġdis su","ĠO vert","******** ****","Ġbox ed","ĠBr une","aa a","Ġgard ening","ĠEng el","tr acks","Ġpur ified","Ġplace holder","ĠL ikes","Ġd an","G ab","Ġe ct","ĠF aw","ĠEl iot","Ġ' ,","otrop ic","ĠRu in","hed on","Ġca ul","Ġa ft","ĠCad illac","gh a","ass ian","ud eb","ĠT ick","Ġadjust s","AR GET","5 37","isc he","ant y","ĠFried rich","ĠBl izz","ĠA OL","Camp aign","Ġmamm al","ĠVe il","ĠK ev","ĠMaur it","ĠDam ien","N ation","E astern","Ġ{ :","Ġ= ================================","Ġstereotyp ical","Ġatt ic","ĠCy borg","requ ire","Ġaward ing","ĠPap ua","bt n","b ent","B oo","Ġ( =","ĠX ander","ĠSomers et","Ġcatch y","Ġcert ify","STR UCT","Ġit al","Ġt ides","ĠBr ands","G ray","comp etitive","Ġcur ator","ĠD G","omin ium","ĠGM Os","ci ating","ĠCarm en","ow ard","Balt imore","Ġr gb","C u","Ġwip es","spe ll","IT NESS","Ġsummar izes","ĠRe vis","Ġwhistlebl owers","ĠBre ach","Ġcro chet","k os","ews ki","Ġrep et","Ġcrim son","ĠKar achi","read able","dim ension","ĠI gor","ild ed","ĠZ ed","ĠKe ane","ĠCos metic","DE P","Ġretreat ing","ĠU A","ens ical","Ġd usk","ĠDick ens","Ġaren as","ĠPass age","level s","Ġcur v","P ope","Ġch ores","ĠEl ise","ĠComp ass","b ub","Ġmamm alian","ĠSans krit","ĠAN C","ĠCr ack","Q ual","L aun","amp unk","Ġlearn ers","Ġglam orous","Ġfur the","erm ott","c and","Gener ic","Ġnarr ated","Ġdisorder ly","ĠTrans actions","ĠDet ention","ĠR oku","Ä į","Ġunder statement","ĠS aur","ĠRodrig o","ĠAS AP","S in","Ġre joice","Method s","Ġelectro de","Ġworsh ipped","Ġid i","ĠPhys icians","Ġpop up","Ġde ft","ĠRem oval","ĠBu enos","ver bs","Ġfun k","ush a","rict ion","ore a","ĠBang alore","ĠKen obi","zz i","Ġnorm ative","Ġgobl ins","Ġcaf es","ĠUN CLASSIFIED","ĠF ired","S IGN","Ġs clerosis","ĠV oter","ĠSon ny","ĠExt end","ĠEV s","Ar senal","Ġp si","Ġwid est","ĠT us","Ġlo oms","Ġjust ifying","ĠGr anger","è ¯","Ref er","58 3","Ġflour ishing","ab re","Ġr ave","ĠCont ra","Ġ18 98","Add s","Ġf ul","ĠCo oke","some one","= #","67 1","Ġy ak","Ġar te","ĠMis cellaneous","ĠDet ection","ĠCl ancy","â ģ","ass ies","Ġval iant","ĠFemin ist","cor ruption","V el","P ear","Ġsucc inct","Ġquick est","k w","Ġsp itting","ĠL ibraries","åħ ī","ant z","D ad","ĠSpec ifications","rup ulous","and r","RES ULTS","Ġsnow ball","Ġpred is","ĠB axter","ĠNurs ing","ĠCh aff","s we","Ġout age","Ġnest ing","Ġnotor iety","tr igger","on ite","j on","Ġf ou","ook ed","ĠCelebr ity","re ality","Ġfat ig","Ġhug ging","Ġbother s","ĠPan zer","ĠCh andra","fig ured","Ġvol ts","ĠCloud s","Ġfee ble","ĠCur ve","ĠAs us","78 6","abs or","ĠV ICE","ĠH ess","Ġmanufact ures","Ġgri zz","ĠPower ful","ac id","Ġsub sections","ĠKrug man","ĠAl ps","is u","Ġsequ est","ĠUlt ron","ĠT inker","ĠGo ose","Ġmism atch","Att orney","Ġmorph ology","ĠSix ers","ut tered","ĠE LECT","gr an","Rus sell","ĠG SL","Ġfort night","Ġ. )","Ġapost le","pr one","el ist","Unt itled","ĠIm plementation","ist ors","Ġtank er","Ġpl ush","Ġattend ants","ĠT ik","ĠGreen wich","ĠY on","ĠSP L","cell s","unt led","S olution","ĠQu é","Ġvac ated","Ġupt ick","ĠMer idian","æ ĥ","ĠDr ill","9 25","58 4","Ġrenov ated","ĠKub rick","zy k","Ġl ousy","pp el","ohyd rate","ĠI zzy","lesi astical","CC C","ĠAj ax","Ġad apters","ĠPetra eus","Ġaffirm ation","ĠST OR","le ms","ad oes","ĠConstantin ople","Ġp onies","Ġl ighthouse","Ġadherent s","ĠBre es","omorph ic","Fight ing","Ġpl aster","ĠP VC","ĠOb st","Ġdear ly","ĠTo oth","icks on","Ġsh aming","P lex","A gg","Ġâ̦ \"","Ġsub reddits","Ġpige on","ĠResident ial","ĠPass ing","Ġl um","ĠP ension","Ġpessim istic","Ġ4 32","z inski","c ade","0 75","Ġapolog ised","iy ah","Put ting","Ġgloom y","ĠLy me","=-=-=-=- =-=-=-=-","ĠT ome","ĠPsych iatric","ĠH IT","c ms","ap olog","Ġbreak er","Ġdeep en","Ġtheor ist","ĠHigh lands","Ġb aker","Ġst aples","Ġinterf ered","ĠAb ortion","jo ined","ch u","Ġform ulate","Ġvacc inations","Ġban ter","phe us","Ġoutfield er","ĠM eter","Ġ# ####","Ġ18 95","Ġnarrow ing","ĠST ORY","f p","ĠC ST","ign ore","Ġproclaim ing","ĠR U","ĠB ALL","yn a","65 3","Ġpos it","P RE","59 4","ĠRegist rar","ĠPil grim","ic io","Ġpre tt","Ġlif eless","Ġ__ _","Ne igh","ĠCh urches","orn o","Ġor cs","Ġkind red","ĠAud it","Ġmillenn ial","ĠPers ia","g ravity","ĠDis ability","ĠD ARK","W s","od on","Ġgrand daughter","ĠBro oke","ĠA DA","ER A","Ġpick ups","ĠWil kinson","ĠSh ards","ĠN K","Ġexp el","ĠKis lyak","Ġj argon","Ġpolar ized","ian e","Pub lisher","Ġreb utt","Ġapprehens ion","ĠK essler","Ġpr ism","F UL","19 64","ĠL oll","ä ¿","le thal","Å Ł","Ġg hetto","Ġb oulder","ĠSlow ly","ĠOsc ars","ĠInst ruction","ĠUl tr","ĠM oe","N ich","ĠP ATH","( *","ĠRE LEASE","un ing","rou se","en eg","Ġre imb","ĠDet ected","Do S","Ġster ling","Ġaggreg ation","ĠLone ly","ĠAtt end","hig her","Ġairst rike","ks on","SE LECT","Ġdef lation","ĠHer rera","C ole","rit ch","Ġadvis able","F ax","Ġwork around","Ġp id","mort em","ers en","Ġtyp o","Ġal um","78 2","ĠJam al","script s","Ġcapt ives","ĠPres ence","ĠLie berman","angel o","Ġalcohol ism","ass i","Ġrec ite","Ġgap ing","Ġbask ets","ĠG ou","Brow ser","ne au","Ġcorrect ive","und a","sc oring","ĠX D","Ġfil ament","Ġdeep ening","ĠStain less","Int eger","Ġbu ggy","Ġten ancy","ĠMub arak","Ġt uple","ĠD roid","ĠS itting","Ġforfe it","ĠRasm ussen","ixt ies","es i","ĠKim mel","Ġmetic ulously","Ġap opt","ĠS eller","08 8","ec ake","hem atically","T N","Ġmind less","Ġdig s","ĠAcc ord","ons ense","em ing","br ace","Ġe Book","ĠDist ribut","ĠInvest ments","w t","] ),","beh avior","56 3","Ġbl inding","ĠPro testers","top ia","Ġreb orn","ĠKel vin","ĠDo ver","ĠD airy","ĠOut s","Ġ[ /","Ï Ģ","b p","ĠVan ity","ĠRec ap","ĠHOU SE","ĠF ACE","Ġ4 22","69 2","ĠAnt ioch","cook ed","Ġcoll ide","Ġa pr","Ġsle eper","ĠJar vis","Ġalternative ly","ĠLe aves","ĠM aw","Ġantiqu ity","ĠAdin ida","Ġab user","Poké mon","Ġass orted","ĠRev ision","ĠP iano","ĠG ideon","O cean","Ġsal on","Ġbust ling","ogn itive","ĠRah man","Ġwa iter","Ġpres ets","ĠO sh","ĠG HC","oper ator","Ġrept iles","Ġ4 13","ĠG arr","ĠCh ak","Ġhas hes","Ġfail ings","Ġfolk lore","Ġab l","ĠC ena","ĠMac Arthur","ĠCOUR T","Ġperipher y","app ers","Ġreck oned","ĠInf lu","ĠC ET","Ġ3 72","ĠDefin itive","ass ault","4 21","Ġreservoir s","Ġd ives","ĠCo il","DA Q","Ġvivid ly","ĠR J","ĠBel lev","Ġec lectic","ĠShow down","ĠK M","ip ed","reet ings","ĠAs uka","L iberal","ĠÏ Ħ","Ġbystand ers","ĠGood win","uk ong","S it","ĠT rem","Ġcrim inally","ĠCirc us","ch rome","88 7","Ġnan op","ĠOb i","ĠL OW","o gh","ĠAuth ors","ob yl","Ur ban","Ġt i","ĠWe ir","t rap","ag y","Ġparent heses","Ġout numbered","Ġcounter productive","ĠTob ias","ub is","P arser","ST AR","Ġsyn aptic","ĠG ears","Ġh iber","Ġdebunk ed","Ġex alted","aw atts","H OU","Ch urch","ĠPix ie","ĠU ri","ĠForm ation","ĠPred iction","C EO","Ġthro tt","ĠBrit ann","ĠMad agascar","ë ĭ","Ġbill boards","ĠRPG s","ĠBe es","complete ly","F IL","Ġdoes nt","ĠGreen berg","re ys","Ġsl ing","Ġempt ied","ĠPix ar","ĠDh arma","l uck","ingu ished","Ġend ot","Ġbab ys","05 9","che st","r ats","Ġr idden","Ġbeet les","Ġillum inating","Ġfict itious","ĠProv incial","Ġ7 68","Ġshe pherd","ĠR ender","Ġ18 96","C rew","Ġmold ed","ĠXia omi","ĠSp iral","Ġdel im","Ġorgan ising","Ġho ops","ĠBe i","z hen","Ġfuck in","Ġdec ad","Ġun biased","am my","sw ing","Ġsmugg led","Ġk ios","ĠP ERSON","ĠInquis itor","Ġsnow y","Ġscrap ing","ĠBurg ess","P tr","ag ame","R W","Ġdro id","ĠL ys","ĠCass andra","Jac ob","Ġ35 4","Ġpast ure","Ġfr anc","ĠScot ch","ĠEnd s","ĠI GF","def inition","Ġhyster ical","ĠBrown e","77 1","Ġmobil ization","æ ķ","iqu eness","Th or","Ġspear headed","Ġembro iled","Ġconject ure","jud icial","Ch oice","Ġpaper back","P ir","Ġrec overs","ĠSur ge","ĠSh ogun","ĠPed iatrics","ãģ ł","Ġsweep s","ĠLabor atories","ĠP acks","al us","add in","Ġhead lights","g ra","Ev idence","COL OR","Ad min","Ĭ ±","Ġconco ct","s ufficient","Ġun marked","Ġrich ness","Ġdiss ertation","Ġseason ing","Ġg ib","ĠM ages","un ctions","ĠN id","che at","ĠTM Z","c itizens","ĠCatholic ism","n b","Ġdisemb ark","ĠPROG RAM","a ques","Ty ler","Or g","ĠSl ay","ĠN ero","ĠTown send","IN TON","te le","Ġmes mer","9 01","Ġfire ball","ev idence","aff iliated","ĠFrench man","ĠAugust a","0 21","Ġs led","Ġre used","ĠImmun ity","Ġwrest le","assemb led","Mar ia","Ġgun shots","ĠBarb ie","Ġcannabin oids","ĠTo ast","ĠK inder","IR D","Ġre juven","Ġg ore","Ġrupt ure","Ġbre aching","ĠCart oon","Ġ4 55","ĠPale o","6 14","Ġspe ars","ĠAm es","ab us","Mad ison","GR OUP","Ġab orted","y ah","Ġfel on","Ġcaus ation","Ġprep aid","Ġp itted","op lan","ĠShel ley","ĠRus so","ĠP agan","Ġwill fully","ĠCan aver","und rum","ĠSal ary","ĠAr paio","read er","ĠR ational","ĠOver se","ĠCa uses","Ġ* .","Ġw ob","Ke ith","ĠCons ent","man ac","77 3","6 23","Ġfate ful","et imes","Ġspir ited","ĠD ys","Ġhe gemony","Ġboy cot","ĠEn rique","em outh","Ġtim elines","ĠSah ara","ĠRel ax","ĠQuin cy","ĠLess ons","ĠE QU","SE A","N K","ĠCost co","Incre ase","Ġmotiv ating","ĠCh ong","am aru","ĠDiv ide","Ġped igree","ĠTasman ia","ĠPrel ude","L as","9 40","57 4","Ġch au","ĠSp iegel","un ic","-- >","ĠPhil ips","ĠKaf ka","Ġuphe aval","Ġsent imental","Ġsa x","ĠAk ira","ser ial","Mat rix","Ġelect ing","Ġcomment er","ĠNeb ula","ple ts","ĠNad u","ĠAd ren","Ġen shr","ĠR AND","fin ancial","ĠCly de","uther ford","Ġsign age","Ġde line","Ġphosph ate","rovers ial","f ascist","ĠV all","ĠBeth lehem","Ġfor s","Ġeng lish","S olid","N ature","Ġv a","ĠGu ests","Ġtant al","Ġauto immune",";;;;;;;; ;;;;","ĠTot ally","ĠO v","Ġdef ences","ĠCoc onut","Ġtranqu il","Ġpl oy","Ġflav ours","ĠFl ask","ãĤ¨ ãĥ«","ĠWest on","ĠVol vo","8 70","Ġmicro phones","ver bal","R PG","Ġi ii","; }","0 28","Ġhead lined","Ġprim ed","Ġho ard","ĠSh ad","ĠEN TER","Ġtri angular","Ġcap it","l ik","ĠAn cients","Ġl ash","Ġconv ol","Ġcolon el","en emy","G ra","Ġpub s","ut ters","Ġassign s","ĠPen et","ĠMon strous","ĠBow en","il ver","H aunted","ĠD ing","start ed","pl in","Ġcontamin ants","ĠDO E","ff en","ĠTechn ician","R y","Ġrob bers","Ġhot line","ĠGuard iola","ĠKau fman","row er","ĠDres den","ĠAl pine","E lf","Ġf mt","ĠS ard","urs es","g pu","Un ix","Ġunequiv ocally","ĠCitizens hip","qu ad","m ire","ĠS weeney","B attery","6 15","Ġpanc akes","Ġo ats","M aps","ĠCont rast","mbuds man","ĠE PS","Ġsub committee","Ġsour cing","Ġs izing","ĠBuff er","ĠMand atory","Ġmoder ates","ĠPattern s","ĠCh ocobo","ĠZ an","ĠSTAT ES","ĠJud ging","ĠIn her","* :","Ġb il","ĠY en","Ġexh ilar","oll ower","z ers","Ġsn ug","max imum","Ġdesp icable","ĠP ACK","ĠAn nex","Ġsarcast ic","Ġlate x","Ġt amp","ĠS ao","b ah","ĠRe verend","ĠChin atown","ĠA UT","d ocumented","ĠGA BA","ĠCan aan","ĠÙ ħ","Ġgovern s","pre v","E sc","ĠEst imates","OS P","Ġendeav our","ĠCl osing","omet ime","every one","Ġwor sen","Ġsc anners","Ġdev iations","ĠRobot ics","ĠCom pton","Ġsorce rer","Ġend ogenous","Ġem ulation","ĠPier cing","ĠA ph","ĠS ocket","Ġb ould","ĠO U","ĠBorder lands","Ġ18 63","G ordon","ĠW TO","Ġrestrict s","Ġmosa ic","Ġmel odies","ç Ħ","T ar","Ġdis son","ĠProv ides","Ġ ......","b ek","F IX","Ġbro om","ans hip","Do ctors","Ġner ds","ĠReg ions","na issance","Ġmet e","Ġcre pt","pl ings","Ġgirlfriend s","kn it","ig ent","ow e","Ġus hered","ĠB az","M obil","4 34","ĠPres ents","orig in","Ġins omnia","ĠA ux","4 39","ĠCh ili","irs ch","G AME","Ġgest ation","alg ia","rom ising","$ ,","c row","ĠIn spection","at omic","Rel ations","J OHN","rom an","ĠClock work","ĠBak r","m one","M ET","Ġthirst y","Ġb c","Ġfacult ies","R um","Ġnu ance","ĠD arius","ple ting","fter s","etch up","Reg istration","ĠK E","R ah","Ġpref erential","ĠL ash","ĠH H","Val id","ĠN AV","Ġstar ve","ĠG ong","z ynski","ĠAct ress","Ġw ik","Ġun accompanied","lv l","Br ide","AD S","ĠCommand o","ĠVaugh n","Wal let","Ġho pping","ĠV ie","Ġcave ats","Ġal as","if led","ab use","66 1","Ġib n","Ġg ul","Ġrob bing","t il","IL A","Ġmit igating","Ġapt ly","Ġty rant","Ġmid day","ĠGil more","ĠDe cker","Ġ§ §","part ial","Ex actly","Ġphen otype","Ġ[+ ]","ĠP lex","ĠI ps","vers ions","Ġe book","Ġch ic","g ross","\":\" \"},{\"","ĠSur prisingly","M organ","Ġresid ues","ĠConf ederation","in feld","Ġl yr","mod erate","Ġperpend icular","V K","Ġsynchron ized","Ġrefres hed","Ġad ore","ĠTor ment","ol ina","Ġ26 00","Item Tracker","Ġp ies","ĠF AT","ĠR HP","0 48","ĠRES P","ĠB J","all ows","P and","Ġunw elcome","ĠV oc","ĠBast ard","ĠO W","ĠL AR","ĠHeal er","Environment al","ĠKen yan","ĠTr ance","ĠP ats","Ġali ases","ĠGar field","Ġcampaign er","Ġadvance ments","ĠOkin awa","ĠC oh","ows ky","Ġstar ved","Ġsize able","Ġ: -)","Ġm RNA","Ġsusp ensions","ist ar","Scot land","Pr in","-------------------------------- ----------------","Ġ50 2","Ġteasp oons","Ġ10 50","Ġcoerc ive","ĠMason ic","edd ed","ĠPass enger","Ġl att","Ġbr aces","ĠSt eal","ĠNY T","ĠK ats","ĠCel est","ae z","T u","ĠCoul ter","ðŁ ĺ","Fl ickr","ĠWil mington","ith s","++ ;","Ġv ending","Ġneg ro","ĠPh i","ĠYellow stone","Call back","Ġsh ampoo","ĠSh ades","w at","Ġsuper human","Ġridic uled","Ġhol iest","om bo","Ġintern s","Ġh one","ĠPar agu","UR I","Ġd angling","ãĤ »","so v","ict ional","av ailability","Ġrev ocation","Ġd ow","in ic","ĠTHE IR","Ġis o","Ġout ings","ĠLeth al","Ġ) ))","Ġinacc ur","Ġout landish","Ġan us","let ico","id on","l ol","Ġun regulated","Ġsuccumb ed","Ġc uff","ĠWast eland","let al","Ġsub str","Ġcoff ers","Ġautom akers","ov i","ĠX ue","ĠDayton a","Ġjar ring","Ġf umes","Ġdisband ed","z ik","itt on","Ġstriking ly","Ġsp ores","Ad apter",".) :","ĠLynd on","ival ry","Ġor ally","Ġtumult uous","Ġdisple asure","Ġcon es","or rect","Ġappe ase","Ġder by","ĠTrip oli","ĠAl ess","Ġp oked","ĠGu ilty","v P","En ough","Ġorig inals","6 99","Ġrabb i","Ġproverb ial","Ġpostp one","el ope","ĠMist y","Ġstaff ed","ĠUn employment","redit ary","Ġdilig ent","re comm","me asures","as in","8 25","Ġpond s","Ġmm ol","ĠS AR","ĠC ARE","Ġ3 71","Ġclen ched","ĠCors air","Ġcaric ature","z n","att ach","ĠSch ro","spe ak","p ainted","ĠS uc","ĠE NT","Ġcell ul","ĠP aid","di agn","WH ERE","Ġtext ed","B arn","Ġret racted","ĠRe ferred","S av","Ġup keep","Ġwork places","ĠTok ens","Ġampl ify","cl inical","Ġmult ic","mber g","Ġconvol uted","Reg ion","5 65","ĠTop ic","Ġsn ail","Ġsal ine","Ġins urrection","ĠPet r","f orts","B AT","ĠNav ajo","Ġrud imentary","ĠLak sh","OND ON","Me asure","Ġtransform er","ĠGodd ard","Ġcoinc ides","ir in","R ex","ĠB ok","qu it","Ġshotgun s","Ġprolet arian","Ġsc orp","ĠAd a","5 14","Ġsl ander","record ed","Ġemb ell","ris ome","Ġapolog izing","ĠMul cair","ĠGib raltar","Cl a","Ġall ot","ĠAtt ention","Ġ4 33","le ave","Ġwh ine","ĠIss a","ĠFa ust","ĠBar ron","hen y","Ġvictim ized","J ews","Ġnurt uring","ett el","W inged","ĠSub tle","Ġflavor ful","ĠRep s","eng ed","call back","Ġdirection al","Ġcl asp","ĠDirect ions","plan et","icult ure","Hel per","ic ion","ac ia","Ġç ¥ŀ","Ġsur ges","Ġcan oe","ĠPrem iership","be en","Ġdef ied","ĠTro oper","Ġtrip od","Ġgas p","ĠE uph","ĠAd s","vern ight","high ly","R ole","Ġent angled","ĠZe it","6 18","ĠRust y","Ġhaven s","ĠVaugh an","HA EL","ĠSER VICE","/ ,","Ġstr icken","Ġdel usions","Ġb is","ĠH af","Ġgrat ification","Ġent icing","UN CH","Ad ams","ĠOL ED","ĠBeet le","Ġ18 99","ĠSO FTWARE","ateg or","V L","ĠTot em","ĠG ators","AT URES","Ġimped ance","Reg istered","ĠC ary","ĠAer ial","on ne","en ium","Ġd red","ĠBe g","Ġconcurrent ly","Ġsuper power","ĠX an","j ew","imes ter","ĠDick inson","âĶ ģ","F la","Ġp ree","ĠRoll ins","© ¶æ","Ġden omination","ĠL ana","5 16","Ġinc iting","sc ribed","j uries","ĠWond ers","app roximately","Ġsusp ending","Ġmountain ous","ĠL augh","oid al","N s","Det ect",") =","ĠL uthor","ĠSchwarz enegger","ĠMull er","ĠDev i","ec ycle","J ar","6 13","ĠL ongh","B ah","ĠSP ORTS","n w","Ġref inement","Ġwater ways","Ġd iner","Bl ade","68 3","F ac","Ġinitial s","Ġro g","Ġparan ormal","B UT","Ġ[ (","ĠSw anson","ĠM esh","âĸ ¬","Impro ve","ĠRad iation","ĠEst her","ĠE sk","ĠA ly","ik y","Ġir rad","ĠBuck ingham","Ġref ill","Ġ. _","Re pe","CON CLUS","Ġdifferent iated","Ġchi rop","ĠAt kins","Pat tern","Ġexc ise","Ġcab al","N SA","ĠST A","ĠS IL","ĠPar aly","Ġr ye","ĠHow ell","ĠCount down","ness es","alys ed","Ġres ize","ãĤ ½","Ġbudget ary","ĠStr as","w ang","Ġap iece","Ġprecinct s","Ġpe ach","Ġsky line","Ġ35 3","pop ular","App earances","ĠMechan ics","ĠDev Online","S ullivan","Z en","Ġp u","op olis","5 44","Ġde form","Ġcounter act","ĠL ange","Ġ4 17","Con sole","77 4","Ġnodd ing","Ġpopul ism","Ġhe p","Ġcoun selling","compl iance","U FF","Ġunden iably","Ġrail ing","ĠHor owitz","ĠSim one","ĠBung ie","Ġa k","ĠTal ks","x ff","fl ake","Cr ash","Ġsweat y","Ġban quet","ĠOFF IC","Ġinvent ive","Ġastron omer","ĠStam ford","ĠSc are","ĠGRE EN","olic ited","Ġr usher","Ġcent rist","ight ing","Ġsub class","Ġdis av","Ġdef und","ĠN anto","oci ate","m ast","Ġpac if","Ġm end","e ers","imm igration","ESS ION","Ġnumber ing","Ġlaugh able","ĠEnd ed","v iation","em ark","P itt","Ġmetic ulous","ĠL F","Ġcongrat ulated","ĠBir ch","Ġsway ed","Ġsemif inals","Ġhum ankind","m atter","ĠEqu ip","opa usal","S aid","ĠLay out","Ġvo icing","Ġth ug","Ġporn ographic","I PS","Ġmo aning","Ġgriev ance","Ġconf essions","esc al","TEXT URE","Aut hent","os aurus","P urchase","Ġreleg ation","al ter","ĠÂł Âł","Ġr iddled","Ġo gre","ĠLow ell","Occ up","E at","ĠHy der","ĠAdvis er","Com merce","H unt","ĠOr th","ĠComp etitive","ĠCL A","CD C","Ġsal ads","F le","Ġindustrial ized","` ,","ĠO WN","Ġbec k","ĠPart icularly","oub t","Ġm M","ĠHuss ain","ĠChen nai","Ġ9 20","Ġappoint ing","ĠCull en",",,,, ,,,,","Ġp ores","ver ified","Ġbi ochemical","em ate","Ġcoward ly","ĠHels inki","ĠEthiop ian","S OURCE","ER C","est ro","Ġbi otech","ĠS our","Ġbrew er","Bloom berg","Ġintens ify","Gl ass","an co","ĠF DR","gre SQL","ĠF ires","©¶æ ¥µ","ec o","100 1","ĠHom eless","Ġinstant aneous","ĠH aste","ig el","D iamond","Ġp aving","Ġland fill","Ġd ads","h oun",": ]","Ġinc endiary","ĠLiving ston","ĠHil bert","ĠChe cks","st yles","in ators","ĠCl ive","ph rine","Ġchimpan zees","Ġp all","ĠJ M","ĠAad haar","ð Ŀ","Ġachie vable","dis abled","P ET","OOOO OOOO","M ot","Ġint angible","Ġbal let","ĠWe bs","ĠEst imated","Effect s","Ġb ailed","Josh ua","Ġturb ulence","Ġoccup ant","ĠDay light","Ġ36 1","me et","Ġstat ically","Ġon look","Ġk i","il legal","Ġvel vet","Ġdehyd ration","Ġacqu ies","ĠRe z","ak ura","ĠU pton","at ro","Ġincomp rehensible","Ġback door","ĠRh ino","7 27","Ġmath s",") +","Ġhe resy","Ġd f","ĠRoc he","ĠL ydia","Ġpanc reat","re ply","arre ll","Ġsolicit ation","Ġcirc adian","BI P","Ġfor ay","Ġcrypt ic","iz u","ime o","ĠTom ato","ĠH oms","ex amination","Ġqu arry","ĠVal iant","ĠJer icho","ĠIN CLUD","Ġ18 40","5 19","Ġres ists","Ġsnap shots","ĠSp ur","ĠAnt iqu","Log in","Ġbest selling","Ġant ic","ĠS utherland","ãĤ¢ ãĥ«","Ġ~ /","ĠP arm","è ĥ","P ages","int ensity","Ġimm obil","Ġ18 65","zz o","Ġn ifty","Ġf entanyl","ĠPres ervation","op hen","Ġd arts","ĠD inosaur","po inters","ĠR ite","s uggest","aware ness","ĠSher idan","Ġst ances","Ġsor cery","Ġper jury","ĠNik ola","ie ver","Ġf iance","ĠJordan ian","ĠBall oon","Ġn ab","Ġk b","Ġhuman ities","ĠTan aka","hill ary","Ġconsult ancy","ĠZ ub","Ġrem ission","Ġconf id","CH Q","ĠF ug","Ġimpro vis","Y ep","/ _","Ġunwilling ness","Ġport folios","05 5","ĠInstruct or","aim an","Ġclaim ants","M bps","ĠBy e","re ceived","T weet","Ġind emn","ri z","am ara","N at","Ġeval uates","ĠL ur","ep ad","FO X","ĠTh ro","Ġrust y","Ġbed rock","ĠOp rah","J B","Ġmanip ulative","Ġwill ful","Ġrel apse","Ġext ant","The me","S ensor","ĠSt ability","go vern","Ġpo ppy","Ġkn ack","Ġins ulated","ĠT ile","ĠExt rem","Ġunt old","Ġconver ge","Ġref uel","ig roup","Ġdistort ions","Ġrav aged","Ġmechan ically","ĠRe illy","ĠN ose","ĠIncarn ation","ĠBeck y","abb ling","Ġt aco","Ġr ake","Ġmelanch oly","Ġillust rious","ĠDart mouth","Gu ide","ĠR azer","ĠBen z","Ult imate","ĠSur prise","Ġpage ant","off er","Who ever","Ġw iser","Ġchem ist","ĠHE LL","ĠBul k","Ġpl utonium","ĠCO VER","Ö ¼","f ailed","Ġtire lessly","Ġinf ertility","ĠTr ident","ĠShow time","ĠC iv","V ice","requ ires","itt ance","Ġun controlled","interest ing","56 1","Ġinnov ate","ateg ic","L ie","ĠS elling","U l","Ġsav ior","ĠT osh","Ġsw ast","P ASS","Ġr ink","Ġcard io","ĠI ro","ud i","Ġv antage","Ġv ans","ĠNi ño","+ =","Ġpropag ate","< ?","Ġmethod ological","204 39","Ġtrig lycer","Ġing rained","ĠAn notations","arr anted","6 17","ĠS odium","ĠA AC","techn ical","mult ipl","Ġ3 73","å ĭ","Ġdec isively","Ġboost ers","Ġdessert s","ĠGren ade","Ġtest ifying","ĠSc ully","ID s","Ġlock down","ĠSc her","ĠR é","ĠWhit man","ĠRams ay","rem ote","Ġh ikers","ĠHy undai","Ġcons cientious","Ġcler ics","ĠSiber ian","ut i","is bury","Ġrel ayed","Ġqu artz","ĠC BI","seek ers","ull a","Ġweld ing","ĠSh al","ble acher","T ai","ĠSam son","Ġt umble","ĠInvest or","Ġsub contract","ĠShin ra","ow icz","j andro","d ad","Ġtermin ating","ĠNe ural","ä» £","Ġleak age","ĠMid lands","ĠCaucas us","í ķ","c it","ll an","iv ably","ĠAlb ion","Ġ4 57","Ġregist rations","Ġcomr ade","Ġclip board","0 47","Ġdiscour aging","ĠO ops","Ad apt","Ġem path","n v","ĠPR OT","ĠDon n","ĠP ax","ĠB ayer","t is","Squ are","Ġfoot prints","part icip","ĠChile an","B rend","ind ucing","M agn","Ġclub house","ĠMagn um","Ġenc amp","ĠEth nic","uch a","ere y","Ġw atered","ĠCal ais","Ġcomplex ion","Ġsect s","Ġren ters","Ġbr as","oÄŁ an","Time out","Man agement","Ġinf ographic","P okemon","Cl ar","Ġloc ality","Ġfl ora","as el","P ont","Ġpop ulate","ĠO ng","Ġsubs istence","Ġa uctions","ĠMcA uliffe","ĠL OOK","br inger","Ġtit an","Ġmanif old","ĠâĹ ı","Ġcalibr ated","Ġcal iphate","ĠSH E","ĠCommission ers","ce ivable","j c","W inner","5 24","Ġcond one","Other wise","Ġp iling","Ġem body","ĠCrime an","ut ics","ĠEx hibition","Ġ4 26","e ering","Ġv ying","ĠH UGE","* =-","Ġprin cipled","à ¦","Ġquir ks","ĠEdit ors","put ing","G ES","ĠF TA","ठ¾","add on","ĠH AM","ĠFrie za","W oman",". $","Ġc rib","ĠHer od","Ġtim ers","ĠSp aces","ĠMac intosh","at aka","Ġgl ide","Ġsmell ing","ĠB AL","Ġun su","Ġcond os","Ġbicy cl","ĠRev ival","55 3","Ġjugg ling","H ug","ĠKardash ian","ĠBalk ans","mult iple","Ġnutrit ious","oc ry","19 00","Ġinteg rates","Ġad joining","ĠF older","roll ment","ven ient","Ġu ber","y i","Ġwh iff","ĠJu ven","ĠB orough","net te","Ġb ilingual","ĠSp arks","ph thal","man ufact","Ġt outing","ĠPH I","Ke efe","Rew ard","Ġinf all","ĠTem per","typ ically","ĠNik ol","Ġregular s","Ġpseud onym","Ġexhib itions","Ġbl aster","Ġ40 9","w arming","Ġrever ber","Ġrecip rocal","Ġ6 70","ip ient","b ett","ĠBe gins","Ġit ching","ĠPh ar","Ass uming","Ġem itting","ĠML G","Ġbirth place","Ġt aunt","ĠL uffy","ĠAm it","Ġcir cled","ĠN ost","enn ett","Ġde forestation","ĠHist orically","ĠEvery day","Ġovert ake","79 2","Ġn un","ĠLuc ia","Ġaccompan ies","ĠSe eking","ĠTr ash","an ism","R ogue","Ġnorth western","ĠSupplement al","ĠNY U","ĠF RI","ĠSat isf","x es","5 17","Ġreass ured","Ġspor adic","Ġ7 01","Ġmed ial","Ġcannabin oid","Ġbarbar ic","Ġep is","ĠExplos ive","ĠD ough","Ġuns olved","Support ed","Ġacknowled gment","sp awn","Ġkit chens","Ġ- =","talk ing","ic ist","ĠPeg asus","ĠPS U","Ġphot on","ĠAuthent ication","R G","@# &","76 2","ĠCl air","Ġdi aper","Ġbr ist","ĠProsecut ors","ĠJ em","6 28","ĠEvery where","ĠJean ne","equ ality","ãĥ© ãĥ³","object s","ĠPel icans","Ġ39 2","Ġbl u","b ys","ĠA go","Ġinstruction al","Ġdiscrim inating","ĠTR AN","ĠCorn el","ag os","Ġty re","Ġas piration","ĠBrid gewater","\": -","! \".","ĠEn s","ĠCoc o","P ie","Ġdet ach","ĠC ouch","Ġphys ique","ĠOccup ations","osc opic","en ough","B uzz","App earance","Y P","Ġrac er","Ġcompl icity","r pm","T oy","Ġinterrupt s","ĠCat alyst","Ġut ilitarian","imp act","Ġsp aghetti","Ġp orous","Ġeste emed","Ġinc iner","ĠI OC","7 48","Ġesp resso","ĠSm ile","abil ia","6 35","Ġmathematic ian","Ġ4 24","ĠK L","ĠH IP","Ġover heard","ĠT ud","ĠT ec","Ġqu izz","Ġfl attering","Ġcon n","âĢ İ","Ġatt aches","ĠR OS","ĠAC S","Ġt cp","ĠSh ame","sk ip","res pected","ĠTrin idad","gr ain","Ġfooth old","ĠUnch arted","ĠJul io","z l","av ored","ĠAn xiety","er rors","ĠCent auri","its ch","D addy","Ġclutch ing","ĠIm plement","ĠGut ierrez","Ġ7 60","Ġtele portation","end ra","Ġrevers ible","st ros","Ad venture","08 3","Ġliber ating","Ġas phalt","ĠSp end","AR DS","im sy","PR ES","ĠEmer ging","Ġwild fires","Ġtechn ologically","Ġem its","ĠART ICLE","Ġirregular ities","Ġcher ish","çī Ī","Ġst ink","ĠR ost","Econom ic","Ġcough ing","ĠMcC ann","pro perties","ilant ro","Ġreneg oti","Trans lation","Ġin quest","ĠGra pe","oot ers","gu i","ĠSwords man","ace ae","h itting","Ġr c","Ġexert ed","ĠS AP","it ent","Ġperil ous","Ġobsc urity","Ġassass inate","Ġab original","Ġresc uing","ĠSh attered","lock ing","all ion","Ch anging","ĠHar rington","ĠB ord","ĠAfgh ans","Jam ie","aret z","ĠAugust us","Ġ38 6","8 30","Ġj og","ok ingly","Tr igger","ĠH OR","Stat istics","Ġviewers hip","Ġadd itives","h ur","Ġmaxim izing","ĠR ove","ĠLou ie","ĠBuck et","ĠCHR IST","ou sel","Ġstre aks","ir ted","Ġt ert","Ġcolonial ism","Ġbur ying","y k","Cond ition","ĠDPR K","By Id","75 1","âĹ ¼","Ġwor risome","Ġvoc ational","sl ice","Ġsa ils","ĠCorrection al","95 4","Ġt ul","K id","l uster","Ġfam ilial","ĠSp it","ĠEp iscopal","Specific ally","ĠVol cano","run s","q s","Ġve tted","Ġcram med","t rop","here r","Thank fully","Ġper cussion","Ġor anges","Ġround up","Ġ4 99","x ious","Char acters","ĠZion ism","ĠR ao","ÃĽ ÃĽ","W F","Ġunintention al","ONE Y","Gr ab","Com mercial","Ġglut amate","ĠMcK enna","ru ciating","ning ton","ih u","Ch an","ĠSw ap","Ġleaf lets","Ġfunction ally","er ous","F arm","Ġcal oric","ĠLiter ally","con cert","Ġshe nan","Ġrep aid","ey es","Ġbas hing","ĠG orge","Ġcollabor ations","Ġun account","itch ie","Ġteam work","pp elin","Ġpip ing","Ġmin ced","Ġd iam","ri eg","Ġmasc ara","Ġsuck er","ĠMo ons","App s","ĠPe ck","Ġper v","ĠFl oat","o ley","ĠN ish","im ize","Ġarom atic","u in","end ish","! /","ĠB icycle","ĠAS IC","ile ged","ĠQuad ro","ios yn","Ġlock out","ĠW ink","SP EC","Attempt s","Ġseed ed","red o","ias is","Ġsn ag","ãĥķ ãĤ©","ãĤ ¶","Ġground ing","Ġrelie ver","Ġfrivol ous","ĠG ifts","ĠF aces","Es pecially","Ġmicrobi ome","im ag","ĠSch l","ĠP les","ĠBle ach","ĠIr win","ĠE aton","ĠDisc iple","Ġmultipl ication","Ġcoer ced","Ġ4 19","st h","E vil","B omb","Ġex orc","Ġstag gered","L ESS","Ġinert ia","ĠED IT","Ġgo b","Tr aditional","Ġclass y","Lear y","ĠP AGE","yr s","Ġtrans porter","Ġmat ured","Ġhij ab","Ġbi ome","Where as","Ġex termination","ĠT ues","ĠT akeru","ĠAud rey","er ial","ĠAd en","aff les","Ġnarciss istic","ĠB aird","UT F","I re","ĠCon nie","Ch amp","Ġwhis pering","ĠH att","D K","Ġdis infect","Ġdeduct ed","Ġpart ake","Ġdown grade","ĠEs ports","ĠContin uing","Ġdemocr atically","icro bial","itt a","Ġlim estone","Ġexempt ed","ĠFren zy","H erm","7 28","Ġfled gling","Met a","765 61","69 3","% :","w ake","5 26","ĠDis cipline","Ġvirgin ity","ĠLeg ions","ĠFrank ie","int ent","Ġrest rooms","ĠRou ter","da q","Ġobjection able","âĨ ij","w ark","ĠRah ul","g ain","activ ation","abs olute","ĠAccess ed","Ġ24 00","ogg les","Ġsecond ly","ĠDEF ENSE","Ġpost age","wra pper","sh arp","7 29","Ġcommun icates","Ġadd on","ĠMil itia","H ong","Ġsl umped","ĠJP EG","ĠI car","ad ish","68 1","Ġmaj esty","ĠWolf gang","ĠEl astic","u per","Ġv iz","Ġunconscious ly","ĠST D","ĠS ass","Ġflower ing","ĠHel ic","ĠDra per","ĠAm ateur","Ġman ure","Ġdis ingen","ĠLe i","br ing","9 49","Ġinhib ited","Ġhead quartered","Ġen igmatic","�� �","Ġred ress","R H","Ġratt led","Ġd iction","l io","ĠT BA","ĠSN AP","C alling","Ġfasc ists","ĠD ove","iew icz","0 36","Ġco asts","ĠR ect","Ġ) ]","L ot","6 29","ĠS EM","ĠPeters en","ĠExpl ain","ĠBo ards","ĠBe zos","ĠJ ournals","Ġ20 24","p arser","Ġmist rust","Ġgr ate","ĠL ocked","bo a","S aint","g aming","Ġvow el","in ately","bl ow","All ah","Ġun matched","Ġb ordering","ĠExp end","n r","Or acle","rou ch","Ġcont iguous","ac us","Ġdist raught","58 1","Ġanat omical","O X","ap ixel","8 33","ĠPL US","Ġres usc","Ġab iding","57 3","Ġvac ancies","Em ily","Ġhyp othal","ĠWer ner","ĠWe e","ĠDJ s","5 13","Ġwitch craft","Ġac upuncture","ent ary","benef it","Product s","ĠP SP","ĠMP G","ĠJ inn","ĠJ arrett","Ġ4 45","ĠIm aging","ĠP yth","Fin ish","Ġte x","Ġjuven iles","Ġhero ism","Ġdoubt less","ĠA ki","ĠT end","ĠPatri arch","Ġbit ters","ĠTele communications","it atively","ag na","Ġr g","ĠS OLD","Ġcomp ulsion","ĠN asa","ĠKath ryn","Ġmillion aires","Ġintrins ically","Ġbolst ered","time out","fl o","Ġtut or","p our","Stat ement","Ġ{ *","ĠRud olph","ĠKimber ly","rog ens","adi q","] +","Ġindign ation","Ġfract uring","ĠRe leases","ĠGr ain","pro tein","L ago","Ġvac ations","Ġboot ed","ĠTH REE","ĠH G","oresc ence","Ġt f","Ġso ar","iosyn cr","Ġgl ances","ĠSp oon","ĠJ ury","ĠCow boy","Ġcreat ively","Hig her","Ġsolic itor","Ġhaw k","ac io","89 6","Ġsuperf lu","Ġbombs hell","ct ure","Ġbroker age","Ġraid ing","Ġf rench","Ġang led","Trans action","ĠGen ocide","u pe","ĠHait ian","57 2","! :","Ġunwitting ly","iter ator","sc roll","Ġtall ied","Ġbi omedical","ĠC ARD","Ġe uphem","Ġbrain storm","a quin","K o","Mic helle","ĠR unes","ĠBall istic","ud ers","Ġmod esty","ĠiP ads","ĠEzek iel","Y E","Ġstars hip","Ġpower fully","Ġper l","ĠSh ade","ĠQu art","ĠE EG","Ġfisher man","OS ED","ĠTyp ical","df x","Ġmes hes","Ġet ched","worth iness","Ġtopp led","Ġ3 96","or ius","We iss","Ġmy sql","ĠVal halla","Ù Ĵ","le asing","Ġrec omp","rap nel","S el","04 3","Ġder ailed","ĠGu ides","IR T","Ġde human","ĠBritt any","\" ))","Ġex claim","Ġb alk","Ġ8 40","CLA IM","int el","L AB","Ġpe gged","Ġast roph","sm oking","Ġrig ging","Ġfix ation","Ġcat apult","ins ide","ĠC ascade","ĠBolshe vik","G aza","Dep th","Ġloud spe","Ġalmond s","me yer","l eness","j en","f resh","Ġunbeat en","ĠSqu id","ĠPres umably","Tim er","B W","Ġro sters","Ġell ipt","ĠHar riet","dat abase","ĠMut ual","ĠComm odore","uk ed","kn ife","ĠCOMM UN","h ya","Ġmel ts","arch ives","Ġrat ification","Ġmultip lying","Ġinter oper","Ġasc ert","w ings","ver ting","ĠScorp ion","ay e","ĠPorts mouth","ĠM TA","n it","iaz ep","Ġqu arantine","Ġslides how","Ġcent imeters","Ġsyn opsis","Ġsp ate","th irst","Ġnom inating","ĠMel vin","Pre view","Ġthro b","Ġgener ational","ĠRad ius","rest ling","put able","aw ar","N ECT","Ġunlaw fully","ĠRevel ations","Wik ipedia","sur v","Ġeye ing","ij n","ĠF W","Ġbr unt","Ġinter stellar","Ġcl itor","ĠCroat ian","ĠCh ic","ev a","ĠDis app","ĠA kin","iner ies","d ust","Interest ed","Ġgen esis","ĠE ucl","ö n","p icking","Ġmut ated","Ġdisappro ve","ĠHD L","Ġ6 25","Ì ¶","c ancer","Ġsqu ats","Ġle vers","Disc uss","= ]","D ex","ĠVIDE OS","A UD","Ġtrans act","ĠKin ect","ĠK uala","ĠC yp","7 47","Ġsh attering","Ġarsen ic","ĠInt ake","ĠAngel o","ĠQu it","ĠK he","Ġ18 93","M aker","0 29","ĠPain ting","Dis able","9 16","Ġanal ges","Ġtact ile","Ġprop hes","Ġd iced","ĠTravel s","ĠHe ader","ĠClub s","Ass istant","Ġinc rim","Ġd ips","Ġcruc ifix","ĠShan ahan","ĠInter pret","Ġ40 90","al ogy","abb a","Ġsimul ac","hus band","S IM","Ġrecy cle","uc er","ed ged","Ġre naissance","ĠBomb ay","Cath olic","ĠL INE","ĠCl othing","re ports","Ġpl aus","Ġd ag","ĠM ace","Z I","Ġintr uder","ĠVeter inary","g ru","Ġsne aky","ĠS ie","ĠC innamon","P OSE","Ġcou rier","ĠC NS","Ġemanc ipation","s it","Ġplay through","ĠFac ilities","v irt","ĠG auntlet","Thom pson","Ġunbeliev ably","Param eters","Ġst itching","ign e","ĠTH ESE","Priv acy","Ġshenan igans","Ġvit ri","ĠVal id","59 1","Ń ·","ĠProt otype","ink a","SC P","ĠT id","è Ī","old ed","Ġindividual ity","Ġbark ing","Ġm ars","ĠW D","Ġ8 20","Ġt ir","Ġsl apping","Ġdisgr untled","ĠAng ola","ri us","ĠTorn ado","ĠTh urs","Ġcapt cha","Ġang st","ĠP og","ĠAssass ins","ĠAd idas","Ġjoy ful","Ġwh ining","Emer gency","Ġphosph orus","Ġatt rition","oph on","ĠTimber wolves","ĠJ ah","ĠBr inging","ĠW ad","ĠEn sure","oh l","ĠX ie","omm el","c mp","Ġz ipper","Ġrel at","ĠCor ridor","m ilo","T ING","Av g","Ġcro pped","] }","Ġr aged","ĠLump ur","ĠGuer rero","our ke","N ut","Ġoff sets","og lu","dr m","Ġmort als","lat able","Ġdismiss ive","ä¸ ī","Ġthro ats","Ġchips et","ĠSpot light","Catal og","art ist","G b","Ġch illy","Ġst oked","Ġ3 74","W ard","L atin","Ġf iasco","Ġble ach","Ġb rav","Enh anced","Ġin oc","ĠFior ina","_ >","Ġle ukemia","Ġel uc","Ġannoun cer","ĠLith uan","ĠArm ageddon","å ĩ","Len in","ĠR uk","Ġpe pp","ĠRom antic","ĠP IT","ĠInter stellar","ĠAt kinson","R aid","J s","Go al","C ourse","Ġvan ishing","es ley","ĠR ounds","Els a","59 3","Ġredund ancy","ĠST AND","Ġprop hetic","Ġhabit able","ry u","Ġfaint ly","M ODE","Ġfl anked","IR C","Aw esome","Ġsp urious","ĠZ ah","ĠMS G","Ġsh ading","Ġmotiv ational","ĠSant ana","ĠS PR","Ġexc ruciating","om ial","ĠM iko","ĠLe opard","A byss","Ġ[ |","d irty","Ġbath s","Ġdem oral","and re","P B","Ġun ification","Ġsac rament","Ġ[ &","Ġpric eless","Ġgel atin","Ġeman ating","ĠAll aah","98 6","Ġout burst","Ġer as","ĠX VI","ĠSP I","O tt","ĠLaz arus","PL IED","F lying","blog s","W isconsin","R aven","Ġreb ate","Ġcreep s","ĠSp an","ĠPain ter","ĠKir a","ĠAm os","ĠCor vette","Cons umer","ĠRec over","ck i","Ġpes ky","ĠIn vention","Compan ies","Ġchalleng ers","ad emic","ĠUkrain ians","ĠNeuro log","ĠFors aken","Ġent rants","Ġemb attled","Ġdef unct","ĠGlac ier","Ġpo isons","ĠH orses","m akes","ĠD irt","Ġ4 23","hh h","ĠTrans formation","QUI RE","................ ..","Ġtrave ller","ĠSe xy","ĠK ern","ip olar","Ġransom ware","oooooooo oooooooo","E c","rub y","Prof essional","ĠOut break","arg ument","G rey","ĠFif a","ĠCH O","ĠFOR M","ĠAm trak","- [","Ġcr adle","Ġantioxid ants","ãģ®å ®","7 36","ĠNAS L","ĠContribut ions","Ind iana","ĠST EP","C SS","Ġsal ient","Ġall ocations","yr ights","Ġm ashed","ĠCut ter","Sex ual","Ġp ounded","Ġfan base","Ġc asc","ĠTrans parency","Ġanaly tic","ĠSummon er","× ŀ","ĠAD C","det ail","Ġvan quished","Ġcr abs","ar ie","Dest roy","ĠS ack","Ġtrans istor","Al abama","ĠK oen","ĠFisher ies","c one","Ġannex ed","ĠM GM","es a","Ġf aked","ĠCong ratulations","Ġhind ered","Ġcorrection al","ĠI TV","lee ve","Ġin appropriately","lic ks","Ġtresp ass","Ġp aws","Ġnegoti ator","ĠChrist ensen","lim its","ĠDian ne","Ġeleg ance","ĠContract s","an ke","Ob j","Ġvigil ance","Ġcast les","ĠN AD","ĠHol o","Ġemph atically","ĠTit us","ĠServ ing","ĠRich ie","ĠP igs","5 68","Ġanim osity","ĠAtt ributes","ĠU riel","M Q","my ra","ĠApplic ant","Ġpsychiat rists","ĠV ij","ĠAb by","ag ree","P ush","Ġk Wh","hib a","Ġinc ite","ĠWe asley","ĠTax i","minist ic","hy per","ĠF arn","Ġ6 01","ĠNation wide","F ake","95 2","Ġma ize","Ġinteract ed","Ġtransition ed","Ġparas itic","Ġharm onic","Ġdec aying","Ġbas eless","ns ics","Ġtrans pired","Ġabund antly","ĠFore nsic","Ġtread mill","ĠJ av","ab and","Ġssh d","Ġfront man","ĠJak arta","oll er","dro ps","ĠSERV ICES","rompt u","oph ical","h ospital","bled on","6 45","Ġmid range","ĠEV ENT","cul ated","raw led","Ġper ched","Ġover board","ĠPe el","ĠP wr","ĠCar th","ĠCOM PLE","co e","sh all","Ġdeter rence","M ETHOD","ĠAbs ent","M EN","Ġs ill","ĠLE VEL","Y ork","Ġsin ners","ĠOP EC","ĠN ur","ĠDesign s","se lection","Ġunw orthy","CH A","Ġstreng thens","88 3","ed ly","Ġslic ing","Ġmal nutrition","Ġfilm making","ĠPol k","ur ated","Ġ4 21","bre akers","!' \"","Ġwet lands","ĠDisc rimination","Ġallow able","Ġste ered","ĠSic ily","S AM","Ġmust ache","Ġm ids","Ġcl ipped","Ġcirc ulate","Ġbr ittle","ĠBuild ings","ra ised","ĠRound up","Ġwealth ier","Ġoverw rite","Ġover powered","ĠGerr ard","s ites","PD ATED","Ġacute ly","ĠGam ble","Ġp im","ĠK us","Typ ically","De ploy","ĠMoroc can","p otion","com be","Ġvigil ante","Ġ36 3","St ew","ĠB agg","Ġres ided","ĠSp o","Ġrem nant","Ġempt iness","br ainer","Ġout patient","pri ority","Ġle ptin","ĠPay ton","ĠGle aming","ĠS hed","ĠPol o","ĠMormon ism","rest ricted","arl ane","w x","Ġcreat ine","ĠAn on","ĠST UD","ĠJ UL","ĠT ee","5 28","08 9","Ġhat ched","Dis patch","ĠCompos ite","Ġ45 1","p uff","ĠX COM","ĠOr n","ĠTH ANK","END ED","ĠAshe ville","Ġà ľ","Ġman go","ĠS lightly","world ly","ĠW ander","ĠExp and","ĠCh r","M ist","Ġorthodox y","ĠUN ESCO","reg ate","Else where","k ie","ir led","Ġtopp le","Ġadopt ive","ĠLeg s","d ress","ĠS agan","b are","ĠGl ou","Cr unch","Ġhelp ers","Ġchron ically","ĠH uma","1 0000","Ġaccommod ating","äº Ķ","Ġwrink les","Ġdod ged","four th","Ġpre con","Ġcompress or","ĠK are","Ġev ict","ĠWar wick","im ar","Ġmodern ization","Ġband wagon","Ġref uted","Ġnet ted","ĠNa ples","ĠGen ie","per ors","Ġfield ed","Ġde re","ĠPar ables","le es","Ġtr out","asp ers","Ġn ihil","Ġhapp iest","Ġflo ppy","ĠLo ft","ĠHe ard","Ġun ison","Ġl ug","ĠRed mond","class ic","Supp orters","SH IP","G MT","Ġfue lled","ç IJ","Ġd d","ĠEmin em","Ġ18 97","NY SE","Ġsecret aries","ĠF IA","ĠCanaver al","F avorite","Ġp omp","Ġdetain ee","ers hip","aim on","i our","ĠA pex","Ġplant ations","am ia","ac ion","R ust","Ġtow ed","ĠTru ly","5 77","Ġshel tered","r ider","W o","Ġl air","ĠInt elligent","impro ve","m atically","Ġet iquette","ad ra","all o","ĠJun o","any thing","ĠStru ggle","ĠPred ict","ĠGr imes","ĠAMER ICA","ct x","ĠSit uation","W OOD","Ġsol uble","me ier","Ġintoler able","ang ering","Ġun interrupted","Ġtool tip","Ġinterrog ated","Ġgun ned","ĠSne ak","æŃ ¦","Ġt ether","Ġcr umble","L ens","Ġclust ered","ĠSy l","ĠHas an","Ġdystop ian","w ana","Ġjoy stick","ĠTh ib","amm u","Tom orrow","5 46","Ġoverc ame","Ġminim ized","cept or","Run ner","ENG TH","ĠBrend a","ĠAchieve ments","Ġtor ches","Ġrapp ort","ĠInvestig ator","ĠHand ling","rel ation","g rey","8 15","Ġk cal","ĠComm ands","d q","Ġcur ls","Ġbe arer","Ġcyn icism","it ri","ĠUse ful","B ee","D CS","Ġab ras","P ract","BIL ITIES","7 12","Ġdebug ger","Ġdebt or","ĠL ia","ĠK ers","Ġexacerb ate","ĠSt acy","ĠB land","ĠSc enes","Ġbranch ing","âĸĪâĸĪâĸĪâĸĪ âĸĪâĸĪâĸĪâĸĪ","ape ake","Ġs alsa","Ġmish and","ĠKon ami","ĠN ib","Ġanecd ote","Ġagree able","Ï ī","ĠNath aniel","ĠHe isman","ĠB eware","Ġ18 86","spect ive","69 1","5 22","Ġinhib its","Ġhas hing","Ġ18 89","å° Ĩ","v ich","P ure","Ġsolid ly","Ġaspir in","im aru","Ġstreet car","ĠU CS","ĠJ udd","Ġflash backs","p ins","Ġ14 40","ĠUN HCR","ĠSym ptoms","T IT","5 38","F ra","% );","Ġo oz","Ġcur few","Ġcal med","Ġparticip ates","Te X","Ġnons ensical","Ġfull back","ĠDe L","mon key","h ari","Ġmetabol ites","Ġloot ed","ĠAL WAYS","ĠB CC","L t","oc het","B one","Ġveto ed","Ġg cc","ĠCL ICK","Ġ18 88","s af","Ġstiff ness","Ġlow ly","ĠGe h","vers on","ors et","Ġun foreseen","Ġan esthesia","ĠOpt ical","Ġrecon structed","ĠT up","sh ows","NEW S","ĠNewsp aper","ĠA SA","ter a","N umbers","Ġinexpl icable","× ij","Ġhard ness","unt arily","ĠA cer","grad ient","ARD IS","Ġwood land","Ġmetaph ors","ĠWem bley","ĠPa vel","phil is","Ġre writing","Ġpercept ual","Ġ10 70","worm s","ĠDown s","Ġunsur prisingly","Ġtag ging","fl ame","Ġlit res","Ġboun ces","ĠB abe","sh ut","Ġoverd oses","ĠShe ila","ĠCh au","ĠBl ess","Capt ure","ĠSign ificant","ĠSc ion","Ġ38 9","ĠMc H","ĠTitan ium","ĠMe al","amed a","ag ents","agg ressive","B illy","76 3","ĠS aying","DER R","it one","Coll ins","B ound","Ġbol ted","ĠDM CA","95 3","Ġun iqueness","Ġep igen","un ci","ant am","Ġreck oning","ch airs","OG R","ĠSen egal","Ġ18 62","re levant","Ġ ¯","Ġpharm acies","ĠG eral","v ier","Y an","OR PG","Ġrab id","b ending","ĠUN ITED","Ġ4 65","As sembly","Ġwe ep","Ġbe hest","ĠMother s","ĠJ ace","h id","Ġwh irlwind","ĠUN IVERS","Ġut opian","Ġkidn ap","Ph ilipp","K in","89 3","Ġlivest ream","ĠM ISS","Ġsub versive","ĠTechn iques","ĠJUST ICE","ĠB ASE","Ġ38 7","Ġassail ants","ĠHard core","Ġsprink led","ĠP se","é ļ","print ed","ĠH au","OR GE","ĠT OUR","Ġl aced","Ġit ch","G iving","Ġport ed","78 1","//////////////// ////////////////","bre eding","Ġlog ger","ĠH OL","inn ie","First ly","Ġembry onic","Ġdeleg ated","p ai","O IL","Ġcentr ally","ĠR x","ĠSc outing","D utch","Ġhe reditary","ĠCru iser","s at","5 29","ĠMar riott","other mal","Ġprohib itions","E arn","ĠSt ab","ĠColleg es","ĠBel ief","st retched","ĠL H","ĠEntity Item","C IA","Ġun rem","Ġlaure ate","Ġdenomin ations","sum mary","h ler","S pect","ĠK laus","ĠBe ans","Ġins ur","ĠPA X","Ġfield er","ĠV et","ĠSp arrow","z ie","ĠS Q","ĠMond ays","ĠOff line","ĠLer ner","ĠExt ensions","Ire land","Ġpatron age","Ġcontrast ed","ĠMan ia","h irt","Mos cow","Ġcondem ns","ĠAn ge","Ġcomp osing","ĠPe pe","ĠP addock","Ġheter ogeneity","Ġide ologically","Ġf ishes","Ġcur sing","ĠR utherford","ĠFlo ating","ĠAm elia","Te a","Syn opsis","Ġstun ts","Ġbe ad","Ġstock ing","ĠM ILL","ob ook","mass ive","\\ <","Ġh ump","ĠPref erences","Engine Debug","ge ist","ĠNiet o","ome ver","ish y","eval uate","col onial","Altern ative","ĠGo Pro","ĠV ortex","ĠNET WORK","ans ky","Sec ure","ĠTh rust","Sn ake","Ġparcel s","Ġsam urai","Ġactress es","N ap","M F","ifer ation","Be er","5 23","ĠI ly","oint ment","P ing","Ġstri ped","ĠMell on","oss ession","Ġneut ron","end ium","Ġa ph","ĠFlav oring","Ġ38 3","Ġrespons iveness","ĠJ indal","ĠHitch cock","Den ver","ĠDRAG ON","sm anship","ĠDu pl","Ġs ly","Ġweb cam","ĠTw ain","ĠDar ling","ili ate","cons umer","D IT","Ġnames ake","Ġun orthodox","Ġfun er","ĠPL oS","ĠCONTR OL","ozy g","ogl obin","F ACE","ER G","ĠD ia","ĠF iesta","ce le","0 34","Ġencl ave","âĸ¬ âĸ¬","on ement","al ist","M and","Ġhome grown","ĠF ancy","Ġconcept ions","ĠCont ains","ure en","Ġreiter ate","Ġme ager","Ġinstall ments","Sp awn","6 27","Ġphot oc","ĠCab rera","ĠRos enthal","ĠLans ing","is ner","Ġinvest s","ĠUFO s","EX P","Hard ware","Ġtr agically","Ġconced es","ie ft","ch am","bor gh","ĠSch r","ĠMel anie","ĠH oy","Ġvisit ation","Ġid iosyncr","Ġfract ions","Ġfore skin","ob os","Ġpo aching","ĠVI EW","Ġstimul ates","ĠG ork","can on","M IC","ĠNem esis","ĠInd ra","ĠDM V","Ġ5 29","Ġinspect ing","Ġgrand ma","ĠW hedon","ĠSh ant","ĠP urg","ik an","ĠT eg","ĠCL R","z ac","Vict oria","ĠVer ify","ion ics","Ġpart ying","ĠM ou","col our","Ġtestim onies","l ations","Ġpress uring","hi ro","ac ers","Ġf id","ang ler","ĠCS I","Ġhere after","Ġdiss idents","report ing","iph any","che v","Ġsol itude","Ġl obe","Ġind is","Ġcred ential","re cent","ad ult","ĠNir vana","ĠFranch ise","L ayer","H yp","ĠBerks hire","Ġwill s","t if","Ġtot em","ĠJud ah","rep air","Inst ant","5 48","Ġemb assies","Ġbott leneck","Ġb ount","Ġtyp ew","ĠAl vin","j ing","im ilar","R ush","Ġbr im","ĠHEL P","A im","] '","Ġpass ively","Ġbound ed","ĠR ated","Ġcriminal ity","Ġbiom ark","Ġdisp atcher","ĠTow ards","Ġ+ ++","right eous","f rog","ĠP anc","C arter","0 32","æ© Ł","Ġult raviolet","ĠLic ensed","ĠT ata","ĠBl essing","ĠG AM","Ġchem ically","ĠSe af","ĠRE LE","ĠMerc enary","capital ist","Ġform ulations","Ġann ihilation","ĠVer b","ĠAr gon","Ġun loaded","Ġmorp hed","Ġconqu ering","back er","I ELD","Ġtheft s","Ġfront runner","ĠRoy ale","ĠFund amental","el ight","C hip","necess ary","ay n","ĠSl ip","Ġ4 48","cern ed","P ause","Ġshock ingly","ĠAB V","Ġcomp osure","7 33","ĠMotors port","ah ime","Mur ray","M ach","Ġgr ids","Ġdeb ian","Ġfurther more","Ġdexter ity","ĠCollect ions","os lov","il age","b j","ĠMont eneg","Ġstrut Connector","Ġmassac res","Ġbrief s","fet ched","uv ian","ol ition","Fail ure","emon ic","Ġfl ared","Ġclaim ant","Ġc ures","Ġgive aways","ĠSubst ance","al ions","Ġcr inge","ĠK ul","Ġarist ocracy","ĠUl ster","ol ated","h ousing","ĠM IS","Ġgl ared","ĠWil helm","ne eds","lam bda","build ers","ĠV IS","Ġradi ator","ĠGhost busters","Ġ4 36","act ual","Ġher ds","ç a","watch ing","Ġcounter ing","Ch arge","Ġchar red","Ġwar heads","Ġiod ine","ĠM acy","04 1","Ġdepart ures","ĠS ins","Ġdy ed","ĠConcept s","g ado","7 13","Ġquot ations","Ġg ist","ĠChrist y","Ġant igen","ĠHem p","ĠD rawn","ĠB arg","ez vous","Ġp aternity","Ġar du","ĠAnch orage","ĠR ik","Ġover loaded","ĠUs ername","ĠTam my","ĠN au","ĠCell ular","Ġw aning","Ġrod ent","ĠWor cester","il ts","ĠT ad","Ġdwell ings","Ġbull ish","4 31","Ġretali ate","Ġmig raine","ĠChev ron","CH ECK","Ġdon key","c rim","SP A","ĠAn alog","Ġmarqu ee","ĠHa as","B ir","ĠGD DR","ĠDownload s","Ġwill power","ĠFor th","ĠRecord ed","Ġimp ossibility","ĠLog ged","ĠFr anks","ĠR att","in itions","Ġclean ers","Ġsore ly","Ġflick ering","ĠEx amination","c atching","allow een","Ms g","Ġdun no","F a","Ġdys ph","c razy",".' '.","Ġmain line","Ġc s","Ġp tr","ĠW ally","ig un","95 1","ĠBig foot","f ights","Ġretrie ving","J r","Ġdupl ication","ĠExpl an","Ġrel ational","Ġqu aint","Ġbisc uits","Ġad o","Ġsh udder","Ġantid ote","blood ed","ks h","Ġsa uces","Ġrein vest","Ġdispens ary","ĠD iver","Ġ9 000","stud ent","Ġin separ","esc ap","Ġtodd lers","ĠGP IO","ĠAss ignment","head ers","Ġlack luster","Ġab ack","95 6","Ġtool bar","7 45","Ġo ust","Ġcontempl ation","ĠPRES IDENT","Ġ4 58","==== ==","Ġguarantee ing","ĠHe ist","ĠCann es","Ļ ½","Ġcollabor ator","ĠAm p","Ġg ou","ĠSH ALL","st ories","78 3","Ġmobil ized","Ġbro od","ĠL U","ĠðŁ ij","Ġref in","ĠAnthrop ology","v ind","ill i","Ġwarrant ies","ĠB abel","Ġsw ath","Ġc aches","Ġantagon ists","art ifacts","Ġhot ly","ĠSt arts","ĠG ö","z ag","!! !!!","Ġsc ourge","Ġcons piring","ru its","re verse","ĠShe en","ĠJes uit","ĠGiov anni","ad ies","Ġbutt ocks","ear cher","ac an","Ġvolley ball","Ġshroud ed","Ġscore board","b ats","ĠI PM","Ġass es","Ġde regulation","ĠTe legram","ĠReb oot","Ġ7 000","ĠCan ary","Ġk ernels","ĠFranç ois","ĠD uff","ĠP on","ĠLe ica","ĠGar min","Ġor phans","ĠClaud ia","Ġcal endars","ĠLe ilan","ent o","R ocket","Ġbr unch","ĠHaw king","ain ers","Ġsens ibilities","Ġk W","ĠK and","Ġre claimed","Ġinteresting ly","× ©","rom y","J M","ĠEnhance ment","b ush","Sk ip","Ġrapp ers","Ġg azing","p edia","ath lon","Rev olution","Ġsn ipers","Ġre verted","Ġconglomer ate","T erry","79 4","Ġhars her","Ġdes olate","ĠHit man","Comm ission","Ġ( /","â̦ .\"","Com par","Ġampl ification","om inated","Ġreg ress","ĠColl ider","Ġinform ants","Ġg azed"]}} \ No newline at end of file diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..c92208c --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1 @@ +{"unk_token": "<|endoftext|>", "bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "add_prefix_space": false, "model_max_length": 1024, "special_tokens_map_file": null, "name_or_path": "gpt2", "tokenizer_class": "GPT2Tokenizer"} \ No newline at end of file diff --git a/val_000000039769.jpg b/val_000000039769.jpg new file mode 100644 index 0000000..e131e8e Binary files /dev/null and b/val_000000039769.jpg differ diff --git a/vocab.json b/vocab.json new file mode 100644 index 0000000..84ef7fb --- /dev/null +++ b/vocab.json @@ -0,0 +1 @@ +{"!":0,"\"":1,"#":2,"$":3,"%":4,"&":5,"'":6,"(":7,")":8,"*":9,"+":10,",":11,"-":12,".":13,"/":14,"0":15,"1":16,"2":17,"3":18,"4":19,"5":20,"6":21,"7":22,"8":23,"9":24,":":25,";":26,"<":27,"=":28,">":29,"?":30,"@":31,"A":32,"B":33,"C":34,"D":35,"E":36,"F":37,"G":38,"H":39,"I":40,"J":41,"K":42,"L":43,"M":44,"N":45,"O":46,"P":47,"Q":48,"R":49,"S":50,"T":51,"U":52,"V":53,"W":54,"X":55,"Y":56,"Z":57,"[":58,"\\":59,"]":60,"^":61,"_":62,"`":63,"a":64,"b":65,"c":66,"d":67,"e":68,"f":69,"g":70,"h":71,"i":72,"j":73,"k":74,"l":75,"m":76,"n":77,"o":78,"p":79,"q":80,"r":81,"s":82,"t":83,"u":84,"v":85,"w":86,"x":87,"y":88,"z":89,"{":90,"|":91,"}":92,"~":93,"¡":94,"¢":95,"£":96,"¤":97,"¥":98,"¦":99,"§":100,"¨":101,"©":102,"ª":103,"«":104,"¬":105,"®":106,"¯":107,"°":108,"±":109,"²":110,"³":111,"´":112,"µ":113,"¶":114,"·":115,"¸":116,"¹":117,"º":118,"»":119,"¼":120,"½":121,"¾":122,"¿":123,"À":124,"Á":125,"Â":126,"Ã":127,"Ä":128,"Å":129,"Æ":130,"Ç":131,"È":132,"É":133,"Ê":134,"Ë":135,"Ì":136,"Í":137,"Î":138,"Ï":139,"Ð":140,"Ñ":141,"Ò":142,"Ó":143,"Ô":144,"Õ":145,"Ö":146,"×":147,"Ø":148,"Ù":149,"Ú":150,"Û":151,"Ü":152,"Ý":153,"Þ":154,"ß":155,"à":156,"á":157,"â":158,"ã":159,"ä":160,"å":161,"æ":162,"ç":163,"è":164,"é":165,"ê":166,"ë":167,"ì":168,"í":169,"î":170,"ï":171,"ð":172,"ñ":173,"ò":174,"ó":175,"ô":176,"õ":177,"ö":178,"÷":179,"ø":180,"ù":181,"ú":182,"û":183,"ü":184,"ý":185,"þ":186,"ÿ":187,"Ā":188,"ā":189,"Ă":190,"ă":191,"Ą":192,"ą":193,"Ć":194,"ć":195,"Ĉ":196,"ĉ":197,"Ċ":198,"ċ":199,"Č":200,"č":201,"Ď":202,"ď":203,"Đ":204,"đ":205,"Ē":206,"ē":207,"Ĕ":208,"ĕ":209,"Ė":210,"ė":211,"Ę":212,"ę":213,"Ě":214,"ě":215,"Ĝ":216,"ĝ":217,"Ğ":218,"ğ":219,"Ġ":220,"ġ":221,"Ģ":222,"ģ":223,"Ĥ":224,"ĥ":225,"Ħ":226,"ħ":227,"Ĩ":228,"ĩ":229,"Ī":230,"ī":231,"Ĭ":232,"ĭ":233,"Į":234,"į":235,"İ":236,"ı":237,"IJ":238,"ij":239,"Ĵ":240,"ĵ":241,"Ķ":242,"ķ":243,"ĸ":244,"Ĺ":245,"ĺ":246,"Ļ":247,"ļ":248,"Ľ":249,"ľ":250,"Ŀ":251,"ŀ":252,"Ł":253,"ł":254,"Ń":255,"Ġt":256,"Ġa":257,"he":258,"in":259,"re":260,"on":261,"Ġthe":262,"er":263,"Ġs":264,"at":265,"Ġw":266,"Ġo":267,"en":268,"Ġc":269,"it":270,"is":271,"an":272,"or":273,"es":274,"Ġb":275,"ed":276,"Ġf":277,"ing":278,"Ġp":279,"ou":280,"Ġan":281,"al":282,"ar":283,"Ġto":284,"Ġm":285,"Ġof":286,"Ġin":287,"Ġd":288,"Ġh":289,"Ġand":290,"ic":291,"as":292,"le":293,"Ġth":294,"ion":295,"om":296,"ll":297,"ent":298,"Ġn":299,"Ġl":300,"st":301,"Ġre":302,"ve":303,"Ġe":304,"ro":305,"ly":306,"Ġbe":307,"Ġg":308,"ĠT":309,"ct":310,"ĠS":311,"id":312,"ot":313,"ĠI":314,"ut":315,"et":316,"ĠA":317,"Ġis":318,"Ġon":319,"im":320,"am":321,"ow":322,"ay":323,"ad":324,"se":325,"Ġthat":326,"ĠC":327,"ig":328,"Ġfor":329,"ac":330,"Ġy":331,"ver":332,"ur":333,"Ġu":334,"ld":335,"Ġst":336,"ĠM":337,"'s":338,"Ġhe":339,"Ġit":340,"ation":341,"ith":342,"ir":343,"ce":344,"Ġyou":345,"il":346,"ĠB":347,"Ġwh":348,"ol":349,"ĠP":350,"Ġwith":351,"Ġ1":352,"ter":353,"ch":354,"Ġas":355,"Ġwe":356,"Ġ(":357,"nd":358,"ill":359,"ĠD":360,"if":361,"Ġ2":362,"ag":363,"ers":364,"ke":365,"Ġ\"":366,"ĠH":367,"em":368,"Ġcon":369,"ĠW":370,"ĠR":371,"her":372,"Ġwas":373,"Ġr":374,"od":375,"ĠF":376,"ul":377,"ate":378,"Ġat":379,"ri":380,"pp":381,"ore":382,"ĠThe":383,"Ġse":384,"us":385,"Ġpro":386,"Ġha":387,"um":388,"Ġare":389,"Ġde":390,"ain":391,"and":392,"Ġor":393,"igh":394,"est":395,"ist":396,"ab":397,"rom":398,"ĠN":399,"th":400,"Ġcom":401,"ĠG":402,"un":403,"op":404,"00":405,"ĠL":406,"Ġnot":407,"ess":408,"Ġex":409,"Ġv":410,"res":411,"ĠE":412,"ew":413,"ity":414,"ant":415,"Ġby":416,"el":417,"os":418,"ort":419,"oc":420,"qu":421,"Ġfrom":422,"Ġhave":423,"Ġsu":424,"ive":425,"ould":426,"Ġsh":427,"Ġthis":428,"nt":429,"ra":430,"pe":431,"ight":432,"art":433,"ment":434,"Ġal":435,"ust":436,"end":437,"--":438,"all":439,"ĠO":440,"ack":441,"Ġch":442,"Ġle":443,"ies":444,"red":445,"ard":446,"âĢ":447,"out":448,"ĠJ":449,"Ġab":450,"ear":451,"iv":452,"ally":453,"our":454,"ost":455,"gh":456,"pt":457,"Ġpl":458,"ast":459,"Ġcan":460,"ak":461,"ome":462,"ud":463,"The":464,"Ġhis":465,"Ġdo":466,"Ġgo":467,"Ġhas":468,"ge":469,"'t":470,"ĠU":471,"rou":472,"Ġsa":473,"Ġj":474,"Ġbut":475,"Ġwor":476,"Ġall":477,"ect":478,"Ġk":479,"ame":480,"Ġwill":481,"ok":482,"Ġwhe":483,"Ġthey":484,"ide":485,"01":486,"ff":487,"ich":488,"pl":489,"ther":490,"Ġtr":491,"..":492,"Ġint":493,"ie":494,"ure":495,"age":496,"Ġne":497,"ial":498,"ap":499,"ine":500,"ice":501,"Ġme":502,"Ġout":503,"ans":504,"one":505,"ong":506,"ions":507,"Ġwho":508,"ĠK":509,"Ġup":510,"Ġtheir":511,"Ġad":512,"Ġ3":513,"Ġus":514,"ated":515,"ous":516,"Ġmore":517,"ue":518,"og":519,"ĠSt":520,"ind":521,"ike":522,"Ġso":523,"ime":524,"per":525,".\"":526,"ber":527,"iz":528,"act":529,"Ġone":530,"Ġsaid":531,"Ġ-":532,"are":533,"Ġyour":534,"cc":535,"ĠTh":536,"Ġcl":537,"ep":538,"ake":539,"able":540,"ip":541,"Ġcont":542,"Ġwhich":543,"ia":544,"Ġim":545,"Ġabout":546,"Ġwere":547,"very":548,"ub":549,"Ġhad":550,"Ġen":551,"Ġcomp":552,",\"":553,"ĠIn":554,"Ġun":555,"Ġag":556,"ire":557,"ace":558,"au":559,"ary":560,"Ġwould":561,"ass":562,"ry":563,"ĠâĢ":564,"cl":565,"ook":566,"ere":567,"so":568,"ĠV":569,"ign":570,"ib":571,"Ġoff":572,"Ġte":573,"ven":574,"ĠY":575,"ile":576,"ose":577,"ite":578,"orm":579,"Ġ201":580,"Ġres":581,"Ġman":582,"Ġper":583,"Ġother":584,"ord":585,"ult":586,"Ġbeen":587,"Ġlike":588,"ase":589,"ance":590,"ks":591,"ays":592,"own":593,"ence":594,"Ġdis":595,"ction":596,"Ġany":597,"Ġapp":598,"Ġsp":599,"int":600,"ress":601,"ations":602,"ail":603,"Ġ4":604,"ical":605,"Ġthem":606,"Ġher":607,"ount":608,"ĠCh":609,"Ġar":610,"Ġif":611,"Ġthere":612,"Ġpe":613,"Ġyear":614,"av":615,"Ġmy":616,"Ġsome":617,"Ġwhen":618,"ough":619,"ach":620,"Ġthan":621,"ru":622,"ond":623,"ick":624,"Ġover":625,"vel":626,"Ġqu":627,"ĊĊ":628,"Ġsc":629,"reat":630,"ree":631,"ĠIt":632,"ound":633,"port":634,"Ġalso":635,"Ġpart":636,"fter":637,"Ġkn":638,"Ġbec":639,"Ġtime":640,"ens":641,"Ġ5":642,"ople":643,"Ġwhat":644,"Ġno":645,"du":646,"mer":647,"ang":648,"Ġnew":649,"----":650,"Ġget":651,"ory":652,"ition":653,"ings":654,"Ġjust":655,"Ġinto":656,"Ġ0":657,"ents":658,"ove":659,"te":660,"Ġpeople":661,"Ġpre":662,"Ġits":663,"Ġrec":664,"Ġtw":665,"ian":666,"irst":667,"ark":668,"ors":669,"Ġwork":670,"ade":671,"ob":672,"Ġshe":673,"Ġour":674,"wn":675,"ink":676,"lic":677,"Ġ19":678,"ĠHe":679,"ish":680,"nder":681,"ause":682,"Ġhim":683,"ons":684,"Ġ[":685,"Ġro":686,"form":687,"ild":688,"ates":689,"vers":690,"Ġonly":691,"oll":692,"Ġspe":693,"ck":694,"ell":695,"amp":696,"Ġacc":697,"Ġbl":698,"ious":699,"urn":700,"ft":701,"ood":702,"Ġhow":703,"hed":704,"Ġ'":705,"Ġafter":706,"aw":707,"Ġatt":708,"ov":709,"ne":710,"Ġplay":711,"erv":712,"ict":713,"Ġcould":714,"itt":715,"Ġam":716,"Ġfirst":717,"Ġ6":718,"Ġact":719,"Ġ$":720,"ec":721,"hing":722,"ual":723,"ull":724,"Ġcomm":725,"oy":726,"old":727,"ces":728,"ater":729,"Ġfe":730,"Ġbet":731,"we":732,"iff":733,"Ġtwo":734,"ock":735,"Ġback":736,").":737,"ident":738,"Ġunder":739,"rough":740,"sel":741,"xt":742,"Ġmay":743,"round":744,"Ġpo":745,"ph":746,"iss":747,"Ġdes":748,"Ġmost":749,"Ġdid":750,"Ġadd":751,"ject":752,"Ġinc":753,"fore":754,"Ġpol":755,"ont":756,"Ġagain":757,"clud":758,"tern":759,"Ġknow":760,"Ġneed":761,"Ġcons":762,"Ġco":763,"Ġ.":764,"Ġwant":765,"Ġsee":766,"Ġ7":767,"ning":768,"iew":769,"ĠThis":770,"ced":771,"Ġeven":772,"Ġind":773,"ty":774,"ĠWe":775,"ath":776,"Ġthese":777,"Ġpr":778,"Ġuse":779,"Ġbecause":780,"Ġfl":781,"ng":782,"Ġnow":783,"ĠâĢĵ":784,"com":785,"ise":786,"Ġmake":787,"Ġthen":788,"ower":789,"Ġevery":790,"ĠUn":791,"Ġsec":792,"oss":793,"uch":794,"Ġem":795,"Ġ=":796,"ĠRe":797,"ied":798,"rit":799,"Ġinv":800,"lect":801,"Ġsupp":802,"ating":803,"Ġlook":804,"man":805,"pect":806,"Ġ8":807,"row":808,"Ġbu":809,"Ġwhere":810,"ific":811,"Ġyears":812,"ily":813,"Ġdiff":814,"Ġshould":815,"Ġrem":816,"Th":817,"In":818,"Ġev":819,"day":820,"'re":821,"rib":822,"Ġrel":823,"ss":824,"Ġdef":825,"Ġright":826,"Ġsy":827,"),":828,"les":829,"000":830,"hen":831,"Ġthrough":832,"ĠTr":833,"__":834,"Ġway":835,"Ġdon":836,"Ġ,":837,"Ġ10":838,"ased":839,"Ġass":840,"ublic":841,"Ġreg":842,"ĠAnd":843,"ix":844,"Ġvery":845,"Ġinclud":846,"other":847,"Ġimp":848,"oth":849,"Ġsub":850,"ĠâĢĶ":851,"Ġbeing":852,"arg":853,"ĠWh":854,"==":855,"ible":856,"Ġdoes":857,"ange":858,"ram":859,"Ġ9":860,"ert":861,"ps":862,"ited":863,"ational":864,"Ġbr":865,"Ġdown":866,"Ġmany":867,"aking":868,"Ġcall":869,"uring":870,"ities":871,"Ġph":872,"ics":873,"als":874,"Ġdec":875,"ative":876,"ener":877,"Ġbefore":878,"ility":879,"Ġwell":880,"Ġmuch":881,"erson":882,"Ġthose":883,"Ġsuch":884,"Ġke":885,"Ġend":886,"ĠBut":887,"ason":888,"ting":889,"Ġlong":890,"ef":891,"Ġthink":892,"ys":893,"Ġbel":894,"Ġsm":895,"its":896,"ax":897,"Ġown":898,"Ġprov":899,"Ġset":900,"ife":901,"ments":902,"ble":903,"ward":904,"Ġshow":905,"Ġpres":906,"ms":907,"omet":908,"Ġob":909,"Ġsay":910,"ĠSh":911,"ts":912,"ful":913,"Ġeff":914,"Ġgu":915,"Ġinst":916,"und":917,"ren":918,"cess":919,"Ġent":920,"ĠYou":921,"Ġgood":922,"Ġstart":923,"ince":924,"Ġmade":925,"tt":926,"stem":927,"olog":928,"up":929,"Ġ|":930,"ump":931,"Ġhel":932,"vern":933,"ular":934,"ually":935,"Ġac":936,"Ġmon":937,"Ġlast":938,"Ġ200":939,"10":940,"Ġstud":941,"ures":942,"ĠAr":943,"self":944,"ars":945,"meric":946,"ues":947,"cy":948,"Ġmin":949,"ollow":950,"Ġcol":951,"io":952,"Ġmod":953,"Ġcount":954,"ĠCom":955,"hes":956,"Ġfin":957,"air":958,"ier":959,"âĢĶ":960,"read":961,"ank":962,"atch":963,"ever":964,"Ġstr":965,"Ġpoint":966,"ork":967,"ĠNew":968,"Ġsur":969,"ool":970,"alk":971,"ement":972,"Ġused":973,"ract":974,"ween":975,"Ġsame":976,"oun":977,"ĠAl":978,"ci":979,"Ġdiffere":980,"Ġwhile":981,"--------":982,"Ġgame":983,"cept":984,"Ġsim":985,"...":986,"Ġinter":987,"ek":988,"Ġreport":989,"Ġprodu":990,"Ġstill":991,"led":992,"ah":993,"Ġhere":994,"Ġworld":995,"Ġthough":996,"Ġnum":997,"arch":998,"imes":999,"ale":1000,"ĠSe":1001,"ĠIf":1002,"//":1003,"ĠLe":1004,"Ġret":1005,"Ġref":1006,"Ġtrans":1007,"ner":1008,"ution":1009,"ters":1010,"Ġtake":1011,"ĠCl":1012,"Ġconf":1013,"way":1014,"ave":1015,"Ġgoing":1016,"Ġsl":1017,"ug":1018,"ĠAmeric":1019,"Ġspec":1020,"Ġhand":1021,"Ġbetween":1022,"ists":1023,"ĠDe":1024,"oot":1025,"It":1026,"Ġear":1027,"Ġagainst":1028,"Ġhigh":1029,"gan":1030,"az":1031,"ather":1032,"Ġexp":1033,"Ġop":1034,"Ġins":1035,"Ġgr":1036,"Ġhelp":1037,"Ġrequ":1038,"ets":1039,"ins":1040,"ĠPro":1041,"ism":1042,"Ġfound":1043,"land":1044,"ata":1045,"uss":1046,"ames":1047,"Ġperson":1048,"Ġgreat":1049,"pr":1050,"Ġsign":1051,"ĠAn":1052,"'ve":1053,"Ġsomet":1054,"Ġser":1055,"hip":1056,"Ġrun":1057,"Ġ:":1058,"Ġter":1059,"irect":1060,"Ġfollow":1061,"Ġdet":1062,"ices":1063,"Ġfind":1064,"12":1065,"Ġmem":1066,"Ġcr":1067,"ered":1068,"ex":1069,"Ġext":1070,"uth":1071,"ense":1072,"co":1073,"Ġteam":1074,"ving":1075,"ouse":1076,"ash":1077,"att":1078,"ved":1079,"Ġsystem":1080,"ĠAs":1081,"der":1082,"ives":1083,"min":1084,"Ġlead":1085,"ĠBl":1086,"cent":1087,"Ġaround":1088,"Ġgovern":1089,"Ġcur":1090,"velop":1091,"any":1092,"Ġcour":1093,"alth":1094,"ages":1095,"ize":1096,"Ġcar":1097,"ode":1098,"Ġlaw":1099,"Ġread":1100,"'m":1101,"con":1102,"Ġreal":1103,"Ġsupport":1104,"Ġ12":1105,"....":1106,"Ġreally":1107,"ness":1108,"Ġfact":1109,"Ġday":1110,"Ġboth":1111,"ying":1112,"Ġserv":1113,"ĠFor":1114,"Ġthree":1115,"Ġwom":1116,"Ġmed":1117,"ody":1118,"ĠThey":1119,"50":1120,"Ġexper":1121,"ton":1122,"Ġeach":1123,"akes":1124,"Ġche":1125,"Ġcre":1126,"ines":1127,"Ġrep":1128,"19":1129,"gg":1130,"illion":1131,"Ġgrou":1132,"ute":1133,"ik":1134,"We":1135,"get":1136,"ER":1137,"Ġmet":1138,"Ġsays":1139,"ox":1140,"Ġduring":1141,"ern":1142,"ized":1143,"ared":1144,"Ġfam":1145,"ically":1146,"Ġhapp":1147,"ĠIs":1148,"Ġchar":1149,"med":1150,"vent":1151,"Ġgener":1152,"ient":1153,"ple":1154,"iet":1155,"rent":1156,"11":1157,"ves":1158,"ption":1159,"Ġ20":1160,"formation":1161,"Ġcor":1162,"Ġoffic":1163,"ield":1164,"Ġtoo":1165,"ision":1166,"Ġinf":1167,"ĠZ":1168,"the":1169,"oad":1170,"Ġpublic":1171,"Ġprog":1172,"ric":1173,"**":1174,"Ġwar":1175,"Ġpower":1176,"view":1177,"Ġfew":1178,"Ġloc":1179,"Ġdifferent":1180,"Ġstate":1181,"Ġhead":1182,"'ll":1183,"Ġposs":1184,"Ġstat":1185,"ret":1186,"ants":1187,"Ġval":1188,"Ġiss":1189,"Ġcle":1190,"ivers":1191,"anc":1192,"Ġexpl":1193,"Ġanother":1194,"ĠQ":1195,"Ġav":1196,"thing":1197,"nce":1198,"Wh":1199,"Ġchild":1200,"Ġsince":1201,"ired":1202,"less":1203,"Ġlife":1204,"Ġdevelop":1205,"ittle":1206,"Ġdep":1207,"Ġpass":1208,"ãĥ":1209,"Ġturn":1210,"orn":1211,"This":1212,"bers":1213,"ross":1214,"ĠAd":1215,"Ġfr":1216,"Ġresp":1217,"Ġsecond":1218,"oh":1219,"Ġ/":1220,"Ġdisc":1221,"Ġ&":1222,"Ġsomething":1223,"Ġcomple":1224,"Ġed":1225,"Ġfil":1226,"Ġmonth":1227,"aj":1228,"uc":1229,"Ġgovernment":1230,"Ġwithout":1231,"Ġleg":1232,"Ġdist":1233,"Ġput":1234,"Ġquest":1235,"ann":1236,"Ġprot":1237,"20":1238,"Ġnever":1239,"ience":1240,"Ġlevel":1241,"Ġart":1242,"Ġthings":1243,"Ġmight":1244,"Ġeffect":1245,"Ġcontro":1246,"Ġcent":1247,"Ġ18":1248,"Ġallow":1249,"Ġbelie":1250,"chool":1251,"ott":1252,"Ġincre":1253,"Ġfeel":1254,"Ġresult":1255,"Ġlot":1256,"Ġfun":1257,"ote":1258,"Ġty":1259,"erest":1260,"Ġcontin":1261,"Ġusing":1262,"Ġbig":1263,"201":1264,"Ġask":1265,"Ġbest":1266,"Ġ)":1267,"IN":1268,"Ġopp":1269,"30":1270,"Ġnumber":1271,"iness":1272,"St":1273,"lease":1274,"Ġca":1275,"Ġmust":1276,"Ġdirect":1277,"Ġgl":1278,"Ġ<":1279,"Ġopen":1280,"Ġpost":1281,"Ġcome":1282,"Ġseem":1283,"ording":1284,"Ġweek":1285,"ately":1286,"ital":1287,"Ġel":1288,"riend":1289,"Ġfar":1290,"Ġtra":1291,"inal":1292,"Ġpri":1293,"ĠUS":1294,"Ġplace":1295,"Ġform":1296,"Ġtold":1297,"\":":1298,"ains":1299,"ature":1300,"ĠTrump":1301,"Ġstand":1302,"Ġ#":1303,"ider":1304,"ĠFr":1305,"Ġnext":1306,"Ġsoc":1307,"Ġpur":1308,"Ġlet":1309,"Ġlittle":1310,"Ġhum":1311,"Ġi":1312,"ron":1313,"15":1314,"Ġ15":1315,"Ġcommun":1316,"Ġmark":1317,"ĠThere":1318,"Ġwr":1319,"ĠThat":1320,"Ġinformation":1321,"ways":1322,"Ġbus":1323,"app":1324,"Ġinvest":1325,"me":1326,"Ġhard":1327,"ained":1328,"ead":1329,"Ġimport":1330,"Ġappro":1331,"Ġtest":1332,"Ġtri":1333,"Ġrest":1334,"osed":1335,"Ġfull":1336,"Ġcare":1337,"ĠSp":1338,"Ġcase":1339,"ON":1340,"Ġsk":1341,"Ġless":1342,"Ġ+":1343,"Ġpartic":1344,"ĠPl":1345,"ably":1346,"uck":1347,"ished":1348,"chn":1349,"be":1350,"Ġlist":1351,"ator":1352,"Ġtop":1353,"Ġadv":1354,"ĠBe":1355,"ruct":1356,"Ġdem":1357,"ration":1358,"ling":1359,"gy":1360,"reen":1361,"ger":1362,"Ġhome":1363,"Ġleft":1364,"Ġbetter":1365,"Ġdata":1366,"Ġ11":1367,"Ġattack":1368,"Ġproble":1369,"line":1370,"ards":1371,"Ġbeh":1372,"ral":1373,"ĠHow":1374,"ĠShe":1375,"arge":1376,"Ġ--":1377,"://":1378,"Ġbro":1379,"ĠPh":1380,"ats":1381,"Ġbuild":1382,"ww":1383,"ided":1384,"aim":1385,"ases":1386,"ency":1387,"Ġmain":1388,"ined":1389,"Ġincluding":1390,"Ġ{":1391,"Ġgot":1392,"Ġinterest":1393,"Ġkeep":1394,"ĠX":1395,"Ġeas":1396,"aining":1397,"Ġclass":1398,"â̦":1399,"ĠNo":1400,"Ġvar":1401,"Ġsmall":1402,"ample":1403,"AT":1404,"Ġide":1405,"ĠSo":1406,"Ġrece":1407,"Ġpolit":1408,"Ġmov":1409,"Ġplan":1410,"Ġpercent":1411,"iving":1412,"Ġcamp":1413,"Ġpay":1414,"14":1415,"sc":1416,"ised":1417,"Ġunt":1418,"oney":1419,"ploy":1420,"====":1421,"Ġdidn":1422,"ĠInd":1423,"els":1424,"ertain":1425,"Ġpos":1426,"____":1427,"iver":1428,"Ġprocess":1429,"Ġprogram":1430,"ified":1431,"ĠRep":1432,"16":1433,"uro":1434,"ology":1435,"atter":1436,"ina":1437,"Ġname":1438,"ĠAll":1439,"Ġfour":1440,"Ġreturn":1441,"vious":1442,"bs":1443,"Ġcalled":1444,"Ġmove":1445,"ĠSc":1446,"ird":1447,"Ġgroup":1448,"Ġbre":1449,"Ġmen":1450,"Ġcap":1451,"ten":1452,"ee":1453,"Ġdri":1454,"leg":1455,"here":1456,"uthor":1457,"Ġpat":1458,"Ġcurrent":1459,"ides":1460,"Ġpop":1461,"to":1462,"ention":1463,"Ġalways":1464,"Ġmil":1465,"Ġwomen":1466,"Ġ16":1467,"Ġold":1468,"iven":1469,"raph":1470,"ĠOr":1471,"ror":1472,"ently":1473,"Ġnear":1474,"ĠEx":1475,"ream":1476,"sh":1477,"Ġ14":1478,"Ġfree":1479,"ission":1480,"stand":1481,"ĠCon":1482,"ality":1483,"used":1484,"13":1485,"Ġdesign":1486,"Ġchange":1487,"Ġchang":1488,"Ġbo":1489,"Ġvis":1490,"ember":1491,"Ġbook":1492,"ready":1493,"Ġkill":1494,"25":1495,"pped":1496,"Ġaway":1497,"Ġable":1498,"Ġcountry":1499,"Ġconst":1500,"arn":1501,"Ġorder":1502,"AR":1503,"ior":1504,"ium":1505,"orth":1506,"18":1507,"ailable":1508,"Ġsw":1509,"Ġmillion":1510,"Ġ13":1511,"atic":1512,"ted":1513,"ĠGo":1514,"Ġoper":1515,"eng":1516,"Ġthing":1517,"ajor":1518,"conom":1519,"ĠComm":1520,"Ġwhy":1521,"ured":1522,"ural":1523,"Ġschool":1524,"by":1525,"ĠMar":1526,"Ġaff":1527,"Ġdays":1528,"Ġann":1529,"ush":1530,"ane":1531,"If":1532,"eg":1533,"Ġprof":1534,"Ġhealth":1535,"outh":1536,"But":1537,"ional":1538,".,":1539,"Ġsol":1540,"Ġalready":1541,"Ġ30":1542,"Ġcharact":1543,"He":1544,"Ġfriend":1545,"ES":1546,"ians":1547,"icle":1548,"'d":1549,"ĠOn":1550,"Ġleast":1551,"Ġprom":1552,"Ġdr":1553,"Ġhist":1554,"ither":1555,"Ġest":1556,"iqu":1557,"17":1558,"son":1559,"Ġtell":1560,"Ġtalk":1561,"ohn":1562,"oint":1563,"lection":1564,"AN":1565,"Ġuntil":1566,"augh":1567,"Ġlater":1568,"Ġve":1569,"Ġview":1570,"ending":1571,"ived":1572,"Ġword":1573,"ware":1574,"Ġcost":1575,"Ġenough":1576,"Ġgive":1577,"ĠUnited":1578,"Ġtechn":1579,"arent":1580,"OR":1581,"Ġpar":1582,"ĠDr":1583,"Ġ2016":1584,"rist":1585,"ering":1586,"ĠÂ":1587,"Ġlarge":1588,"side":1589,"acy":1590,"ccess":1591,"Ġwin":1592,"Ġimportant":1593,"Ġ199":1594,"Ġdoesn":1595,"Ġ17":1596,"Ġbusiness":1597,"Ġclear":1598,"Ġrese":1599,"\",":1600,"ury":1601,"Ġequ":1602,"aster":1603,"alf":1604,"ĠAmerican":1605,"nect":1606,"Ġexpect":1607,"iversity":1608,"Ġocc":1609,"ĠFl":1610,"Ġkind":1611,"Ġmean":1612,"Ġpast":1613,"Ġdev":1614,"Ġbas":1615,"let":1616,"raft":1617,"Ġorgan":1618,"Ġdel":1619,"Ġperform":1620,"Ġstory":1621,"Ġseason":1622,"ĠCol":1623,"Ġclaim":1624,"Ġcame":1625,"Ġwithin":1626,"Ġline":1627,"Ġproject":1628,"ĠAt":1629,"Ġcontrol":1630,"ended":1631,"ĠSy":1632,"Ġair":1633,"ization":1634,"Ġ*":1635,"ley":1636,"Ġmoney":1637,"idd":1638,"You":1639,"for":1640,"Ġfamily":1641,"Ġmaking":1642,"Ġbit":1643,"Ġpolice":1644,"Ġhappen":1645,"Ġvers":1646,"ony":1647,"uff":1648,"ĠWhen":1649,"Ġsit":1650,"ideo":1651,"lf":1652,"ison":1653,"Ġsure":1654,"gin":1655,"Ġappear":1656,"Ġlight":1657,"Ġes":1658,"of":1659,"Ġwater":1660,"Ġtimes":1661,"not":1662,"Ġgrow":1663,"Ġcompany":1664,"ĠTe":1665,"ows":1666,"Ġmar":1667,"ource":1668,"iol":1669,"arm":1670,"br":1671,"Ġexample":1672,"Ġconc":1673,"Ġfore":1674,"ĠTo":1675,"pro":1676,"EN":1677,"ries":1678,"Ġ25":1679,"ĠCan":1680,"ney":1681,"Ġactually":1682,"Ġever":1683,"urity":1684,"aken":1685,"aps":1686,"Ġtax":1687,"Ġmajor":1688,"ama":1689,"Ġoften":1690,"eral":1691,"Ġhuman":1692,"Ġjob":1693,"ister":1694,"Ġavailable":1695,"ocr":1696,"enn":1697,"aid":1698,"ivid":1699,"Ġrecord":1700,"?\"":1701,"Ġsing":1702,"ĠAm":1703,"idence":1704,"Ġnews":1705,"ster":1706,"Ġeconom":1707,"Ġfollowing":1708,"ĠBr":1709,"ising":1710,"Ġhour":1711,"most":1712,"ument":1713,"Ġsex":1714,"Ġdesc":1715,"Ġbecome":1716,"ĠEd":1717,"Ġtook":1718,"Ġhaving":1719,"Ġproduct":1720,"ault":1721,"As":1722,"aring":1723,"Ġmeans":1724,"Ġhop":1725,"une":1726,"Ġcho":1727,"Ġcertain":1728,"Ġnon":1729,"Ġdeal":1730,"24":1731,"lement":1732,"oci":1733,"ene":1734,"Ġside":1735,"ĠPr":1736,"ĠMay":1737,"Ġreason":1738,"ued":1739,"ched":1740,"ulation":1741,"Ġelect":1742,"Ġofficial":1743,"Ġpossible":1744,"Ġhold":1745,"ands":1746,"ots":1747,"Ġcity":1748,"ories":1749,"Ġsever":1750,"Ġchildren":1751,"Ġonce":1752,"Ġactiv":1753,"ler":1754,"Ġnight":1755,"itions":1756,"ĠJohn":1757,"ape":1758,"play":1759,"Ġdone":1760,"Ġlim":1761,"Ġworking":1762,"ĠPres":1763,"orld":1764,"eb":1765,"ĠCo":1766,"Ġbody":1767,"ails":1768,"utes":1769,"ĠMr":1770,"Ġwhether":1771,"Ġauthor":1772,"rop":1773,"Ġproper":1774,"Ġseen":1775,");":1776,"Ġfac":1777,"ĠSu":1778,"Ġcond":1779,"iting":1780,"Ġcourse":1781,"Ġ}":1782,"----------------":1783,"aign":1784,"Ġevent":1785,"Ġeng":1786,"Ġpot":1787,"Ġintern":1788,"iam":1789,"Ġshort":1790,"empt":1791,"ãĤ":1792,"ĠGod":1793,"ilar":1794,"80":1795,"Ġorig":1796,"IS":1797,"ourn":1798,"ability":1799,"itive":1800,"Ġdam":1801,"Ġ100":1802,"Ġpress":1803,"Ġdoing":1804,"Ġprotect":1805,"ring":1806,"Ġthought":1807,"Ġquestion":1808,"rew":1809,"ĠWar":1810,"Ġseveral":1811,"ĠState":1812,"Ġgiven":1813,"Ġfund":1814,"ĠTw":1815,"Ġwent":1816,"ances":1817,"work":1818,"por":1819,"my":1820,"40":1821,"Ġarg":1822,"artment":1823,"ustom":1824,"Ġpolic":1825,"Ġmeet":1826,"Ġcreat":1827,"22":1828,"ĠStates":1829,"Ġgames":1830,"raw":1831,"uture":1832,"Ġunderstand":1833,"urs":1834,"ĠOb":1835,"lish":1836,"sy":1837,"Ġmakes":1838,"Ġwon":1839,"agon":1840,"Ġhtt":1841,"Ġlove":1842,"ential":1843,"Ġcomplete":1844,"par":1845,"ĠIm":1846,"AL":1847,"Ġaccount":1848,"Âł":1849,"ored":1850,"vert":1851,"Ġident":1852,"Ġ2015":1853,"Ġothers":1854,"ĠMin":1855,"iber":1856,"verage":1857,"There":1858,"itional":1859,"dd":1860,"Ġprob":1861,"Ġyoung":1862,"Ġalong":1863,"Ġaccording":1864,"Ġyet":1865,"Ġmembers":1866,"ĠWhat":1867,"oid":1868,"ĠMan":1869,"And":1870,"Ġamong":1871,"ai":1872,"Ġemploy":1873,"ĠRes":1874,"Ġ>":1875,"Ġinvol":1876,"Ġlow":1877,"af":1878,"ĠCar":1879,"Ġhig":1880,"ĠOne":1881,"ĠSec":1882,"ination":1883,"Ġlikely":1884,"Ġant":1885,"aged":1886,"ĠRuss":1887,"Ġben":1888,"Ġrele":1889,"For":1890,"back":1891,"ĠNot":1892,"Ġpresident":1893,"ball":1894,"Ġaccess":1895,"ividual":1896,"ĠDem":1897,"ĠEuro":1898,"60":1899,"Ġknown":1900,"irl":1901,"ĠGr":1902,"Ġearly":1903,"use":1904,"iety":1905,"âĢĵ":1906,"Ġfight":1907,"Ġsent":1908,"Ġtoday":1909,"Ġmarket":1910,"\".":1911,"Ġbased":1912,"Ġstrong":1913,"urther":1914,"Ġdeb":1915,"mber":1916,"Ġproblem":1917,"Ġdeath":1918,"Ġsocial":1919,"imate":1920,"AS":1921,"ortun":1922,"Ġcampaign":1923,"ery":1924,"Ch":1925,"Ġey":1926,"ially":1927,"Ġmus":1928,"wh":1929,"pos":1930,"Ġer":1931,"Ġsaf":1932,"Ġmonths":1933,"iron":1934,"Ġviol":1935,"Ġfive":1936,"Ġstre":1937,"Ġplayers":1938,"inc":1939,"ald":1940,"year":1941,"aun":1942,"Ġsuccess":1943,"Ġpresent":1944,"erence":1945,"Ġ2014":1946,"Ġsugg":1947,"Ġparticular":1948,"Ġtry":1949,"Ġsuggest":1950,"ĠChrist":1951,"ones":1952,"Ġpriv":1953,"23":1954,"Ġcrit":1955,"Ġland":1956,"Ġlocal":1957,"ify":1958,"29":1959,"Ġaut":1960,"ED":1961,"ĠGu":1962,"Ġmult":1963,"Ġpolitical":1964,"Ġasked":1965,"Ġformer":1966,"itter":1967,"ript":1968,"Ġclose":1969,"Ġpract":1970,"ĠYork":1971,"Ġgetting":1972,"Ġacross":1973,"Ġcomb":1974,"Ġbelieve":1975,"Ġz":1976,"Ġtoget":1977,"Ġtogether":1978,"ĠCent":1979,"irc":1980,"Ġindividual":1981,"ĠMc":1982,"27":1983,"isk":1984,"ĠEng":1985,"Ġface":1986,"Ġ24":1987,"Ġvalue":1988,"Ġarea":1989,"ev":1990,"Ġwrit":1991,"ĠPresident":1992,"Ġvot":1993,"Ġkey":1994,"Ġmom":1995,"put":1996,"Ġanything":1997,"Ġexperience":1998,"attle":1999,"Ġmind":2000,"aff":2001,"omm":2002,"Ġfuture":2003,"ged":2004,"Ġcut":2005,"Ġtot":2006,"itch":2007,"Ġvideo":2008,"Ġinvestig":2009,"Ġnet":2010,"ĠMy":2011,"rict":2012,"ien":2013,".)":2014,"Ġimpro":2015,"though":2016,"wards":2017,"Ġconnect":2018,"ĠMed":2019,"selves":2020,"ensive":2021,"mb":2022,"ober":2023,"ators":2024,"An":2025,"Ġ50":2026,"Ġredu":2027,"resent":2028,"Ġabove":2029,"Ġfre":2030,"ĠEurope":2031,"sw":2032,"Ġamount":2033,"ĠApp":2034,"Ġeither":2035,"Ġmilit":2036,"Ġanal":2037,"Ġfail":2038,"ĠEn":2039,"ales":2040,"Ġspecial":2041,"Ġblack":2042,"IT":2043,"cher":2044,"Ġlooking":2045,"Ġfire":2046,"yn":2047,"Ġalmost":2048,"oon":2049,"Ġstudy":2050,"Ġmiss":2051,"ches":2052,"rown":2053,"Ġtre":2054,"Ġcommunity":2055,"Ġmedia":2056,"Ġfood":2057,"Ġcomes":2058,"ĠUniversity":2059,"Ġsingle":2060,"What":2061,"uly":2062,"Ġhalf":2063,"ague":2064,"hod":2065,"ĠRepublic":2066,"Ġstarted":2067,"Ġquick":2068,"oto":2069,"book":2070,"Ġissue":2071,"itor":2072,"Ġelse":2073,"Ġconsider":2074,"26":2075,"rodu":2076,"Ġtaken":2077,"28":2078,"99":2079,"ĠWith":2080,"Ġtrue":2081,"Ġwa":2082,"Ġtrad":2083,"Ġago":2084,"Ġmess":2085,"ief":2086,"Ġadded":2087,"oke":2088,"Ġbad":2089,"Ġfav":2090,"33":2091,"Ġsimilar":2092,"ask":2093,"ĠDon":2094,"Ġcharacter":2095,"orts":2096,"ĠHouse":2097,"Ġreported":2098,"Ġtype":2099,"val":2100,"iod":2101,"ĠHowever":2102,"Ġtarg":2103,"Ġentire":2104,"pping":2105,"Ġhistory":2106,"Ġlive":2107,"ffic":2108,"........":2109,"ederal":2110,"Ġtrying":2111,"Ġdiscuss":2112,"ĠHar":2113,"aces":2114,"lished":2115,"Ġself":2116,"osp":2117,"rest":2118,"Ġroom":2119,"elt":2120,"Ġfall":2121,"olution":2122,"Ġet":2123,"Ġx":2124,"Ġisn":2125,"Ġidea":2126,"bo":2127,"Ġsound":2128,"ĠDep":2129,"Ġsomeone":2130,"cially":2131,"ully":2132,"Ġfoc":2133,"Ġobject":2134,"ift":2135,"aper":2136,"Ġplayer":2137,"Ġrather":2138,"Ġservice":2139,"ashing":2140,"ĠDo":2141,"ĠPart":2142,"rug":2143,"mon":2144,"ply":2145,"Ġmor":2146,"Ġnothing":2147,"Ġprovide":2148,"IC":2149,"ung":2150,"Ġparty":2151,"Ġexist":2152,"Ġmag":2153,"70":2154,"Ġrul":2155,"Ġhouse":2156,"Ġbehind":2157,"Ġhowever":2158,"ĠWorld":2159,"Ġsum":2160,"Ġapplic":2161,"Ġ;":2162,"Ġfunction":2163,"gr":2164,"ĠPol":2165,"Ġfront":2166,"200":2167,"Ġseries":2168,"Ġtem":2169,"Ġtyp":2170,"ills":2171,"Ġopt":2172,"Ġpoints":2173,"Ġbelow":2174,"itted":2175,"Ġspecific":2176,"Ġ2017":2177,"umb":2178,"Ġra":2179,"Ġprevious":2180,"Ġpret":2181,"reme":2182,"Ġcustom":2183,"Ġcourt":2184,"ĠMe":2185,"Ġrepl":2186,"Ġwhole":2187,"go":2188,"cer":2189,"Ġtreat":2190,"ĠAct":2191,"Ġprobably":2192,"Ġlearn":2193,"ender":2194,"ĠAss":2195,"Ġversion":2196,"now":2197,"Ġcheck":2198,"ĠCal":2199,"RE":2200,"minist":2201,"On":2202,"ources":2203,"Ġbenef":2204,"Ġdoc":2205,"Ġdeter":2206,"Ġenc":2207,"Ġsuper":2208,"Ġaddress":2209,"Ġvict":2210,"Ġ2013":2211,"Ġmeas":2212,"tr":2213,"Ġfield":2214,"When":2215,"Ġsignific":2216,"uge":2217,"Ġfeat":2218,"Ġcommon":2219,"load":2220,"Ġbegin":2221,"Ġbring":2222,"Ġaction":2223,"erman":2224,"Ġdescrib":2225,"Ġindust":2226,"Ġwanted":2227,"ried":2228,"ming":2229,"Ġattempt":2230,"45":2231,"fer":2232,"Ġdue":2233,"ression":2234,"##":2235,"Ġshall":2236,"Ġsix":2237,"oo":2238,"Ġstep":2239,"Ġpub":2240,"Ġhimself":2241,"Ġ23":2242,"Ġcop":2243,"Ġdest":2244,"Ġstop":2245,"AC":2246,"ibility":2247,"Ġlab":2248,"icult":2249,"Ġhours":2250,"Ġcreate":2251,"Ġfurther":2252,"ĠAmerica":2253,"ĠCity":2254,"Ġdou":2255,"head":2256,"ST":2257,"ĠNorth":2258,"cing":2259,"Ġnational":2260,"ule":2261,"ĠInst":2262,"Ġtaking":2263,"ĠQu":2264,"irt":2265,"Ġred":2266,"Ġresearch":2267,"viron":2268,"ĠGe":2269,"Ġbreak":2270,"ana":2271,"Ġspace":2272,"aterial":2273,"Ġrecent":2274,"ĠAb":2275,"Ġgeneral":2276,"Ġhit":2277,"Ġperiod":2278,"Ġeverything":2279,"ively":2280,"Ġphys":2281,"Ġsaying":2282,"anks":2283,"Ġcou":2284,"Ġcult":2285,"aced":2286,"eal":2287,"uation":2288,"Ġcoun":2289,"lu":2290,"Ġinclude":2291,"Ġposition":2292,"ĠAfter":2293,"ĠCanad":2294,"ĠEm":2295,"Ġimm":2296,"ĠRed":2297,"Ġpick":2298,"Ġcompl":2299,"Ġmatter":2300,"reg":2301,"ext":2302,"angu":2303,"isc":2304,"ole":2305,"aut":2306,"Ġcompet":2307,"eed":2308,"fect":2309,"Ġ21":2310,"ĠSen":2311,"ĠThese":2312,"asing":2313,"Ġcannot":2314,"Ġinit":2315,"Ġrelations":2316,"ached":2317,"Ġbar":2318,"Ġ40":2319,"ĠTH":2320,"Ġ2012":2321,"Ġvol":2322,"Ġground":2323,"Ġsecurity":2324,"Ġupd":2325,"ilt":2326,"35":2327,"Ġconcern":2328,"ĠJust":2329,"Ġwhite":2330,"Ġseems":2331,"ĠHer":2332,"pecially":2333,"ients":2334,"Ġannoun":2335,"Ġfig":2336,"ights":2337,"Ġstri":2338,"like":2339,"ids":2340,"Ġsus":2341,"Ġwatch":2342,"Ġâ":2343,"Ġwind":2344,"ĠCont":2345,"Ġitself":2346,"Ġmass":2347,"Al":2348,"yle":2349,"ique":2350,"ĠNational":2351,"Ġabs":2352,"Ġpack":2353,"Ġoutside":2354,"Ġanim":2355,"Ġpain":2356,"eter":2357,"Ġmanag":2358,"duct":2359,"ogn":2360,"Ġ]":2361,"ĠSept":2362,"sec":2363,"off":2364,"ĠJan":2365,"Ġfoot":2366,"ades":2367,"Ġthird":2368,"Ġmot":2369,"Ġevidence":2370,"inton":2371,"Ġthreat":2372,"apt":2373,"ples":2374,"cle":2375,"Ġlo":2376,"Ġdecl":2377,"Ġitem":2378,"medi":2379,"Ġrepresent":2380,"omb":2381,"amer":2382,"Ġsignificant":2383,"ograph":2384,"su":2385,"Ġcal":2386,"ires":2387,"0000":2388,"ID":2389,"AM":2390,"Ġsimply":2391,"Ġlonger":2392,"Ġfile":2393,"OT":2394,"che":2395,"So":2396,"ateg":2397,"org":2398,"ĠHis":2399,"Ġener":2400,"Ġdom":2401,"Ġupon":2402,"ili":2403,"\":\"":2404,"Ġthemselves":2405,"Ġcoming":2406,"Ġquite":2407,"Ġdifficult":2408,"ĠBar":2409,"ilities":2410,"rel":2411,"ends":2412,"cial":2413,"64":2414,"Ġwoman":2415,"rap":2416,"yr":2417,"Ġnecess":2418,"ips":2419,"Ġtext":2420,"Ġrequire":2421,"Ġmilitary":2422,"Ġreview":2423,"Ġrespons":2424,"75":2425,"Ġsubject":2426,"Ġinstead":2427,"Ġissues":2428,"Ġgen":2429,"\",\"":2430,"Ġminutes":2431,"Ġweap":2432,"ray":2433,"amed":2434,"time":2435,"bl":2436,"How":2437,"Ġcode":2438,"ĠSm":2439,"Ġhigher":2440,"ĠSte":2441,"ris":2442,"Ġpage":2443,"Ġstudents":2444,"ĠIntern":2445,"Ġmethod":2446,"ĠAug":2447,"ĠPer":2448,"ĠAg":2449,"Ġpolicy":2450,"ĠSw":2451,"Ġexec":2452,"Ġaccept":2453,"ume":2454,"ribut":2455,"Ġwords":2456,"Ġfinal":2457,"Ġchanges":2458,"ĠDemocr":2459,"Ġfriends":2460,"Ġrespect":2461,"Ġep":2462,"Ġcompan":2463,"ivil":2464,"Ġdamage":2465,"****":2466,"ogle":2467,"vironment":2468,"Ġneg":2469,"ental":2470,"Ġap":2471,"Ġtotal":2472,"ival":2473,"!\"":2474,"lim":2475,"Ġneeds":2476,"Ġagre":2477,"Ġdevelopment":2478,"Ġage":2479,"iple":2480,"21":2481,"Ġresults":2482,"ĠAf":2483,"Sh":2484,"Ġgun":2485,"ĠObama":2486,"roll":2487,"Ġ@":2488,"Ġrights":2489,"ĠBrit":2490,"Ġrunning":2491,"Ġwasn":2492,"Ġport":2493,"Ġrate":2494,"Ġpretty":2495,"Ġtarget":2496,"Ġsaw":2497,"Ġcirc":2498,"Ġworks":2499,"icro":2500,"alt":2501,"over":2502,"www":2503,"That":2504,"lier":2505,"Ġeveryone":2506,"ude":2507,"Ġpie":2508,"iddle":2509,"rael":2510,"Ġrad":2511,"Ġblock":2512,"Ġwalk":2513,"To":2514,"ãģ":2515,"nes":2516,"ĠAust":2517,"aul":2518,"rote":2519,"ĠSouth":2520,"ession":2521,"oph":2522,"Ġshows":2523,"Ġsite":2524,"Ġjo":2525,"Ġrisk":2526,"clus":2527,"lt":2528,"Ġinj":2529,"iding":2530,"ĠSpe":2531,"Ġchall":2532,"irm":2533,"Ġ22":2534,"itting":2535,"str":2536,"Ġhy":2537,"LE":2538,"key":2539,"Ġbegan":2540,"atur":2541,"ashington":2542,"lam":2543,"ĠDav":2544,"bit":2545,"Ġsize":2546,"ĠPar":2547,"38":2548,"ournal":2549,"face":2550,"Ġdecision":2551,"Ġlarg":2552,"Ġjud":2553,"rect":2554,"Ġcontinue":2555,"ĠOct":2556,"overed":2557,"ĠInt":2558,"========":2559,"Ġparent":2560,"ĠWill":2561,"Ġeasy":2562,"Ġdrug":2563,"anger":2564,"Ġsense":2565,"Ġdi":2566,"iday":2567,"Ġenergy":2568,"istic":2569,"Ġassoci":2570,"arter":2571,"obal":2572,"eks":2573,"ĠEl":2574,"urch":2575,"Ġgirl":2576,"oe":2577,"itle":2578,"Ġ28":2579,"ĠChe":2580,"Ġrequest":2581,"Ġsoon":2582,"Ġhost":2583,"ky":2584,"Ġstates":2585,"omes":2586,"Ġmaterial":2587,"lex":2588,"Ġmoment":2589,"Ġansw":2590,"onse":2591,"Ġespecially":2592,"Ġnorm":2593,"Ġservices":2594,"pite":2595,"ran":2596,"Ġrole":2597,"44":2598,"):":2599,"Ġcred":2600,"Cl":2601,"________":2602,"Ġmat":2603,"Ġlog":2604,"ĠClinton":2605,"OU":2606,"Ġoffice":2607,"Ġ26":2608,"Ġcharg":2609,"Ġtrack":2610,"ma":2611,"Ġheart":2612,"Ġball":2613,"Ġpersonal":2614,"Ġbuilding":2615,"na":2616,"set":2617,"body":2618,"ĠBlack":2619,"Ġincrease":2620,"itten":2621,"Ġneeded":2622,"36":2623,"32":2624,"=\"":2625,"Ġlost":2626,"Ġbecame":2627,"Ġgroups":2628,"ĠMus":2629,"Ġwrote":2630,"ĠPe":2631,"Ġprop":2632,"joy":2633,"é":2634,"ĠWhite":2635,"Ġdead":2636,".'":2637,"Ġhttp":2638,"Ġwebs":2639,"OS":2640,"Ġinside":2641,"Ġwrong":2642,"Ġstatement":2643,"Ġ...":2644,"yl":2645,"Ġfilm":2646,"Ġmusic":2647,"Ġshare":2648,"ification":2649,"Ġrelease":2650,"Ġforward":2651,"Ġstay":2652,"Ġcomput":2653,"itte":2654,"ser":2655,"Ġoriginal":2656,"Ġcard":2657,"Ġcand":2658,"Ġdiv":2659,"atural":2660,"Ġfavor":2661,"OM":2662,"Ġcases":2663,"uses":2664,"Ġsection":2665,"Ġleave":2666,"ging":2667,"oved":2668,"ĠWashington":2669,"39":2670,"ĠGl":2671,"Ġrequired":2672,"action":2673,"apan":2674,"oor":2675,"iter":2676,"ĠKing":2677,"Ġcountries":2678,"ĠGerman":2679,"lling":2680,"Ġ27":2681,"34":2682,"Ġquestions":2683,"Ġprim":2684,"Ġcell":2685,"Ġshoot":2686,"Ġanyone":2687,"ĠWest":2688,"Ġaffect":2689,"epend":2690,"Ġonline":2691,"ĠIsrael":2692,"ĠSeptember":2693,"Ġability":2694,"Ġcontent":2695,"ises":2696,"Ġreve":2697,"Ġlaun":2698,"Ġindic":2699,"Ġforce":2700,"cast":2701,"Ġsold":2702,"aving":2703,"fl":2704,"Ġsoft":2705,"Ġcompanies":2706,"ceed":2707,"Ġarticle":2708,"Ġaud":2709,"Ġrev":2710,"Ġeduc":2711,"Ġplaying":2712,"05":2713,"Ġheld":2714,"ctor":2715,"Ġreleased":2716,"Ġfederal":2717,"37":2718,"Ġadminist":2719,"Ġinterview":2720,"Ġinstall":2721,"Ġreceived":2722,"Ġsource":2723,"uk":2724,"Ph":2725,"Ġserious":2726,"Ġcreated":2727,"Ġcause":2728,"Ġimmedi":2729,"Ġdefin":2730,"uel":2731,"ĠDepartment":2732,"ctions":2733,"ĠCour":2734,"ĠNow":2735,"ze":2736,"ites":2737,"itution":2738,"Ġlate":2739,"Ġspeak":2740,"ners":2741,"Ġlegal":2742,"ari":2743,"ĠCor":2744,"Ġweeks":2745,"Ġmodel":2746,"Ġpred":2747,"Ġexact":2748,"BC":2749,"ĠBy":2750,"ING":2751,"osing":2752,"Ġtakes":2753,"Ġregard":2754,"Ġopportun":2755,"Ġprice":2756,"Ġ198":2757,"ĠApr":2758,"fully":2759,"Ġord":2760,"Ġproblems":2761,"ruction":2762,"ham":2763,"ĠCount":2764,"lege":2765,"Ġleaders":2766,"ET":2767,"lev":2768,"Ġdeep":2769,"ological":2770,"ese":2771,"haps":2772,"ĠSome":2773,"Ġpers":2774,"Ġcontract":2775,"Ġrelationship":2776,"sp":2777,"oud":2778,"Ġbase":2779,"48":2780,"mit":2781,"Ad":2782,"ancial":2783,"Ġconsum":2784,"Ġpotential":2785,"Ġlangu":2786,"rem":2787,"eth":2788,"Ġrelig":2789,"ressed":2790,"66":2791,"Ġlink":2792,"Ġlower":2793,"ayer":2794,"ĠJune":2795,"Ġfem":2796,"unt":2797,"erc":2798,"urd":2799,"Ġcontact":2800,"Ġill":2801,"Ġmother":2802,"Ġestab":2803,"htt":2804,"ĠMarch":2805,"ĠBro":2806,"ĠChina":2807,"Ġ29":2808,"Ġsqu":2809,"Ġprovided":2810,"Ġaverage":2811,"asons":2812,"Ġ2011":2813,"Ġexam":2814,"lin":2815,"55":2816,"ned":2817,"Ġperfect":2818,"Ġtou":2819,"alse":2820,"ux":2821,"Ġbuy":2822,"Ġshot":2823,"Ġcollect":2824,"Ġphot":2825,"Ġplayed":2826,"Ġsurpr":2827,"Ġofficials":2828,"Ġsimple":2829,"avy":2830,"Ġindustry":2831,"Ġhands":2832,"ground":2833,"Ġpull":2834,"Ġround":2835,"Ġuser":2836,"Ġrange":2837,"uary":2838,"Ġprivate":2839,"ops":2840,"ees":2841,"Ġways":2842,"ĠMich":2843,"Ġveh":2844,"Ġexcept":2845,"Ġterms":2846,"imum":2847,"pper":2848,"ION":2849,"ores":2850,"ĠDragon":2851,"oul":2852,"Ġden":2853,"Ġperformance":2854,"Ġbill":2855,"cil":2856,"47":2857,"Ġenvironment":2858,"Ġexc":2859,"add":2860,"Ġworth":2861,"Ġpict":2862,"Ġchance":2863,"Ġ2018":2864,"bor":2865,"Ġspeed":2866,"iction":2867,"Ġalleg":2868,"ĠJapan":2869,"atory":2870,"reet":2871,"Ġmatch":2872,"ĠII":2873,"Ġstru":2874,"order":2875,"Ġste":2876,"Ġliving":2877,"Ġstruct":2878,"ino":2879,"Ġsepar":2880,"hern":2881,"Ġresponse":2882,"Ġenjoy":2883,"Ġvia":2884,"AD":2885,"uments":2886,"acebook":2887,"Ġmember":2888,"ibr":2889,"izing":2890,"Ġtool":2891,"ĠMon":2892,"ĠWhile":2893,"hood":2894,"ĠAng":2895,"ĠDef":2896,"Ġoffer":2897,"Tr":2898,"aur":2899,"Ġturned":2900,"ĠJuly":2901,"down":2902,"anced":2903,"Ġrecently":2904,"ĠEar":2905,"Ġce":2906,"ĠStar":2907,"ĠCong":2908,"rought":2909,"Ġblood":2910,"Ġhope":2911,"Ġcomment":2912,"aint":2913,"Ġarri":2914,"iles":2915,"Ġparticip":2916,"ought":2917,"ription":2918,"08":2919,"49":2920,"Ġgave":2921,"Ġselect":2922,"Ġkilled":2923,"sych":2924,"Ġgoes":2925,"ij":2926,"Ġcoll":2927,"Ġimpact":2928,"atives":2929,"ĠSer":2930,"09":2931,"ĠAugust":2932,"Ġboy":2933,"de":2934,"ĠDes":2935,"Ġfelt":2936,"US":2937,"Ġexpected":2938,"Ġimage":2939,"ĠMark":2940,"ccording":2941,"oice":2942,"EC":2943,"ĠMag":2944,"ened":2945,"hold":2946,"ĠPost":2947,"Ġprevent":2948,"No":2949,"Ġinvolved":2950,"Ġeyes":2951,"Ġquickly":2952,"At":2953,"unk":2954,"Ġbehav":2955,"Ġur":2956,"Ġled":2957,"come":2958,"ey":2959,"Ġcandid":2960,"Ġearlier":2961,"Ġfocus":2962,"ety":2963,"Pro":2964,"ledge":2965,"ixed":2966,"illed":2967,"Ġpopular":2968,"AP":2969,"Ġsett":2970,"light":2971,"Ġvarious":2972,"inks":2973,"Ġlevels":2974,"Ġroad":2975,"ellig":2976,"ables":2977,"hel":2978,"ittee":2979,"ĠGener":2980,"ype":2981,"Ġheard":2982,"icles":2983,"Ġmis":2984,"Ġusers":2985,"ĠSan":2986,"Ġimprove":2987,"Ġfather":2988,"Ġsearch":2989,"They":2990,"vil":2991,"Ġprofess":2992,"Ġknew":2993,"Ġloss":2994,"Ġevents":2995,"65":2996,"Ġbillion":2997,"07":2998,"02":2999,"ĠNews":3000,"ĠAM":3001,"Ġcover":3002,"where":3003,"ension":3004,"Ġbott":3005,"Ġareas":3006,"ences":3007,"ope":3008,"ĠTwitter":3009,"ael":3010,"Ġgets":3011,"ĠGoogle":3012,"Ġsn":3013,"iant":3014,"Ġvote":3015,"Ġnearly":3016,"Ġincluded":3017,"Ġrecogn":3018,"zz":3019,"mm":3020,"aled":3021,"Ġhappened":3022,"04":3023,"Ġhot":3024,"Ġwhose":3025,"Ġcivil":3026,"Ġsuff":3027,"oes":3028,"itiz":3029,"ĠSyri":3030,"Ġrespond":3031,"Ġhon":3032,"Ġfeatures":3033,"Ġeconomic":3034,"ĠApril":3035,"rim":3036,"Ġtechnology":3037,"Ġoption":3038,"aging":3039,"Ġpurch":3040,"Re":3041,"Ġlat":3042,"chie":3043,"isl":3044,"Ġrecomm":3045,"uf":3046,"Ġtraining":3047,"Ġeffects":3048,"Ġfast":3049,"Ġ2010":3050,"Ġoccur":3051,"Ġwebsite":3052,"Ġemail":3053,"Ġsens":3054,"ech":3055,"Ġoil":3056,"Ġinflu":3057,"Ġcurrently":3058,"ĠSch":3059,"ĠAdd":3060,"Ġgoal":3061,"Ġscient":3062,"Ġconv":3063,"100":3064,"emy":3065,"Ġdecided":3066,"Ġtravel":3067,"Ġmention":3068,"LL":3069,"03":3070,"Ġelection":3071,"Ġphone":3072,"Ġlooks":3073,"Ġsituation":3074,"Ġcy":3075,"Ġhor":3076,"bed":3077,"ĠCourt":3078,"aily":3079,"aves":3080,"Ġquality":3081,"ĠComp":3082,"wise":3083,"Ġtable":3084,"Ġstaff":3085,"ĠWind":3086,"ett":3087,"Ġtried":3088,"idered":3089,"Ġaddition":3090,"Ġbox":3091,"Ġlack":3092,"arily":3093,"Ġwide":3094,"Ġmid":3095,"Ġboard":3096,"ysis":3097,"Ġanti":3098,"ha":3099,"Ġdig":3100,"ening":3101,"Ġdro":3102,"Con":3103,"68":3104,"Ġslow":3105,"based":3106,"sequ":3107,"Ġpath":3108,"Ex":3109,"aker":3110,"Ġworked":3111,"Ġpen":3112,"Ġengine":3113,"Ġlooked":3114,"ĠSuper":3115,"ĠServ":3116,"Ġvictim":3117,"Un":3118,"Ġproperty":3119,"Ġintrodu":3120,"Ġexecut":3121,"ĠPM":3122,"Le":3123,"Ġcolor":3124,"ĠMore":3125,"Ġ60":3126,"Ġnetwork":3127,"Ġdate":3128,"cul":3129,"idge":3130,"Ġextra":3131,"31":3132,"Ġsle":3133,"67":3134,"Ġwond":3135,"Ġreports":3136,"just":3137,"ĠAustral":3138,"Ġcapital":3139,"Ġens":3140,"Ġcommand":3141,"Ġallowed":3142,"Ġprep":3143,"Ġcapt":3144,"hib":3145,"Ġnumbers":3146,"chan":3147,"Ġfair":3148,"mp":3149,"oms":3150,"Ġreach":3151,"With":3152,"tain":3153,"Ġbroad":3154,"Ġcouple":3155,"ecause":3156,"lying":3157,"ĠFeb":3158,"Ġscreen":3159,"Ġlives":3160,"Ġprior":3161,"ĠCongress":3162,"Ar":3163,"Ġapproach":3164,"Ġemer":3165,"aries":3166,"ĠDis":3167,"serv":3168,"ĠNe":3169,"Ġbuilt":3170,"cies":3171,"Ġrepe":3172,"Ġrules":3173,"force":3174,"ĠPal":3175,"Ġfinancial":3176,"Ġconsidered":3177,"ĠChar":3178,"nces":3179,"ĠIS":3180,"Ġbrought":3181,"Ġbi":3182,"iers":3183,"ĠSim":3184,"OP":3185,"Ġproducts":3186,"Ġvisit":3187,"Ġdocument":3188,"Ġconduct":3189,"Ġcompletely":3190,"ining":3191,"ĠCalif":3192,"ibly":3193,"Ġwritten":3194,"ĠTV":3195,"ements":3196,"Ġdraw":3197,"One":3198,"Ġpublished":3199,"Ġsecret":3200,"rain":3201,"het":3202,"ĠFacebook":3203,"onday":3204,"ĠUp":3205,"Ġsexual":3206,"Ġthous":3207,"ĠPat":3208,"Ġess":3209,"Ġstandard":3210,"Ġarm":3211,"ges":3212,"ection":3213,"Ġfell":3214,"Ġforeign":3215,"ani":3216,"ĠFriday":3217,"Ġregular":3218,"inary":3219,"Ġincreased":3220,"Ġusually":3221,"Ġdemon":3222,"Ġdark":3223,"Ġadditional":3224,"rol":3225,"ĠOf":3226,"Ġproduction":3227,"!!":3228,"undred":3229,"Ġinternational":3230,"idents":3231,"ĠFree":3232,"roup":3233,"Ġrace":3234,"Ġmach":3235,"Ġhuge":3236,"All":3237,"lear":3238,"ovember":3239,"Ġtown":3240,"Ġattention":3241,"ĠOff":3242,"yond":3243,"ĠThen":3244,"field":3245,"Ġterror":3246,"raz":3247,"ĠBo":3248,"Ġmeeting":3249,"ĠPark":3250,"Ġarrest":3251,"Ġfear":3252,"Ġaw":3253,"ĠVal":3254,"oring":3255,"',":3256,"Ġextreme":3257,"arr":3258,"Ġworkers":3259,"After":3260,"Ġ31":3261,"net":3262,"ament":3263,"Ġdirectly":3264,"Ġpopulation":3265,"ube":3266,"ĠOctober":3267,"ĠIN":3268,"ĠJanuary":3269,"59":3270,"ĠDavid":3271,"Ġcross":3272,"cember":3273,"ĠFirst":3274,"Ġmessage":3275,"irit":3276,"Ġnation":3277,"Ġpoll":3278,"isions":3279,"Ġanswer":3280,"ny":3281,"isode":3282,"Ġcarry":3283,"ĠRussia":3284,"Ġhear":3285,"ength":3286,"roy":3287,"Ġnatural":3288,"inally":3289,"Ġdog":3290,"mitted":3291,"Ġtrade":3292,"Ġsubst":3293,"Ġmultiple":3294,"ĠAfric":3295,"Ġfans":3296,"Ġsort":3297,"Ġglobal":3298,"ication":3299,"ĠWed":3300,"ara":3301,"Ġachie":3302,"Ġlanguage":3303,"vey":3304,"Ġtal":3305,"Ġnecessary":3306,"Ġdetails":3307,"Ġsen":3308,"ĠSund":3309,"ĠReg":3310,"ĠRec":3311,"06":3312,"Ġsil":3313,"ressive":3314,"Ġmedical":3315,"unch":3316,"ornia":3317,"Ġund":3318,"fort":3319,"ocks":3320,"ĠMonday":3321,"uesday":3322,"craft":3323,"77":3324,"urt":3325,"Ġver":3326,"ĠHill":3327,"Ġreceive":3328,"Ġmorning":3329,"estern":3330,"Ġbank":3331,"Ġsat":3332,"irth":3333,"ĠHigh":3334,"Ġdevice":3335,"ĠTHE":3336,"ĠCenter":3337,"Ġsafe":3338,"Ġple":3339,"ĠCanada":3340,"Ġsystems":3341,"Ġassist":3342,"Ġsurv":3343,"Ġbattle":3344,"ĠSoc":3345,"vertis":3346,"She":3347,"Ġpaper":3348,"Ġgrowth":3349,"Ġcast":3350,"Sc":3351,"Ġplans":3352,"lled":3353,"Ġparts":3354,"Ġwall":3355,"Ġmovement":3356,"Ġpractice":3357,"imately":3358,"Ġdisplay":3359,"Ġsometimes":3360,"omp":3361,"ĠPaul":3362,"ĠYes":3363,"king":3364,"58":3365,"oly":3366,"Ġson":3367,"Ġavoid":3368,"okes":3369,"ĠJew":3370,"Ġtowards":3371,"asc":3372,"Ġ//":3373,"ĠKore":3374,"Ġtalking":3375,"Ġcorrect":3376,"Ġspent":3377,"icks":3378,"iable":3379,"eared":3380,"Ġterm":3381,"Ġwants":3382,"oming":3383,"Ġut":3384,"Ġdoub":3385,"Ġforces":3386,"Ġplease":3387,"69":3388,"ĠNovember":3389,"atform":3390,"ondon":3391,"Ġones":3392,"Ġimmediately":3393,"ĠRussian":3394,"ĠMet":3395,"Ġdeg":3396,"Ġparents":3397,"CH":3398,"ĠAmericans":3399,"aly":3400,"ĠMod":3401,"Ġshown":3402,"Ġconditions":3403,"Ġstuff":3404,"Ġreb":3405,"ĠYour":3406,"Ġincludes":3407,"nown":3408,"ĠSam":3409,"Ġexperien":3410,"mission":3411,"ĠEven":3412,"aught":3413,"Ġannounced":3414,"ĠRepublican":3415,"Ġdetermin":3416,"Ġdescribed":3417,"ĠCounty":3418,"()":3419,"Ġdoor":3420,"Ġchanged":3421,"Ġneigh":3422,"ĠHere":3423,"Ġclean":3424,"Ġpan":3425,"ĠDecember":3426,"ĠEuropean":3427,"iring":3428,"apter":3429,"Ġclub":3430,"ĠTuesday":3431,"Ġpaid":3432,"ĠNet":3433,"Ġattacks":3434,"Ġcharacters":3435,"Ġalone":3436,"Ġdirector":3437,"dom":3438,"Ġ35":3439,"Ġload":3440,"Ġrout":3441,"ĠCalifornia":3442,"Ġfinally":3443,"Ġrac":3444,"Ġcontr":3445,"Ġexactly":3446,"resh":3447,"pri":3448,"ĠIslam":3449,"Ġnature":3450,"Ġcareer":3451,"Ġlatest":3452,"Ġconvers":3453,"ĠSl":3454,"pose":3455,"cient":3456,"ĠInc":3457,"ivity":3458,"88":3459,"ĠAtt":3460,"ĠMor":3461,"nesday":3462,"Ġweight":3463,"ken":3464,"Ġnote":3465,"Ġteams":3466,"Ġ\\":3467,"airs":3468,"ĠGreen":3469,"Ġhundred":3470,"onent":3471,"Ġstreng":3472,"Ġconsist":3473,"icated":3474,"Ġregul":3475,"Ġlic":3476,"astic":3477,"Ġten":3478,"ursday":3479,"elligence":3480,"ously":3481,"ĠUK":3482,"BI":3483,"Ġcosts":3484,"Ġindepend":3485,"ĠAP":3486,"Ġnormal":3487,"Ġhom":3488,"Ġobvious":3489,"Ġswe":3490,"Ġstar":3491,"Ġready":3492,"acher":3493,"Ġimplement":3494,"gest":3495,"Ġsong":3496,"ĠGet":3497,"ĠLab":3498,"Ġinteresting":3499,"using":3500,"Ġgiving":3501,"ĠSunday":3502,"Ġetc":3503,"Ġmiddle":3504,"Ġremember":3505,"right":3506,"osition":3507,"utions":3508,"Ġmax":3509,"46":3510,"Ġyourself":3511,"Ġdemand":3512,"Ġtreatment":3513,"Ġdanger":3514,"ĠCons":3515,"Ġguy":3516,"ĠBritish":3517,"Ġphysical":3518,"Ġrelated":3519,"Ġremain":3520,"Ġcouldn":3521,"Ġrefer":3522,"Ġcitiz":3523,"box":3524,"ENT":3525,"board":3526,"Ġinn":3527,"IG":3528,"ero":3529,"ĠStreet":3530,"ospital":3531,"rench":3532,"chers":3533,"Ġstra":3534,"OL":3535,"ager":3536,"ĠAN":3537,"Ġeasily":3538,"IA":3539,"enge":3540,"iny":3541,"Ġclos":3542,"ocked":3543,"Ġuses":3544,"ĠCoun":3545,"Im":3546,"uild":3547,"??":3548,"more":3549,"Ġang":3550,"Ġwrite":3551,"olute":3552,"57":3553,"Ġleader":3554,"Ġreading":3555,"":3784,"Ġfigure":3785,"Ġdisapp":3786,"enty":3787,"Ġsoftware":3788,"Ġult":3789,"Ġofficers":3790,"New":3791,"Is":3792,"Ġremains":3793,"ĠIndia":3794,"Ġpsych":3795,"rief":3796,"Ġcat":3797,"esc":3798,"Ġobserv":3799,"Ġstage":3800,"ĠDark":3801,"Ġenter":3802,"change":3803,"Ġpassed":3804,"Ġdespite":3805,"ĠOut":3806,"Ġmovie":3807,"rs":3808,"Ġvoice":3809,"mine":3810,"ĠPlay":3811,"Ġtoward":3812,"ĠTer":3813,"Ġregion":3814,"Ġvalues":3815,"orters":3816,"Ġmount":3817,"Ġofficer":3818,"ĠOther":3819,"ban":3820,"Ġhous":3821,"wood":3822,"room":3823,"IV":3824,"ĠSun":3825,"see":3826,"ĠOver":3827,"rog":3828,"90":3829,"Ġlay":3830,"ĠTur":3831,"awn":3832,"Ġpressure":3833,"ĠSub":3834,"Ġbooks":3835,"edom":3836,"ĠSand":3837,"AA":3838,"ago":3839,"Ġreasons":3840,"ford":3841,"Ġactivity":3842,"UT":3843,"Now":3844,"ĠSenate":3845,"cell":3846,"night":3847,"Ġcalls":3848,"inter":3849,"Ġletter":3850,"ĠRob":3851,"ĠJe":3852,"Ġchoose":3853,"ĠLaw":3854,"Get":3855,"Be":3856,"Ġrob":3857,"Ġtypes":3858,"Ġplatform":3859,"Ġquarter":3860,"RA":3861,"ĠTime":3862,"Ġmaybe":3863,"ĠCr":3864,"95":3865,"pre":3866,"Ġmoving":3867,"Ġlif":3868,"Ġgold":3869,"Ġsom":3870,"Ġpatients":3871,"Ġtruth":3872,"ĠKe":3873,"urance":3874,"antly":3875,"mar":3876,"Ġcharge":3877,"ĠGreat":3878,"Ġcele":3879,"--------------------------------":3880,"Ġrock":3881,"roid":3882,"ancy":3883,"Ġcredit":3884,"aud":3885,"By":3886,"ĠEvery":3887,"Ġmoved":3888,"inger":3889,"ribution":3890,"Ġnames":3891,"Ġstraight":3892,"ĠHealth":3893,"ĠWell":3894,"Ġfeature":3895,"Ġrule":3896,"Ġsche":3897,"inated":3898,"ĠMichael":3899,"berg":3900,"41":3901,"iled":3902,"band":3903,"Ġclick":3904,"ĠAngel":3905,"onents":3906,"ÂŃ":3907,"ĠIraq":3908,"ĠSaturday":3909,"Ġaware":3910,"part":3911,"Ġpattern":3912,"OW":3913,"ĠLet":3914,"Ġgrad":3915,"igned":3916,"Ġassociated":3917,"Ġstyle":3918,"no":3919,"iation":3920,"aith":3921,"ilies":3922,"Ġstories":3923,"uration":3924,"Ġindividuals":3925,"Ġâ̦":3926,"miss":3927,"ĠAssoci":3928,"ishing":3929,"aby":3930,"Ġsummer":3931,"ĠBen":3932,"Ġ32":3933,"Ġarch":3934,"uty":3935,"ĠTexas":3936,"hol":3937,"Ġfully":3938,"Ġmill":3939,"Ġfollowed":3940,"ĠBill":3941,"ĠIndian":3942,"ĠSecret":3943,"ĠBel":3944,"ĠFebruary":3945,"Ġjobs":3946,"Ġseemed":3947,"ĠGovern":3948,"ipped":3949,"Ġreality":3950,"Ġlines":3951,"Ġpark":3952,"Ġmeasure":3953,"ĠOur":3954,"IM":3955,"Ġbrother":3956,"Ġgrowing":3957,"Ġban":3958,"Ġestim":3959,"Ġcry":3960,"ĠSchool":3961,"Ġmechan":3962,"ĠOF":3963,"ĠWindows":3964,"Ġrates":3965,"ĠOh":3966,"Ġpositive":3967,"Ġculture":3968,"istics":3969,"ica":3970,"Ġhar":3971,"ya":3972,"itely":3973,"ipp":3974,"Ġmap":3975,"encies":3976,"ĠWilliam":3977,"II":3978,"akers":3979,"56":3980,"ĠMart":3981,"ĠRem":3982,"Ġaltern":3983,"itude":3984,"Ġcoach":3985,"rowd":3986,"Don":3987,"Ġkids":3988,"Ġjournal":3989,"Ġcorpor":3990,"Ġfalse":3991,"Ġweb":3992,"Ġsleep":3993,"Ġcontain":3994,"Ġsto":3995,"Ġbed":3996,"iverse":3997,"ĠRich":3998,"ĠChinese":3999,"Ġpun":4000,"Ġmeant":4001,"known":4002,"Ġnotice":4003,"Ġfavorite":4004,"aven":4005,"Ġcondition":4006,"Ġpurpose":4007,"))":4008,"Ġorganization":4009,"Ġchalleng":4010,"Ġmanufact":4011,"Ġsusp":4012,"ĠAc":4013,"Ġcritic":4014,"unes":4015,"uclear":4016,"Ġmer":4017,"vention":4018,"Ġ80":4019,"Ġmist":4020,"ĠUs":4021,"ĠTor":4022,"http":4023,"olf":4024,"Ġlarger":4025,"Ġadvant":4026,"Ġresear":4027,"Ġactions":4028,"ml":4029,"Ġkept":4030,"Ġaim":4031,",'":4032,"col":4033,"Ġbenefits":4034,"ifying":4035,"Ġactual":4036,"ĠInternational":4037,"Ġvehicle":4038,"Ġchief":4039,"Ġefforts":4040,"ĠLeague":4041,"ĠMost":4042,"Ġwait":4043,"Ġadult":4044,"Ġoverall":4045,"Ġspeech":4046,"Ġhighly":4047,"Ġfemale":4048,"Ġerror":4049,"Ġeffective":4050,"54":4051,"Ġencour":4052,"well":4053,"Ġfailed":4054,"Ġconserv":4055,"Ġprograms":4056,"Ġtrou":4057,"Ġahead":4058,"500":4059,"vertisement":4060,"IP":4061,"ĠFound":4062,"pir":4063,"Ġ%":4064,"Ġcrime":4065,"ander":4066,"Ġlocation":4067,"ĠIran":4068,"Ġbehavior":4069,"azing":4070,"Ġrare":4071,"Ġemb":4072,"Ġcaused":4073,"Ġship":4074,"Ġactive":4075,"Ġcontribut":4076,"Ġgreen":4077,"Ġacqu":4078,"Ġreflect":4079,"venue":4080,"Ġfirm":4081,"Ġbirth":4082,"].":4083,"Ġclearly":4084,"Ġemot":4085,"Ġagency":4086,"riage":4087,"Ġmemory":4088,"98":4089,"SA":4090,"ĠSee":4091,"acing":4092,"CC":4093,"Ġbiggest":4094,"Ġrap":4095,"Ġbasic":4096,"Ġband":4097,"eat":4098,"Ġsuspect":4099,"ĠMac":4100,"Ġ90":4101,"mark":4102,"istan":4103,"Ġspread":4104,"ams":4105,"ki":4106,"asy":4107,"rav":4108,"ĠRober":4109,"Ġdemonstr":4110,"rated":4111,"Ġabsolute":4112,"Ġplaces":4113,"Ġimpl":4114,"ibrary":4115,"Ġcards":4116,"Ġdestroy":4117,"Ġvirt":4118,"vere":4119,"Ġappeared":4120,"yan":4121,"point":4122,"Ġbeg":4123,"Ġtemper":4124,"spe":4125,"anted":4126,"ears":4127,"ĠDirect":4128,"Ġlength":4129,"Ġblog":4130,"amb":4131,"Ġinteg":4132,"Ġresources":4133,"acc":4134,"iful":4135,"Ġspot":4136,"Ġforced":4137,"Ġthousands":4138,"ĠMinister":4139,"Ġqual":4140,"ĠFrench":4141,"atically":4142,"Ġgenerally":4143,"Ġdrink":4144,"Ġthus":4145,"IL":4146,"odes":4147,"Ġappropri":4148,"ĠRead":4149,"Ġwhom":4150,"Ġeye":4151,"Ġcollege":4152,"Ġ45":4153,"irection":4154,"Ġensure":4155,"Ġapparent":4156,"iders":4157,"Ġreligious":4158,"Ġminor":4159,"olic":4160,"Ġtro":4161,"ĠWhy":4162,"ribute":4163,"met":4164,"Ġprimary":4165,"Ġdeveloped":4166,"Ġpeace":4167,"Ġskin":4168,"ste":4169,"ava":4170,"Ġblue":4171,"Ġfamilies":4172,"Ġir":4173,"Ġapply":4174,"Ġinform":4175,"ĠSmith":4176,"CT":4177,"ii":4178,"Ġlimit":4179,"Ġresist":4180,"................":4181,"umn":4182,"Ġconflic":4183,"Ġtwe":4184,"udd":4185,"ĠTom":4186,"Ġliter":4187,"que":4188,"bon":4189,"Ġhair":4190,"Ġeventually":4191,"Ġpus":4192,"Ġhelped":4193,"Ġagg":4194,"orney":4195,"ĠApple":4196,"Ġfit":4197,"ĠSur":4198,"Ġprem":4199,"Ġsales":4200,"Ġseconds":4201,"Ġstrength":4202,"Ġfeeling":4203,"¿½":4204,"Ġtour":4205,"Ġknows":4206,"oom":4207,"Ġexerc":4208,"Ġsomew":4209,"�":4210,">>":4211,"Ġspokes":4212,"Ġideas":4213,"Ġregist":4214,"soft":4215,"ĠDel":4216,"ĠPC":4217,"Ġpropos":4218,"Ġlaunch":4219,"Ġbottom":4220,"TH":4221,"ĠPlease":4222,"vest":4223,"itz":4224,"ĠInter":4225,"Ġscript":4226,"Ġrat":4227,"arning":4228,"Ġil":4229,"ĠJer":4230,"ĠAre":4231,"Ġwhatever":4232,"oken":4233,"cience":4234,"Ġmode":4235,"Ġagree":4236,"Ġsources":4237,"Ġinitial":4238,"Ġrestrict":4239,"Ġwonder":4240,"usion":4241,"####":4242,"ĠSil":4243,"ville":4244,"Ġburn":4245,"tw":4246,"asion":4247,"Ġ£":4248,"Ġnor":4249,"uing":4250,"Ġreached":4251,"Ġsun":4252,"Ġcateg":4253,"igration":4254,"Ġcook":4255,"Ġpromot":4256,"Ġmale":4257,"Ġclimate":4258,"Ġfix":4259,"Ġalleged":4260,"UR":4261,"alled":4262,"Ġimages":4263,"Cont":4264,"ota":4265,"Ġschools":4266,"ios":4267,"Ġdrop":4268,"Ġstream":4269,"ĠMo":4270,"Ġpreviously":4271,"aling":4272,"Ġpet":4273,"Ġdouble":4274,"Ġ(@":4275,"annel":4276,"Ġdefault":4277,"ties":4278,"Ġrank":4279,"ĠDec":4280,"ĠCouncil":4281,"Ġweapon":4282,"Ġstock":4283,"Ġanaly":4284,"ĠStr":4285,"Ġpicture":4286,"ĠPolice":4287,"ference":4288,"Ġcentury":4289,"Ġcitizens":4290,"Ġonto":4291,"Ġexpand":4292,"Ġhero":4293,"ĠSol":4294,"Ġwild":4295,"Ġupdate":4296,"Ġcustomers":4297,"ront":4298,"def":4299,"Ġlik":4300,"Ġcriminal":4301,"ĠChristian":4302,"SP":4303,"76":4304,"Ġleaving":4305,"Ġotherwise":4306,"ĠDist":4307,"Ġbasis":4308,"52":4309,"53":4310,"icip":4311,"ĠBer":4312,"Ġrecommend":4313,"Ġfloor":4314,"Ġcrowd":4315,"oles":4316,"Ġ70":4317,"Ġcentral":4318,"ĠEv":4319,"Ġdream":4320,"Ġdownload":4321,"Ġconfir":4322,"ĠThom":4323,"Ġwindow":4324,"Ġhappens":4325,"Ġunit":4326,"Ġtend":4327,"Ġspl":4328,"Ġbecomes":4329,"Ġfighting":4330,"Ġpredict":4331,"ĠPress":4332,"ĠPower":4333,"Ġheavy":4334,"aked":4335,"Ġfan":4336,"orter":4337,"ategy":4338,"BA":4339,"izes":4340,"Ġspend":4341,"Here":4342,"Ġ2007":4343,"Ġadop":4344,"ĠHam":4345,"Ġfootball":4346,"ĠPort":4347,"oday":4348,"51":4349,"ampions":4350,"Ġtransfer":4351,"ht":4352,"Ġ38":4353,"term":4354,"acity":4355,"Ġbur":4356,"],":4357,"ternal":4358,"rig":4359,"but":4360,"Ġtherefore":4361,"ĠBecause":4362,"resp":4363,"rey":4364,"Ġmission":4365,"Some":4366,"Ġnoted":4367,"Ġassum":4368,"Ġdisease":4369,"Ġedit":4370,"Ġprogress":4371,"rd":4372,"ĠBrown":4373,"ocal":4374,"Ġadding":4375,"Ġraised":4376,"ĠAny":4377,"Ġtick":4378,"Ġseeing":4379,"ĠPeople":4380,"Ġagreement":4381,"Ġserver":4382,"Ġwat":4383,"Ġdebate":4384,"Ġsupposed":4385,"iling":4386,"Ġlargest":4387,"Ġsuccessful":4388,"ĠPri":4389,"ĠDemocratic":4390,"Ġjump":4391,"ĠSyria":4392,"Ġowners":4393,"Ġoffers":4394,"Ġshooting":4395,"Ġeffic":4396,"sey":4397,"Ġhaven":4398,"verse":4399,"tered":4400,"ĠLight":4401,"imal":4402,"ĠBig":4403,"Ġdefend":4404,"Ġbeat":4405,"Ġrecords":4406,"%)":4407,"Ġscen":4408,"Ġemployees":4409,"Ġdevices":4410,"hem":4411,"Ġcommer":4412,"ĠMex":4413,"Ġbenefit":4414,"ĠProf":4415,"Ġilleg":4416,"Ġsurface":4417,"ĠAlso":4418,"Ġharm":4419,"ingly":4420,"wide":4421,"ĠAlex":4422,"Ġshut":4423,"ĠCur":4424,"Ġlose":4425,"pm":4426,"Ġchallenge":4427,"semb":4428,"Ġstation":4429,"Ġintelligence":4430,"Ġaccur":4431,"ĠFlor":4432,"Ġrequires":4433,"ĠMal":4434,"bum":4435,"Ġhospital":4436,"Ġspirit":4437,"Ġoffered":4438,"Ġproduce":4439,"ĠCommun":4440,"Ġcreating":4441,"Ġcris":4442,"spect":4443,"Ġended":4444,"Ġdaily":4445,"Ġvoters":4446,"lands":4447,"ias":4448,"ih":4449,"ona":4450,"Ġsmart":4451,"ĠOffice":4452,"ĠLord":4453,"rial":4454,"ĠInternet":4455,"Ġcircum":4456,"Ġextremely":4457,"'.":4458,"Ġopinion":4459,"ĠMil":4460,"Ġgain":4461,"BS":4462,"ĠFin":4463,"yp":4464,"Ġuseful":4465,"Ġbudget":4466,"Ġcomfort":4467,"isf":4468,"Ġbackground":4469,"eline":4470,"Ġepisode":4471,"Ġenemy":4472,"Ġtrial":4473,"Ġestablish":4474,"date":4475,"ĠCap":4476,"Ġcontinues":4477,"Ġshowing":4478,"ĠUnion":4479,"with":4480,"Ġposted":4481,"ĠSystem":4482,"Ġeat":4483,"rian":4484,"Ġrise":4485,"ĠGermany":4486,"ils":4487,"Ġsigned":4488,"Ġvill":4489,"Ġgrand":4490,"mor":4491,"ĠEngland":4492,"Ġprojects":4493,"umber":4494,"Ġconference":4495,"za":4496,"Ġresponsible":4497,"ĠArab":4498,"Ġlearned":4499,"âĢĶâĢĶ":4500,"ipping":4501,"ĠGeorge":4502,"OC":4503,"Ġreturned":4504,"ĠAustralia":4505,"Ġbrief":4506,"Qu":4507,"Ġbrand":4508,"illing":4509,"abled":4510,"Ġhighest":4511,"Ġtrain":4512,"ĠCommission":4513,"while":4514,"Ġnom":4515,"ception":4516,"Ġmut":4517,"ĠBlue":4518,"Ġincident":4519,"vant":4520,"86":4521,"ĠID":4522,"Ġnuclear":4523,"74":4524,"ĠLike":4525,"ĠRE":4526,"ĠMicro":4527,"li":4528,"mail":4529,"Ġcharges":4530,"89":4531,"Ġadjust":4532,"ado":4533,"Ġearth":4534,"NA":4535,"Ġprices":4536,"PA":4537,"Ġdraft":4538,"Ġruns":4539,"Ġcandidate":4540,"enses":4541,"Ġmanagement":4542,"ĠPhil":4543,"ĠMiss":4544,"Ġteach":4545,"gram":4546,"Ġunderstanding":4547,"ait":4548,"icago":4549,"Add":4550,"ĠEp":4551,"secut":4552,"Ġseparate":4553,"Ġinstance":4554,"Ġeth":4555,"Ġunless":4556,"********":4557,"ĠFore":4558,"inate":4559,"Ġoperations":4560,"Sp":4561,"Ġfaith":4562,"gar":4563,"ĠChurch":4564,"ronic":4565,"Ġconfig":4566,"osure":4567,"Ġactivities":4568,"Ġtraditional":4569,"Ġ36":4570,"Ġdirection":4571,"Ġmachine":4572,"Ġsurround":4573,"Ġpush":4574,"unction":4575,"ĠEU":4576,"Ġeasier":4577,"Ġargument":4578,"GB":4579,"Ġmicro":4580,"Ġspending":4581,"izations":4582,"Ġtheory":4583,"adow":4584,"Ġcalling":4585,"ĠLast":4586,"Ġder":4587,"Ġinfluence":4588,"Ġcommit":4589,"Ġphoto":4590,"Ġunc":4591,"istry":4592,"gn":4593,"aste":4594,"acks":4595,"Ġdisp":4596,"ady":4597,"do":4598,"ĠGood":4599,"Ġ`":4600,"Ġwish":4601,"Ġrevealed":4602,"³³":4603,"lig":4604,"Ġenforce":4605,"ĠCommittee":4606,"Ġchem":4607,"Ġmiles":4608,"Ġinterested":4609,"Ġsolution":4610,"icy":4611,"inct":4612,"Ġ->":4613,"ĠDet":4614,"Ġremoved":4615,"Ġcompar":4616,"eah":4617,"Ġplant":4618,"ĠSince":4619,"Ġachieve":4620,"Ġadvantage":4621,"Ġslightly":4622,"bing":4623,"Ġplaced":4624,"under":4625,"2015":4626,"ĠMad":4627,"Ġtim":4628,"oses":4629,"Ġcru":4630,"ĠRock":4631,"Ġmostly":4632,"Ġnegative":4633,"Ġsetting":4634,"Ġproduced":4635,"Ġmur":4636,"Ġconnection":4637,"ĠMer":4638,"Ġdriver":4639,"Ġexecutive":4640,"Ġassault":4641,"Ġborn":4642,"ĠVer":4643,"tained":4644,"Ġstructure":4645,"Ġreduce":4646,"Ġdecades":4647,"Ġded":4648,"uke":4649,"ĠMany":4650,"idden":4651,"Ġleague":4652,"Se":4653,"Ġjoin":4654,"Ġdisco":4655,"Ġdie":4656,"cks":4657,"actions":4658,"Ġassess":4659,"agn":4660,"Ġgoals":4661,"ours":4662,"IR":4663,"Ġsenior":4664,"iller":4665,"mod":4666,"ipment":4667,"ocol":4668,"uy":4669,"ĠQue":4670,"Ġparties":4671,"irgin":4672,"Ġlearning":4673,"itable":4674,"Ġstreet":4675,"Ġcamera":4676,"App":4677,"Ġskills":4678,"bre":4679,"cious":4680,"Ġcelebr":4681,"ĠFranc":4682,"Ġexisting":4683,"Ġwilling":4684,"lor":4685,"Ġid":4686,"ĠSpace":4687,"Ġcritical":4688,"ĠLa":4689,"ortunately":4690,"Ġserve":4691,"Ġcold":4692,"Ġspecies":4693,"TS":4694,"Ġanimals":4695,"ĠBay":4696,"Ġolder":4697,"ĠUnder":4698,"estic":4699,"ĠTre":4700,"Ġteacher":4701,"Ġprefer":4702,"vis":4703,"Ġthread":4704,"ĠMatt":4705,"Ġmanager":4706,"ãĥ»":4707,"Ġprofessional":4708,"ĠVol":4709,"Ġnotes":4710,"These":4711,"ula":4712,"Ġfresh":4713,"ented":4714,"uzz":4715,"edy":4716,"clusion":4717,"ĠRel":4718,"Ġdoubt":4719,"EO":4720,"Ġopened":4721,"ĠBit":4722,"Advertisement":4723,"Ġguess":4724,"ĠUN":4725,"Ġsequ":4726,"Ġexplain":4727,"otten":4728,"Ġattract":4729,"aks":4730,"Ġstring":4731,"Ġcontext":4732,"ossible":4733,"ĠRepublicans":4734,"Ġsolid":4735,"Ġcities":4736,"Ġasking":4737,"Ġrandom":4738,"ups":4739,"uries":4740,"arant":4741,"dden":4742,"gl":4743,"ĠFlorida":4744,"Ġdepend":4745,"ĠScott":4746,"Ġ33":4747,"ĠiT":4748,"icon":4749,"Ġmentioned":4750,"Ġ2000":4751,"Ġclaimed":4752,"Ġdefinitely":4753,"ulf":4754,"Ġcore":4755,"Ġopening":4756,"ĠConst":4757,"which":4758,"ĠTra":4759,"AG":4760,"72":4761,"Ġbelieved":4762,"ada":4763,"Ġ48":4764,"ĠSecurity":4765,"yright":4766,"ĠPet":4767,"ĠLou":4768,"Ġholding":4769,"================":4770,"Ġice":4771,"Ġbrow":4772,"Ġauthorities":4773,"host":4774,"word":4775,"Ġscore":4776,"ĠDiv":4777,"Ġcells":4778,"Ġtransl":4779,"Ġneighbor":4780,"Ġremove":4781,"uct":4782,"Ġdistrict":4783,"ĠAccording":4784,"Ġworse":4785,"Ġconcerns":4786,"Ġpresidential":4787,"Ġpolicies":4788,"ĠHall":4789,"73":4790,"Ġhus":4791,"AY":4792,"Ġ2006":4793,"ĠJud":4794,"Ġindependent":4795,"ĠJustice":4796,"iliar":4797,"print":4798,"ighter":4799,"Ġprotection":4800,"zen":4801,"Ġsudden":4802,"house":4803,"ĠJes":4804,"PR":4805,"ĠInf":4806,"Ġbul":4807,"Ġ_":4808,"ĠService":4809,"ĠPR":4810,"Ġstrategy":4811,"ffect":4812,"Ġgirls":4813,"Ġmissing":4814,"oyal":4815,"ĠTeam":4816,"ulated":4817,"Ġdat":4818,"Ġpolitics":4819,"abor":4820,"According":4821,"Ġspell":4822,"Ġgraph":4823,"orthern":4824,"TC":4825,"Ab":4826,"Ġlabor":4827,"isher":4828,"Ġkick":4829,"ĠiTunes":4830,"Ġsteps":4831,"poses":4832,"Ġsmaller":4833,"En":4834,"bert":4835,"Ġroll":4836,"Ġresearchers":4837,"Ġclosed":4838,"Ġtransport":4839,"Ġlawy":4840,"________________":4841,"ĠChicago":4842,"Ġaspect":4843,"Ġnone":4844,"Ġmarriage":4845,"96":4846,"Ġelements":4847,"ĠFre":4848,"ĠSal":4849,"Ġdram":4850,"FC":4851,"top":4852,"equ":4853,"Ġhearing":4854,"Ġsupported":4855,"Ġtesting":4856,"cohol":4857,"Ġmassive":4858,"Ġstick":4859,"Ġguard":4860,"isco":4861,"phone":4862,"From":4863,"However":4864,"Ġborder":4865,"Ġcopy":4866,"ography":4867,"list":4868,"71":4869,"Ġowner":4870,"class":4871,"ruit":4872,"rate":4873,"ĠOnce":4874,"Ġdigital":4875,"Ġtask":4876,"ERS":4877,"Ġincred":4878,"tes":4879,"++":4880,"ĠFrance":4881,"Ġbreat":4882,"owl":4883,"Ġissued":4884,"ĠWestern":4885,"Ġdetect":4886,"Ġpartners":4887,"Ġshared":4888,"ĠCall":4889,"Ġcancer":4890,"ache":4891,"ribe":4892,"Ġexplained":4893,"Ġheat":4894,"{\"":4895,"Ġinvestment":4896,"ĠBook":4897,"Ġwood":4898,"Ġtools":4899,"ĠAlthough":4900,"Ġbelief":4901,"Ġcrisis":4902,"Ġge":4903,"ĠMP":4904,"Ġoperation":4905,"type":4906,"~~":4907,"ga":4908,"Ġcontains":4909,"anta":4910,"Ġexpress":4911,"ĠGroup":4912,"ĠJournal":4913,"ka":4914,"Ġamb":4915,"ĠUSA":4916,"Ġfinding":4917,"Ġfunding":4918,"how":4919,"Ġestablished":4920,"ideos":4921,"Ġdegree":4922,"Ġdangerous":4923,"anging":4924,"Ġfreedom":4925,"pport":4926,"outhern":4927,"Ġchurch":4928,"Ġcatch":4929,"ĠTwo":4930,"Ġpresence":4931,"ĠGuard":4932,"Up":4933,"Ġauthority":4934,"ĠProject":4935,"Ġbutton":4936,"Ġconsequ":4937,"Ġvalid":4938,"Ġweak":4939,"Ġstarts":4940,"Ġreference":4941,"ĠMem":4942,"\")":4943,"UN":4944,"orage":4945,"ĠOpen":4946,"Ġcollection":4947,"ym":4948,"gency":4949,"Ġbeautiful":4950,"ros":4951,"Ġtells":4952,"Ġwaiting":4953,"nel":4954,"Ġproviding":4955,"ĠDemocrats":4956,"Ġdaughter":4957,"Ġmaster":4958,"Ġpurposes":4959,"ĠJapanese":4960,"Ġequal":4961,"Ġturns":4962,"Ġdocuments":4963,"Ġwatching":4964,"Res":4965,"Ġran":4966,"2014":4967,"Ġreject":4968,"ĠKorea":4969,"Ġvictims":4970,"Level":4971,"erences":4972,"Ġwitness":4973,"Ġ34":4974,"Ġreform":4975,"coming":4976,"Ġoccup":4977,"Ġcaught":4978,"Ġtraffic":4979,"ading":4980,"Ġmodels":4981,"ario":4982,"Ġserved":4983,"Ġbatter":4984,"uate":4985,"ĠSecretary":4986,"Ġagreed":4987,"Ġtruly":4988,"ynam":4989,"ĠRet":4990,"Ġunits":4991,"ĠResearch":4992,"hand":4993,"azine":4994,"ĠMike":4995,"Ġvariety":4996,"otal":4997,"Ġamazing":4998,"Ġconfirmed":4999,"Ġentirely":5000,"Ġpurchase":5001,"Ġelement":5002,"Ġcash":5003,"Ġdetermine":5004,"De":5005,"Ġcars":5006,"ĠWall":5007,"âĸ":5008,"Ġviews":5009,"Ġdrugs":5010,"Ġdepartment":5011,"ĠStep":5012,"uit":5013,"Ġ39":5014,"asure":5015,"ĠClass":5016,"Ġcovered":5017,"ĠBank":5018,"Ġmere":5019,"uana":5020,"Ġmulti":5021,"Ġmix":5022,"Ġunlike":5023,"levision":5024,"Ġstopped":5025,"Ġsem":5026,"ĠGal":5027,"ules":5028,"Ġwel":5029,"ĠJohnson":5030,"la":5031,"Ġskill":5032,"Ġbecoming":5033,"rie":5034,"Ġappropriate":5035,"fe":5036,"ellow":5037,"ĠProt":5038,"ulate":5039,"ocation":5040,"Ġweekend":5041,"odies":5042,"Ġsites":5043,"Ġanimal":5044,"ĠTim":5045,"Ġscale":5046,"Ġcharged":5047,"Ġinstruct":5048,"illa":5049,"Ġmethods":5050,"Ġcert":5051,"Ġjudge":5052,"ĠHel":5053,"Ġdollars":5054,"Ġstanding":5055,"ĠSqu":5056,"Ġdebt":5057,"liam":5058,"Ġdriving":5059,"ĠSum":5060,"ĠEdition":5061,"Ġalbum":5062,"andon":5063,"IF":5064,"ĠUk":5065,"63":5066,"ader":5067,"Ġcommercial":5068,"esh":5069,"ĠGovernment":5070,"Ġdiscovered":5071,"Ġoutput":5072,"ĠHillary":5073,"ĠCarol":5074,"Ġ2005":5075,"Ġabuse":5076,"ancing":5077,"Ġswitch":5078,"Ġannual":5079,"Tw":5080,"Ġstated":5081,"agement":5082,"inner":5083,"Ġdemocr":5084,"Ġresidents":5085,"Ġallowing":5086,"Ġfactors":5087,"odd":5088,"Ġfuck":5089,"emies":5090,"Ġoccurred":5091,"oti":5092,"Ġnorth":5093,"ĠPublic":5094,"Ġinjury":5095,"Ġinsurance":5096,"CL":5097,"olly":5098,"ãĢ":5099,"Ġrepeated":5100,"Ġarms":5101,"anged":5102,"Ġconstruction":5103,"Ġfle":5104,"PU":5105,"icians":5106,"Ġforms":5107,"ĠMcC":5108,"antic":5109,"Ġmental":5110,"pire":5111,"Ġequipment":5112,"Ġfant":5113,"Ġdiscussion":5114,"Ġregarding":5115,"kin":5116,"arp":5117,"Ġchair":5118,"ogue":5119,"Ġproceed":5120,"ĠId":5121,"Our":5122,"Ġmurder":5123,"Man":5124,"Ġ49":5125,"asp":5126,"Ġsupply":5127,"Ġinput":5128,"Ġwealth":5129,"liament":5130,"Ġproced":5131,"orial":5132,"ĠStat":5133,"ĠNFL":5134,"hens":5135,"ĠInstitute":5136,"Ġputting":5137,"ournament":5138,"etic":5139,"Ġlocated":5140,"Ġkid":5141,"eria":5142,"run":5143,"Ġprinc":5144,"Ġ!":5145,"going":5146,"ĠBet":5147,"Ġclot":5148,"Ġtelling":5149,"Ġproposed":5150,"iot":5151,"orry":5152,"Ġfunds":5153,"gment":5154,"ĠLife":5155,"Ġbaby":5156,"ĠBack":5157,"Ġspoke":5158,"Image":5159,"Ġearn":5160,"ĠAT":5161,"gu":5162,"Ġexchange":5163,"ĠLin":5164,"oving":5165,"Ġpair":5166,"More":5167,"azon":5168,"Ġarrested":5169,"Ġkilling":5170,"can":5171,"ĠCard":5172,"yd":5173,"Ġidentified":5174,"Ġmobile":5175,"Ġthanks":5176,"onym":5177,"ĠForm":5178,"Ġhundreds":5179,"ĠChris":5180,"ĠCat":5181,"Ġtrend":5182,"hat":5183,"ĠAv":5184,"oman":5185,"Ġelectric":5186,"ĠWil":5187,"SE":5188,"Of":5189,"Ġrestaur":5190,"oted":5191,"Ġtrig":5192,"Ġnine":5193,"Ġbomb":5194,"Why":5195,"¯":5196,"Ġcoverage":5197,"Ġappeal":5198,"ĠRobert":5199,"ĠSup":5200,"Ġfinished":5201,"Ġflow":5202,"Ġdeliver":5203,"Ġcalcul":5204,"Ġphotos":5205,"Ġphil":5206,"Ġpieces":5207,"Ġappre":5208,"kes":5209,"Ġrough":5210,"Do":5211,"Ġpartner":5212,"Ġconcerned":5213,"Ġ37":5214,"ĠGen":5215,"Col":5216,"ctors":5217,"Ġ=>":5218,"state":5219,"Ġsuggested":5220,"ĠForce":5221,"CE":5222,"Ġherself":5223,"ĠPlan":5224,"works":5225,"ooth":5226,"rency":5227,"Ġcorner":5228,"Ġhusband":5229,"Ġinternet":5230,"ĠAut":5231,"ems":5232,"osen":5233,"ĠAtl":5234,"gen":5235,"Ġbalance":5236,"62":5237,"Ġsounds":5238,"text":5239,"Ġarr":5240,"oves":5241,"Ġmillions":5242,"Ġradio":5243,"Ġsatisf":5244,"ĠDam":5245,"Mr":5246,"Go":5247,"Spe":5248,"Ġcombat":5249,"rant":5250,"ĠGree":5251,"Ġfuel":5252,"Ġdistance":5253,"Ġtests":5254,"Ġdecre":5255,"ĠEr":5256,"Ġmanaged":5257,"DS":5258,"Ġtit":5259,"Ġmeasures":5260,"ĠLiber":5261,"Ġattend":5262,"ashed":5263,"ĠJose":5264,"ĠNight":5265,"dit":5266,"ĠNov":5267,"ĠEnd":5268,"outs":5269,"Ġgeneration":5270,"Ġadvoc":5271,"yth":5272,"Ġconversation":5273,"ĠSky":5274,"active":5275,"cel":5276,"rier":5277,"ĠFrank":5278,"Ġgender":5279,"Ġconcent":5280,"Ġcarried":5281,"anda":5282,"ĠVirgin":5283,"Ġarrived":5284,"icide":5285,"aded":5286,"Ġfailure":5287,"Ġminimum":5288,"lets":5289,"Ġworst":5290,"Ġkeeping":5291,"Ġintended":5292,"Ġillegal":5293,"Ġsubsc":5294,"Ġdetermined":5295,"Ġtrip":5296,"Yes":5297,"Ġraise":5298,"Ġ~":5299,"Ġfeels":5300,"Ġpackage":5301,"ĠJo":5302,"hi":5303,"2016":5304,"real":5305,"Ġfra":5306,"Ġsymb":5307,"Me":5308,"ucky":5309,"pret":5310,"ĠKh":5311,"ĠEdit":5312,"ĠWeb":5313,"emic":5314,"ĠColor":5315,"Ġjustice":5316,"Int":5317,"Ġfarm":5318,"cknow":5319,"\">":5320,"eless":5321,"Ġreduced":5322,"Ġ500":5323,"xx":5324,"ĠRad":5325,"ĠWood":5326,"Ġclin":5327,"Ġhyp":5328,"iler":5329,"ura":5330,"kins":5331,"85":5332,"61":5333,"ĠTheir":5334,"ĠMary":5335,"Ġsan":5336,"Ġnovel":5337,"ĠWho":5338,"Ġcapacity":5339,"Ġimpossible":5340,"Ġplays":5341,"Ġminister":5342,"ijuana":5343,"icate":5344,"ĠSet":5345,"Ġfram":5346,"Ġing":5347,"Ġcommunities":5348,"ĠFBI":5349,"ita":5350,"Ġbon":5351,"Ġstrateg":5352,"Ġinterests":5353,"lock":5354,"gers":5355,"mas":5356,"ĠAND":5357,"Ġconflict":5358,"Ġrequirements":5359,"Ġsac":5360,"Ġoperating":5361,"ini":5362,"related":5363,"Ġcommitted":5364,"Ġrelatively":5365,"Ġsouth":5366,"¯¯":5367,"Ġafford":5368,"Ġidentity":5369,"Ġdecisions":5370,"Ġaccused":5371,"place":5372,"Ġvictory":5373,"och":5374,"iat":5375,"Name":5376,"Com":5377,"tion":5378,"eds":5379,"Ġseek":5380,"Ġtight":5381,"ĠImages":5382,"Ġiniti":5383,"Ġhumans":5384,"Ġfamiliar":5385,"Ġaudience":5386,"Ġinternal":5387,"venture":5388,"Ġsides":5389,"ĠTO":5390,"Ġdim":5391,"Ġconclud":5392,"Ġappoint":5393,"Ġenforcement":5394,"ĠJim":5395,"ĠAssociation":5396,"Ġcircumst":5397,"ĠCanadian":5398,"Ġjoined":5399,"Ġdifferences":5400,"ĠLos":5401,"Ġprotest":5402,"Ġtwice":5403,"win":5404,"Ġglass":5405,"arsh":5406,"ĠArmy":5407,"Ġexpression":5408,"Ġdecide":5409,"Ġplanning":5410,"ania":5411,"Ġhandle":5412,"ĠMicrosoft":5413,"ĠNor":5414,"Ġmaximum":5415,"ĠRev":5416,"Ġsea":5417,"Ġeval":5418,"Ġhelps":5419,"ref":5420,"Ġbound":5421,"Ġmouth":5422,"Ġstandards":5423,"Ġclim":5424,"ĠCamp":5425,"ĠFox":5426,"cles":5427,"Ġarmy":5428,"ĠTechn":5429,"acking":5430,"xy":5431,"SS":5432,"Ġ42":5433,"Ġbug":5434,"ĠUkrain":5435,"ĠMax":5436,"ĠJones":5437,"ĠShow":5438,"lo":5439,"Ġplanet":5440,"Ġ75":5441,"Ġwinning":5442,"Ġfaster":5443,"Ġspect":5444,"Ġbroken":5445,"TR":5446,"Ġdefined":5447,"Ġhealthy":5448,"Ġcompetition":5449,"https":5450,"ĠIsland":5451,"ĠFe":5452,"Ġannounce":5453,"ĠCup":5454,"ĠInstead":5455,"Ġclient":5456,"Ġpossibly":5457,"section":5458,"ocket":5459,"look":5460,"Ġfinish":5461,"Ġcrew":5462,"Ġreserv":5463,"Ġeditor":5464,"Ġhate":5465,"Ġsale":5466,"Ġcontrovers":5467,"Ġpages":5468,"wing":5469,"Ġnumer":5470,"Ġopposition":5471,"Ġ2004":5472,"Ġrefuge":5473,"Ġflight":5474,"Ġapart":5475,"ĠLat":5476,"Americ":5477,"ĠAfrica":5478,"Ġapplications":5479,"ĠPalest":5480,"ĠBur":5481,"Ġgar":5482,"ĠSocial":5483,"Ġupgr":5484,"Ġshape":5485,"Ġspeaking":5486,"ansion":5487,"ao":5488,"ĠSn":5489,"Ġworry":5490,"ĠBritain":5491,"Please":5492,"roud":5493,"Ġhun":5494,"Ġintroduced":5495,"Ġdiet":5496,"Ind":5497,"ĠSecond":5498,"Ġfunctions":5499,"uts":5500,"ĠEach":5501,"ĠJeff":5502,"Ġstress":5503,"Ġaccounts":5504,"Ġguarant":5505,"ĠAnn":5506,"edia":5507,"Ġhonest":5508,"Ġtree":5509,"ĠAfrican":5510,"ĠBush":5511,"},":5512,"Ġsch":5513,"ĠOnly":5514,"Ġfif":5515,"igan":5516,"Ġexercise":5517,"ĠExp":5518,"Ġscientists":5519,"Ġlegislation":5520,"ĠWork":5521,"ĠSpr":5522,"ÃĤ":5523,"ĠHuman":5524,"Ġè":5525,"Ġsurvey":5526,"Ġrich":5527,"rip":5528,"Ġmaintain":5529,"Ġflo":5530,"Ġleadership":5531,"stream":5532,"ĠIslamic":5533,"Ġ01":5534,"ĠCollege":5535,"Ġmagic":5536,"ĠPrime":5537,"Ġfigures":5538,"2017":5539,"inder":5540,"xual":5541,"ĠDead":5542,"Ġabsolutely":5543,"Ġfourth":5544,"Ġpresented":5545,"respond":5546,"rible":5547,"Ġalcohol":5548,"ato":5549,"ĠDE":5550,"porary":5551,"Ġgrab":5552,"Ġvari":5553,"Ġquant":5554,"ĠPhoto":5555,"Ġplus":5556,"rick":5557,"arks":5558,"Ġalternative":5559,"Ġpil":5560,"Ġapprox":5561,"that":5562,"Ġobjects":5563,"ĠRo":5564,"ĠAndroid":5565,"Ġsignificantly":5566,"ĠRoad":5567,"kay":5568,"Read":5569,"avor":5570,"Ġacknow":5571,"ĠHD":5572,"ĠSing":5573,"Or":5574,"ĠMont":5575,"Ġuns":5576,"prof":5577,"Ġnegoti":5578,"ĠArch":5579,"iki":5580,"Ġtelevision":5581,"ĠJewish":5582,"Ġcommittee":5583,"Ġmotor":5584,"Ġappearance":5585,"Ġsitting":5586,"Ġstrike":5587,"ĠDown":5588,"comp":5589,"ĠHist":5590,"Ġfold":5591,"acement":5592,"ĠLouis":5593,"Ġbelong":5594,"ĠâĢ¢":5595,"Ġmort":5596,"Ġprepared":5597,"Ġ64":5598,"ĠMaster":5599,"Ġindeed":5600,"ĠDen":5601,"Ġrent":5602,"TA":5603,"ourney":5604,"arc":5605,"Su":5606,"97":5607,"Ġadvice":5608,"Ġchanging":5609,"Ġlisted":5610,"Ġlaunched":5611,"isation":5612,"ĠPeter":5613,"ishes":5614,"Ġlived":5615,"ĠMel":5616,"ĠSupreme":5617,"ĠFederal":5618,"Ġ);":5619,"ructure":5620,"Ġsets":5621,"Ġphilos":5622,"uous":5623,"ĠÂł":5624,"Ġapplied":5625,"ĠNOT":5626,"Ġhousing":5627,"ĠMount":5628,"Ġodd":5629,"Ġsust":5630,"DA":5631,"fficient":5632,"Ġ?":5633,"olved":5634,"Ġpowers":5635,"Ġthr":5636,"Ġremaining":5637,"ĠWater":5638,"LC":5639,"Ġcauses":5640,"ãģ®":5641,"Ġmanner":5642,"ads":5643,"Ġsuggests":5644,"Ġends":5645,"standing":5646,"fig":5647,"ĠDun":5648,"idth":5649,"Ġgay":5650,"Ġtermin":5651,"ĠAngeles":5652,"MS":5653,"Ġscientific":5654,"Ġcoal":5655,"apers":5656,"bar":5657,"ĠThomas":5658,"Ġsym":5659,"ĠRun":5660,"this":5661,"PC":5662,"igrants":5663,"Ġminute":5664,"ĠDistrict":5665,"cellent":5666,"Ġleaves":5667,"Ġcompleted":5668,"amin":5669,"Ġfocused":5670,"Ġmonitor":5671,"Ġvehicles":5672,"MA":5673,"ĠMass":5674,"ĠGrand":5675,"Ġaffected":5676,"itutional":5677,"Ġconstruct":5678,"Ġfollows":5679,"Ġton":5680,"reens":5681,"Ġhomes":5682,"ĠExt":5683,"ĠLevel":5684,"rast":5685,"ĠIr":5686,"Ġelim":5687,"Ġlargely":5688,"ĠJoe":5689,"Ġvotes":5690,"alls":5691,"Ġbusinesses":5692,"ĠFoundation":5693,"ĠCentral":5694,"Ġyards":5695,"Ġmaterials":5696,"ulner":5697,"Ġguide":5698,"Ġcloser":5699,"ums":5700,"Ġsports":5701,"eder":5702,"Just":5703,"Ġtaxes":5704,"84":5705,"ĠOld":5706,"Ġdecade":5707,"ola":5708,"Ġvir":5709,"Ġdropped":5710,"Ġdelay":5711,"itect":5712,"Ġsecure":5713,"stein":5714,"level":5715,"Ġtreated":5716,"Ġfiled":5717,"aine":5718,"Ġvan":5719,"Ġmir":5720,"Ġcolumn":5721,"icted":5722,"eper":5723,"Ġrot":5724,"Ġconsult":5725,"Ġentry":5726,"Ġmarijuana":5727,"ĠDou":5728,"Ġapparently":5729,"oking":5730,"clusive":5731,"Ġincreases":5732,"ano":5733,"Ġspecifically":5734,"Ġtele":5735,"ensions":5736,"Ġreligion":5737,"abilities":5738,"Ġframe":5739,"ĠNote":5740,"ĠLee":5741,"Ġhelping":5742,"Ġedge":5743,"oston":5744,"Ġorganizations":5745,"Ãĥ":5746,"ĠBoth":5747,"hips":5748,"Ġbigger":5749,"Ġboost":5750,"ĠStand":5751,"Ġrow":5752,"uls":5753,"abase":5754,"Ġrid":5755,"Let":5756,"aren":5757,"rave":5758,"Ġstret":5759,"PD":5760,"Ġvision":5761,"Ġwearing":5762,"Ġappreci":5763,"Ġaward":5764,"ĠUse":5765,"Ġfactor":5766,"war":5767,"ulations":5768,")(":5769,"Ġgod":5770,"Ġterrit":5771,"Ġparam":5772,"asts":5773,"87":5774,"Ġenemies":5775,"ĠGames":5776,"FF":5777,"Ġaccident":5778,"Well":5779,"ĠMartin":5780,"TER":5781,"Ġath":5782,"ĠHell":5783,"Ġforg":5784,"Ġveter":5785,"ĠMedic":5786,"free":5787,"Ġstars":5788,"Ġexpensive":5789,"Ġacad":5790,"rawn":5791,"ĠWhe":5792,"Ġlock":5793,"Ġformat":5794,"Ġsoldiers":5795,"sm":5796,"Ġagent":5797,"Ġresponsibility":5798,"ora":5799,"ĠScience":5800,"Ġrapid":5801,"Ġtough":5802,"ĠJesus":5803,"Ġbelieves":5804,"ML":5805,"Ġwear":5806,"lete":5807,"ÃĥÃĤ":5808,"ĠDri":5809,"Ġcommission":5810,"ĠBob":5811,"Oh":5812,"aped":5813,"Ġwarm":5814,"ÃĥÃĤÃĥÃĤ":5815,"Ġ2003":5816,"ortion":5817,"Ġhasn":5818,"uster":5819,"Ġunivers":5820,"ĠIll":5821,"Ġking":5822,"ologies":5823,"94":5824,"ĠTem":5825,"ĠMos":5826,"Ġpatient":5827,"ĠMexico":5828,"cean":5829,"ĠDeath":5830,"ĠSanders":5831,"you":5832,"ĠCast":5833,"ĠCompany":5834,"pty":5835,"Ġhappening":5836,"FP":5837,"ĠBattle":5838,"Ġbought":5839,"Am":5840,"Mod":5841,"Us":5842,"uters":5843,"ĠCre":5844,"ĠThose":5845,"Ġ44":5846,"iser":5847,"Ġsoul":5848,"ĠTop":5849,"ĠHarry":5850,"ĠAw":5851,"Ġseat":5852,"ffee":5853,"Ġrevolution":5854,"Ġ(\"":5855,"ĠDuring":5856,"ette":5857,"Ġring":5858,"Ġoffensive":5859,"Ġreturns":5860,"Ġvideos":5861,"Ġdiscl":5862,"Ġfamous":5863,"enced":5864,"ĠSign":5865,"ĠRiver":5866,"Ġ300":5867,"PM":5868,"ĠBus":5869,"ĠCH":5870,"Ġcandidates":5871,"arden":5872,"Ġpercentage":5873,"Ġvisual":5874,"Ġthank":5875,"Ġtrouble":5876,"nergy":5877,"Ġ2001":5878,"Ġprove":5879,"ashion":5880,"Ġenh":5881,"ĠLong":5882,"UM":5883,"Ġconnected":5884,"Ġpossibility":5885,"Over":5886,"Ġexpert":5887,"Ġlibrary":5888,"arts":5889,"ĠDirector":5890,"Ġfellow":5891,"92":5892,"irty":5893,"Ġdry":5894,"Ġsigns":5895,"ĠLove":5896,"Ġquiet":5897,"foot":5898,"Ġpure":5899,"ĠHun":5900,"Ġfilled":5901,"phas":5902,"ĠElect":5903,"endment":5904,"ĠExpl":5905,"Ġunable":5906,"ns":5907,"mo":5908,"Ġvast":5909,"obe":5910,"Ġidentify":5911,"apping":5912,"ĠCarolina":5913,"gress":5914,"Ġprote":5915,"Ġfish":5916,"Ġcircumstances":5917,"razy":5918,"ĠPhot":5919,"Ġbodies":5920,"ĠMur":5921,"Ġdeveloping":5922,"ĠAR":5923,"Ġexperienced":5924,"Ġsubstant":5925,"ĠBoard":5926,"esome":5927,"Ġdomestic":5928,"Ġcombined":5929,"ĠPut":5930,"Ġchemical":5931,"ĠChild":5932,"Ġpool":5933,"ĠCy":5934,"Ġegg":5935,"cons":5936,"sters":5937,"Ġhurt":5938,"Ġmarkets":5939,"Ġconservative":5940,"Ġsupporters":5941,"Ġagencies":5942,"idel":5943,"Ob":5944,"urb":5945,"Ġ43":5946,"ĠDefense":5947,"ye":5948,"ĠAp":5949,"dule":5950,"Ġtemperature":5951,"Ġconducted":5952,"ĠChief":5953,"Ġpulled":5954,"Ġfol":5955,"Last":5956,"onto":5957,"osis":5958,"VER":5959,"Des":5960,"ĠPan":5961,"First":5962,"Ġadvance":5963,"Ġlicense":5964,"rors":5965,"ĠJon":5966,"Ġimagine":5967,"Ġhell":5968,"Ġfixed":5969,"Ġincor":5970,"osite":5971,"ĠLog":5972,"icken":5973,"]:":5974,"Ġsurprise":5975,"hab":5976,"Ġcraft":5977,"olt":5978,"ĠJul":5979,"Ġdial":5980,"Ġrelevant":5981,"Ġentered":5982,"Ġleads":5983,"ĠAD":5984,"ĠClean":5985,"Ġpictures":5986,"essor":5987,"Ġalt":5988,"Ġpaying":5989,"Per":5990,"ĠMarket":5991,"Ġupdates":5992,"amily":5993,"ĠType":5994,"ĠHome":5995,"Ġ55":5996,"sembly":5997,"rome":5998,"83":5999,"Ġgreatest":6000,"Ġheight":6001,"Ġheav":6002,"aints":6003,"Ġlisten":6004,"aser":6005,"ĠSH":6006,"Ġcapable":6007,"acle":6008,"Ġperspect":6009,"inating":6010,"Ġoffering":6011,"rypt":6012,"ĠDevelop":6013,"abin":6014,"rc":6015,"Ġbright":6016,"alty":6017,"arrow":6018,"Ġsuppl":6019,"inding":6020,"acked":6021,"gypt":6022,"ĠAnother":6023,"pg":6024,"ĠVirginia":6025,"ĠLu":6026,"Ġplanned":6027,"Ġpit":6028,"Ġsweet":6029,"Type":6030,"ĠDi":6031,"Ġtypically":6032,"ĠFrancisco":6033,"Ġprospect":6034,"ĠDan":6035,"Ġteen":6036,"rees":6037,"Ġsched":6038,"Ġhol":6039,"Ġscr":6040,"Ġlots":6041,"life":6042,"Ġnewsp":6043,"Ġforget":6044,"ĠNone":6045,"ĠMiddle":6046,"ĠRyan":6047,"edd":6048,"Ġsevere":6049,"Ġsuit":6050,"ller":6051,"93":6052,"Ġcorrespond":6053,"Ġexplos":6054,"uations":6055,"Ġflag":6056,"game":6057,"rid":6058,"Ġprin":6059,"ĠData":6060,"Ġdeploy":6061,"ĠEnter":6062,"suit":6063,"ghan":6064,"ĠMen":6065,"Ġthoughts":6066,"Ġmatters":6067,"Ġadapt":6068,"ĠAri":6069,"Ġfill":6070,"Ġforth":6071,"Ġsam":6072,"Ġ41":6073,"Ġpayment":6074,"ĠHor":6075,"Ġspring":6076,"duc":6077,"Ġlosing":6078,"Ġbringing":6079,"FO":6080,"ala":6081,"Ġdistribution":6082,"hered":6083,"bour":6084,"ĠIsraeli":6085,"oma":6086,"Ġcombination":6087,"Ġplenty":6088,"VE":6089,"Can":6090,"ĠHaw":6091,"Ġperman":6092,"ĠSpecial":6093,"Ġtow":6094,"Ġseeking":6095,"Ġexamples":6096,"Ġclasses":6097,"cr":6098,"Ġbeer":6099,"Ġmoves":6100,"ĠIP":6101,"ĠKn":6102,"Ġpanel":6103,"Even":6104,"Ġproperly":6105,"Ġris":6106,"Ġplug":6107,"Ġestimated":6108,"Every":6109,"Ġdefensive":6110,"agraph":6111,"Ġpregn":6112,"Ġinstit":6113,"ĠVict":6114,"Ġvolume":6115,"Ġpositions":6116,"Ġlinks":6117,"ĠProgram":6118,"ĠWeek":6119,"agues":6120,"Ġtransform":6121,"ker":6122,"ĠCEO":6123,"Ġcas":6124,"Ġopponent":6125,"Ġtweet":6126,"ĠCode":6127,"Ġshop":6128,"Ġfly":6129,"Ġtalks":6130,"Ġbag":6131,"Phone":6132,"Ġaid":6133,"Ġplants":6134,"Ġ65":6135,"Ġattorney":6136,"arters":6137,"quest":6138,"ĠMagic":6139,"Ġbegins":6140,"Ġmyster":6141,"Ġenvironmental":6142,"Ġstorage":6143,"NN":6144,"Ġmarg":6145,"Ġske":6146,"Ġmetal":6147,"elly":6148,"Ġordered":6149,"Ġremained":6150,"Ġloved":6151,"Ġprompt":6152,"Ġupdated":6153,"Ġexperts":6154,"Ġwalking":6155,"Ġancient":6156,"Ġperformed":6157,"ATE":6158,"Ġneither":6159,"iency":6160,"Ġmanufacture":6161,"ĠPak":6162,"Ġselected":6163,"Ġmine":6164,"Ġultimately":6165,"Ġexplan":6166,"Ġlabel":6167,"ĠServices":6168,"ributed":6169,"Trump":6170,"Ġsyn":6171,"ĠUlt":6172,"SC":6173,"Ġmeat":6174,"Ġgiant":6175,"ĠWars":6176,"ĠON":6177,"Ġadm":6178,"Ġinterpret":6179,"Ġevening":6180,"Ġevil":6181,"ĠBoston":6182,"ĠWild":6183,"ĠÃ":6184,"ĠBitcoin":6185,"ĠAmazon":6186,"Dr":6187,"ĠInformation":6188,"Ġobviously":6189,"Ġadvanced":6190,"Photo":6191,"olar":6192,"Ġweather":6193,"Ġsymbol":6194,"Ġsole":6195,"Ġpotentially":6196,"oster":6197,"Ġoriginally":6198,"mun":6199,"300":6200,"aze":6201,"essions":6202,"Ġdeck":6203,"Ġstood":6204,"Ġyouth":6205,"ĠBern":6206,"Rep":6207,"ĠTest":6208,"Ġbasically":6209,"otic":6210,"Ġinvolve":6211,"olit":6212,"lyn":6213,"See":6214,"Ġaircraft":6215,"Ġconfirm":6216,"EW":6217,"Ġmessages":6218,"ĠRichard":6219,"Ġkit":6220,"Ġprohib":6221,"Ġvulner":6222,"isters":6223,"Ġexistence":6224,"Ġturning":6225,"ĠSP":6226,"Ġdesire":6227,"Ġflat":6228,"Ġment":6229,"season":6230,"anges":6231,"Ġneighborhood":6232,"ĠLake":6233,"ATION":6234,"Ġpointed":6235,"bur":6236,"Ġinnov":6237,"ucks":6238,"UL":6239,"Ġprofessor":6240,"Ġexpressed":6241,"AB":6242,"icious":6243,"Ġ2002":6244,"ĠDev":6245,"Ġsession":6246,"Ġbare":6247,"sen":6248,"Ġdiss":6249,"ĠCath":6250,"ĠPass":6251,"ĠPoint":6252,"Ġdoctor":6253,"orrow":6254,"ailed":6255,"ĠRub":6256,"ĠDC":6257,"ĠCharl":6258,"person":6259,"Ġwriter":6260,"ighters":6261,"ureau":6262,"Ġoblig":6263,"Ġrecorded":6264,"Ġbroke":6265,"Ġorders":6266,"ilty":6267,"Ġmotion":6268,"inity":6269,"law":6270,"adium":6271,"Ġimmigration":6272,"Ġcontrast":6273,"Ġbatt":6274,"Ġexcellent":6275,"Ġtechnical":6276,"ami":6277,"Ġtun":6278,"Ġcloud":6279,"ĠYear":6280,"geon":6281,"Ġcreation":6282,"Ġstrange":6283,"Ġauth":6284,"Ġfort":6285,"born":6286,"Ġextent":6287,"ĠToday":6288,"ĠClub":6289,"Ġrain":6290,"Ġsample":6291,"Ġaccepted":6292,"Ġtact":6293,"Ġfired":6294,"ĠSon":6295,"Ġstands":6296,"Ġboot":6297,"Ġ47":6298,"Ġstatements":6299,"Ġversions":6300,"Ġselling":6301,"ounded":6302,"Ġ1990":6303,"Ġweren":6304,"ĠWatch":6305,"Ġexperiment":6306,"Post":6307,"Ġretail":6308,"uled":6309,"Inst":6310,"unte":6311,"ãĥ¼":6312,"Ġdepart":6313,"Ġbond":6314,"ivery":6315,"ompl":6316,"Ġreaction":6317,"ĠSyrian":6318,"ĠPac":6319,"apped":6320,"aniel":6321,"DP":6322,"Ġresolution":6323,"Ġreact":6324,"Ġapproved":6325,"onom":6326,"mond":6327,"ĠOffic":6328,"---":6329,"Ġreplace":6330,"Ġtack":6331,"Ġsport":6332,"Ġchain":6333,"Ġemergency":6334,"rad":6335,"ĠPalestin":6336,"Ġ46":6337,"Ġautomatically":6338,"Ġroute":6339,"Ġpal":6340,"Ġbanks":6341,"ĠParis":6342,"ĠMedia":6343,"road":6344,"icing":6345,"ixt":6346,"isted":6347,"Ġgrew":6348,"Ġcoord":6349,"ĠWhere":6350,"omin":6351,"Ġsubs":6352,"��":6353,"Ġ±":6354,"Ġcorporate":6355,"Ġselection":6356,"noon":6357,"ĠReport":6358,"cs":6359,"cluding":6360,"orders":6361,"anche":6362,"ĠIts":6363,"Ġslowly":6364,"ĠEgypt":6365,"ĠAcc":6366,"Ġcolle":6367,"iques":6368,"EX":6369,"Ġattempts":6370,"url":6371,"ĠCross":6372,"Ġfindings":6373,"ĠSC":6374,"ĠOR":6375,"Ġindex":6376,"ensity":6377,"ĠWay":6378,"ĠLand":6379,"Ġshock":6380,"dis":6381,"Ġdynam":6382,"Ġcart":6383,"mosp":6384,"Since":6385,"iest":6386,"ĠBoy":6387,"Ġstorm":6388,"ĠContin":6389,"2013":6390,"hew":6391,"ilit":6392,"Ġessential":6393,"iquid":6394,"Other":6395,"ivered":6396,"Ġreasonable":6397,"Act":6398,"Ġsubsequ":6399,"ĠPack":6400,"ĠFort":6401,"Ġconsidering":6402,"Ġuniversity":6403,"log":6404,"Ġmarried":6405,"Ġillust":6406,"ĠTrue":6407,"£ı":6408,"Ġnumerous":6409,"rastructure":6410,"Ġseriously":6411,"Ġreferred":6412,"ua":6413,"Ġconsistent":6414,"onna":6415,"ĠReal":6416,"ruption":6417,"ciples":6418,"Ġfacts":6419,"91":6420,"otes":6421,"erg":6422,"Then":6423,"Ġaccompl":6424,"Note":6425,"Ġrevenue":6426,"Ġpassing":6427,"Ġmal":6428,"een":6429,"ĠYet":6430,"Ġgather":6431,"terday":6432,"ework":6433,"ĠAuthor":6434,"Pe":6435,"Ġoptim":6436,"Ġrub":6437,"Ġè£ı":6438,"Ġunknown":6439,"stone":6440,"Ġunion":6441,"olve":6442,"Ġopportunities":6443,"Ġbrowser":6444,"ĠWal":6445,"ĠCost":6446,"Ġreporting":6447,"sts":6448,"pet":6449,"Ġsand":6450,"Ġsuddenly":6451,"Ġsurprising":6452,"ĠVR":6453,"Ġsomewhat":6454,"ĠBas":6455,"ulture":6456,"izz":6457,"ĠCD":6458,"Ġchallenges":6459,"Ġsettings":6460,"Ġexperiences":6461,"ĠFull":6462,"Ġcann":6463,"Ġreceiving":6464,"EST":6465,"Ġjoint":6466,"Ġcultural":6467,"Ġast":6468,"82":6469,"astern":6470,"ceived":6471,"ĠCru":6472,"Ġbull":6473,"pired":6474,"amm":6475,"Ġfacing":6476,"power":6477,"Ġboss":6478,"ĠHol":6479,"Ġinstr":6480,"Ġincreasingly":6481,"Ġshift":6482,"Ġstreets":6483,"ĠWilliams":6484,"abb":6485,"Ġlie":6486,"Ġlaugh":6487,"ĠCa":6488,"PL":6489,"Ġadults":6490,"Ġcustomer":6491,"Ġobtained":6492,"Ġsupporting":6493,"html":6494,"fire":6495,"Ġdetailed":6496,"Ġpicked":6497,"ĠRight":6498,"lder":6499,"EE":6500,"stood":6501,"ĠKim":6502,"Ġwire":6503,"Ġsight":6504,"Ġdevelopers":6505,"Ġpersons":6506,"Ġsad":6507,"Ġcup":6508,"Ġwarning":6509,"Ġboys":6510,"long":6511,"Ġbird":6512,"fo":6513,"Ġwal":6514,"Ġobserved":6515,"Ġzone":6516,"iveness":6517,"Ġchannel":6518,"cript":6519,"Ġrefused":6520,"ĠAgain":6521,"Ġsuc":6522,"Ġspokesman":6523,"ĠRef":6524,"rite":6525,"ouston":6526,"ãĥ³":6527,"ĠSher":6528,"Ġacts":6529,"ĠName":6530,"Ġstruggle":6531,"arry":6532,"ometimes":6533,"Ġdiscrim":6534,"HT":6535,"Ġcategory":6536,"Ġrealize":6537,"Ġemployee":6538,"ĠAfghan":6539,"enger":6540,"Ġguns":6541,"ĠSteve":6542,"ĠMot":6543,"ĠOl":6544,"oked":6545,"Ġthick":6546,"Ġfairly":6547,"illy":6548,"Ġsurve":6549,"ĠMat":6550,"weight":6551,"âĶ":6552,"Ġtroops":6553,"Ġagents":6554,"Ġbattery":6555,"Ġmotiv":6556,"á":6557,"Sec":6558,"den":6559,"overy":6560,"LS":6561,"Ġflu":6562,"Ġconfident":6563,"ĠOper":6564,"Ġempty":6565,"Ġphen":6566,"Ġsector":6567,"Ġexcited":6568,"Ġremote":6569,"aph":6570,"oen":6571,"Ġdestroyed":6572,"Ġmoral":6573,"ĠHP":6574,"ĠRon":6575,"Ġdress":6576,"ĠBat":6577,"Ġlit":6578,"ĠMS":6579,"Ġaf":6580,"HL":6581,"rum":6582,"isms":6583,"Ġshouldn":6584,"Ġsympt":6585,"ĠToronto":6586,"hetic":6587,"Ġcarbon":6588,"Ġinstalled":6589,"Ġviolent":6590,"Ġsolar":6591,"ja":6592,"Ġpractices":6593,"Ġride":6594,"ĠPenn":6595,"Ġimproved":6596,"Ġaudio":6597,"Ġbehavi":6598,"ĠPS":6599,"Ġeating":6600,"Data":6601,"ĠReview":6602,"pass":6603,"claim":6604,"uated":6605,"angers":6606,"chen":6607,"Ġproperties":6608,"Ġanywhere":6609,"Another":6610,"Ġblow":6611,"ĠJackson":6612,"Ġproud":6613,"Ġplane":6614,"lines":6615,"Ġsquare":6616,"Ġproof":6617,"ansas":6618,"Ġtalked":6619,"makers":6620,"Ġsister":6621,"Ġholds":6622,"Ġresident":6623,"Ġ==":6624,"Ġresistance":6625,"Ġsplit":6626,"Ġprosecut":6627,"Ġconfidence":6628,"resents":6629,"Ġcuts":6630,"Ġexception":6631,"Ġzero":6632,"Getty":6633,"Ġcopyright":6634,"Ġtotally":6635,"ormal":6636,"ifications":6637,"ĠAustralian":6638,"Ġsick":6639,"Ġ150":6640,"Ġhousehold":6641,"Ġfees":6642,"Ġdrivers":6643,"ogen":6644,"ĠNY":6645,"Ġnecessarily":6646,"Ġregulations":6647,"earing":6648,"sl":6649,"Ġperspective":6650,"care":6651,"icial":6652,"His":6653,"Ġescape":6654,"Ġsurprised":6655,"ĠVan":6656,"urrent":6657,"Ġvac":6658,"81":6659,"ĠThus":6660,"Ġemphas":6661,"ĠChampions":6662,"ĠIce":6663,"Ġnarr":6664,"Ġheads":6665,"Ġcausing":6666,"bel":6667,"fortunately":6668,"ĠMa":6669,"Ġtargets":6670,"cipl":6671,"Ġafternoon":6672,"Ġadds":6673,"ĠMaybe":6674,"ĠFour":6675,"essed":6676,"plete":6677,"Ġusual":6678,"cho":6679,"ingu":6680,"Ġwithd":6681,"ĠEnergy":6682,"ĠEconom":6683,"OO":6684,"Ġarticles":6685,"Ġinjured":6686,"Ġmanage":6687,"Ġexplains":6688,"Ġdiagn":6689,"Rec":6690,"atures":6691,"Ġlinked":6692,"Ġdiscussed":6693,"Ġexplo":6694,"Ġoccasion":6695,"athan":6696,"Ġopposite":6697,"Ġfaces":6698,"Ġdenied":6699,"ĠKnight":6700,"Ġnut":6701,"Ġapproximately":6702,"Ġdisappoint":6703,"onymous":6704,"ĠBest":6705,"ĠLo":6706,"ĠHy":6707,"ĠAff":6708,"Ġvoting":6709,"anwhile":6710,"ĠIII":6711,"Ġinstitutions":6712,"agram":6713,"ĠDaily":6714,"Ġdrag":6715,"Ġnearby":6716,"Ġguilty":6717,"Ġconver":6718,"Pre":6719,"ship":6720,"Ġreward":6721,"Ġphilosoph":6722,"ĠSS":6723,"ugh":6724,"Ġapps":6725,"friend":6726,"Ġupper":6727,"Ġadvert":6728,"Ġsnow":6729,"Ġfrust":6730,"Ġourselves":6731,"Fr":6732,"ĠDie":6733,"ampion":6734,"Ġdismiss":6735,"Ġcere":6736,"Ġsignal":6737,"from":6738,"Ġ).":6739,"Ġ52":6740,"Ġcrimes":6741,"itors":6742,"estival":6743,"useum":6744,"Ġcouncil":6745,"ĠSaud":6746,"May":6747,"ĠGun":6748,"ician":6749,"ether":6750,"Ġsufficient":6751,"ĠHen":6752,"sole":6753,"Ġhistorical":6754,"ĠFar":6755,"ĠTurn":6756,"Ġpin":6757,"Ġsucceed":6758,"mat":6759,"lymp":6760,"Ġtradition":6761,"ĠOk":6762,"Ġcro":6763,"Ġdescription":6764,"alle":6765,"Ġsky":6766,"Te":6767,"Ġwidely":6768,"Ġwave":6769,"Ġdefinition":6770,"ĠJews":6771,"Ġcycle":6772,"Ġrefere":6773,"Ġbrings":6774,"usal":6775,"Ġalive":6776,"Ġfrequently":6777,"Ġintention":6778,"ĠControl":6779,"lv":6780,"ystem":6781,"Ġprivacy":6782,"gent":6783,"rence":6784,"ĠQuest":6785,"ĠChristmas":6786,"Ġrail":6787,"Ġcooper":6788,"Ġtested":6789,"ĠCapt":6790,"asks":6791,"Ġcomfortable":6792,"Ġdelivered":6793,"scape":6794,"Ġdepth":6795,"ĠGOP":6796,"Ġwrites":6797,"Ġassets":6798,"Ġsav":6799,"iments":6800,"Ġtransition":6801,"Ġartist":6802,"ĠLook":6803,"Ġlob":6804,"Ġcomponents":6805,"arity":6806,"Ġwalked":6807,"Ġroot":6808,"Ġparticipants":6809,"Ġnoticed":6810,"Ġresc":6811,"Ġnav":6812,"ĠAdminist":6813,"da":6814,"utral":6815,"plate":6816,"Ġimportance":6817,"Ġassert":6818,"iously":6819,"cription":6820,"Ġinjuries":6821,"ĠCheck":6822,"Ġregistered":6823,"Ġintent":6824,"Ġmissed":6825,"ographic":6826,"Ġsentence":6827,"ounter":6828,"Ġassistance":6829,"evin":6830,"Ġdatabase":6831,"Ġbuildings":6832,"Ġclassic":6833,"Ġthinks":6834,"ĠOhio":6835,"Pr":6836,"ugg":6837,"Ġfee":6838,"pan":6839,"Ġeffectively":6840,"Ġfacility":6841,"Ġbear":6842,"Ġchapter":6843,"Ġdogs":6844,"ĠColumb":6845,"Ġlatter":6846,"itial":6847,"Ġadmitted":6848,"TV":6849,"ĠGeorg":6850,"Ġposts":6851,"\\\\":6852,"Ġlawyer":6853,"Ġequival":6854,"Ġmand":6855,"Ġcontrolled":6856,"ĠWalk":6857,"ĠAndrew":6858,"Ġmenu":6859,"amental":6860,"Ġprotected":6861,"va":6862,"Ġadministr":6863,"oral":6864,"Ġrein":6865,"ĠSar":6866,"Ġamounts":6867,"Ġnative":6868,"ĠMoon":6869,"Ġrepresents":6870,"Ġabandon":6871,"Ġcarrying":6872,"Ġtank":6873,"mary":6874,"Ġdeclared":6875,"Tube":6876,"Ġhat":6877,"Ġpunish":6878,"ellect":6879,"mes":6880,"Ġuniverse":6881,"ĠRod":6882,"phy":6883,"Ġinfrastructure":6884,"Ġ51":6885,"Ġopposed":6886,"ownt":6887,"ca":6888,"ĠMake":6889,"Ġhardware":6890,"Ġcoffee":6891,"Rel":6892,"bal":6893,"world":6894,"ĠSaf":6895,"ĠSea":6896,"inals":6897,"Ġowned":6898,"Ġhall":6899,"ersion":6900,"Ġdescribe":6901,"ĠPot":6902,"Ġportion":6903,"Ġatmosp":6904,"Ġgovernments":6905,"Ġdepending":6906,"Ġoffense":6907,"Ġtrick":6908,"awa":6909,"ĠLine":6910,"ĠVis":6911,"ĠHard":6912,"ĠOrig":6913,"ĠClick":6914,"Ġdesk":6915,"ĠValley":6916,"ĠSov":6917,"Ġmovies":6918,"Ġremark":6919,"Ġmail":6920,"Ġconscious":6921,"Ġruling":6922,"ĠRights":6923,"Ġmedic":6924,"hent":6925,"ĠWomen":6926,"><":6927,"Ġreplaced":6928,"ĠPrem":6929,"ĠThanks":6930,"Ġrenew":6931,"ĠBall":6932,"iform":6933,"Ġshots":6934,"Comm":6935,"Ġarmed":6936,"Ġconstant":6937,"Ġtaste":6938,"Ġrealized":6939,"Ġbuff":6940,"Ġmo":6941,"Ġefficient":6942,"Most":6943,"oration":6944,"ifies":6945,"Ġcommunication":6946,"Ġflood":6947,"Ġconsequences":6948,"Ġanyway":6949,"igg":6950,"ĠGM":6951,"ĠThank":6952,"Ġiron":6953,"Ġevolution":6954,"ĠCop":6955,"twitter":6956,"Ġ95":6957,"Ġrelationships":6958,"adel":6959,"ĠYoung":6960,"Ġproposal":6961,"ayers":6962,"uilding":6963,"ĠHot":6964,"ORE":6965,"cos":6966,"Ġcollabor":6967,"PG":6968,"axy":6969,"Ġknowing":6970,"Ġsupports":6971,"owed":6972,"Ġcontrols":6973,"Ġmerely":6974,"umer":6975,"Ġathlet":6976,"Ġfashion":6977,"path":6978,"Ġgift":6979,"Ġera":6980,"AND":6981,"Ġkinds":6982,"ĠKorean":6983,"Ġlegit":6984,"ulous":6985,"Ġessentially":6986,"Ġtherap":6987,"nic":6988,"Ġsuffered":6989,"Ġhur":6990,"Ġpromise":6991,"Ġexcess":6992,"Ġoverw":6993,"Ġprime":6994,"ĠHouston":6995,"erry":6996,"ĠMs":6997,"RS":6998,"2012":6999,"Ġstores":7000,"ĠOlymp":7001,"Ġjourney":7002,"Although":7003,"Sub":7004,"ĠEduc":7005,"ĠChapter":7006,"Ġrequests":7007,"Ġconsumers":7008,"Ġtiny":7009,"Ġisol":7010,"ĠFair":7011,"ba":7012,"ĠYOU":7013,"Ġcrash":7014,"celer":7015,"Ġemotional":7016,"Ġgoods":7017,"Ġelected":7018,"Ġmoder":7019,"ĠLinux":7020,"Ġblocks":7021,"Ġisland":7022,"ĠSociety":7023,"Ġelections":7024,"Ġbroadcast":7025,"Ġcheap":7026,"Ġnations":7027,"Ġseasons":7028,"400":7029,"Ġwaste":7030,"ĠSat":7031,"Ġfields":7032,"employ":7033,"Ġprofile":7034,"Ġauthors":7035,"ALL":7036,"ĠGra":7037,"west":7038,"ĠTy":7039,"Ġdeaths":7040,"Ġvacc":7041,"Ġformed":7042,"Ġdu":7043,"Ġongoing":7044,"ĠMuslims":7045,"elf":7046,"igure":7047,"Ġassume":7048,"ĠUkraine":7049,"water":7050,"Ġcoast":7051,"Ġvoted":7052,"gor":7053,"ĠAS":7054,"ĠMichigan":7055,"aza":7056,"ĠArm":7057,"iro":7058,"Ġflex":7059,"asters":7060,"''":7061,"Ġwelcome":7062,"arl":7063,"Ġlocations":7064,"igation":7065,"ĠFil":7066,"Ġbuying":7067,"Ġarchitect":7068,"Ġharder":7069,"ĠCub":7070,"Ġinterface":7071,"Ġrestaurant":7072,"Ġdiscover":7073,"Ġexceed":7074,"Ġfavour":7075,"gery":7076,"Ġduty":7077,"Ġpitch":7078,"ador":7079,"ĠMach":7080,"boy":7081,"Ġresponded":7082,"Ġextended":7083,"hers":7084,"Many":7085,"raid":7086,"ifer":7087,"ĠIns":7088,"Ser":7089,"Ġmedium":7090,"she":7091,"ĠSports":7092,"Ġmagazine":7093,"utation":7094,"Ġlimits":7095,"ĠGall":7096,"Ġexternal":7097,"razil":7098,"Ġyounger":7099,"tle":7100,"Ġremind":7101,"ĠCON":7102,"Ġimmediate":7103,"Ġhidden":7104,"Ġvolunte":7105,"Ġsimpl":7106,"odcast":7107,"Ġphase":7108,"dr":7109,"Ġplot":7110,"Ġexposure":7111,"RI":7112,"ograp":7113,"vin":7114,"anish":7115,"ĠAcad":7116,"ĠEngine":7117,"Ġexpansion":7118,"ĠPay":7119,"Your":7120,"Ġpushed":7121,"ĠEll":7122,"ĠHead":7123,"Ġmarketing":7124,"ĠAC":7125,"ket":7126,"Ġhits":7127,"Ġgro":7128,"ĠAge":7129,"ĠScot":7130,"][":7131,"Ġstim":7132,"ĠiPhone":7133,"ĪĴ":7134,"Ġnarrow":7135,"ĠGetty":7136,"ĠTurkey":7137,"Ġperfectly":7138,"Ġenable":7139,"utch":7140,"Ġprecise":7141,"Ġregime":7142,"Ġshif":7143,"Ġcompens":7144,"gun":7145,"div":7146,"Ġchosen":7147,"ĠKen":7148,"Any":7149,"Ġtrees":7150,"Ġrecommended":7151,"ĠRen":7152,"uable":7153,"ĠHT":7154,"Follow":7155,"EG":7156,"ĠHand":7157,"ĠKenn":7158,"Ġarguments":7159,"Ġexists":7160,"Ġbike":7161,"ĠConserv":7162,"Ġbreaking":7163,"ĠGar":7164,"Ġcrazy":7165,"Ġvirtual":7166,"aylor":7167,"ixel":7168,"Ġ1980":7169,"Ġpermission":7170,"ĠSeries":7171,"Ġconsumer":7172,"Ġclosely":7173,"called":7174,"Ġ54":7175,"Ġhopes":7176,"Ġarray":7177,"ĠWin":7178,"ĠLabour":7179,"Ġspons":7180,"ĠIre":7181,"Ġpow":7182,"Ġreaders":7183,"Ġemployment":7184,"Ġcreature":7185,"Ġresulting":7186,"Ġaccurate":7187,"Ġmoments":7188,"Ġargued":7189,"Ġped":7190,"During":7191,"Ġ53":7192,"ĠTal":7193,"Ġsought":7194,"Ġsuffering":7195,"Ġicon":7196,"lee":7197,"Ġ($":7198,"alian":7199,"°":7200,"Ġpra":7201,"Ġbonus":7202,"(\"":7203,"ko":7204,"Ġacting":7205,"DE":7206,"fall":7207,"Ġcomparison":7208,"Ġsmooth":7209,"ĠNAS":7210,"upp":7211,"ĠJoseph":7212,"eping":7213,"ĠTake":7214,"ĠMid":7215,"Ġsending":7216,"fast":7217,"ĠFall":7218,"Ġdealing":7219,"user":7220,"ĠOrgan":7221,"Co":7222,"Ġattached":7223,"Ġsees":7224,"%.":7225,"Ġtypical":7226,"ART":7227,"Ġfinds":7228,"ĠAsia":7229,"umin":7230,"ĠCore":7231,"ĠEnt":7232,"inent":7233,"uce":7234,"ĠBlood":7235,"ĠNever":7236,"Ġemails":7237,"Ġhighlight":7238,"Ġconfront":7239,"atus":7240,"uted":7241,"Ġunus":7242,"Ġtopic":7243,"ĠAdam":7244,"Ġble":7245,"ati":7246,"Ġunderstood":7247,"Set":7248,"struct":7249,"TP":7250,"Ġmob":7251,"aa":7252,"ĠStart":7253,"pected":7254,"sell":7255,"Ġdedicated":7256,"ĠCA":7257,"uan":7258,"Ġsongs":7259,"escription":7260,"Ġtech":7261,"Ġrape":7262,"Ġaside":7263,"Ġgrant":7264,"Ġ56":7265,"sub":7266,"Ġargue":7267,"Ġcontaining":7268,"Ġschedule":7269,"Ġliberal":7270,"Ġpublicly":7271,"Ġheavily":7272,"ĠUt":7273,"iner":7274,"ĠSection":7275,"ĠCare":7276,"weet":7277,"ls":7278,"Dis":7279,"âĶĢ":7280,"ĠFollow":7281,"Back":7282,"ĠIT":7283,"Ġbes":7284,"ji":7285,"ĠHit":7286,"ested":7287,"Ġeverybody":7288,"ĠSwed":7289,"Ġfemin":7290,"Ġfacilities":7291,"Ġconven":7292,"Comp":7293,"ĠOS":7294,"core":7295,"Ġanx":7296,"Ġdivision":7297,"ĠCam":7298,"ĠStan":7299,"mates":7300,"Ġexplore":7301,"plom":7302,"Ġshares":7303,"pload":7304,"anes":7305,"Ġideal":7306,"eters":7307,"ĠBase":7308,"Ġplastic":7309,"Ġdistinct":7310,"ĠNetwork":7311,"ĠSeattle":7312,"Ġtrading":7313,"ensus":7314,"intend":7315,"Ġexhib":7316,"Ġinitially":7317,"ĠFood":7318,"Ġthousand":7319,"ĠBusiness":7320,"acter":7321,"Ġparagraph":7322,"Ġroughly":7323,"Ġwww":7324,"Ġcreative":7325,"ĠConf":7326,"Ġconsumption":7327,"Ġfilms":7328,"agan":7329,"Ġobtain":7330,"Ġtall":7331,"Ġtor":7332,"Ġacknowled":7333,"Ġgrown":7334,"alo":7335,"KE":7336,"Ġ400":7337,"enders":7338,"taining":7339,"UG":7340,"Ġsuicide":7341,"Ġwatched":7342,"ĠList":7343,"ali":7344,"rehens":7345,"Ġsurrounding":7346,"Ġpip":7347,"Ġflying":7348,"ĠJava":7349,"ordan":7350,"Ġserving":7351,"inations":7352,"post":7353,"Ġsho":7354,"Av":7355,"Ġjail":7356,"zy":7357,"Ġ1999":7358,"Ġ>":9609,"orous":9610,"Ġfirms":9611,"screen":9612,"una":9613,"Ġembarrass":9614,"ulse":9615,"Ġletting":9616,"Ġthrew":9617,"iley":9618,"Ġchannels":9619,"lan":9620,"ĠVegas":9621,"Ġsear":9622,"Ġfantastic":9623,"arre":9624,"uzzle":9625,"ĠDer":9626,"Those":9627,"Ġswing":9628,"Ġsheet":9629,"index":9630,"cover":9631,"ogan":9632,"Ġvariables":9633,"ĠTech":9634,"Ġspoken":9635,"achel":9636,"ĠDa":9637,"ĠMountain":9638,"Ġloaded":9639,"Ġfootage":9640,"version":9641,"Ġunl":9642,"ĠPhoenix":9643,"Ġthrowing":9644,"Ġfiring":9645,"Ġtracking":9646,"Ġwidth":9647,"Ġstruggling":9648,"rooms":9649,"otion":9650,"Ġmonthly":9651,"ĠServer":9652,"Ġeggs":9653,"open":9654,"MC":9655,"Ġ1993":9656,"Ġhired":9657,"Ġstayed":9658,"ĠAllen":9659,"Ġstro":9660,"Ġ98":9661,"step":9662,"ĠTurkish":9663,"Ġfabric":9664,"isting":9665,"ĠDom":9666,"Ġdates":9667,"Ġpron":9668,"Ġbasketball":9669,"Ġlucky":9670,"ĠArabia":9671,"Ġassumed":9672,"esty":9673,"Ġaffairs":9674,"Ġglad":9675,"ĠIndeed":9676,"ĠFA":9677,"ĠWord":9678,"Ġjoining":9679,"ifice":9680,"pread":9681,"irts":9682,"ĠSelect":9683,"Ġpopulations":9684,"aware":9685,"Ġnose":9686,"Ġcomplaints":9687,"start":9688,"Ġscoring":9689,"Thanks":9690,"Ġmining":9691,"Ġvisitors":9692,"SH":9693,"Ġdamaged":9694,"Ġcharacteristics":9695,"ĠPent":9696,"DC":9697,"Ġ83":9698,"ĠSix":9699,"rates":9700,"Ġflags":9701,"ĠBrew":9702,"dog":9703,"Mark":9704,"////":9705,"Ġexecution":9706,"Ġjoke":9707,"phones":9708,"Ġtestimony":9709,"Ġobst":9710,"QL":9711,"ĠCut":9712,"Ġstudied":9713,"ĠNintendo":9714,"icket":9715,"ĠNBC":9716,"Ġlad":9717,"ĠBra":9718,"ĠMoh":9719,"Ġkernel":9720,"Ġoverwhelming":9721,"Ġaged":9722,"Ġapplicable":9723,"ĠCond":9724,"Ġroads":9725,"ĠBlock":9726,"made":9727,"odge":9728,"Ġcommands":9729,"Ġoffices":9730,"veland":9731,"Ġtut":9732,"Ġreceiver":9733,"ĠFro":9734,"Ġshopping":9735,"ĠiP":9736,"ĠStre":9737,"ĠABC":9738,"Ġentertainment":9739,"ĠBow":9740,"orted":9741,"Mc":9742,"Ġreads":9743,"grad":9744,"ĠCollect":9745,"ĠâĪĴ":9746,"ĠCapital":9747,"ederation":9748,"Ġemployer":9749,"Ġinvolvement":9750,"Ġanxiety":9751,"alia":9752,"Ġroof":9753,"ĠAmong":9754,"ĠDemocrat":9755,"Ġstats":9756,"ĠVill":9757,"Ġconstitutional":9758,"Ġreferring":9759,"itty":9760,"Ġtackle":9761,"outube":9762,"Ġbacked":9763,"ĠHong":9764,"ĠBroad":9765,"Ġele":9766,"ĠOtt":9767,"Ġ1992":9768,"hour":9769,"achusetts":9770,"Cal":9771,"Ġdefeated":9772,"Ġ81":9773,"esp":9774,"Ġseemingly":9775,"was":9776,"ĠJenn":9777,"ĠKurd":9778,"Ġgene":9779,"Ġdiscount":9780,"Ret":9781,"ECT":9782,"();":9783,"Ġclubs":9784,"Ġsid":9785,"ĠMarsh":9786,"Check":9787,"Ġpp":9788,"ĠEag":9789,"idespread":9790,"Ġbeings":9791,"FT":9792,"Ġintroduction":9793,"ĠChange":9794,"ARD":9795,"Ġ110":9796,"adows":9797,"ierce":9798,"Ġmeal":9799,"author":9800,"ĠBang":9801,"lahoma":9802,"Ġranks":9803,"2011":9804,"????":9805,"max":9806,"Ġcollapse":9807,"Ġopens":9808,"Ġecho":9809,"Ġsoph":9810,"Ġracist":9811,"Ġenormous":9812,"Ġwaves":9813,"Ġtap":9814,"Ġcomprehensive":9815,".--":9816,"ĠRoy":9817,"Ġfarmers":9818,"Related":9819,"aired":9820,"rones":9821,"ĠCrim":9822,"Ġproportion":9823,"Ġdesigns":9824,"Ġnegotiations":9825,"Ġvirtually":9826,"ĠBatman":9827,"Ġwarn":9828,"Ġlegitimate":9829,"mate":9830,"Ġconvention":9831,",,":9832,"netic":9833,"ĠSD":9834,"Ġconsistently":9835,"Ġcompensation":9836,"Ġpunishment":9837,"Ġye":9838,"Ġtie":9839,"ĠBureau":9840,"irlf":9841,"ĠBu":9842,"ĠAren":9843,"ĠPhilipp":9844,"Ġknife":9845,"Ġmemories":9846,"ĠRoss":9847,"Ġangle":9848,"Ġ86":9849,"ĠThunder":9850,"Ġrend":9851,"ĠTour":9852,"Ġcounts":9853,"sung":9854,"ĠImp":9855,"Ġeducational":9856,"Ġaccessible":9857,"COM":9858,"Ġdrew":9859,"yer":9860,"Gl":9861,"amine":9862,"ORT":9863,"OB":9864,"IB":9865,"master":9866,"Ġtrials":9867,"ogy":9868,"har":9869,"ĠTrust":9870,"Ġpreferred":9871,"irlfriend":9872,"ĠNev":9873,"Ġbin":9874,"Ġcow":9875,"Page":9876,"Ġsignature":9877,"ĠBL":9878,"700":9879,"Ġretired":9880,"Ġbytes":9881,"Ġneighb":9882,"ĠLegend":9883,"Ġdevast":9884,"Ġsuspected":9885,"isons":9886,"ĠPokémon":9887,"scale":9888,"Ġcapabilities":9889,"Ġrevel":9890,"Ġcheese":9891,"dy":9892,"igrant":9893,"Ġfailing":9894,"bits":9895,"ĠHeroes":9896,"ĠGhost":9897,"ĠScient":9898,"Ġappointed":9899,"uri":9900,"Ġinstitution":9901,"Ġexpanded":9902,"greg":9903,"Ġmonitoring":9904,"Ġpodcast":9905,"Ġcoalition":9906,"Ġ96":9907,"Jo":9908,"Ġstolen":9909,"ĠSab":9910,"Ġstops":9911,"Ġholiday":9912,"Ġintr":9913,"Car":9914,"Black":9915,"ĠLGBT":9916,"Ġwarming":9917,"ĠAnderson":9918,"Ġ89":9919,"Ġproducer":9920,"Med":9921,"Ġaccuracy":9922,"ĠMarvel":9923,"izabeth":9924,"ĠPatrick":9925,"mony":9926,"Ġmini":9927,"acles":9928,"Ġovert":9929,"they":9930,"Ġmembership":9931,"ĠVen":9932,"Ġexch":9933,"Ġremoval":9934,"ĠDave":9935,"TY":9936,"mad":9937,"ĠFind":9938,"Ġadequ":9939,"Ġec":9940,"Ġteeth":9941,"Ġemotion":9942,"Ġperm":9943,"Ġsolely":9944,"db":9945,"Ġextraord":9946,"IGHT":9947,"cal":9948,"Ġguidelines":9949,"Ġdying":9950,"Ġsuspended":9951,"ĠPremier":9952,"ĠAnthony":9953,"elve":9954,"Ġdad":9955,"ĠEth":9956,"ĠFootball":9957,"Ġabandoned":9958,"Ġ<<":9959,"Ġmarch":9960,"Ġhorror":9961,"â̦\"":9962,"Ġchildhood":9963,"Ġcampaigns":9964,"Ġlunch":9965,"ĠAlbert":9966,"block":9967,"âĸĪâĸĪ":9968,"ounding":9969,"Ġbone":9970,"organ":9971,"aders":9972,"ĠFlash":9973,"ĠDrive":9974,"Ġtonight":9975,"Ġwars":9976,"ĠFL":9977,"Ġformation":9978,"const":9979,"News":9980,"Ġcompe":9981,"orious":9982,"ĠStaff":9983,"Ġdiscussions":9984,"ĠProtection":9985,"ĠJam":9986,"Ġcriteria":9987,"Ġinstallation":9988,"Ġaccomplish":9989,"izza":9990,"Ġpublisher":9991,"Ġrescue":9992,"ĠTry":9993,"ULL":9994,"ĠSom":9995,"ĠHop":9996,"oret":9997,"ths":9998,"ordon":9999,"Ġpocket":10000,"ĠInv":10001,"Download":10002,"ĠCrime":10003,"Ġbene":10004,"ĠGuide":10005,"ĠAssembly":10006,"Ġparameters":10007,"IE":10008,"ĠAlexander":10009,"Ġconcert":10010,"ĠSche":10011,"Ġshoes":10012,"Ġvisiting":10013,"Ġrecall":10014,"Ġbub":10015,"Ġrural":10016,"Ġconcrete":10017,"ĠRos":10018,"Next":10019,"Russ":10020,"Ġloans":10021,"ĠShield":10022,"Ġtrem":10023,"hemat":10024,"kg":10025,"ĠHarris":10026,"isition":10027,"ĠMove":10028,"ĠFC":10029,"Ġfate":10030,"ĠCho":10031,"Ġtired":10032,"Ġprincipal":10033,"hist":10034,"iences":10035,"athy":10036,"Ġsevent":10037,"Ġmood":10038,"Ġstrategic":10039,"Ġdiseases":10040,"Ġforum":10041,"Ġtempor":10042,"Ġheadquarters":10043,"Par":10044,"ige":10045,"flix":10046,"Ġguitar":10047,"Ġ94":10048,"Only":10049,"Ġreleases":10050,"roph":10051,"================================":10052,"Ġ600":10053,"ĠContinue":10054,"igate":10055,"ĠCrit":10056,"system":10057,"Ġdisabled":10058,"Ġunexpected":10059,"ithub":10060,"Ġunclear":10061,"ĠEst":10062,"Ġcontrad":10063,"Ġstrategies":10064,"ventures":10065,"Ġpassage":10066,"AME":10067,"Ġimproving":10068,"Ġreveals":10069,"Ġdecrease":10070,"ova":10071,"Ġannoy":10072,"ĠShort":10073,"ĠLibrary":10074,"Ġcyber":10075,"nell":10076,"ĠHur":10077,"ĠCB":10078,"Ġphotograp":10079,"UI":10080,"Ġsed":10081,"Ge":10082,"Ġ87":10083,"Ġdiverse":10084,"Ġencouraged":10085,"Ġconspiracy":10086,"Ġbirds":10087,"Ġoperator":10088,"Ġhandful":10089,"Ġclassified":10090,"?)":10091,"Ġdramatic":10092,"Ġinvestigators":10093,"ito":10094,"Ġwidespread":10095,"ĠRoom":10096,"----------------------------------------------------------------":10097,"Ġcollective":10098,"Ġjournalist":10099,"String":10100,"Ġtemperatures":10101,"ila":10102,"Ġguid":10103,"Ġinspect":10104,"Ġmissile":10105,"ĠMayor":10106,"Ġmanual":10107,"Ġsimultane":10108,"Ġratings":10109,"Ġsuck":10110,"Ġ97":10111,"Ġuniversal":10112,"Ġpharm":10113,"Ġdisrupt":10114,"iano":10115,"AV":10116,"Ġft":10117,"Ġstatist":10118,"olds":10119,"ĠWalker":10120,"php":10121,"Ġundert":10122,"ĠLas":10123,"ishop":10124,"ntil":10125,"reshold":10126,"ĠWhether":10127,"Ms":10128,"Ġdeny":10129,"ĠCloud":10130,"Ġprovider":10131,"Ġsurviv":10132,"ĠUpdate":10133,"has":10134,"Ġmistakes":10135,"charge":10136,"pled":10137,"rity":10138,"Ġnode":10139,"ĠMassachusetts":10140,"ools":10141,"lication":10142,"Ġfails":10143,"emale":10144,"ori":10145,"backs":10146,"Ġshirt":10147,"Ġ''":10148,"ĠNAT":10149,"Ġwaters":10150,"elson":10151,"Ġease":10152,"Ġscar":10153,"Ġcontents":10154,"mind":10155,"Ġcontribution":10156,"Ġshr":10157,"Ġhanded":10158,"Ġstability":10159,"Ġtrave":10160,"Em":10161,"Ġmirror":10162,"123":10163,"Ġweigh":10164,"Ġfiction":10165,"ouver":10166,"istant":10167,"rition":10168,"ĠFed":10169,"Ġphysically":10170,"Ġstake":10171,"ĠArticle":10172,"ĠArc":10173,"ĠLewis":10174,"ĠMind":10175,"Ġdemonstrate":10176,"Ġprofits":10177,"vision":10178,"omic":10179,"olid":10180,"Ġbattles":10181,"Ġdrives":10182,"Ġeastern":10183,"ĠSony":10184,"!!!":10185,"aration":10186,"vard":10187,"ĠGL":10188,"portation":10189,"Ġ92":10190,"Ġlawmakers":10191,"Ġprotecting":10192,"ĠEPA":10193,"Ġyeah":10194,"Ġshame":10195,"olph":10196,"even":10197,"xit":10198,"Ġattach":10199,"Ġrepresenting":10200,"Ġobs":10201,"ĠUtah":10202,"iffs":10203,"ĠFreedom":10204,"ó":10205,"AK":10206,"Ġincidents":10207,"itage":10208,"Ġviewers":10209,"cd":10210,"Ġmouse":10211,"Ġclar":10212,"Ġaccordance":10213,"Ġbot":10214,"cor":10215,"ĠSummer":10216,"held":10217,"Ġinnocent":10218,"Ġinitiative":10219,"ols":10220,"________________________________":10221,"Ġspots":10222,"pace":10223,"Ġconventional":10224,"Ġcorporations":10225,"Ġblocked":10226,"HD":10227,"attered":10228,"Ġrefers":10229,"Ġbuck":10230,"ĠDigital":10231,"120":10232,"Ġtopics":10233,"TF":10234,"Äģ":10235,"brid":10236,"reement":10237,"Ġunderlying":10238,"ĠMember":10239,"Ġinvestigating":10240,"Ġpregnancy":10241,"Ġtouchdown":10242,"ĠBand":10243,"ĠCaller":10244,"Ġinstances":10245,"PP":10246,"wa":10247,"Good":10248,"Ġ1991":10249,"ĠCold":10250,"Ġfears":10251,"Ġremarks":10252,"ĨĴ":10253,"atal":10254,"Ġmit":10255,"Ġexperiments":10256,"ipt":10257,"Color":10258,"indu":10259,"Update":10260,"Ġ93":10261,"Ag":10262,"Ġå":10263,"ancouver":10264,"Both":10265,"Ġjudges":10266,"Object":10267,"Ġstere":10268,"umbn":10269,"Ġparticipation":10270,"ĠStars":10271,"ĠJere":10272,"Ġweekly":10273,"ĠBan":10274,"Ġconversations":10275,"ĠPitt":10276,"uz":10277,"ĠIndiana":10278,"ĠKick":10279,"Ġinfection":10280,"Ġheroes":10281,"Ġsettled":10282,"Ġstrip":10283,"Ġhal":10284,"Ġdump":10285,"ĠSci":10286,"Ġles":10287,"Ġreferences":10288,"ĠURL":10289,"ĠBridge":10290,"Ġwanting":10291,"Force":10292,"Ġexclus":10293,"Meanwhile":10294,"mn":10295,"Ġgentle":10296,"maker":10297,"senal":10298,"ĠGro":10299,"ouri":10300,"ĠRain":10301,"ĠAlliance":10302,"Ġlift":10303,"ela":10304,"SD":10305,"ĠCleveland":10306,"Ġranked":10307,"Ġstadium":10308,"Ġdeadly":10309,"ä¸":10310,"Ġriding":10311,"aria":10312,"ĠArmor":10313,"Ġdocumentation":10314,"ĠGreece":10315,"reek":10316,"Ġlens":10317,"ĠSa":10318,"Ġgross":10319,"ĠEmer":10320,"agers":10321,"ĠDub":10322,"ĠRh":10323,"ĠAMD":10324,"Ġarrival":10325,"Ġdesert":10326,"Ġsupplement":10327,"ĠResp":10328,"Ġknee":10329,"Ġmargin":10330,"font":10331,"ogg":10332,"2010":10333,"ĠPir":10334,"ĠProm":10335,"ivals":10336,"Ġintake":10337,"Ġdifferently":10338,"ugs":10339,"Ġbits":10340,"cluded":10341,"Ġsearching":10342,"ĠDu":10343,"umble":10344,"Ġfunctional":10345,"ĠBaltimore":10346,"ĠCould":10347,"Ġdesired":10348,"Ġcircuit":10349,"ĠLyn":10350,"ĠGO":10351,"ĠFalse":10352,"repre":10353,"':":10354,"alties":10355,"Ġminim":10356,"Ġdrove":10357,"ĠShould":10358,"Ġhip":10359,"Ġpros":10360,"Ġutility":10361,"ĠNature":10362,"ĠMode":10363,"President":10364,"opp":10365,"rat":10366,"formance":10367,"Ġconcentration":10368,"Ġfont":10369,"ĠBud":10370,"Ġamid":10371,"Ġrevers":10372,"ĠML":10373,"Bar":10374,"Ġinteraction":10375,"Ġjurisd":10376,"Ġspells":10377,"dep":10378,"fil":10379,"Ġcivilians":10380,"utter":10381,"ĠCooper":10382,"ĠBelow":10383,"Ġentrance":10384,"Ġconvert":10385,"Ġcontroversy":10386,"owered":10387,"Ġcontrary":10388,"Ġarc":10389,"ĠExecutive":10390,"ĠOfficer":10391,"Ġpackages":10392,"Ġprogressive":10393,"width":10394,"Ġreserved":10395,"vol":10396,"ĠSamsung":10397,"Ġprinted":10398,"Ġcenters":10399,"Ġintroduce":10400,"ĠKennedy":10401,"Ġodds":10402,"Ġsurely":10403,"Ġindependence":10404,"Ġpassengers":10405,"reprene":10406,"ĠBeh":10407,"Ġloves":10408,"ĠESPN":10409,"Ġfacilit":10410,"Ġidentical":10411,"Ġdoct":10412,"Ġpartnership":10413,"conf":10414,"ĠHide":10415,"Ġconfused":10416,"ĠCow":10417,"Men":10418,"Ġwrest":10419,"ĠIraqi":10420,"Ġholes":10421,"ĠStudies":10422,"Ġpregnant":10423,"hard":10424,"Ġsignals":10425,"IX":10426,"Ġpulling":10427,"Ġgraduate":10428,"Ġnominee":10429,"Date":10430,"Ġpermitted":10431,"ĠâĤ¬":10432,"ĠOklahoma":10433,"Start":10434,"Ġauthorized":10435,"Ġalarm":10436,"ĠCos":10437,"van":10438,"Ġgenerations":10439,"cular":10440,"Ġdragon":10441,"ĠSoftware":10442,"ĠEdward":10443,"Ġcontroller":10444,"Sen":10445,"gered":10446,"ĠVik":10447,"Ġapproached":10448,"Thank":10449,"Ġcance":10450,"Ġformula":10451,"ĠSmall":10452,"Ġweakness":10453,"Ġramp":10454,"itudes":10455,"jud":10456,"Ġbrilliant":10457,"Ġaccus":10458,"source":10459,"Ġ800":10460,"ĠEvil":10461,"Sw":10462,"Ġhomeless":10463,"week":10464,"iens":10465,"rics":10466,"ĠThird":10467,"TO":10468,"Ġorganic":10469,"Ġpresentation":10470,"agh":10471,"ĠDownload":10472,"vation":10473,"Ġassembly":10474,"orable":10475,"holders":10476,"ĠBernie":10477,"ĠHelp":10478,"Ġtong":10479,"ĠFight":10480,"Ġbeach":10481,"Book":10482,"ĠLic":10483,"Ġrush":10484,"ĠRound":10485,"oup":10486,"ĠMarx":10487,"Ġcalculated":10488,"ĠDevil":10489,"ĠSarah":10490,"Ġoccasionally":10491,"Ġbullet":10492,"Available":10493,"gate":10494,"Ġ91":10495,"Ġhosp":10496,"Ġpromises":10497,"ĠHIV":10498,"ĠStadium":10499,"ĠStock":10500,"ĠCorporation":10501,"gage":10502,"NG":10503,"ĠCredit":10504,"Ġsne":10505,"ibl":10506,"Ġaccum":10507,"such":10508,"Ġterrorists":10509,"Ġconsciousness":10510,"ĠZh":10511,"Ġdrama":10512,"oola":10513,"piration":10514,"Ġlabour":10515,"ĠNin":10516,"Ġutter":10517,"Ġdemocratic":10518,"Ġassass":10519,"ilation":10520,"Ġgest":10521,"Ġabroad":10522,"Ġmetab":10523,"Ġsorts":10524,"Ġflav":10525,"UB":10526,"Ġmg":10527,"ĠNothing":10528,"ĠOd":10529,"Ġmusical":10530,"2009":10531,"Ġdrops":10532,"ocated":10533,"ateral":10534,"000000":10535,"Ġgre":10536,"Ġequality":10537,"Ġburden":10538,"Ġvig":10539,"ĠLeader":10540,"------------":10541,"Ġceremony":10542,"Ġfighter":10543,"Ġactors":10544,"Ġæ":10545,"aman":10546,"Fi":10547,"Ġalign":10548,"puter":10549,"Ġelder":10550,"ĠNSA":10551,"Ġrepresentation":10552,"ĠOntario":10553,"ITH":10554,"usalem":10555,"Ġharassment":10556,"itzer":10557,"Ġsymp":10558,"Ġboxes":10559,"ĠDR":10560,"Ġmanifest":10561,"atre":10562,"Ġ^":10563,"Ġdies":10564,"leton":10565,"Ġmissions":10566,"ethe":10567,"Ġresolve":10568,"Ġfollowers":10569,"Ġasc":10570,"Ġkm":10571,"lord":10572,"ammed":10573,"Ġsilent":10574,"ĠAssociated":10575,"Ġtiming":10576,"Ġprisoners":10577,"ĠKings":10578,"ĠFive":10579,"Ġtower":10580,"Ġapproaches":10581,"Ġprecisely":10582,"Ġbureau":10583,"ĠMother":10584,"ĠIss":10585,"Ġkeyboard":10586,"itual":10587,"Ġfunded":10588,"Ġstaying":10589,"Ġpsychological":10590,"Ġmile":10591,"ĠLeon":10592,"ĠBarb":10593,"will":10594,"Ġwider":10595,"ĠAtlantic":10596,"Ġtill":10597,"ĠRome":10598,"rot":10599,"Ġaccompan":10600,"Ġflour":10601,"aco":10602,"World":10603,"ĠExpress":10604,"ĠYu":10605,"Cor":10606,"Ġpleased":10607,"party":10608,"Ġpointing":10609,"Ġinflation":10610,"Ġroy":10611,"Ġ),":10612,"ainer":10613,"Ġwedding":10614,"ormon":10615,"Ġrequiring":10616,"Ġqualified":10617,"Ġsegment":10618,"END":10619,"Ġsizes":10620,"eals":10621,"Ġcorrupt":10622,"assador":10623,"Ġceleb":10624,"Ġdreams":10625,"ĠMess":10626,"Ġchecking":10627,"ĠVersion":10628,"Ġpreparing":10629,"Ġactively":10630,"ĠDiff":10631,"Ġlux":10632,"ĠWinter":10633,"acteria":10634,"ĠNE":10635,"Ġdeputy":10636,"Ġtransgender":10637,"Ġsummary":10638,"Ġinher":10639,"eries":10640,"char":10641,"ĠYan":10642,"Ġknock":10643,"ĠPath":10644,"Ġlip":10645,"roller":10646,"Ġimpression":10647,"Ġcelebrate":10648,"Ġslide":10649,"Ġguests":10650,"Ġclip":10651,"FS":10652,"Ġsavings":10653,"Ġcaptain":10654,"Ġlegacy":10655,"ĠDenver":10656,"Ġwounded":10657,"taboola":10658,"ACT":10659,"Ġpursue":10660,"Ġoxy":10661,"Ġq":10662,"Ġsemi":10663,"ĠNeed":10664,"ĠAffairs":10665,"Ġobsc":10666,"Ġchecked":10667,"Ġdual":10668,"Code":10669,"ĠMD":10670,"lem":10671,"ulty":10672,"Ġ©":10673,"ĠElizabeth":10674,"Ġcenturies":10675,"arded":10676,"src":10677,"Ġevident":10678,"ennis":10679,"atin":10680,"Ġunemployment":10681,"ĠMario":10682,"Ġintim":10683,"Christ":10684,"Ġbiological":10685,"Ġsoldier":10686,"ĠAdded":10687,"Ġmath":10688,"ĠGil":10689,"Ġbias":10690,"Ġdating":10691,"ĠOcean":10692,"Ġmice":10693,"Mus":10694,"hire":10695,"ĠTes":10696,"Server":10697,"limited":10698,"Size":10699,"Ġmeters":10700,"Ġrocket":10701,"essee":10702,"Ġcertificate":10703,"ĠIranian":10704,"ASS":10705,"Ġgrid":10706,"Dec":10707,"Ġrolling":10708,"commun":10709,"ĠSweden":10710,"bury":10711,"Ġtissue":10712,"Ġracism":10713,"ĠLocal":10714,"Ġmystery":10715,"Ġexamine":10716,"Ġstem":10717,"Ġsits":10718,"Ġhoped":10719,"oting":10720,"Ġdialogue":10721,"Ġpersu":10722,"Watch":10723,"lay":10724,"MAN":10725,"Ġchronic":10726,"ĠPortland":10727,"market":10728,"ĠSEC":10729,"Ġparallel":10730,"Ġscandal":10731,"Ġcarries":10732,"Ġphenomenon":10733,"human":10734,"acker":10735,"ĠOx":10736,"Ġretirement":10737,"tainment":10738,"ovie":10739,"ĠGear":10740,"Ġduties":10741,"Ġdose":10742,"Ġscroll":10743,"MB":10744,"inf":10745,"Ġsauce":10746,"Ġlandscape":10747,"reddit":10748,"ĠChampionship":10749,"ĠReddit":10750,"alid":10751,"Ġcoin":10752,"Ġovers":10753,"Ġposting":10754,"about":10755,"Ġfel":10756,"andy":10757,"Ġbold":10758,"Ġfocusing":10759,"effect":10760,"GR":10761,"Ġdeemed":10762,"Ġrecommendations":10763,"Ġstepped":10764,"Ġvoter":10765,"ĠDeep":10766,"ĠInstagram":10767,"Ġmoderate":10768,"ĠMaryland":10769,"Ġrestricted":10770,"ĠMB":10771,"ĠChall":10772,"Ġtob":10773,"Ġcir":10774,"ĠOcc":10775,"ĠEver":10776,"Ġcollaps":10777,"INFO":10778,"=-":10779,"ĠPict":10780,"ĠAccount":10781,"nc":10782,"Ġought":10783,"Ġexport":10784,"Ġdrunk":10785,"('":10786,"Ġwise":10787,"ĠMort":10788,"necess":10789,"Ġancest":10790,"ĠIncre":10791,"Ġfrequent":10792,"mir":10793,"Ġinterpretation":10794,"Ġdependent":10795,"Ġcoins":10796,"ĠBol":10797,"Video":10798,"ĠJustin":10799,"Ġfatal":10800,"Ġcooking":10801,"Ġconfusion":10802,"ipher":10803,"Ġcustody":10804,"ĠMorgan":10805,"omach":10806,"ĠGovernor":10807,"Ġrestaurants":10808,"eling":10809,"Ġacknowledged":10810,"Ġther":10811,"Ġgenes":10812,"ching":10813,"Hey":10814,"Ġtactics":10815,"ĠMexican":10816,"Ġvend":10817,"Ġhes":10818,"quer":10819,"Ġnoting":10820,"ĠCameron":10821,"Ġtargeting":10822,"rock":10823,"Ġcredits":10824,"Ġemotions":10825,"Ġrepresentatives":10826,"news":10827,"Ġlegislative":10828,"Ġremoving":10829,"Ġtweeted":10830,"ĠCarter":10831,"ĠFixed":10832,"Ġforcing":10833,"Ġspeaker":10834,"Ġmales":10835,"ĠVietnam":10836,"lined":10837,"Ġconcepts":10838,"Ġvoices":10839,"oir":10840,"ĠTrib":10841,"Whe":10842,"ĠJerusalem":10843,"ĠSant":10844,"Ġcul":10845,"Ġlady":10846,"ĠHawai":10847,"Ġarts":10848,"ĠInn":10849,"ĠMachine":10850,"ĠEmperor":10851,"Ġslot":10852,"gly":10853,"ĠProcess":10854,"III":10855,"Ġathletes":10856,"ĠTemple":10857,"ĠRepresent":10858,"Ġpresc":10859,"Ġtons":10860,"Ġgolden":10861,"Ġpunch":10862,"ĠGR":10863,"iverpool":10864,"Ġenact":10865,"Ġlobby":10866,"Ġmos":10867,"Ġpicking":10868,"Ġlifetime":10869,"Ġcognitive":10870,"Each":10871,"zo":10872,"Ġdub":10873,"Ġconsists":10874,"oln":10875,"Ġfestival":10876,"amous":10877,"Ġintellig":10878,"words":10879,"ĠSmart":10880,"Ġdele":10881,"Ġlapt":10882,"Ġmagical":10883,"ĠSin":10884,"bus":10885,"urities":10886,"ighth":10887,"ĠRuby":10888,"ĠSure":10889,"olving":10890,"Ġjun":10891,"OST":10892,"Ġimposed":10893,"Ġastron":10894,"Ġcorrel":10895,"ĠNS":10896,"ĠKit":10897,"ĠFuture":10898,"burn":10899,"Ġimmune":10900,"ocus":10901,"Ġcourses":10902,"ĠString":10903,"Ġlean":10904,"Ġghost":10905,"Ġoutcomes":10906,"Ġexpense":10907,"Ġeveryday":10908,"Ġacceptable":10909,"Ah":10910,"Ġequipped":10911,"Ġorange":10912,"FR":10913,"ĠDutch":10914,"Though":10915,"ĠRank":10916,"QU":10917,"ĠRoberts":10918,"what":10919,"rend":10920,"Ġdisappear":10921,"Ġspawn":10922,"ĠLam":10923,"ois":10924,"Ġdeserve":10925,"Ġminimal":10926,"Ġnervous":10927,"ĠWould":10928,"Ġrook":10929,"ĠVancouver":10930,"Ġresign":10931,"shire":10932,"ĠWorks":10933,"ĠBuild":10934,"Ġaffordable":10935,"ĠGary":10936,"ĠArena":10937,"Ġhanging":10938,"Ġimplications":10939,"ĠSong":10940,"Ġmaintaining":10941,"Ġguards":10942,"CON":10943,"Ġderived":10944,"Ġexecuted":10945,"Ġtheories":10946,"Ġquoted":10947,"ĠAndre":10948,"oga":10949,"seless":10950,"info":10951,"ĠBelg":10952,"Ġtears":10953,"ĠSurv":10954,"Ġbirthday":10955,"igious":10956,"immer":10957,"Ġspectrum":10958,"Ġarchitecture":10959,"Ġrecruit":10960,"arma":10961,"Table":10962,"Ġmonsters":10963,"ĠGov":10964,"Ġdestination":10965,"Ġattractive":10966,"Ġfoss":10967,"ĠMoreover":10968,"Ġpresents":10969,"THE":10970,"Ġreply":10971,"pton":10972,"Ġcum":10973,"Ġdelight":10974,"Ġaffects":10975,"Ġdonations":10976,"ĠToy":10977,"ĠHim":10978,"MENT":10979,"Ġovercome":10980,"itched":10981,"ĠFantasy":10982,"ĠHat":10983,"ĠBeast":10984,"bott":10985,"Ġinvestigations":10986,"Run":10987,"Ġhunting":10988,"di":10989,"fund":10990,"Ġsessions":10991,"estyle":10992,"Ġportray":10993,"oids":10994,"Yeah":10995,"Ġcommunicate":10996,"Ġcomedy":10997,"ĠYang":10998,"Ġbelt":10999,"ĠMarine":11000,"Ġpredicted":11001,"Play":11002,"Ġimportantly":11003,"Ġremarkable":11004,"Ġeliminate":11005,"David":11006,"Ġbind":11007,"VID":11008,"Ġadvocates":11009,"ĠGaza":11010,"imp":11011,"DB":11012,"ĠNa":11013,"ĠSimilar":11014,"IES":11015,"Ġcharity":11016,"vas":11017,"math":11018,"Ġâĸ":11019,"oker":11020,"ndum":11021,"Ġcaps":11022,"ĠHal":11023,"2000":11024,"ean":11025,"Ġfleet":11026,"Ġrecre":11027,"Right":11028,"Ġsleeping":11029,"ijing":11030,"kind":11031,"Ġdesignated":11032,"ä":11033,"Ġanimation":11034,"kee":11035,"ĠIntrodu":11036,"Ġ/>":11037,"Ġdelayed":11038,"Ġtremend":11039,"Ġcurious":11040,"Use":11041,"Ġlect":11042,"dam":11043,"Ġinnovation":11044,"ĠPoints":11045,"Ġloading":11046,"Ġdispute":11047,"ctic":11048,"irds":11049,"ĠBY":11050,"Ġnurs":11051,"ĠValue":11052,"IONS":11053,"ĠHum":11054,"Ġtemplate":11055,"mers":11056,"Ġappearances":11057,"ĠEntertainment":11058,"Ġtranslation":11059,"Ġsake":11060,"Ġbeneath":11061,"Ġinhib":11062,"Ġeuro":11063,"abetes":11064,"Ġstudying":11065,"ĠMas":11066,"Ġperceived":11067,"Ġexamined":11068,"Ġeager":11069,"Ġcoaches":11070,"Ġimper":11071,"chi":11072,"Ġproduces":11073,"\").":11074,"ĠEveryone":11075,"Ġmunicip":11076,"Ġgirlfriend":11077,"Ġhire":11078,"ĠVice":11079,"Ġsuitable":11080,"opy":11081,"Ġinequ":11082,"ĠDuke":11083,"fish":11084,"first":11085,"ĠObs":11086,"Ġinterior":11087,"ĠBruce":11088,"ĠRy":11089,"Ġanalys":11090,"Ġconsiderable":11091,"Ġforecast":11092,"Ġfert":11093,"orship":11094,"ĠDrug":11095,"ĠALL":11096,":\"":11097,"thur":11098,"ĠMail":11099,"Ġballot":11100,"Ġinstantly":11101,"ĠChannel":11102,"Ġpicks":11103,"Ġ1989":11104,"Ġtent":11105,"oli":11106,"Ġcivilian":11107,"bling":11108,"ello":11109,"bu":11110,"Ġinch":11111,"Ġlogo":11112,"Ġcooperation":11113,"Ġwalks":11114,"Ġinvestments":11115,"Ġimprison":11116,"ĠFestival":11117,"ĠKy":11118,"Ġlegally":11119,"Ġgri":11120,"charg":11121,"Sl":11122,"Ġthreatening":11123,"duction":11124,"flow":11125,"Ġdismissed":11126,"ibraries":11127,"cap":11128,"ele":11129,"ĠMcG":11130,"ĠHarvard":11131,"ĠConservative":11132,"ĠCBS":11133,"png":11134,"Ġroots":11135,"ĠHaving":11136,"umbled":11137,"ĠFun":11138,"\\/":11139,"ĠSearch":11140,"plex":11141,"Ġdiscussing":11142,"Ġcontinu":11143,"ĠTai":11144,"ĠWik":11145,"Free":11146,"fit":11147,"Ġrefuse":11148,"Ġmanaging":11149,"Ġsynd":11150,"ipedia":11151,"walk":11152,"Ġprofessionals":11153,"Ġguidance":11154,"Ġuniversities":11155,"Ġassemb":11156,"untu":11157,"Finally":11158,"ASE":11159,"ĠAuto":11160,"ĠHad":11161,"Ġanniversary":11162,"LD":11163,"ĠDur":11164,"ĠUltimate":11165,"ihad":11166,"product":11167,"Ġtransit":11168,"Ġrestore":11169,"Ġexplaining":11170,"Ġasset":11171,"Ġtransferred":11172,"Ġburst":11173,"apolis":11174,"ĠMagazine":11175,"ĠCra":11176,"ĠBR":11177,"gged":11178,"ĠHE":11179,"Mich":11180,"bet":11181,"ĠLady":11182,"ylum":11183,"erves":11184,"Ġmeets":11185,"white":11186,"Log":11187,"Ġcorresponding":11188,"Ġinsisted":11189,"GG":11190,"Ġsurrounded":11191,"Ġtens":11192,"Ġlane":11193,"Ġcoinc":11194,"home":11195,"Ġexisted":11196,"ected":11197,"ĠDouble":11198,"lamm":11199,"Ġskept":11200,"exp":11201,"Ġperception":11202,"iev":11203,"ĠBeing":11204,"oft":11205,"Ġadopt":11206,".:":11207,"];":11208,"Windows":11209,"Ġsatellite":11210,"ASH":11211,"Ġinfant":11212,"description":11213,"ĠMeanwhile":11214,"cm":11215,"oca":11216,"ĠTreat":11217,"actor":11218,"Ġtobacco":11219,"ĠNorm":11220,"emption":11221,"Ġflesh":11222,"Ġje":11223,"oop":11224,"ĠHeaven":11225,"Ġbeating":11226,"anim":11227,"Ġgathering":11228,"Ġcultiv":11229,"GO":11230,"abe":11231,"ĠJonathan":11232,"ĠSafety":11233,"Ġbadly":11234,"prot":11235,"Ġchoosing":11236,"Ġcontacted":11237,"Ġquit":11238,"Ġdistur":11239,"Ġstir":11240,"Ġtoken":11241,"Det":11242,"ĠPa":11243,"Ġfunctionality":11244,"003":11245,"some":11246,"Ġlimitations":11247,"Ġmeth":11248,"build":11249,"config":11250,"NT":11251,"rell":11252,"blem":11253,"ĠMom":11254,"Ġveterans":11255,"ĠHu":11256,"Ġtrends":11257,"arer":11258,"ĠGiven":11259,"ĠCaption":11260,"may":11261,"AST":11262,"Ġwondering":11263,"ĠClark":11264,"normal":11265,"Ġseparated":11266,"Ġdesp":11267,"stic":11268,"brew":11269,"Ġrelating":11270,"ĠNik":11271,"ĠFarm":11272,"Ġenthusi":11273,"good":11274,"deb":11275,"Ġactivist":11276,"Ġmart":11277,"Ġexplosion":11278,"ĠEconomic":11279,"Link":11280,"Ġinsight":11281,"Ġconvenient":11282,"Ġcounterpart":11283,"support":11284,"ĠVirt":11285,"agen":11286,"ĠTennessee":11287,"ĠSimon":11288,"ĠAward":11289,"OCK":11290,"ĠFigure":11291,"Ġoverseas":11292,"Ġpride":11293,"ĠCas":11294,"note":11295,"mg":11296,"Current":11297,"Ġdisplays":11298,"content":11299,"Ġtraveling":11300,"Ġhospitals":11301,"ĠFinancial":11302,"ĠPast":11303,"Ġdefendant":11304,"Ġstreaming":11305,"mble":11306,"ĠBerlin":11307,"uki":11308,"Ġdistribut":11309,"Ġantib":11310,"Ġchocolate":11311,"ĠCastle":11312,"Ġinterrupt":11313,"ĠRow":11314,"Ġconversion":11315,"Ġbugs":11316,"ĠRather":11317,"liest":11318,"LY":11319,"ĠJean":11320,"common":11321,"akh":11322,"Ġ130":11323,"otton":11324,"ĠDean":11325,"Ġamendment":11326,"Ġgameplay":11327,"ĠWarren":11328,"oda":11329,"Ġhighlights":11330,"Ġirre":11331,"ĠNATO":11332,"Ġballs":11333,"Ġdemanding":11334,"URE":11335,"ĠLuke":11336,"Figure":11337,"stop":11338,"onia":11339,"zone":11340,"izers":11341,"ĠWR":11342,"Ġawarded":11343,"Ġregulatory":11344,"ĠHart":11345,"ĠSN":11346,"pling":11347,"Ġsour":11348,"ĠPixel":11349,"usive":11350,"Ġfet":11351,"ĠSent":11352,"Ġautomatic":11353,"Ġfer":11354,"vernment":11355,"ĠKhan":11356,"TON":11357,"father":11358,"Ġextraordinary":11359,"throp":11360,"ĠPython":11361,"ĠGPU":11362,"Ġsexually":11363,"Ġdesktop":11364,"itivity":11365,"ĠAntonio":11366,"Ġorient":11367,"Ġears":11368,"obby":11369,"ouses":11370,"vertisements":11371,"Ġmanufacturers":11372,"icient":11373,"minute":11374,"Ġconviction":11375,"Ġgarden":11376,"public":11377,"Ġsatisfied":11378,"fold":11379,"OK":11380,"Ġinhab":11381,"ĠThink":11382,"Ġprogramme":11383,"Ġstomach":11384,"Ġcoordin":11385,"Ġholy":11386,"Ġthreshold":11387,"Ġrhet":11388,"Ġserial":11389,"Ġemployers":11390,"ĠEverything":11391,"rah":11392,"Ġbother":11393,"Ġbrands":11394,"Value":11395,"ĠTed":11396,"ĠPlanet":11397,"Ġpink":11398,"ĠFurthermore":11399,"sa":11400,"PE":11401,"reck":11402,"ĠUSD":11403,"otte":11404,"Ġ&&":11405,"Ġlanded":11406,"gets":11407,"Ġproducers":11408,"Ġhealthcare":11409,"Ġdominant":11410,"Ġdestro":11411,"Ġamended":11412,"chron":11413,"Ġfits":11414,"ĠSyd":11415,"ĠAuthority":11416,"ATCH":11417,"Ġfights":11418,"ĠLLC":11419,"Ġ---":11420,"ĠCorp":11421,"Ġtoxic":11422,"specific":11423,"ĠCorn":11424,"ĠChel":11425,"Ġtelephone":11426,"ĠPant":11427,"Ġmysterious":11428,"aunch":11429,"odox":11430,"media":11431,"Ġwitnesses":11432,"agu":11433,"Ġquestioned":11434,"ĠBrexit":11435,"ĠRemember":11436,"enez":11437,"Ġendorse":11438,"iatric":11439,"ĠIdent":11440,"Ġridiculous":11441,"110":11442,"Ġprayer":11443,"Ġscientist":11444,"Ġ1950":11445,"ĠAqu":11446,"Ġunderground":11447,"ĠUFC":11448,"mare":11449,"ĠLater":11450,"wich":11451,"Ġsubscrib":11452,"Ġhosts":11453,"Ġerr":11454,"Ġgrants":11455,"antom":11456,"Ġsummon":11457,"early":11458,"ĠClear":11459,"ĠPrim":11460,"Ġsuspension":11461,"Ġguaranteed":11462,"apper":11463,"Ġrice":11464,"ĠSean":11465,"ĠShin":11466,"Ġreferendum":11467,"Ġfled":11468,"rust":11469,"Ġ360":11470,"tery":11471,"Ġshocked":11472,"BR":11473,"ĠOil":11474,"ĠAllah":11475,"Ġpartly":11476,"Ġignor":11477,"Ġtransmission":11478,"Ġhomosexual":11479,"iversal":11480,"Ġhopefully":11481,"ãĤ¤":11482,"Ġlesson":11483,"Leg":11484,"Ġ..":11485,"Yet":11486,"table":11487,"appropri":11488,"rett":11489,"Ġboards":11490,"Ġincorrect":11491,"Ġbacteria":11492,"aru":11493,"amac":11494,"Ġsnap":11495,".'\"":11496,"Ġparad":11497,"tem":11498,"heart":11499,"Ġavailability":11500,"Ġwisdom":11501,"Ġ(+":11502,"Ġpriest":11503,"ĠÂłĠÂł":11504,"Open":11505,"Ġspan":11506,"Ġparameter":11507,"Ġconvince":11508,"Ġ(%)":11509,"rac":11510,"Ġfo":11511,"Ġsafely":11512,"Ġconverted":11513,"ĠOlympic":11514,"Ġreserve":11515,"Ġhealing":11516,"ĠMine":11517,"Max":11518,"Ġinherent":11519,"ĠGraham":11520,"Ġintegrated":11521,"Dem":11522,"Ġpipeline":11523,"Ġapplying":11524,"Ġembed":11525,"ĠCharlie":11526,"Ġcave":11527,"2008":11528,"Ġconsensus":11529,"Ġrewards":11530,"Pal":11531,"ĠHTML":11532,"Ġpopularity":11533,"looking":11534,"ĠSword":11535,"ĠArts":11536,"')":11537,"Ġelectron":11538,"clusions":11539,"Ġintegrity":11540,"Ġexclusively":11541,"Ġgrace":11542,"Ġtorture":11543,"Ġburned":11544,"two":11545,"Ġ180":11546,"Produ":11547,"Ġentreprene":11548,"raphics":11549,"Ġgym":11550,"ricane":11551,"ĠTam":11552,"Ġadministrative":11553,"Ġmanufacturer":11554,"Ġvel":11555,"ĠNi":11556,"Ġisolated":11557,"ĠMedicine":11558,"Ġbackup":11559,"Ġpromoting":11560,"Ġcommander":11561,"Ġflee":11562,"ĠRussell":11563,"Ġforgotten":11564,"ĠMissouri":11565,"Ġresidence":11566,"mons":11567,"Ġresemb":11568,"Ġwand":11569,"Ġmeaningful":11570,"PT":11571,"Ġbol":11572,"Ġhelic":11573,"Ġwealthy":11574,"Ġrifle":11575,"strong":11576,"rowing":11577,"plan":11578,"asury":11579,"â̦.":11580,"Ġexpanding":11581,"ĠHamilton":11582,"Ġreceives":11583,"SI":11584,"eatures":11585,"ĠAnim":11586,"REE":11587,"Put":11588,"Ġbriefly":11589,"rive":11590,"Ġstimul":11591,"Ġ``(":11592,"Ġ__":11593,"Ġchip":11594,"Ġhaz":11595,"Ġprize":11596,"ĠThings":11597,"ACE":11598,"ulin":11599,"dict":11600,"oku":11601,"Ġassociate":11602,"ockets":11603,"youtube":11604,"Story":11605,"ategory":11606,"Ġmild":11607,"ailing":11608,"ĠYe":11609,"Orig":11610,"ĠKa":11611,"orig":11612,"Ġpropaganda":11613,"Ġanonymous":11614,"Ġstruggled":11615,"Ġoutrage":11616,"ATED":11617,"ĠBeijing":11618,"rary":11619,"Ġleather":11620,"Ġworlds":11621,"Ġbroader":11622,"125":11623,"idal":11624,"ĠBetter":11625,"Ġtear":11626,"Ext":11627,"Ġproposals":11628,"Ġiter":11629,"ĠSquad":11630,"Ġvolunt":11631,"mi":11632,"Did":11633,"ĠPu":11634,"pin":11635,"Ġspeakers":11636,"Ġborders":11637,"Ġfigured":11638,"='":11639,"Ġsimultaneously":11640,"aeda":11641,"Ġcharging":11642,"Ġurged":11643,"Ġconj":11644,"256":11645,"ĠGordon":11646,"merce":11647,"Ġdocumentary":11648,"Share":11649,"itol":11650,"ONE":11651,"ĠGarden":11652,"hatt":11653,"ĠThompson":11654,"aneous":11655,"apore":11656,"Ġtanks":11657,"Ġlessons":11658,"track":11659,"Ġoutstanding":11660,"Ġvolunteers":11661,"Ġspray":11662,"Ġmanagers":11663,"large":11664,"Ġcamps":11665,"Ġartificial":11666,"ĠRu":11667,"Ġbags":11668,"thal":11669,"Ġcompatible":11670,"ĠBlade":11671,"Ġfed":11672,"Ġargues":11673,"FI":11674,"Ġunfair":11675,"Ġcorn":11676,"Ġoffset":11677,"Ġdirections":11678,"Ġdisappointed":11679,"ĠConvention":11680,"Ġviewing":11681,"ME":11682,"ocity":11683,"Ġtowns":11684,"Ġlayers":11685,"Ġrolled":11686,"Ġjumped":11687,"Ġattribute":11688,"Ġunnecess":11689,"incoln":11690,"Ġsuppose":11691,"ĠNether":11692,"cha":11693,"Ġburied":11694,"Ġsixth":11695,"Ben":11696,"ressing":11697,"OUR":11698,"Ġwound":11699,"Ġcycl":11700,"Ġmechanisms":11701,"Ġcongressional":11702,"ĠElement":11703,"Ġagreements":11704,"Ġdecor":11705,"Ġclosest":11706,"ĠMit":11707,"Google":11708,"}}":11709,"Ġmixture":11710,"Ġfluid":11711,"Sign":11712,"ĠScholar":11713,"Ġpist":11714,"asket":11715,"abling":11716,"Ġracing":11717,"hero":11718,"riel":11719,"assy":11720,"Ġcheaper":11721,"ben":11722,"Ġvertical":11723,"amacare":11724,"ĠReading":11725,"gments":11726,"Ġhelicop":11727,"Ġsacrifice":11728,"aya":11729,"paren":11730,"VA":11731,"ĠLes":11732,"ĠStudio":11733,"Ġviolations":11734,"ĠAnna":11735,"acer":11736,"é¾":11737,"ĠRat":11738,"ĠBeck":11739,"ĠDick":11740,"ĠACT":11741,"Ġcomposition":11742,"Ġtexture":11743,"ĠOwn":11744,"Ġsmartphone":11745,"ĠNA":11746,"Ġforb":11747,"import":11748,"Ġdefending":11749,"ilst":11750,"rer":11751,"Ġoh":11752,"ĠJeremy":11753,"Ġbanking":11754,"ceptions":11755,"Ġrespective":11756,"/.":11757,"Ġdrinks":11758,"ĠWi":11759,"Ġbands":11760,"ĠLiverpool":11761,"Ġgrip":11762,"ĠBuy":11763,"Ġopenly":11764,"Ġreviewed":11765,"pert":11766,"Ġverify":11767,"ĠCole":11768,"ĠWales":11769,"MO":11770,"Ġunpre":11771,"Ġshelter":11772,"ĠImperial":11773,"Ġgui":11774,"ĠDak":11775,"Ġsuggestions":11776,"Ġexplicitly":11777,"Ġslave":11778,"Ġblockchain":11779,"Ġcompeting":11780,"Ġpromising":11781,"SON":11782,"Ġsoccer":11783,"Ġconstitution":11784,"429":11785,"Ġdistract":11786,"ĠUser":11787,"esides":11788,"ĠMethod":11789,"ĠTokyo":11790,"Ġaccompanied":11791,"Client":11792,"sur":11793,"alog":11794,"Ġidentification":11795,"Ġinvasion":11796,"asma":11797,"Ġindustries":11798,"ppers":11799,"Ġsubtle":11800,"ĠUnit":11801,"natural":11802,"Ġsurvived":11803,"Ġflaw":11804,"ĺħ":11805,"ĠHoll":11806,"Ġdeficit":11807,"Ġtutorial":11808,"ĠChance":11809,"Ġarguing":11810,"Ġcontemporary":11811,"Ġintegration":11812,"forward":11813,"Ġtum":11814,"itis":11815,"Ġhiding":11816,"ĠDomin":11817,"ĠTan":11818,"ĠBuilding":11819,"ĠVin":11820,"Ġspokesperson":11821,"ĠNotes":11822,"Ġemerging":11823,"Ġpreparation":11824,"Ġprost":11825,"Ġsuspects":11826,"Ġautonom":11827,"Description":11828,"Ġdealt":11829,"ĠPear":11830,"Ġsteady":11831,"Ġdecreased":11832,"Ġsovere":11833,"ĠClin":11834,"Ġgradually":11835,"orses":11836,"ĠWAR":11837,"Serv":11838,"ãĤ¢":11839,"hr":11840,"Ġdirty":11841,"ĠBarn":11842,"ĠBC":11843,"Ġdil":11844,"Ġcalendar":11845,"Ġcompliance":11846,"Ġchamber":11847,"bb":11848,"Ġpassenger":11849,"ateful":11850,"ĠTitle":11851,"ĠSydney":11852,"ĠGot":11853,"Ġdarkness":11854,"Ġdefect":11855,"Ġpacked":11856,"assion":11857,"Ġgods":11858,"Ġharsh":11859,"ICK":11860,"leans":11861,"Ġalgorithm":11862,"Ġoxygen":11863,"Ġvisits":11864,"Ġblade":11865,"Ġkilomet":11866,"ĠKentucky":11867,"Ġkiller":11868,"Pack":11869,"enny":11870,"Ġdivine":11871,"Ġnomination":11872,"being":11873,"Ġengines":11874,"Ġcats":11875,"Ġbuffer":11876,"ĠPhill":11877,"Ġtraff":11878,"AGE":11879,"Ġtongue":11880,"Ġradiation":11881,"erer":11882,"mem":11883,"ĠExplicit":11884,"é¾į":11885,"Ġcouples":11886,"Ġphysics":11887,"ĠMcK":11888,"Ġpolitically":11889,"awks":11890,"ĠBloom":11891,"Ġworship":11892,"eger":11893,"uter":11894,"ĠFO":11895,"Ġmathemat":11896,"Ġsentenced":11897,"Ġdisk":11898,"ĠMarg":11899,"Ġ/*":11900,"PI":11901,"Ġoptional":11902,"Ġbabies":11903,"Ġseeds":11904,"ĠScottish":11905,"Ġthy":11906,"]]":11907,"ĠHitler":11908,"PH":11909,"ngth":11910,"Ġrecovered":11911,"inge":11912,"Ġpowder":11913,"Ġlips":11914,"Ġdesigner":11915,"Ġdisorders":11916,"Ġcourage":11917,"Ġchaos":11918,"\"},{\"":11919,"Ġcarrier":11920,"bably":11921,"High":11922,"ĠRT":11923,"esity":11924,"len":11925,"Ġroutes":11926,"uating":11927,"Fil":11928,"NOT":11929,"wall":11930,"sburgh":11931,"Ġengaging":11932,"ĠJavaScript":11933,"orer":11934,"lihood":11935,"Ġunions":11936,"ĠFederation":11937,"ĠTesla":11938,"Ġcompletion":11939,"ĠTa":11940,"Ġprivilege":11941,"ĠOrange":11942,"Ġneur":11943,"parency":11944,"Ġbones":11945,"Ġtitled":11946,"Ġprosecutors":11947,"ĠME":11948,"Ġengineer":11949,"ĠUniverse":11950,"ĠHig":11951,"nie":11952,"oard":11953,"Ġhearts":11954,"ĠGre":11955,"ussion":11956,"Ġministry":11957,"Ġpenet":11958,"ĠNut":11959,"ĠOw":11960,"ĠXP":11961,"instein":11962,"Ġbulk":11963,"System":11964,"icism":11965,"ĠMarketable":11966,"Ġpreval":11967,"Ġposter":11968,"Ġattending":11969,"urable":11970,"Ġlicensed":11971,"ĠGh":11972,"etry":11973,"ĠTradable":11974,"Ġblast":11975,"à¤":11976,"ĠTitan":11977,"elled":11978,"die":11979,"Have":11980,"ĠFlame":11981,"Ġprofound":11982,"Ġparticipating":11983,"Ġanime":11984,"ĠEss":11985,"Ġspecify":11986,"Ġregarded":11987,"ĠSpell":11988,"Ġsons":11989,"owned":11990,"Ġmerc":11991,"Ġexperimental":11992,"lando":11993,"hs":11994,"ĠDungeon":11995,"inos":11996,"Ġcomply":11997,"ĠSystems":11998,"arth":11999,"Ġseized":12000,"local":12001,"ĠGirls":12002,"udo":12003,"oned":12004,"ĠFle":12005,"Ġconstructed":12006,"Ġhosted":12007,"Ġscared":12008,"actic":12009,"ĠIslands":12010,"ĠMORE":12011,"Ġbless":12012,"Ġblocking":12013,"Ġchips":12014,"Ġevac":12015,"Ps":12016,"Ġcorporation":12017,"Ġox":12018,"Ġlighting":12019,"Ġneighbors":12020,"ĠUb":12021,"aro":12022,"Ġbeef":12023,"ĠUber":12024,"Facebook":12025,"armed":12026,"itate":12027,"ĠRating":12028,"ĠQuick":12029,"Ġoccupied":12030,"Ġaims":12031,"ĠAdditionally":12032,"ĠInterest":12033,"Ġdramatically":12034,"Ġheal":12035,"Ġpainting":12036,"Ġengineers":12037,"MM":12038,"ĠMust":12039,"Ġquantity":12040,"Paul":12041,"Ġearnings":12042,"ĠPosts":12043,"stra":12044,"ãĥ¼ãĥ":12045,"Ġstance":12046,"Ġdropping":12047,"script":12048,"Ġdressed":12049,"Make":12050,"Ġjustify":12051,"ĠLtd":12052,"Ġprompted":12053,"Ġscrut":12054,"Ġspeeds":12055,"ĠGiants":12056,"omer":12057,"ĠEditor":12058,"Ġdescribing":12059,"ĠLie":12060,"mented":12061,"Ġnowhere":12062,"ocaly":12063,"Ġinstruction":12064,"fortable":12065,"Ġentities":12066,"Ġcm":12067,"ĠNatural":12068,"Ġinquiry":12069,"Ġpressed":12070,"izont":12071,"forced":12072,"Ġraises":12073,"ĠNetflix":12074,"ĠSide":12075,"Ġouter":12076,"Ġamongst":12077,"ims":12078,"owski":12079,"Ġclimb":12080,"never":12081,"Ġcombine":12082,"ding":12083,"Ġcompr":12084,"Ġsignificance":12085,"Ġremembered":12086,"ĠNevada":12087,"ĠTel":12088,"ĠScar":12089,"ĠWarriors":12090,"ĠJane":12091,"Ġcoup":12092,"bas":12093,"Ġterminal":12094,",-":12095,"OH":12096,"Ġtension":12097,"Ġwings":12098,"ĠMyster":12099,"����":12100,"ĠUnlike":12101,"valid":12102,"vironments":12103,"ĠAli":12104,"Ġnaked":12105,"books":12106,"ĠMun":12107,"ĠGulf":12108,"Ġdensity":12109,"Ġdimin":12110,"Ġdesperate":12111,"Ġpresidency":12112,"Ġ1986":12113,"hy":12114,"IND":12115,"Ġunlock":12116,"imens":12117,"Ġhandled":12118,"ĠEb":12119,"Ġdisappeared":12120,"Ġgenre":12121,"Ġ1988":12122,"Ġdetermination":12123,"Stream":12124,"iko":12125,"apters":12126,"Ġacknowledge":12127,"Jan":12128,"Ġcapitalism":12129,"Pat":12130,"Ġ2020":12131,"Ġpainful":12132,"Ġcurve":12133,"Ġbombs":12134,"storm":12135,"ĠMetal":12136,"encer":12137,"ĠFig":12138,"ĠAaron":12139,"anches":12140,"Ġinspiration":12141,"Ġexhaust":12142,"tains":12143,"ashi":12144,"Ġdescript":12145,"Ġritual":12146,"ĠChelsea":12147,"Ġpromotion":12148,"ĠHung":12149,"ĠWard":12150,"iva":12151,"ĠET":12152,"Ġtoss":12153,"allow":12154,"ĠFrancis":12155,"Dep":12156,"Ġhappiness":12157,"ĠGlass":12158,"Ġbeta":12159,"Ġstrengthen":12160,"NE":12161,"oa":12162,"Ġbuttons":12163,"ĠMurray":12164,"Ġkicked":12165,"Quest":12166,"ĠTalk":12167,"ĠSeveral":12168,"ĠZero":12169,"Ġdrone":12170,"ulk":12171,"Ġcam":12172,"ĠMobile":12173,"Ġpreventing":12174,"Ġretro":12175,"ĠAx":12176,"Ġcruel":12177,"Ġfloat":12178,".),":12179,"Ġfiling":12180,"ĠGrant":12181,"ĠBor":12182,"Ġrib":12183,"Ġchampionship":12184,"ĠMerc":12185,"Ġstyles":12186,"Ġcake":12187,"Ġbuilds":12188,"ĠSelf":12189,"iox":12190,"Ġepic":12191,"oyd":12192,"Bel":12193,"ĠStew":12194,".(":12195,"ahu":12196,"ĠBeyond":12197,"Ġouts":12198,"Ġsolo":12199,"ĠTree":12200,"Ġpreserve":12201,"Ġtub":12202,"ARE":12203,"roc":12204,"ĠImpro":12205,"ĠWright":12206,"Ġbund":12207,"Ġtraged":12208,"Ġoccasional":12209,"bian":12210,"Second":12211,"rons":12212,"Ġinteractions":12213,"formed":12214,"sing":12215,"Ġowns":12216,"Ġhockey":12217,"General":12218,"Ġlogical":12219,"Ġexpend":12220,"Ġescal":12221,"ĠGriff":12222,"ĠCrown":12223,"ĠReserve":12224,"Ġstopping":12225,"Ġexcuse":12226,"second":12227,"Ġoperated":12228,"Ġreaches":12229,"ĠMalays":12230,"Ġpollution":12231,"ĠBrooklyn":12232,"Ġdelete":12233,"Ġhash":12234,"Block":12235,"aha":12236,"â̳":12237,"Ġshorter":12238,"piece":12239,">>>":13163,"ĠMormon":13164,"tor":13165,"Ġparticles":13166,"ĠBart":13167,"ryption":13168,"Ġadmin":13169,"Ġsquee":13170,"VIDIA":13171,"Ġcreator":13172,"iameter":13173,"icular":13174,"NBC":13175,"Ġgrabbed":13176,"Ġnodd":13177,"Ġrated":13178,"Ġrotation":13179,"Ġgrasp":13180,"Ġexcessive":13181,"ĠEC":13182,"ĠWhit":13183,"Ġinventory":13184,"aults":13185,"ĠFB":13186,"Ġecosystem":13187,"Ġbillions":13188,"Ġventure":13189,"named":13190,"Ġdefender":13191,"oute":13192,"Instead":13193,"irable":13194,"War":13195,"Ġassumption":13196,"Ġbite":13197,"Ġearthqu":13198,"tail":13199,"space":13200,"Ġgifts":13201,"boys":13202,"Ġinevitable":13203,"Ġstructural":13204,"Ġbeneficial":13205,"Ġcompelling":13206,"hole":13207,"ervation":13208,"Ġcoat":13209,"oj":13210,"incarn":13211,"ĠYears":13212,"Ġdetermining":13213,"Ġrhetoric":13214,"Ġboundaries":13215,"Ġwhites":13216,"Ant":13217,"addy":13218,")-":13219,"raham":13220,"etermin":13221,"Ġharvest":13222,"ĠConc":13223,"Ġlaptop":13224,"ĠMatch":13225,"Ġenjoying":13226,"cca":13227,"ollar":13228,"Ġtrips":13229,"Ġaddiction":13230,"ĠSak":13231,"Ġpowered":13232,"Ġcous":13233,"ĠRussians":13234,"iere":13235,"Ġretrie":13236,"quality":13237,"Ġdiffer":13238,"Ġkingdom":13239,"ĠLaur":13240,"ĠCapitol":13241,"Ġconclusions":13242,"ĠAltern":13243,"ĠNav":13244,"Ġtransparent":13245,"BER":13246,"Group":13247,"ĠComplete":13248,"Ġinfer":13249,"Ġintrig":13250,"Ġinsane":13251,"RO":13252,"ophob":13253,"isen":13254,"qual":13255,"Michael":13256,"Ġmuseum":13257,"ĠPope":13258,"Ġreset":13259,"rative":13260,"five":13261,"Ġaggreg":13262,"ittees":13263,"ository":13264,"Ġcarb":13265,"ĠRecord":13266,"Ġdecides":13267,"ĠFix":13268,"Ġexceptions":13269,"ĠCommissioner":13270,"uns":13271,"ĠEnvironmental":13272,"Ġlegendary":13273,"istence":13274,"Ġtunnel":13275,"km":13276,"Ġinsult":13277,"Ġtroll":13278,"Ġshake":13279,"Ġdetention":13280,"ques":13281,"ĠChrome":13282,"ĠFiles":13283,"Ġsubt":13284,"Ġprospects":13285,"Ġprol":13286,"render":13287,"proof":13288,"Ġperformances":13289,"Str":13290,"Ġhref":13291,"ername":13292,"Ġachievement":13293,"Ġfut":13294,"Full":13295,"ĠLeban":13296,"google":13297,"ãĥĪ":13298,"ampa":13299,"Maybe":13300,"Ġprojected":13301,"ĠEmb":13302,"Ġcolleg":13303,"Ġawards":13304,"ĠâĶ":13305,"Gold":13306,"ĠBlake":13307,"ĠRaj":13308,"ifting":13309,"Ġpending":13310,"Ġinstinct":13311,"Ġdevelopments":13312,"Connect":13313,"ĠMand":13314,"ĠWITH":13315,"ĠPhilippines":13316,"profile":13317,"Ġaltogether":13318,"ĠBund":13319,"ĠTD":13320,"oooo":13321,"amped":13322,"iph":13323,"Ġsteam":13324,"Ġoldest":13325,"Ġdetection":13326,"ulpt":13327,"Ġç":13328,"ĠWayne":13329,"2006":13330,"fa":13331,"Ġcircles":13332,"ĠFu":13333,"Ġdonors":13334,"appropriate":13335,"ĠDakota":13336,"jamin":13337,"Ġmotivated":13338,"Ġpurchases":13339,"ĠLouisiana":13340,"ĠSpl":13341,"Ġglobe":13342,"Ġ105":13343,"zip":13344,"call":13345,"Ġdepartments":13346,"Ġsustainable":13347,"105":13348,"ĠOP":13349,"ifiers":13350,"Ġprevented":13351,"Ġincomp":13352,"ĠCommander":13353,"Ġdominated":13354,"Ġ»":13355,"Ġinvested":13356,"Ġcomplexity":13357,"Ġincl":13358,"Ġensuring":13359,"Ġrealm":13360,"ync":13361,"ĠIndependent":13362,"rained":13363,"ĠJen":13364,"ĠFlight":13365,"Ġathe":13366,"Ġspeculation":13367,"ĠTE":13368,"ocate":13369,"tic":13370,"Ġplaint":13371,"herry":13372,"Ġtoy":13373,"Ġ111":13374,"Ġplates":13375,"status":13376,"ĠIsa":13377,"Ġdevoted":13378,"Cop":13379,"ĠES":13380,"255":13381,"urrency":13382,"Main":13383,"Ġslaves":13384,"Ġpepper":13385,"Ġquotes":13386,"Ġceiling":13387,"ĠFish":13388,"Ġtransformation":13389,"Ġfraction":13390,"Ġadvantages":13391,"Ġtoile":13392,"Ġstunning":13393,"Ġmoist":13394,"breaking":13395,"si":13396,"ĠLocation":13397,"ĠMedium":13398,"Ġtexts":13399,"Ġugly":13400,"Ġbio":13401,".âĢĶ":13402,"ĠBased":13403,"Ġtrains":13404,"ĠWing":13405,"ĠAncient":13406,"ĠRecords":13407,"ĠHope":13408,"Special":13409,"adesh":13410,"obi":13411,"[/":13412,"Ġtemporarily":13413,"Ver":13414,"hu":13415,"oser":13416,"Ġovernight":13417,"Ġmamm":13418,"ĠTreasury":13419,"ĠVenezuel":13420,"ĠMega":13421,"Ġtar":13422,"Ġexpects":13423,"black":13424,"orph":13425,"\\\\\\\\":13426,"Ġacceptance":13427,"Ġradar":13428,"sis":13429,"Ġjunior":13430,"Ġframes":13431,"Ġobservation":13432,"acies":13433,"Power":13434,"ĠAdvanced":13435,"Mag":13436,"ologically":13437,"ĠMechan":13438,"Ġsentences":13439,"Ġanalysts":13440,"aughters":13441,"forcement":13442,"Ġvague":13443,"Ġclause":13444,"Ġdirectors":13445,"Ġevaluate":13446,"Ġcabinet":13447,"Matt":13448,"ĠClassic":13449,"Ang":13450,"Ġcler":13451,"ĠBuck":13452,"Ġresearcher":13453,"Ġ160":13454,"Ġpoorly":13455,"Ġexperiencing":13456,"ĠPed":13457,"ĠManhattan":13458,"Ġfreed":13459,"Ġthemes":13460,"advant":13461,"Ġnin":13462,"Ġpraise":13463,"104":13464,"ĠLibya":13465,"best":13466,"Ġtrusted":13467,"Ġcease":13468,"Ġdign":13469,"Direct":13470,"Ġbombing":13471,"Ġmigration":13472,"ĠSciences":13473,"Ġmunicipal":13474,"ĠAverage":13475,"Ġglory":13476,"Ġrevealing":13477,"Ġarena":13478,"Ġuncertainty":13479,"Ġbattlefield":13480,"iao":13481,"God":13482,"Ġcinem":13483,"rape":13484,"elle":13485,"apons":13486,"Ġlisting":13487,"Ġwaited":13488,"Ġspotted":13489,"keley":13490,"ĠAudio":13491,"eor":13492,"arding":13493,"idding":13494,"igma":13495,"ĠNeg":13496,"Ġlone":13497,"Ġ----":13498,"exe":13499,"deg":13500,"Ġtransf":13501,"Ġwash":13502,"Ġslavery":13503,"Ġexploring":13504,"ĠWW":13505,"atson":13506,"Ġencl":13507,"lies":13508,"ĠCreek":13509,"Ġwooden":13510,"Manager":13511,"ĠBrand":13512,"ummy":13513,"ĠArthur":13514,"Ġbureaucr":13515,"Ġblend":13516,"arians":13517,"Further":13518,"Ġsupposedly":13519,"Ġwinds":13520,"Ġ1979":13521,"Ġgravity":13522,"Ġanalyses":13523,"ĠTravel":13524,"ĠVeter":13525,"Ġdumb":13526,"Ġalternate":13527,"gal":13528,"Ġconsumed":13529,"Ġeffectiveness":13530,".''":13531,"Ġpaths":13532,"onda":13533,"LA":13534,"ĠStrong":13535,"Ġenables":13536,"Ġescaped":13537,"Ġ\"\"":13538,"Ġ112":13539,"Ġ1983":13540,"Ġsmiled":13541,"Ġtendency":13542,"Fire":13543,"Ġpars":13544,"ĠRoc":13545,"Ġlake":13546,"Ġfitness":13547,"ĠAth":13548,"ĠHorn":13549,"Ġhier":13550,"Ġimpose":13551,"mother":13552,"Ġpension":13553,"icut":13554,"borne":13555,"iciary":13556,"._":13557,"ĠSU":13558,"Ġpolar":13559,"isy":13560,"engu":13561,"itialized":13562,"ATA":13563,"write":13564,"Ġexercises":13565,"ĠDiamond":13566,"otypes":13567,"Ġharmful":13568,"onz":13569,"Ġprinting":13570,"story":13571,"Ġexpertise":13572,"ĠGer":13573,"Ġtragedy":13574,"ĠFly":13575,"Ġdivid":13576,"ampire":13577,"stock":13578,"Mem":13579,"Ġreign":13580,"Ġunve":13581,"Ġamend":13582,"ĠProphet":13583,"Ġmutual":13584,"ĠFac":13585,"Ġreplacing":13586,"Har":13587,"ĠCircuit":13588,"Ġthroat":13589,"ĠShot":13590,"Ġbatteries":13591,"Ġtoll":13592,"Ġaddressing":13593,"ĠMedicaid":13594,"Ġpupp":13595,"ĠNar":13596,"olk":13597,"Ġequity":13598,"MR":13599,"ĠHispan":13600,"ĠLarge":13601,"mid":13602,"Dev":13603,"Ġexped":13604,"Ġdemo":13605,"ĠMarshall":13606,"ergus":13607,"Ġfiber":13608,"Ġdivorce":13609,"ĠCreate":13610,"Ġslower":13611,"ĠParker":13612,"ĠStudent":13613,"ĠTraining":13614,"Return":13615,"ĠTru":13616,"Ġcub":13617,"ĠReached":13618,"Ġpanic":13619,"Ġquarters":13620,"Ġrect":13621,"Ġtreating":13622,"Ġrats":13623,"ĠChristianity":13624,"oler":13625,"Ġsacred":13626,"Ġdeclare":13627,"ulative":13628,"eting":13629,"Ġdelivering":13630,"estone":13631,"Ġtel":13632,"ĠLarry":13633,"Ġmeta":13634,"accept":13635,"artz":13636,"ĠRoger":13637,"handed":13638,"Ġheader":13639,"Ġtrapped":13640,"ĠCentury":13641,"Ġknocked":13642,"ĠOxford":13643,"Ġsurvivors":13644,"bot":13645,"Ġdemonstration":13646,"Ġdirt":13647,"Ġassists":13648,"OME":13649,"ĠDraft":13650,"ortunate":13651,"folio":13652,"pered":13653,"usters":13654,"gt":13655,"ĠLock":13656,"Ġjudicial":13657,"verted":13658,"Ġsecured":13659,"outing":13660,"ĠBooks":13661,"Ġhosting":13662,"Ġlifted":13663,"length":13664,"Ġjer":13665,"Ġwheels":13666,"ĠRange":13667,"umbnails":13668,"Ġdiagnosis":13669,"tech":13670,"ĠStewart":13671,"ĠPract":13672,"Ġnationwide":13673,"Ġdear":13674,"Ġobligations":13675,"Ġgrows":13676,"Ġmandatory":13677,"Ġsuspicious":13678,"!'":13679,"Apr":13680,"Great":13681,"Ġmortgage":13682,"Ġprosecutor":13683,"Ġeditorial":13684,"ĠKr":13685,"Ġprocessed":13686,"ungle":13687,"Ġflexibility":13688,"Earlier":13689,"ĠCart":13690,"ĠSug":13691,"Ġfocuses":13692,"Ġstartup":13693,"Ġbreach":13694,"ĠTob":13695,"cycle":13696,"ãĢĮ":13697,"rose":13698,"Ġbizarre":13699,"ãĢį":13700,"Ġvegetables":13701,"$$":13702,"Ġretreat":13703,"oshi":13704,"ĠShop":13705,"ĠGround":13706,"ĠStop":13707,"ĠHawaii":13708,"ĠAy":13709,"Perhaps":13710,"ĠBeaut":13711,"uffer":13712,"enna":13713,"Ġproductivity":13714,"Fixed":13715,"control":13716,"Ġabsent":13717,"ĠCampaign":13718,"Green":13719,"Ġidentifying":13720,"Ġregret":13721,"Ġpromoted":13722,"ĠSeven":13723,"Ġeru":13724,"neath":13725,"aughed":13726,"ĠPin":13727,"ĠLiving":13728,"Cost":13729,"omatic":13730,"mega":13731,"ĠNig":13732,"ocy":13733,"Ġinbox":13734,"Ġempire":13735,"Ġhorizont":13736,"Ġbranches":13737,"Ġmetaph":13738,"Active":13739,"edi":13740,"ĠFilm":13741,"ĠSomething":13742,"Ġmods":13743,"incial":13744,"ĠOriginal":13745,"Gen":13746,"Ġspirits":13747,"Ġearning":13748,"Hist":13749,"Ġriders":13750,"Ġsacrific":13751,"MT":13752,"ĠVA":13753,"ĠSalt":13754,"Ġoccupation":13755,"ĠMi":13756,"Ġdisg":13757,"lict":13758,"Ġnit":13759,"Ġnodes":13760,"eem":13761,"ĠPier":13762,"Ġhatred":13763,"psy":13764,"ãĥī":13765,"Ġtheater":13766,"Ġsophisticated":13767,"Ġdefended":13768,"Ġbesides":13769,"Ġthoroughly":13770,"ĠMedicare":13771,"Ġblamed":13772,"arently":13773,"Ġcrying":13774,"FOR":13775,"priv":13776,"Ġsinging":13777,"ĠIl":13778,"Ġcute":13779,"oided":13780,"olitical":13781,"ĠNeuro":13782,"å¤":13783,"Ġdonation":13784,"ĠEagles":13785,"ĠGive":13786,"Tom":13787,"Ġsubstantially":13788,"ĠLicense":13789,"ĠJa":13790,"Ġgrey":13791,"ĠAnimal":13792,"ĠER":13793,"ĠUnd":13794,"Ġkeen":13795,"Ġconclude":13796,"ĠMississippi":13797,"Engine":13798,"ĠStudios":13799,"Press":13800,"overs":13801,"llers":13802,"Ġ350":13803,"ĠRangers":13804,"Ġrou":13805,"erto":13806,"Ep":13807,"issa":13808,"ivan":13809,"Ġseal":13810,"ĠRegist":13811,"display":13812,"Ġweaken":13813,"uum":13814,"ĠCommons":13815,"ĠSay":13816,"Ġcultures":13817,"Ġlaughed":13818,"Ġslip":13819,"Ġtreatments":13820,"izable":13821,"mart":13822,"ĠRice":13823,"Ġbeast":13824,"Ġobesity":13825,"ĠLaure":13826,"iga":13827,"Which":13828,"holder":13829,"Ġelderly":13830,"Ġpays":13831,"Ġcomplained":13832,"Ġcrop":13833,"Ġproc":13834,"Ġexplosive":13835,"ĠFan":13836,"ĠArsenal":13837,"Author":13838,"eful":13839,"Ġmeals":13840,"Ġ(-":13841,"idays":13842,"Ġimagination":13843,"Ġannually":13844,"Ġms":13845,"asures":13846,"Head":13847,"ikh":13848,"matic":13849,"Ġboyfriend":13850,"ĠComputer":13851,"Ġbump":13852,"Ġsurge":13853,"ĠCraig":13854,"ĠKirk":13855,"Del":13856,"mediate":13857,"Ġscenarios":13858,"ĠMut":13859,"ĠStream":13860,"Ġcompetitors":13861,"ÙĦ":13862,"ĠStanford":13863,"ĠResources":13864,"azed":13865,"bage":13866,"Ġorganis":13867,"ĠRelease":13868,"Ġseparately":13869,"Ġhabits":13870,"Ġmeasurements":13871,"ĠClose":13872,"Ġaccompany":13873,"Ġgly":13874,"Ġtang":13875,"ĠRou":13876,"Ġplugin":13877,"Ġconvey":13878,"ĠChallenge":13879,"oots":13880,"jan":13881,"Ġcurs":13882,"ĠRelations":13883,"keeper":13884,"Ġapproaching":13885,"ping":13886,"Speaking":13887,"Ġarrangement":13888,"ĠVI":13889,"arettes":13890,"Ġaffecting":13891,"Ġpermits":13892,"because":13893,"Ġuseless":13894,"ĠHus":13895,"!!!!":13896,"Ġdestroying":13897,"Unfortunately":13898,"Ġfascinating":13899,"Sem":13900,"Ġelectoral":13901,"Ġtransparency":13902,"ĠChaos":13903,"Ġvolunteer":13904,"Ġstatistical":13905,"Ġactivated":13906,"rox":13907,"Web":13908,"HE":13909,"ĠHampshire":13910,"isive":13911,"Map":13912,"Ġtrash":13913,"ĠLawrence":13914,"stick":13915,"Cr":13916,"Ġrings":13917,"EXT":13918,"Ġoperational":13919,"opes":13920,"Does":13921,"ĠEvans":13922,"Ġwitnessed":13923,"Port":13924,"Ġlaunching":13925,"econom":13926,"wear":13927,"ĠParticip":13928,"umm":13929,"cules":13930,"ĠRAM":13931,"ĠTun":13932,"Ġassured":13933,"Ġbinary":13934,"Ġbetray":13935,"Ġexploration":13936,"ĠFel":13937,"Ġadmission":13938,"itated":13939,"Sy":13940,"Ġavoided":13941,"ĠSimulator":13942,"Ġcelebrated":13943,"ĠElectric":13944,"¥ŀ":13945,"Ġcluster":13946,"itzerland":13947,"health":13948,"Line":13949,"ĠNash":13950,"aton":13951,"Ġspare":13952,"Ġenterprise":13953,"ĠDIS":13954,"cludes":13955,"Ġflights":13956,"Ġregards":13957,"ĠÃĹ":13958,"half":13959,"Ġtrucks":13960,"Ġcontacts":13961,"Ġuncons":13962,"ĠClimate":13963,"Ġimmense":13964,"NEW":13965,"occ":13966,"ective":13967,"Ġembod":13968,"Ġpatrol":13969,"Ġbeside":13970,"Ġviable":13971,"Ġcreep":13972,"Ġtriggered":13973,"verning":13974,"Ġcomparable":13975,"ql":13976,"Ġgaining":13977,"asses":13978,"Ġ();":13979,"ĠGrey":13980,"ĠMLS":13981,"sized":13982,"Ġprosper":13983,"\"?":13984,"Ġpolling":13985,"Ġshar":13986,"ĠRC":13987,"Ġfirearm":13988,"orient":13989,"Ġfence":13990,"Ġvariations":13991,"giving":13992,"ĠPi":13993,"ospel":13994,"Ġpledge":13995,"Ġcure":13996,"Ġspy":13997,"Ġviolated":13998,"Ġrushed":13999,"Ġstroke":14000,"ĠBlog":14001,"sels":14002,"ĠEc":14003,",''":14004,"Ġpale":14005,"ĠCollins":14006,"terror":14007,"ĠCanadians":14008,"Ġtune":14009,"Ġlaboratory":14010,"Ġnons":14011,"tarian":14012,"Ġdisability":14013,"ĠGam":14014,"Ġsinger":14015,"alg":14016,"ĠSenior":14017,"Ġtraded":14018,"ĠWarrior":14019,"Ġinfring":14020,"ĠFranklin":14021,"Ġstrain":14022,"ĠSwedish":14023,"Ġseventh":14024,"ĠBenn":14025,"ĠTell":14026,"Ġsyndrome":14027,"Ġwondered":14028,"iden":14029,"++++":14030,"igo":14031,"Ġpurple":14032,"Ġjournalism":14033,"Ġrebel":14034,"Ġfu":14035,"blog":14036,"Ġinvite":14037,"rencies":14038,"ĠContact":14039,"Israel":14040,"ĠContent":14041,"Ġcheer":14042,"Ġbedroom":14043,"ĠEngineering":14044,"ĠQueens":14045,"Ġdwell":14046,"ĠPlayStation":14047,"ĠDim":14048,"ĠColon":14049,"lr":14050,"Ġoperates":14051,"Ġmotivation":14052,"USA":14053,"astered":14054,"Core":14055,"ĠTruth":14056,"olo":14057,"OSE":14058,"ĠMemory":14059,"Ġpredec":14060,"Ġanarch":14061,"Ġ1920":14062,"ĠYam":14063,"è":14064,"bid":14065,"Ġgrateful":14066,"Ġexcitement":14067,"Ġtreasure":14068,"Ġlongest":14069,"ctive":14070,"Ġdeserves":14071,"Ġreserves":14072,"Ġcops":14073,"ĠOttawa":14074,"ĠEgyptian":14075,"anked":14076,"Ġartif":14077,"Ġhypothesis":14078,":/":14079,"Ġpurchasing":14080,"Ġlovely":14081,"HP":14082,"Ġdivide":14083,"Ġstrictly":14084,"Ġquestioning":14085,"Ġtaxpayers":14086,"ĠJoy":14087,"Ġrolls":14088,"ĠHeavy":14089,"Ġports":14090,"Ġmagnetic":14091,"Ġinflamm":14092,"Ġbrush":14093,"tics":14094,"âĪĴ":14095,"Ġbottles":14096,"ppy":14097,"Ġpadd":14098,"ãĤ¯":14099,"million":14100,"Ġdevastating":14101,"Ġcompiled":14102,"Ġmedication":14103,"Ġtwelve":14104,"ĠPerry":14105,"Space":14106,"imb":14107,"your":14108,"Ġleaked":14109,"ĠTar":14110,"Ġunity":14111,"Ġinfected":14112,"Ġtraveled":14113,"IDE":14114,"ĠMcDonald":14115,"txt":14116,"ĠPrinc":14117,"Ġinterven":14118,"ĠTaiwan":14119,"ĠPow":14120,"Ġbearing":14121,"ĠThread":14122,"Ġzones":14123,"izards":14124,"unks":14125,"Chapter":14126,"llor":14127,"Ġ·":14128,"Ġwounds":14129,"Ġdiscretion":14130,"Ġsucceeded":14131,"iking":14132,"Ġiconic":14133,"Call":14134,"Ġscreening":14135,"ĠMis":14136,"icts":14137,"Ġministers":14138,"Ġseparation":14139,"Player":14140,"Ġbip":14141,"Ġbeloved":14142,"Ġcounting":14143,"ĠEye":14144,"around":14145,"inging":14146,"Ġtablet":14147,"Ġoffence":14148,"inance":14149,"have":14150,"ĠInfo":14151,"ĠNinja":14152,"Ġprotective":14153,"ĠCass":14154,"Mac":14155,"ĠQuality":14156,"North":14157,"Ġic":14158,"ĠCuba":14159,"ĠChronicle":14160,"ĠProperty":14161,"Ġfastest":14162,"otos":14163,"ĠGerm":14164,"OWN":14165,"Ġboom":14166,"ĠStanley":14167,"erguson":14168,"Ġclever":14169,"Ġenters":14170,"mode":14171,"terior":14172,"ĠSens":14173,"Ġlinear":14174,"ARK":14175,"Ġcomparing":14176,"Ġpurely":14177,"Ġsafer":14178,"ĠPotter":14179,"Ġcups":14180,"RT":14181,"Ġgluc":14182,"Ġattributed":14183,"Ġdupl":14184,"ĠPap":14185,"Ġprecious":14186,"Ġpa":14187,"ictionary":14188,"ĠTig":14189,"ĠToo":14190,"olutions":14191,"stan":14192,"Ġrobots":14193,"Ġlobb":14194,"Ġstatute":14195,"Ġprevention":14196,"western":14197,"160":14198,"ĠActive":14199,"ĠMaria":14200,"hal":14201,"None":14202,"ellar":14203,"ĠKB":14204,"ĠPartners":14205,"ĠSingle":14206,"ĠFollowing":14207,"ango":14208,"acious":14209,"Ġthou":14210,"Ġkg":14211,"Ġinfluential":14212,"ĠFriends":14213,"Sur":14214,"ainted":14215,"Ġforums":14216,"Ġstarter":14217,"Ġcitizenship":14218,"ĠElection":14219,"onge":14220,"otation":14221,"osph":14222,";;;;":14223,"utical":14224,"pur":14225,"eren":14226,"Ġaccusations":14227,"bitious":14228,"abbit":14229,"ĠOrd":14230,"Posted":14231,"irk":14232,"Ġsensitivity":14233,"iche":14234,"ĠAmy":14235,"ĠFab":14236,"Ġsummit":14237,"Ġpedest":14238,"Ġrubber":14239,"Ġagricultural":14240,"Ġcancel":14241,"AE":14242,"Ġinaug":14243,"Ġcontam":14244,"Ġfirmly":14245,"iw":14246,"stage":14247,"ĠKan":14248,"Ġtier":14249,"Ġinvention":14250,"Ġtranslated":14251,"ĠRules":14252,"Box":14253,"Twitter":14254,"IDS":14255,"Ġpizza":14256,"Ġdebug":14257,"ĠDrop":14258,"vs":14259,"Ġhorses":14260,"big":14261,"Ġboring":14262,"Ġhood":14263,"ĠMcCain":14264,"atched":14265,"ĠBros":14266,"Ġskip":14267,"Ġessay":14268,"stat":14269,"ĠLegends":14270,"Ġammunition":14271,"auc":14272,"Ġshooter":14273,"Ġunh":14274,"Ġsupplied":14275,"Ġgeneric":14276,"ĠSK":14277,"iban":14278,"yrics":14279,"Ġ255":14280,"Ġclimbing":14281,"Former":14282,"Ġflip":14283,"Ġjumping":14284,"Ġfrustration":14285,"ĠTerry":14286,"Ġneighborhoods":14287,"Ġmedian":14288,"bean":14289,"Ġbrains":14290,"Following":14291,"Ġshaped":14292,"Ġdraws":14293,"Ġaltered":14294,"Jack":14295,"Ġrecipes":14296,"Ġskilled":14297,"wealth":14298,"achi":14299,"election":14300,"Ġbehaviors":14301,"deals":14302,"ĠUntil":14303,"Fe":14304,"Ġdeclaration":14305,"marks":14306,"ĠBetween":14307,"celona":14308,"Ġreson":14309,"Ġbubble":14310,"Among":14311,"Ġimperial":14312,"GS":14313,"Ġfeminist":14314,"2005":14315,"ĠKyle":14316,"Ġaccounting":14317,"ĠTele":14318,"ĠTyr":14319,"Ġconnecting":14320,"Ġrehab":14321,"ĠPred":14322,"sim":14323,"Ġmeantime":14324,"Ġphysician":14325,"MW":14326,"ĠCampbell":14327,"ĠBrandon":14328,"Ġcontributing":14329,"ĠRule":14330,"ĠWeight":14331,"ĠNap":14332,"Ġinteractive":14333,"Ġvag":14334,"Ġhelmet":14335,"ĠComb":14336,"four":14337,"Ġshipped":14338,"Ġcompleting":14339,"ĠPD":14340,"PDATE":14341,"Ġspreading":14342,"Ġscary":14343,"erving":14344,"ĠGas":14345,"Ġfrank":14346,"school":14347,"Ġromantic":14348,"Ġstabil":14349,"Rob":14350,"Ġaccurately":14351,"Ġacute":14352,"ĠHann":14353,"Ġsymbols":14354,"Ġcivilization":14355,"ĠAW":14356,"Ġlightning":14357,"Ġconsiders":14358,"Ġvenue":14359,"Ġ×":14360,"Ġoven":14361,"ĠSF":14362,"his":14363,"Ġnu":14364,"ĠLearn":14365,"Ġpeoples":14366,"Ġstd":14367,"Ġslee":14368,"Ġslic":14369,"ĠStatistics":14370,"Ġcorners":14371,"ĠBaker":14372,"Ġ:)":14373,"mentation":14374,"olver":14375,"Ġlaughing":14376,"ĠTodd":14377,"onde":14378,"ĠHills":14379,"Ġnuts":14380,"ĠWoman":14381,"plane":14382,"Ġliver":14383,"ĠInside":14384,"Sorry":14385,"Ġagrees":14386,"Ġfundament":14387,"ĠFisher":14388,"Ġauction":14389,"Ġthreads":14390,"glas":14391,"ĠBasic":14392,"ĠNat":14393,"Ġlacking":14394,"Ġcelebration":14395,"ju":14396,"Ġsilly":14397,"Euro":14398,"Ġtatt":14399,"ighty":14400,"controlled":14401,"Test":14402,"ĠSingh":14403,"Ġrage":14404,"Ġrhyth":14405,"offic":14406,"ĠPhantom":14407,"Ġheadlines":14408,"Ġresponding":14409,"ĠMorning":14410,"Ġvitamin":14411,"Ġboots":14412,"ĠSite":14413,"alin":14414,"pi":14415,"Ġviral":14416,"ĠUC":14417,"DER":14418,"ĠSex":14419,"Ġstocks":14420,"current":14421,"Ġchurches":14422,"ĠRare":14423,"ĠMurphy":14424,"Ġdenial":14425,"ĠGaming":14426,"Ġtoug":14427,"Ġnick":14428,"Ġmakers":14429,"ĠRonald":14430,"Ġgenerous":14431,"ĠDoc":14432,"ĠMorris":14433,"Ġtransformed":14434,"ĠNormal":14435,"Ġ104":14436,"ĠKickstarter":14437,"ĠUpon":14438,"Online":14439,"ĠIRS":14440,"Ġwrap":14441,"Ġloving":14442,"Ġarrives":14443,"ĠDue":14444,"Ġheter":14445,"ĠMade":14446,"Ġrental":14447,"Ġbelongs":14448,"Ġattorneys":14449,"Ġcrops":14450,"Ġmatched":14451,"ulum":14452,"oline":14453,"109":14454,"Ġdispar":14455,"Ġbuyers":14456,"ĠCambridge":14457,"Ġethics":14458,"roups":14459,"Ġjustified":14460,"Ġmarginal":14461,"Ġrespected":14462,"winning":14463,"Ġnodded":14464,"ĠSerge":14465,"ĠFormer":14466,"Craft":14467,"################":14468,"ĠWarner":14469,"Ġdash":14470,"ete":14471,"Ġentert":14472,"ĠEscape":14473,"outheast":14474,"Ġknees":14475,"ĠBomb":14476,"Ġrug":14477,"Pass":14478,"Ġattitudes":14479,"government":14480,"ĠPrior":14481,"Ġqualities":14482,"Ġnotification":14483,"ĠPhone":14484,"lie":14485,"Ġanticipated":14486,"ĠCombat":14487,"ĠBarry":14488,"Ġ1982":14489,"Users":14490,"oner":14491,"Ġcomputing":14492,"ĠConnecticut":14493,"Ġlesser":14494,"Ġpeers":14495,"ĠCu":14496,"Ġtechnically":14497,"Ġsubmission":14498,"ĠUniversal":14499,"Ġmanually":14500,"ourge":14501,"Ġrespondents":14502,"ĠBTC":14503,"ĠHost":14504,"Ġfare":14505,"ĠBird":14506,"Ġreceipt":14507,"also":14508,"Ġjack":14509,"Ġagriculture":14510,"Ġskull":14511,"Ġ!=":14512,"Ġpassive":14513,"ĠCI":14514,"Ġsocieties":14515,"Ġreminded":14516,"Ġinterference":14517,"Buy":14518,"Ġâľ":14519,"gon":14520,"Ġscrutiny":14521,"ĠWitch":14522,"Ġconducting":14523,"Ġãĥ":14524,"Ġexchanges":14525,"ĠMitchell":14526,"Ġinhabit":14527,"Ġtwist":14528,"BD":14529,"Ġwherever":14530,"groupon":14531,"Ġjokes":14532,"ĠBenjamin":14533,"ĠRandom":14534,"frame":14535,"ĠLions":14536,"Ġhighlighted":14537,"ĠArkansas":14538,"Ent":14539,"Ġpile":14540,"Ġprelim":14541,"gs":14542,"minded":14543,"Ġfelony":14544,"ĠGA":14545,"ĠLuck":14546,"Ġpractically":14547,"ĠBos":14548,"Ġactress":14549,"Dam":14550,"ĠBou":14551,"Ġvisa":14552,"Ġembedded":14553,"Ġhybrid":14554,"Ġearliest":14555,"Ġsooner":14556,"social":14557,"ĠHA":14558,"Ġsteep":14559,"Ġdisadvant":14560,"Ġexploit":14561,"ĠEgg":14562,"ĠUltra":14563,"Ġnecessity":14564,"Local":14565,"iege":14566,"Ġdated":14567,"Ġmasses":14568,"Ġsubscription":14569,"pless":14570,"Ġanonym":14571,"Ġpresumably":14572,"Blue":14573,"Their":14574,"asketball":14575,"ĠPhilip":14576,"Ġcomed":14577,"loaded":14578,"rane":14579,"Ġreflection":14580,"China":14581,"Ġextends":14582,"Ġforming":14583,"Ġunders":14584,"2001":14585,"Ġgrat":14586,"Ġconcentrations":14587,"Ġinsulin":14588,"Ġsecular":14589,"Ġwhilst":14590,"Ġwinners":14591,"Advertisements":14592,"Ġdeliberately":14593,"ĠWorking":14594,"Ġsink":14595,"etics":14596,"dale":14597,"Ġmandate":14598,"Ġgram":14599,"Ġvacation":14600,"Ġwarnings":14601,"ripp":14602,"ĠTHAT":14603,"Ġcommentary":14604,"Ġintu":14605,"Ġaest":14606,"Ġreasoning":14607,"Ġbreakdown":14608,"ĠZombie":14609,"Ġ-->":14610,"ĠPolitical":14611,"cott":14612,"Ġthrust":14613,"Ġtechnological":14614,"Ġdeciding":14615,"Ġtrafficking":14616,"Long":14617,"Welcome":14618,"prising":14619,"ĠCommunications":14620,"Ġendors":14621,"Ġswift":14622,"Ġmetabol":14623,"coins":14624,"resa":14625,"ĠHTTP":14626,"Ġenroll":14627,"ĠHappy":14628,"usr":14629,"intage":14630,"Ġ[\"":14631,"uably":14632,"ĠMaterial":14633,"Ġrepeal":14634,"Sept":14635,"kh":14636,"ĠModi":14637,"Ġunderneath":14638,"ĠIL":14639,"shore":14640,"Ġdiagnosed":14641,"aceutical":14642,"Ġshower":14643,"aux":14644,"ĠSwitch":14645,"ĠStrength":14646,"Ġjihad":14647,"national":14648,"Ġtrauma":14649,"ussy":14650,"oni":14651,"Ġconsolid":14652,"Ġcalories":14653,"ĠFlynn":14654,"agged":14655,"168":14656,"ĠPink":14657,"Ġfulfill":14658,"Ġchains":14659,"Ġnotably":14660,"ĠAV":14661,"Life":14662,"ĠChuck":14663,"mus":14664,"ĠUrban":14665,"ĠHend":14666,"Ġdeposit":14667,"ĠSad":14668,"Ġaffair":14669,"ORK":14670,"ieval":14671,"ĠFDA":14672,"Ġtrop":14673,"ĠOverall":14674,"Ġvirtue":14675,"Ġsatisfaction":14676,"aund":14677,"Ġlun":14678,"ĠSwitzerland":14679,"ĠOperation":14680,"process":14681,"Ġshook":14682,"Ġcounties":14683,"leased":14684,"ĠCharlotte":14685,"112":14686,"Ġtranscript":14687,"Ġredd":14688,"push":14689,"ĠHey":14690,"ĠAnalysis":14691,"[\"":14692,"Ġalternatives":14693,"ardless":14694,"Ġeleph":14695,"Ġprejud":14696,"ĠLeaf":14697,"Having":14698,"ĠHub":14699,"Ġexpressions":14700,"ĠVolume":14701,"Ġshocking":14702,"ĠReds":14703,"Ġreadily":14704,"Ġplanets":14705,"adata":14706,"Ġcollapsed":14707,"ĠMadrid":14708,"Ġirrit":14709,"ipper":14710,"ĠEnc":14711,"ĠWire":14712,"Ġbuzz":14713,"ĠGP":14714,"asha":14715,"Ġaccidentally":14716,"uru":14717,"Ġfrustrated":14718,"ĠSA":14719,"Ġhungry":14720,"ĠHuff":14721,"Ġlabels":14722,"anto":14723,"ĠEP":14724,"Ġbarriers":14725,")|":14726,"ĠBerkeley":14727,"ĠJets":14728,"Ġpairs":14729,"ĠLan":14730,"James":14731,"ĠBear":14732,"Ġhumor":14733,"ĠLiberty":14734,"Ġmagnitude":14735,"Ġaging":14736,"ĠMason":14737,"Ġfriendship":14738,"umbling":14739,"Ġemerge":14740,"Ġnewspapers":14741,"Ġambitious":14742,"ĠRichards":14743,"aternal":14744,"Ġ1981":14745,"Ġcookies":14746,"Ġsculpt":14747,"Ġpursuit":14748,"Location":14749,"Ġscripts":14750,"pc":14751,"Ġarrangements":14752,"Ġdiameter":14753,"Ġloses":14754,"amation":14755,"Ġliqu":14756,"ĠJake":14757,"arette":14758,"Ġunderstands":14759,"ĠZen":14760,"vm":14761,"Ġapprove":14762,"Ġwip":14763,"Ġultra":14764,"Ġintend":14765,"ĠDI":14766,"ascular":14767,"Ġstays":14768,"ĠKor":14769,"ĠKl":14770,"Ġinvesting":14771,"La":14772,"Ġbelieving":14773,"bad":14774,"mouth":14775,"Ġtaxpayer":14776,"ãĥĥ":14777,"ĠQuebec":14778,"Ġlap":14779,"ĠSwiss":14780,"drop":14781,"Ġdrain":14782,"iri":14783,"etc":14784,"ften":14785,"ĠNex":14786,"Ġstraw":14787,"Ġscreaming":14788,"Ġcounted":14789,"Ġdamaging":14790,"Ġambassador":14791,"century":14792,"Ġprox":14793,"Ġarrests":14794,"uv":14795,"ilateral":14796,"ĠCharg":14797,"Ġprescribed":14798,"Ġindependently":14799,"Ġfierce":14800,"ĠBaby":14801,"Ġbrave":14802,"Ġsuits":14803,"=>":14804,"Ġbaseline":14805,"ĠRate":14806,"Ġislands":14807,"Ġ((":14808,"green":14809,"ixels":14810,"Ġnamely":14811,"ĠVillage":14812,"than":14813,"amy":14814,"Version":14815,"gmail":14816,"entials":14817,"ĠSud":14818,"ĠMelbourne":14819,"Ġarriving":14820,"Ġquantum":14821,"eff":14822,"ropolitan":14823,"Tri":14824,"Ġfuneral":14825,"ĠIR":14826,"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ":14827,"ĠCob":14828,"itably":14829,"Ġturb":14830,"Ġcombo":14831,"Review":14832,"Ġdeployment":14833,"uity":14834,"ĠBott":14835,"Ġinvisible":14836,"Ġrendering":14837,"Ġunlocked":14838,"Ġaqu":14839,"ĠVladimir":14840,"Ġpad":14841,"ĠBrain":14842,"ĠLegacy":14843,"dragon":14844,"ĠKurdish":14845,"Ġsounded":14846,"Ġdetained":14847,"ĠDM":14848,"gary":14849,"Ġdaughters":14850,"Ġdisturbing":14851,"uka":14852,"ĠParad":14853,"Ġtast":14854,"Ġunfortunate":14855,"Ġul":14856,"emin":14857,"Ġattendance":14858,"trl":14859,"Ġparks":14860,"ĠMemorial":14861,"ĠAlice":14862,"othy":14863,"guard":14864,"ĠDise":14865,"ĠShan":14866,"ĠForum":14867,"Rich":14868,"Ġshifted":14869,"uez":14870,"Ġlighter":14871,"ĠMagn":14872,"Ġcod":14873,"Sch":14874,"hammad":14875,"Pub":14876,"350":14877,"ĠPokemon":14878,"Ġprototype":14879,"Ġunre":14880,"Base":14881,"ĠStudents":14882,"ĠReply":14883,"ĠCommunist":14884,"Ġgau":14885,"ĠTyler":14886,"IZ":14887,"Ġparticipated":14888,"Ġsuprem":14889,"ĠDetails":14890,"Ġvessels":14891,"rod":14892,"Ġtribe":14893,"keep":14894,"Ġassumptions":14895,"Ġpound":14896,"Ġcrude":14897,"ĠAvailable":14898,"Ġswimming":14899,"Ġinclusion":14900,"Ġadvances":14901,"culation":14902,"Ġconservation":14903,"Ġoverd":14904,"ĠBuffalo":14905,"Article":14906,"edge":14907,"Ġawa":14908,"ĠMadison":14909,"Ġsidew":14910,"Ġcatast":14911,"ĠKrist":14912,"ucle":14913,"ĠHighway":14914,"ĠTerror":14915,"Ġactivation":14916,"Ġunconscious":14917,"ĠSatan":14918,"ĠSusan":14919,"illery":14920,"Ġarranged":14921,"iop":14922,"Ġrumors":14923,"urring":14924,"think":14925,"ĠKeith":14926,"ĠKind":14927,"Ġavoiding":14928,"byn":14929,"nut":14930,"ĠSpeaker":14931,"rus":14932,"names":14933,"Ġguilt":14934,"ĠOlympics":14935,"Ġsail":14936,"ĠMes":14937,"levant":14938,"ĠColumbus":14939,"aft":14940,"City":14941,"South":14942,"ĠHarvey":14943,"ĠPun":14944,"Several":14945,"Ġmentally":14946,"Ġimpress":14947,"mount":14948,"ĠUbuntu":14949,"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ":14950,"ĠSuperman":14951,"ĠMPs":14952,"Ġintentions":14953,"ĠRacing":14954,"Ġlikelihood":14955,"Ġ240":14956,"Total":14957,"Ġtoys":14958,"ĠWatson":14959,"Ġurge":14960,"Lear":14961,"ĠPaper":14962,"Ġoccurring":14963,"ĠBeng":14964,"ĠCert":14965,"Ġstones":14966,"Tim":14967,"ĠTwin":14968,"zb":14969,"ĠDynam":14970,"Ġpolitician":14971,"kens":14972,"ĠEnterprise":14973,"UTERS":14974,"Ġabol":14975,"Ġrefresh":14976,"Ġarbitrary":14977,"pection":14978,"Ġtroubles":14979,"Ġ});":14980,"tv":14981,"Ġpilots":14982,"Ġdistribute":14983,"Ġaudit":14984,"Ġpause":14985,"original":14986,"Ġrivals":14987,"£":14988,"Fig":14989,"TL":14990,"abil":14991,"rying":14992,"Lin":14993,"ioned":14994,"lon":14995,"Ġfancy":14996,"Ġcrashed":14997,"Ġtract":14998,"Ġshed":14999,"Ġconsume":15000,"Based":15001,"download":15002,"init":15003,"Ġvoltage":15004,"Introdu":15005,"Ġcondemned":15006,"ĠFinance":15007,"respect":15008,"Ġexcluded":15009,"Ġestablishing":15010,"heric":15011,"Ġheritage":15012,"Ġspectacular":15013,"Ġunst":15014,"ĠSnowden":15015,"ĠLane":15016,"San":15017,"Ġprotections":15018,"struction":15019,"incinn":15020,"Ġmacro":15021,"Custom":15022,"iosity":15023,"Ġesp":15024,"Ġfunctioning":15025,"Ġmush":15026,"Ġpuzzle":15027,"Ġethical":15028,"Mal":15029,"Ġgoverning":15030,"ĠFerguson":15031,"Ġrestored":15032,"Ġstressed":15033,"ĠCounter":15034,"ĠKas":15035,"clip":15036,"ANS":15037,"Ġseiz":15038,"UK":15039,"byss":15040,"oldown":15041,"api":15042,"Ġpermanently":15043,"ounters":15044,"West":15045,"Through":15046,"Light":15047,"atoes":15048,"Ġneat":15049,"Ġcord":15050,"urer":15051,"Ġseverely":15052,"ĠAven":15053,"Ġinterrog":15054,"Ġtriple":15055,"Given":15056,"Number":15057,"Ġarise":15058,"Ġsher":15059,"plant":15060,"Ġflower":15061,"ĠCou":15062,"Ġate":15063,"Ġnewer":15064,"bul":15065,"Ġmeanwhile":15066,"ĠLair":15067,"Ġadjustment":15068,"ĠCopyright":15069,"Ġdivers":15070,"iological":15071,"Ġgamers":15072,"oat":15073,"Ġhistorically":15074,"Ġanalog":15075,"Ġlongtime":15076,"Ġprescription":15077,"ĠMist":15078,"ĠHyper":15079,"ĠMaine":15080,"ĠDeity":15081,"Ġmultipl":15082,"ĠReincarn":15083,"ĠHyd":15084,"ĠPic":15085,"Sil":15086,"rants":15087,"ĠCris":15088,".;":15089,"({":15090,"ependence":15091,"Ġrecy":15092,"ateur":15093,"Ġquad":15094,"Ġglob":15095,"Ġconced":15096,"team":15097,"Ġcapitalist":15098,"ĠLot":15099,"Ġroyal":15100,"ĠCyber":15101,"Ġblacks":15102,"metic":15103,"riv":15104,"ĠDanny":15105,"Ġspo":15106,"ĠRO":15107,"Ġanimated":15108,"rypted":15109,"ĠDeputy":15110,"Ġrendered":15111,"FE":15112,"Ġstreak":15113,"Ġclouds":15114,"ĠDoug":15115,"~~~~~~~~":15116,"Ġdiscour":15117,"ĠVeh":15118,"Ġpsychology":15119,"ĠJourney":15120,"Ġcrystal":15121,"ĠFrost":15122,"Ġsuspicion":15123,"Ġrelate":15124,"orus":15125,"ĠCrypt":15126,"ĠNVIDIA":15127,"comed":15128,"uting":15129,"incinnati":15130,"Ġvulnerability":15131,"ostic":15132,"Ġisolation":15133,"Ġcooling":15134,"ĠCoalition":15135,"Ġ119":15136,"Four":15137,"ĠDeal":15138,"Ġâī":15139,"semble":15140,"rament":15141,"ĠBarcelona":15142,"Ġ102":15143,"Ġcocaine":15144,"ocalypse":15145,"Feb":15146,"ogenic":15147,"Ġmutation":15148,"Ġcryptoc":15149,"ĠKel":15150,"ĠGit":15151,"ais":15152,"Ġsisters":15153,"ANK":15154,"Ġactivate":15155,"Ter":15156,"Ġdread":15157,"ylon":15158,"Ġpropri":15159,"Aust":15160,"ĠDefault":15161,"Ġoutdoor":15162,"Ġsheer":15163,"ceive":15164,"Ġgently":15165,"о":15166,"Program":15167,"ĠâĨĴ":15168,"Ġvegan":15169,"ĠCrus":15170,"Ġresponsibilities":15171,"ĠHR":15172,"OLD":15173,"Ġprevents":15174,"Ġstiff":15175,"ĠWere":15176,"Ġathletic":15177,"ĠScore":15178,"Ġ):":15179,"Ġcolumns":15180,"ĠLoc":15181,"available":15182,"ĠFram":15183,"ĠSessions":15184,"Ġcompanion":15185,"Ġpacks":15186,"140":15187,"ĠKnights":15188,"Ġfart":15189,"Ġstreams":15190,"Ġshore":15191,"Ġappeals":15192,"ĠPerformance":15193,"haul":15194,"ĠStra":15195,"ĠNag":15196,"103":15197,"ĠTransportation":15198,"BB":15199,"Ev":15200,"zan":15201,"Public":15202,"Ġtwin":15203,"ulsion":15204,"Mult":15205,"Ġelectro":15206,"Ġstatue":15207,"ationally":15208,"ĠNort":15209,"Ġinspection":15210,"/*":15211,"igue":15212,"Ġcompassion":15213,"ĠTales":15214,"ĠStein":15215,"ĠScreen":15216,"ĠBug":15217,"ĠLion":15218,"girl":15219,"Ġwithdrawal":15220,"Ġobjectives":15221,"Ġbloody":15222,"Ġpreliminary":15223,"Ġjacket":15224,"Ġdimensions":15225,"ĠCool":15226,"ĠOccup":15227,"Ġwreck":15228,"Ġdoubled":15229,"anking":15230,"Ġ1975":15231,"Ġglasses":15232,"ĠWang":15233,"prov":15234,"Path":15235,"connected":15236,"ĠMulti":15237,"ĠNorway":15238,"agonist":15239,"Ġfeared":15240,"Ġtouching":15241,"Ġarguably":15242,"¯¯¯¯¯¯¯¯":15243,"ĠNCAA":15244,"chem":15245,"Ġspat":15246,"ĠWWE":15247,"ĠCel":15248,"igger":15249,"Ġattacker":15250,"ĠJoin":15251,"object":15252,"etta":15253,"Ġeliminated":15254,"det":15255,"Ġdestruct":15256,"ĠLucas":15257,"ctuary":15258,"180":15259,"ĠBrady":15260,"ĠBlues":15261,"Bay":15262,"aukee":15263,"Ġtimeline":15264,"Ġdelegates":15265,"written":15266,"ufficient":15267,"Ġshapes":15268,"Copyright":15269,"ouble":15270,"service":15271,"Ġpione":15272,"Ġcolleges":15273,"Ġrows":15274,"Ġspite":15275,"Ġassessed":15276,"360":15277,"Ġlease":15278,"Ġconfidential":15279,"cker":15280,"ĠManning":15281,"ĠVoice":15282,"Ġsealed":15283,"Ġcalculate":15284,"NO":15285,"ĠAssistant":15286,"Ġteenager":15287,"ulent":15288,"atherine":15289,"Ġmock":15290,"Ġdiamond":15291,"Ġfest":15292,"Ġswitched":15293,"Ġresume":15294,"ĠPuerto":15295,"Ġlanes":15296,"iration":15297,"ĠSimilarly":15298,"Ġrod":15299,"ĠSel":15300,"ĠPalace":15301,"ĠLimited":15302,"eous":15303,"Ġvariant":15304,"Ġward":15305,"Ġ))":15306,"Show":15307,"OOK":15308,"Alex":15309,"ĠNep":15310,"bris":15311,"ĠWikipedia":15312,"Ġexceptional":15313,"Ġmanages":15314,"ĠDraw":15315,"Again":15316,"Ġcopper":15317,"utt":15318,"Ġexports":15319,"Ġportfolio":15320,"Ġelevated":15321,"Rated":15322,"ĠOtherwise":15323,"ĠTact":15324,"ĠShel":15325,"ĠTX":15326,"\"âĢĶ":15327,"Ġresur":15328,"ĠWa":15329,"venant":15330,"Ġmonetary":15331,"people":15332,"Email":15333,"Ġfifty":15334,"ĠSweet":15335,"ĠMalaysia":15336,"Ġconfusing":15337,"ĠRio":15338,"uda":15339,"utenant":15340,"\");":15341,"Ġpraised":15342,"Ġvolumes":15343,"turn":15344,"Ġmature":15345,"Ġnonprofit":15346,"Ġpassionate":15347,"ĠPrivate":15348,"Ġ103":15349,"Ġdescend":15350,"ç¥ŀ":15351,"uffy":15352,"headed":15353,"Whether":15354,"rien":15355,"zech":15356,"beit":15357,"Ġchrom":15358,"ĠMcM":15359,"Ġdancing":15360,"Ġeleg":15361,"ĠNoticed":15362,"115":15363,"Ġadvocacy":15364,"ENTS":15365,"ambling":15366,"ĠMinor":15367,"ĠFinn":15368,"Ġpriorities":15369,"Ġthereof":15370,"ĠStage":15371,"ĠRogers":15372,"Ġsubstitute":15373,"ĠJar":15374,"ĠJefferson":15375,"Ġlightly":15376,"102":15377,"ĠLisa":15378,"uits":15379,"ysical":15380,"Ġshifts":15381,"Ġdrones":15382,"Ġworkplace":15383,"Ġresid":15384,"ensed":15385,"ahn":15386,"Ġpreferences":15387,"server":15388,"Ġdebates":15389,"doc":15390,"ĠGods":15391,"Ġhelicopter":15392,"Ġhonour":15393,"Ġconsiderably":15394,"eded":15395,"ĠFemale":15396,"ĠAnne":15397,"Ġreun":15398,"ĠFace":15399,"ĠHallow":15400,"ĠBudget":15401,"Ġcondemn":15402,"Ġtender":15403,"Prof":15404,"ocratic":15405,"ĠTurner":15406,"ĠAgric":15407,"Ġ1976":15408,"Ġapt":15409,"disc":15410,"ĠFighter":15411,"ĠAur":15412,"Ġgarbage":15413,"input":15414,"ĠKarl":15415,"ĠOliver":15416,"ĠLanguage":15417,"kn":15418,"Non":15419,"ĠClar":15420,"Ġtraditions":15421,"Ġadvertisement":15422,"ĠSor":15423,"Ġarchive":15424,"Ġvillages":15425,"750":15426,"Ġimplementing":15427,"waukee":15428,"Ġdietary":15429,"Ġswitching":15430,"Republic":15431,"Ġvelocity":15432,"Ġcit":15433,"ĠAwards":15434,"Ġfinancing":15435,"Ġlasted":15436,")]":15437,"Ġreminder":15438,"Person":15439,"Ġprecision":15440,"Ġdesigners":15441,"ĠFried":15442,"ĠBorder":15443,"Ġtragic":15444,"Ġwield":15445,"Ġinitiatives":15446,"ĠTank":15447,"wer":15448,"Ġjoins":15449,"Ro":15450,"inery":15451,"Ġarrow":15452,"Ġgenerating":15453,"founder":15454,"Ġsearches":15455,"Ġrandomly":15456,"Access":15457,"Ġbatch":15458,"Ġposed":15459,"lat":15460,"Ġpursuing":15461,"asa":15462,"Ġtestified":15463,"forming":15464,"ĠShar":15465,"wiki":15466,"ĠEither":15467,"Sometimes":15468,"Ġsenators":15469,"ĠJohnny":15470,"ĠTaliban":15471,"ĠGPS":15472,"\":\"/":15473,"ãģ®å":15474,"Ġanalyzed":15475,"ĠRubio":15476,"ĠMovement":15477,"opard":15478,"iii":15479,"Stand":15480,"fight":15481,"Ġignoring":15482,"iang":15483,"ĠGN":15484,"soever":15485,"ĠSTAT":15486,"Ġrefusing":15487,"Ġsweat":15488,"Ġbay":15489,"PORT":15490,"irmed":15491,"aky":15492,"Ġdispro":15493,"Ġlabeled":15494,"Ġ108":15495,"Hello":15496,"Ġpleasant":15497,"aba":15498,"Ġtriumph":15499,"Ġaboard":15500,"Ġincom":15501,"ĠCrow":15502,"lett":15503,"Ġfolk":15504,"Ġchase":15505,"``":15506,"ĠBrus":15507,"Ġteens":15508,"cue":15509,"Ġterrain":15510,"hyd":15511,"ilight":15512,"ORY":15513,"Support":15514,"ews":15515,"lli":15516,"raints":15517,"ĠCand":15518,"Ġabused":15519,"achment":15520,"larg":15521,"Bas":15522,"ĠCancer":15523,"Ġ1978":15524,"Ġsupporter":15525,"access":15526,"ĠTermin":15527,"ĠTampa":15528,"ĠANY":15529,"Ġnewest":15530,"ĠCriminal":15531,"edu":15532,"Ġ1930":15533,"Ġadmits":15534,"Ġende":15535,"Ġfailures":15536,"urate":15537,"fulness":15538,"cycl":15539,"ĠSubject":15540,"Ġinfinite":15541,"three":15542,"WA":15543,"pit":15544,"ĠInstall":15545,"Rad":15546,"iliation":15547,"GM":15548,"Ġcontinent":15549,"Ġaccommodate":15550,"ĠClay":15551,"Ġpup":15552,"ĠFunction":15553,"Ġhammer":15554,"ĠAlberta":15555,"Ġrevised":15556,"Ġminorities":15557,"Ġmeasurement":15558,"Connell":15559,"Ġdisable":15560,"ĠMix":15561,"Incre":15562,"Ġfork":15563,"ĠRosen":15564,"Ġimplies":15565,"umblr":15566,"ANG":15567,"Ġproteins":15568,"Ġaggression":15569,"Ġfacilitate":15570,"SN":15571,"Ġillegally":15572,"uer":15573,"Ġacadem":15574,"Ġpuzz":15575,"ĠShift":15576,"pay":15577,"ollo":15578,"Ġaudiences":15579,"Build":15580,"Ġnoble":15581,"Ġsyntax":15582,"âĺħ":15583,"Ġbeam":15584,"ĠBed":15585,"ĠAld":15586,"Ġorigins":15587,"video":15588,"Ġ1977":15589,"ĠAssault":15590,"Ġgarage":15591,"Team":15592,"Ġverdict":15593,"Ġdwar":15594,"ĠVirtual":15595,"event":15596,"Keep":15597,"Ġsentiment":15598,"Ġwildlife":15599,"shirt":15600,"Ġburg":15601,"Ġrecommendation":15602,"represent":15603,"Ġgallery":15604,"owners":15605,"Ġscholar":15606,"Ġconvenience":15607,"ĠSwift":15608,"Ġconvinc":15609,"Cap":15610,"Ġwarfare":15611,"ĠVisual":15612,"Ġconstitute":15613,"Ġabort":15614,"ĠWeather":15615,"ĠLooking":15616,"ĠHem":15617,"Ġmartial":15618,"Ġincoming":15619,"etition":15620,"Ġtolerance":15621,"ĠCreated":15622,"Ġflows":15623,"ĠElder":15624,"Ġsouls":15625,"Ġfoul":15626,"ĠPain":15627,"ĠCAN":15628,"Ġ220":15629,"bc":15630,"hend":15631,"Ġgenius":15632,"Real":15633,"ĠWr":15634,"ometer":15635,"pad":15636,"Ġlimiting":15637,"ĠSi":15638,"ĠLore":15639,"ĠAdventures":15640,"Ġvaried":15641,"Disc":15642,"fin":15643,"ĠPersonal":15644,"Chris":15645,"Ġinvented":15646,"Ġdive":15647,"ĠRise":15648,"Ġoz":15649,"ĠComics":15650,"Ġexpose":15651,"ĠReb":15652,"letters":15653,"site":15654,"imated":15655,"Ġhacking":15656,"Ġeducated":15657,"ĠNobody":15658,"Ġdepri":15659,"Ġincentive":15660,"ãĤ·":15661,"Ġoversight":15662,"Ġtribes":15663,"ĠBelgium":15664,"Ġlicensing":15665,"ourt":15666,"Product":15667,"ahl":15668,"ĠGem":15669,"Ġspecialist":15670,"Ġcra":15671,"anners":15672,"ĠCorbyn":15673,"Ġ1973":15674,"READ":15675,"Ġsummar":15676,"Ġoverlook":15677,"ĠApplication":15678,"Ġinappropriate":15679,"Ġdownloaded":15680,"Que":15681,"ĠBears":15682,"Ġthumb":15683,"ĠCharacter":15684,"ĠReincarnated":15685,"ĠSid":15686,"Ġdemonstrates":15687,"sky":15688,"ĠBloomberg":15689,"ĠArray":15690,"ĠResults":15691,"ĠFourth":15692,"ĠEDT":15693,"ĠOscar":15694,"cend":15695,"Ġ106":15696,"ĠNULL":15697,"ĠHERE":15698,"match":15699,"ĠBrun":15700,"Ġglucose":15701,"ieg":15702,"egu":15703,"Ġcertified":15704,"Ġrelie":15705,"Ġhumanitarian":15706,"Ġprayers":15707,"King":15708,"Ġnan":15709,"hou":15710,"108":15711,"ulu":15712,"Ġrenewable":15713,"Ġdistinguish":15714,"Ġdense":15715,"ĠVent":15716,"ĠPackage":15717,"ĠBoss":15718,"Ġeditors":15719,"Ġmigr":15720,"Tra":15721,"ĠPeters":15722,"ĠArctic":15723,"2004":15724,"ĠCape":15725,"Ġlocally":15726,"Ġlasting":15727,"Ġhandy":15728,".).":15729,"Pan":15730,"ĠRES":15731,"Index":15732,"Ġtensions":15733,"Ġformerly":15734,"Ġideological":15735,"Ġsensors":15736,"Ġdealers":15737,"Ġdefines":15738,"Sk":15739,"Ġproceeds":15740,"Ġproxy":15741,"azines":15742,"ĠBash":15743,"ĠPad":15744,"ĠCraft":15745,"ealous":15746,"Ġsheets":15747,"ometry":15748,"June":15749,"clock":15750,"TT":15751,"ĠTheatre":15752,"ĠBuzz":15753,"Ġchapters":15754,"Ġmillenn":15755,"Ġdough":15756,"ĠCongressional":15757,"Ġimagined":15758,"avior":15759,"Ġclinic":15760,"Ġ1945":15761,"Ġholder":15762,"root":15763,"olester":15764,"Ġrestart":15765,"BN":15766,"ĠHamas":15767,"ĠJob":15768,"Ġorb":15769,"Ġram":15770,"Ġdisclose":15771,"Ġtranslate":15772,"Ġimmigrant":15773,"Ġannoying":15774,"Ġtreaty":15775,"anium":15776,"ĠTea":15777,"ĠLegion":15778,"Ġcrowds":15779,"ĠBec":15780,"ĠAer":15781,"ohyd":15782,"Bro":15783,"Looking":15784,"Ġlbs":15785,"Ġaggress":15786,"Ġseam":15787,"Ġintercept":15788,"ĠMI":15789,"mercial":15790,"activ":15791,"ĠCit":15792,"Ġdimension":15793,"Ġconsistency":15794,"Ġrushing":15795,"ĠDouglas":15796,"Ġtrim":15797,"Install":15798,"icker":15799,"Ġshy":15800,"106":15801,"Ġmentions":15802,"pelled":15803,"ĠTak":15804,"cost":15805,"Ġclassroom":15806,"Ġfortune":15807,"driven":15808,"Ġunle":15809,"ĠWheel":15810,"Ġinvestor":15811,"ĠMasters":15812,"kit":15813,"Ġassociations":15814,"ĠEvolution":15815,"oping":15816,"uscript":15817,"Ġprovincial":15818,"ĠWalter":15819,"avi":15820,"SO":15821,"Ġunlimited":15822,"English":15823,"ĠCards":15824,"ĠEbola":15825,"nered":15826,"Ġrevenge":15827,"Ġoutright":15828,"umper":15829,"Ġfitting":15830,"ĠSolid":15831,"Ġformally":15832,"Ġproblematic":15833,"Ġhazard":15834,"Ġencryption":15835,"Ġstraightforward":15836,"ĠAK":15837,"Ġpse":15838,"ĠOrb":15839,"ĠChamber":15840,"ĠMak":15841,"Contents":15842,"Ġloyalty":15843,"Ġlyrics":15844,"ĠSym":15845,"Ġwelcomed":15846,"Ġcooked":15847,"Ġmonop":15848,"Ġnurse":15849,"Ġmisleading":15850,"Ġeternal":15851,"Ġshifting":15852,"Ġ+=":15853,"Vis":15854,"Ġinstitutional":15855,"illary":15856,"Ġpant":15857,"VERT":15858,"ĠACC":15859,"ĠEnh":15860,"Ġincon":15861,"ĠREUTERS":15862,"Ġdonated":15863,"â̦â̦â̦â̦":15864,"Intern":15865,"Ġexhibit":15866,"Ġtire":15867,"ĠRic":15868,"ĠChampion":15869,"ĠMuhammad":15870,"NING":15871,"ĠSoccer":15872,"Ġmobility":15873,"Ġvarying":15874,"ĠMovie":15875,"Ġlord":15876,"oak":15877,"Field":15878,"Ġvector":15879,"usions":15880,"Ġscrap":15881,"Ġenabling":15882,"make":15883,"Tor":15884,".*":15885,"||":15886,"ĠWebsite":15887,"ĠNPC":15888,"Ġsocialist":15889,"ĠBilly":15890,"ĠAdditional":15891,"Ġcargo":15892,"Ġfarms":15893,"ĠSoon":15894,"ĠPrize":15895,"Ġmidnight":15896,"Ġ900":15897,"seen":15898,"ĠSpot":15899,"Ġsheep":15900,"Ġsponsored":15901,"ĠHi":15902,"ĠJump":15903,"Ġ1967":15904,"Microsoft":15905,"ĠAgent":15906,"Ġcharts":15907,"dir":15908,"Ġadjacent":15909,"Ġtricks":15910,"Ġmanga":15911,"Ġexagger":15912,"/>":15913,"football":15914,"ĠFCC":15915,"GC":15916,"ĠTier":15917,"andra":15918,"OUND":15919,"%),":15920,"Ġfruits":15921,"VC":15922,"ĠAA":15923,"Rober":15924,"Ġmidst":15925,"âĹ":15926,"anka":15927,"Ġlegislature":15928,"ĠNeil":15929,"Ġtourists":15930,"\"\"":15931,"ĠWarning":15932,"ĠNevertheless":15933,"ĠOfficial":15934,"ĠWhatever":15935,"Ġmold":15936,"Ġdrafted":15937,"Ġsubstances":15938,"Ġbreed":15939,"Ġtags":15940,"ĠTask":15941,"Ġverb":15942,"Ġmanufactured":15943,"comments":15944,"ĠPolish":15945,"Prov":15946,"Ġdetermines":15947,"Obama":15948,"kers":15949,"Ġutterly":15950,"Ġsect":15951,"sche":15952,"ĠGates":15953,"ĠChap":15954,"Ġaluminum":15955,"Ġzombie":15956,"ĠTouch":15957,"ĠUP":15958,"Ġsatisfy":15959,"Ġpredomin":15960,"ascript":15961,"Ġelaborate":15962,"Ġ1968":15963,"Ġmeasuring":15964,"ĠVari":15965,"anyahu":15966,"Ġsir":15967,"ulates":15968,"idges":15969,"ickets":15970,"ĠSpencer":15971,"TM":15972,"oubted":15973,"Ġprey":15974,"Ġinstalling":15975,"ĠCab":15976,"reed":15977,"reated":15978,"Supp":15979,"Ġwrist":15980,"ĠKerry":15981,"107":15982,"ĠKle":15983,"ĠRachel":15984,"Ġcotton":15985,"ĠARE":15986,"ĠEle":15987,"Control":15988,"Ġloads":15989,"ĠDod":15990,"anas":15991,"bone":15992,"Ġclassical":15993,"ĠRegional":15994,"ĠInteg":15995,"VM":15996,"Ġdesires":15997,"Ġautism":15998,"supported":15999,"ĠMessage":16000,"Ġcompact":16001,"writer":16002,"Ġ109":16003,"ĠHurricane":16004,"cision":16005,"Ġcycles":16006,"Ġdrill":16007,"Ġcolleague":16008,"Ġmaker":16009,"German":16010,"Ġmistaken":16011,"Sun":16012,"ĠGay":16013,"Ġwhatsoever":16014,"Ġsells":16015,"ĠAirl":16016,"liv":16017,"ĠOption":16018,"Ġsolved":16019,"Ġsectors":16020,"Ġhorizontal":16021,"Ġequation":16022,"ĠSkill":16023,"ĠBio":16024,"gement":16025,"ĠSnap":16026,"ĠLegal":16027,"Ġtrademark":16028,"Ġmakeup":16029,"Ġassembled":16030,"Ġsaves":16031,"ĠHalloween":16032,"ĠVermont":16033,"ĠFROM":16034,"Ġfarming":16035,"ĠPodcast":16036,"acceptable":16037,"ĠHigher":16038,"Ġasleep":16039,"ullivan":16040,"Ġreferen":16041,"ĠLev":16042,"Ġbullets":16043,"oko":16044,"HC":16045,"Ġstairs":16046,"Ġmaintains":16047,"ĠLower":16048,"ĠVi":16049,"Ġmarine":16050,"Ġacres":16051,"Ġcoordinator":16052,"ĠJoh":16053,"Ġcounterparts":16054,"ĠBrothers":16055,"Ġindict":16056,"bra":16057,"Ġchunk":16058,"Ġcents":16059,"Home":16060,"ĠMonth":16061,"Ġaccordingly":16062,"ifles":16063,"ĠGermans":16064,"ĠSyn":16065,"Hub":16066,"Ġeyeb":16067,"âĶĢâĶĢâĶĢâĶĢ":16068,"Ġranges":16069,"ĠHolland":16070,"ĠRobot":16071,"fc":16072,"Mike":16073,"Ġplasma":16074,"Ġswap":16075,"Ġathlete":16076,"ĠRams":16077,",'\"":16078,"Ġinfections":16079,"Ġcorrid":16080,"Ġvib":16081,"Ġpatches":16082,"Ġtraditionally":16083,"Ġrevelation":16084,"Ġsweep":16085,"Ġglance":16086,"Ġinex":16087,"2003":16088,"ĠRaw":16089,"working":16090,"osures":16091,"ĠDat":16092,"ĠLynch":16093,"Ġleverage":16094,"ĠReid":16095,"Ġcorrelation":16096,"iances":16097,"avascript":16098,"Ġrepository":16099,"retty":16100,"Ġ1972":16101,"240":16102,"Ġoun":16103,"pol":16104,"ĠReed":16105,"Ġtactical":16106,"isite":16107,"Apple":16108,"ĠQuinn":16109,"Ġraped":16110,"illo":16111,"Europe":16112,"Ġalgorithms":16113,"ĠRodrig":16114,"iu":16115,"Ġillum":16116,"Ġfame":16117,"Ġintroducing":16118,"Ġdelays":16119,"ĠRaiders":16120,"Ġwhistle":16121,"Ġnovels":16122,"ĠReally":16123,"Ġderiv":16124,"Ġpublications":16125,"ĠNeither":16126,"ĠCommerce":16127,"Ġaston":16128,"language":16129,"Notes":16130,"ĠRoth":16131,"ĠFear":16132,"Ġmate":16133,"Ġparade":16134,"ĠQB":16135,"Ġmaneu":16136,"ĠCincinnati":16137,"mitting":16138,"Ġwaist":16139,"ĠRew":16140,"Ġdiscont":16141,"а":16142,"Ġstaring":16143,"Ġalias":16144,"Ġsecurities":16145,"Ġtoilet":16146,"ĠJedi":16147,"Ġunlaw":16148,"vised":16149,"////////":16150,"](":16151,"ĠWeiss":16152,"Ġprest":16153,"ĠCompan":16154,"Ġmemo":16155,"ĠGrace":16156,"July":16157,"ĠElite":16158,"center":16159,"ĠStay":16160,"Ġgalaxy":16161,"Ġtooth":16162,"ĠSettings":16163,"Ġsubjected":16164,"ãĤ¦":16165,"Ġlineback":16166,"Ġretailers":16167,"ĠWant":16168,"Ġdangers":16169,"Air":16170,"Ġvoluntary":16171,"eway":16172,"Ġinterpreted":16173,"otine":16174,"ç":16175,"Ġpel":16176,"Service":16177,"ĠEventually":16178,"Ġcareers":16179,"Ġthreaten":16180,"Ġmemor":16181,"ĠBradley":16182,"ancies":16183,"sn":16184,"ĠUnknown":16185,"National":16186,"Ġshadows":16187,"ailand":16188,"ĠDash":16189,"Everyone":16190,"izzard":16191,"March":16192,"=(":16193,"Ġpulls":16194,"Ġstranger":16195,"Ġbackwards":16196,"ĠBernard":16197,"imensional":16198,"Ġchron":16199,"Ġtheoretical":16200,"ktop":16201,"Ġware":16202,"ĠInvestig":16203,"ĠIniti":16204,"ĠOperations":16205,"oven":16206,"ocide":16207,"*/":16208,"Ġflames":16209,"ĠCash":16210,"shit":16211,"Ġcab":16212,"ĠAnaly":16213,"ĠSeah":16214,"Ġdefining":16215,"Ġordering":16216,"Ġimmun":16217,"Ġpersistent":16218,"ACH":16219,"Russian":16220,"mans":16221,"Ġhind":16222,"Ġphotography":16223,"©":16224,"Ġhug":16225,"Ġ107":16226,"ĠHence":16227,"iots":16228,"udeau":16229,"Ġsubsidies":16230,"Ġroutinely":16231,"ĠDevice":16232,"itic":16233,"Ġdisgust":16234,"lander":16235,"Ġ1940":16236,"Ġassignment":16237,"ĠBesides":16238,"wick":16239,"ĠDust":16240,"usc":16241,"structed":16242,"111":16243,"develop":16244,"Ġfond":16245,"Ġintersection":16246,"Ġdignity":16247,"Ġcommissioner":16248,"Without":16249,"reach":16250,"Ġcartoon":16251,"Ġscales":16252,"ãĥŃ":16253,"FIG":16254,"Ġsurveys":16255,"ĠIndonesia":16256,"Ġartwork":16257,"Ġunch":16258,"Ġcycling":16259,"unct":16260,"auer":16261,"orate":16262,"ĠObviously":16263,"Ġcharacterized":16264,"feld":16265,"Ġaffirm":16266,"Ġinnings":16267,"Ġé":16268,"Ġaliens":16269,"Ġcloth":16270,"etooth":16271,"ĠCertain":16272,"§":16273,"Ġdigest":16274,"know":16275,"ĠXL":16276,"Ġpredictions":16277,"Ġdin":16278,"WAR":16279,"Ġaftermath":16280,"Example":16281,"ĠSuccess":16282,"ĠThr":16283,"IGN":16284,"Ġminer":16285,"Bus":16286,"Ġclarity":16287,"heimer":16288,"ĠOUT":16289,"ĠSend":16290,"ĠCircle":16291,"ĠDiet":16292,"Ġpronounced":16293,"Ġcreators":16294,"Ġearthquake":16295,"attery":16296,"geons":16297,"Ġod":16298,"Ġlaying":16299,"orp":16300,"Ult":16301,"project":16302,"Ġundermin":16303,"Ġsequel":16304,"Sam":16305,"ĠDarkness":16306,"Ġreception":16307,"bull":16308,"YS":16309,"ĠVir":16310,"Ġsequences":16311,"ĠCoin":16312,"Ġoutfit":16313,"ĠWait":16314,"119":16315,"Ġdelivers":16316,"......":16317,"Ġblown":16318,"ĠEsc":16319,"ĠMath":16320,"perm":16321,"ĠUl":16322,"Ġglim":16323,"Ġfacial":16324,"Ġgreenhouse":16325,"Ġtokens":16326,"/-":16327,"ĠAnnual":16328,"ĠONE":16329,"Ġteenage":16330,"ĠPhysical":16331,"ĠLang":16332,"ĠCelt":16333,"Ġsued":16334,"ividually":16335,"Ġpatience":16336,"chair":16337,"regular":16338,"Ġaug":16339,"inv":16340,"except":16341,"ĠLil":16342,"Ġnest":16343,"fd":16344,"sum":16345,"ĠChase":16346,"Russia":16347,"ĠJennifer":16348,"Ġoffseason":16349,"Overall":16350,"Fore":16351,"Ġriot":16352,"Aud":16353,"former":16354,"Ġdefenders":16355,"ĠCT":16356,"iotic":16357,"ribly":16358,"Ġautomated":16359,"Ġpenis":16360,"Ġinsist":16361,"Ġdiagram":16362,"ĠSQL":16363,"ĠGarc":16364,"Ġwitch":16365,"client":16366,"ierra":16367,"ambers":16368,"Ġrecount":16369,"far":16370,"Very":16371,"osterone":16372,"Ġappreciated":16373,"ĠPerfect":16374,"Section":16375,"Ġdoses":16376,"ocaust":16377,"Ġcostly":16378,"Ġgrams":16379,"ĠShi":16380,"Ġwrestling":16381,"Ġ1971":16382,"Ġtrophy":16383,"Ġnerve":16384,"ĠKaz":16385,"ĠExperience":16386,"Ġpledged":16387,"Ġplayback":16388,"Ġcreativity":16389,"bye":16390,"Ġattackers":16391,"Ġholders":16392,"ĠCoach":16393,"ĠPhD":16394,"Ġtransfers":16395,"Ġcolored":16396,"ĠHindu":16397,"Ġdrown":16398,"Ġlistened":16399,"ĠWA":16400,"iasm":16401,"PO":16402,"Ġappealing":16403,"Ġdisclosed":16404,"ĠChicken":16405,"agging":16406,"Ġpleaded":16407,"Ġnavigation":16408,"ĠReturns":16409,"Ġ[[":16410,"ROR":16411,"EA":16412,"Ġphotographer":16413,"ĠRider":16414,"ippers":16415,"Ġslice":16416,"Ġerect":16417,"Ġhed":16418,"issance":16419,"ĠVikings":16420,"urious":16421,"Ġappet":16422,"oubtedly":16423,"Child":16424,"Ġauthentic":16425,"oos":16426,"ĠMaking":16427,"Ġannouncing":16428,"Ġbod":16429,"Ġmeter":16430,"ĠNine":16431,"ĠRogue":16432,"Ġworkforce":16433,"Ġrenewed":16434,"Ġorganisations":16435,"acs":16436,"PLE":16437,"Short":16438,"Ġcompounds":16439,"ĠVisit":16440,"Ġenvelop":16441,"earth":16442,"Ġsupportive":16443,"ggle":16444,"ĠBrussels":16445,"ĠGuild":16446,"Create":16447,"REL":16448,"Ġaveraged":16449,"Ġ1969":16450,"riages":16451,"Ġlengthy":16452,"Ġforgot":16453,"Okay":16454,"ĠErd":16455,"Ġdealer":16456,"Ġrecession":16457,"DD":16458,"Ġdesperately":16459,"Ġhunger":16460,"Ġsticks":16461,"Ġmph":16462,"ĠFaith":16463,"Ġintentionally":16464,"Ġdemol":16465,"ueller":16466,"ĠSale":16467,"Ġdebris":16468,"spring":16469,"Ġleap":16470,">>>>":16471,"Ġcontainers":16472,"selling":16473,"ranean":16474,"attering":16475,"Ġcommented":16476,"ĠCM":16477,"onut":16478,"Ġwoods":16479,"especially":16480,"Ġorganize":16481,"ivic":16482,"ĠWoods":16483,"anga":16484,"squ":16485,"Ġmaj":16486,"amon":16487,"Ġaxis":16488,"Ġ1974":16489,"ĠDenmark":16490,"Ġwarrior":16491,"ĠPand":16492,"Ġoutlined":16493,"ĠBO":16494,"insula":16495,"zilla":16496,"ebook":16497,"Ġdare":16498,"Ġsearched":16499,"Ġnavigate":16500,"Sn":16501,"writing":16502,"Ġunited":16503,"Japan":16504,"ĠHebrew":16505,"Ġflame":16506,"Ġrelies":16507,"Ġcatching":16508,"ĠSho":16509,"Ġimprisonment":16510,"Ġpockets":16511,"Ġclosure":16512,"ĠFam":16513,"tim":16514,"adequ":16515,"Activity":16516,"Ġrecruiting":16517,"ĠWATCH":16518,"ĠArgentina":16519,"dest":16520,"Ġapologize":16521,"oro":16522,"Ġlacks":16523,"Ġtuned":16524,"ĠGriffin":16525,"Ġinfamous":16526,"Ġcelebrity":16527,"sson":16528,"Ġ----------------------------------------------------------------":16529,"ĠIsis":16530,"ĠDisplay":16531,"Ġcredibility":16532,"Ġeconomies":16533,"Ġheadline":16534,"ĠCowboys":16535,"Ġindef":16536,"Ġlately":16537,"Ġincentives":16538,"button":16539,"ĠMob":16540,"Aut":16541,"Ġresigned":16542,"ĠOm":16543,"camp":16544,"Ġprofiles":16545,"Ġschemes":16546,"olphins":16547,"ayed":16548,"Clinton":16549,"enh":16550,"ĠYahoo":16551,"Ġabst":16552,"Ġank":16553,"suits":16554,"Ġwished":16555,"ĠMarco":16556,"udden":16557,"Ġsphere":16558,"ĠBishop":16559,"Ġincorporated":16560,"ĠPlant":16561,"114":16562,"Ġhated":16563,"pic":16564,"Ġdonate":16565,"Ġlined":16566,"Ġbeans":16567,"Ġstealing":16568,"Ġcostume":16569,"Ġsheriff":16570,"Ġforty":16571,"Ġintact":16572,"Ġadapted":16573,"Ġtravelling":16574,"bart":16575,"Ġnicely":16576,"Ġdried":16577,"Ġscal":16578,"osity":16579,"NOTE":16580,"ĠBh":16581,"ĠBroncos":16582,"ĠIgn":16583,"Ġintimate":16584,"Ġchemistry":16585,"Ġoptimal":16586,"Deb":16587,"ĠGeneration":16588,"Ġ],":16589,"ichi":16590,"ĠWii":16591,"ĠYOUR":16592,"ventions":16593,"Write":16594,"Ġpopul":16595,"unning":16596,"ĠWor":16597,"Vol":16598,"Ġqueen":16599,"heads":16600,"KK":16601,"Ġanalyze":16602,"opic":16603,"earchers":16604,"Ġdot":16605,"legraph":16606,"astically":16607,"Ġupgrades":16608,"Ġcares":16609,"Ġextending":16610,"Ġfreeze":16611,"Ġinability":16612,"Ġorgans":16613,"Ġpretend":16614,"Ġoutlet":16615,"113":16616,"olan":16617,"ĠMall":16618,"uling":16619,"talk":16620,"Ġexpressing":16621,"ĠAlways":16622,"ĠBegin":16623,"files":16624,"Ġlicenses":16625,"%%":16626,"ĠMitt":16627,"Ġfilters":16628,"ĠMilwaukee":16629,"GN":16630,"Ġunfold":16631,"Mo":16632,"Ġnutrition":16633,"ppo":16634,"Bo":16635,"Ġfounding":16636,"Ġundermine":16637,"Ġeasiest":16638,"ĠCzech":16639,"ĠMack":16640,"Ġsexuality":16641,"ĠNixon":16642,"Win":16643,"ĠArn":16644,"ĠKin":16645,"ãĤ£":16646,"icer":16647,"Ġfortun":16648,"Ġsurfaces":16649,"aghd":16650,"Ġcarriers":16651,"ĠPART":16652,"ĠTib":16653,"Ġinterval":16654,"Ġfrustrating":16655,"ĠShip":16656,"ĠArmed":16657,"ffe":16658,"Ġboats":16659,"ĠAbraham":16660,"inis":16661,"Ġsuited":16662,"thread":16663,"iov":16664,"abul":16665,"ĠVenezuela":16666,"Ġtom":16667,"super":16668,"Ġcastle":16669,"although":16670,"ioxide":16671,"eches":16672,"Ġevolutionary":16673,"Ġnegotiate":16674,"Ġconfronted":16675,"Remember":16676,"Ġ170":16677,"Such":16678,"Ġ911":16679,"mult":16680,"ĠAbyss":16681,"urry":16682,"kees":16683,"spec":16684,"ĠBarbara":16685,"Ġbelonging":16686,"Ġvillain":16687,"istani":16688,"Ġaccountable":16689,"Ġportions":16690,"ĠDecl":16691,"Ur":16692,"ĠKate":16693,"gre":16694,"Ġmagazines":16695,"UCK":16696,"Ġregulate":16697,"omon":16698,"ĠAlmost":16699,"Ġoverview":16700,"Ġscram":16701,"Ġloot":16702,"ĠFitz":16703,"Ġcharacteristic":16704,"ĠSnake":16705,"say":16706,"ĠRico":16707,"Ġtrait":16708,"ĠJoined":16709,"aucus":16710,"Ġadaptation":16711,"ĠAirlines":16712,"Ġarchae":16713,"ĠIde":16714,"Ġbikes":16715,"Ġliterary":16716,"Ġinfluences":16717,"ĠUsed":16718,"Creat":16719,"Ġplea":16720,"ĠDefence":16721,"ĠAssass":16722,"Ġpond":16723,"ULT":16724,")\"":16725,"Ġevaluated":16726,"Ġobtaining":16727,"Ġdemographic":16728,"Ġvigil":16729,"aley":16730,"Ġspouse":16731,"ĠSeahawks":16732,"respons":16733,"ĠBelt":16734,"umatic":16735,"Ġrises":16736,"runner":16737,"ĠMichelle":16738,"Ġpotent":16739,"race":16740,"ĠPAC":16741,"Find":16742,"olesterol":16743,"ISS":16744,"ĠIntroduced":16745,"resses":16746,"ignment":16747,"Os":16748,"ĠTu":16749,"ĠDex":16750,"icides":16751,"Ġsparked":16752,"ĠLaura":16753,"ĠBryant":16754,"Ġsmiling":16755,"ĠNexus":16756,"Ġdefendants":16757,"ĠCatal":16758,"Ġdishes":16759,"shaped":16760,"Ġprolong":16761,"mt":16762,"($":16763,"ãĢĤ":16764,"Ġcalculations":16765,"ĠSame":16766,"Ġpiv":16767,"HH":16768,"Ġcancelled":16769,"Ġgrin":16770,"Ġterritories":16771,"istically":16772,"Come":16773,"ĠParent":16774,"Project":16775,"Ġneglig":16776,"ĠPrivacy":16777,"Ġammo":16778,"LECT":16779,"olutely":16780,"ĠEpic":16781,"Ġmisunder":16782,"wal":16783,"April":16784,"mos":16785,"pathy":16786,"ĠCarson":16787,"Ġalbums":16788,"ĠEasy":16789,"Ġpistol":16790,"<<":16791,"Ġ\\(":16792,"target":16793,"help":16794,"Ġinterpre":16795,"conscious":16796,"ĠHousing":16797,"ĠJoint":16798,"127":16799,"Ġbeers":16800,"science":16801,"ĠFirefox":16802,"effective":16803,"ĠCabin":16804,"ĠOkay":16805,"ĠApplic":16806,"Ġspacecraft":16807,"ĠSR":16808,"vet":16809,"ĠStrange":16810,"SB":16811,"Ġcorps":16812,"iberal":16813,"efficient":16814,"Ġprevalence":16815,"Ġeconomists":16816,"118":16817,"Thread":16818,"ordable":16819,"ODE":16820,"ĠCant":16821,"=-=-":16822,"ifiable":16823,"ĠAround":16824,"Ġpole":16825,"Ġwillingness":16826,"CLA":16827,"ĠKid":16828,"Ġcomplement":16829,"Ġscattered":16830,"Ġinmates":16831,"Ġbleeding":16832,"every":16833,"Ġqueue":16834,"ĠTrain":16835,"Ġhij":16836,"Ġmelee":16837,"pleted":16838,"Ġdigit":16839,"Ġgem":16840,"official":16841,"Ġlifting":16842,"е":16843,"Requ":16844,"itutes":16845,"Ġpackaging":16846,"ĠWorkers":16847,"hran":16848,"ĠLebanon":16849,"olesc":16850,"Ġpunished":16851,"ĠJuan":16852,"Ġjam":16853,"ĠDocument":16854,"Ġmapping":16855,"icates":16856,"Ġinevitably":16857,"Ġvanilla":16858,"ĠTon":16859,"Ġwatches":16860,"Ġleagues":16861,"Ġinitiated":16862,"degree":16863,"portion":16864,"Ġrecalls":16865,"Ġruin":16866,"Ġmelt":16867,"IAN":16868,"Ġhem":16869,"Exp":16870,"Ġbaking":16871,"ĠColomb":16872,"atible":16873,"Ġradius":16874,"plug":16875,"ĠIF":16876,"etically":16877,"Ġfict":16878,"HER":16879,"ĠTap":16880,"atinum":16881,"Ġink":16882,"Ġcoh":16883,"ĠWizard":16884,"both":16885,"tex":16886,"Ġspends":16887,"ĠCurrently":16888,"ĠPit":16889,"Ġneurons":16890,"ignt":16891,"Ġrall":16892,"Ġbuses":16893,"building":16894,"Ġadjustments":16895,"Ġcried":16896,"iblical":16897,"atted":16898,"ĠZion":16899,"ĠMatter":16900,"Ġmeditation":16901,"ĠDennis":16902,"Ġours":16903,"ĠTab":16904,"Ġrankings":16905,"ortal":16906,"Ġadvers":16907,"Ġsurrender":16908,"ĠGob":16909,"cium":16910,"omas":16911,"imeter":16912,"Ġmultiplayer":16913,"Ġheroin":16914,"Ġoptimistic":16915,"Ġindicator":16916,"ĠBrig":16917,"Ġgrocery":16918,"Ġapplicant":16919,"ĠRocket":16920,"vid":16921,"Exception":16922,"pent":16923,"Ġorganizing":16924,"Ġencounters":16925,"ĠTOD":16926,"Ġjewel":16927,"Save":16928,"ĠChristie":16929,"Ġheating":16930,"Ġlazy":16931,"ĠCP":16932,"Ġcousin":16933,"Config":16934,"Ġregener":16935,"Ġnearest":16936,"Ġachieving":16937,"ENS":16938,"throw":16939,"ĠRichmond":16940,"antle":16941,"2002":16942,"Ġanten":16943,"bird":16944,"133":16945,"Ġnarc":16946,"raint":16947,"unny":16948,"ĠHispanic":16949,"ournaments":16950,"Ġprophe":16951,"ĠThailand":16952,"ĠTi":16953,"Ġinjection":16954,"Ġinherit":16955,"ravis":16956,"Ġmedi":16957,"Ġwhoever":16958,"ĠDEBUG":16959,"GP":16960,"ĠHud":16961,"Card":16962,"prom":16963,"Ġpor":16964,"Ġoverhead":16965,"Law":16966,"Ġviolate":16967,"Ġheated":16968,"Ġdescriptions":16969,"Ġachievements":16970,"ĠBeer":16971,"ĠQuant":16972,"Was":16973,"Ġeighth":16974,"ĠIv":16975,"Ġspecialized":16976,"UPDATE":16977,"ĠDelta":16978,"Pop":16979,"Jul":16980,"ĠAsk":16981,"ophy":16982,"Ġnewsletters":16983,"ĠTool":16984,"Ġgard":16985,"ĠConfeder":16986,"ĠGMT":16987,"ĠAbbott":16988,"Ġimmunity":16989,"ĠVM":16990,"Islam":16991,"Ġimplicit":16992,"wd":16993,"Ġ1944":16994,"ravity":16995,"ometric":16996,"Ġsurviving":16997,"urai":16998,"ĠPrison":16999,"Ġrust":17000,"ĠSketch":17001,"Ġbees":17002,"ĠTheory":17003,"Ġmerit":17004,"Tex":17005,"chat":17006,"Ġmim":17007,"Ġpaste":17008,"ĠKoch":17009,"Ġignorance":17010,"ĠShoot":17011,"Ġbasement":17012,"United":17013,"ĠAdvis":17014,"height":17015,"Ġfoster":17016,"Ġdetain":17017,"information":17018,"Ġneural":17019,"';":17020,"Ġproves":17021,"allery":17022,"Ġinvitation":17023,"umbers":17024,"Ġcattle":17025,"Ġbicycle":17026,"zi":17027,"Ġconsultant":17028,"Ġapology":17029,"ĠTiger":17030,"Ġ123":17031,"999":17032,"Ġindividually":17033,"rt":17034,"igion":17035,"ĠBrazilian":17036,"Ġdisturb":17037,"Ġentrepreneurs":17038,"Ġforests":17039,"cerpt":17040,"plates":17041,"pher":17042,"clipse":17043,"Ġtwitter":17044,"Ġacids":17045,"ographical":17046,"hum":17047,"ĠBald":17048,"ifully":17049,"Ġcompiler":17050,"ĠDA":17051,"Ġdonor":17052,"asi":17053,"Ġtribal":17054,"lash":17055,"ĠConfig":17056,"Ġapplicants":17057,"Ġsalaries":17058,"135":17059,"Putin":17060,"ĠFocus":17061,"irs":17062,"Ġmisconduct":17063,"ĠHaz":17064,"Ġeaten":17065,"Mobile":17066,"Muslim":17067,"ĠMarcus":17068,"viol":17069,"Ġfavorable":17070,"Ġstub":17071,"adin":17072,"ĠHob":17073,"Ġfaithful":17074,"Ġelectronics":17075,"Ġvacuum":17076,"wait":17077,"backed":17078,"economic":17079,"dist":17080,"Ġtenure":17081,"Ġsincere":17082,"ĠTogether":17083,"ĠWave":17084,"Ġprogression":17085,"Ġdenying":17086,"Ġdistress":17087,"braska":17088,"third":17089,"Ġmixing":17090,"Ġcolonial":17091,"Ġprivately":17092,"Ġunrest":17093,"aternity":17094,"Ġpremises":17095,"anti":17096,"gregation":17097,"Ġlicence":17098,"ĠHind":17099,"ĠSamuel":17100,"Ġconvincing":17101,"ĠAce":17102,"ĠRust":17103,"ĠNetanyahu":17104,"Ġhandles":17105,"ĠPatch":17106,"oriented":17107,"aho":17108,"ĠGonz":17109,"Ġhackers":17110,"claimer":17111,"Ġcustoms":17112,"ĠGran":17113,"fighters":17114,"Ġluc":17115,"Ġmanuscript":17116,"arenthood":17117,"Ġdevil":17118,"Ġwarriors":17119,"Ġoffenders":17120,"William":17121,"Ġholidays":17122,"Ġnightmare":17123,"Ġlever":17124,"ifferent":17125,"Stat":17126,"Ġexhibition":17127,"puted":17128,"ĠPure":17129,"Ġalpha":17130,"Ġenthusiasm":17131,"ĠRepresentatives":17132,"EAR":17133,"ĠTyp":17134,"Ġwheat":17135,"ĠAlf":17136,"Ġcorrection":17137,"Ġevangel":17138,"ATT":17139,"Miss":17140,"Ġsoup":17141,"Ġimplied":17142,"param":17143,"Ġsexy":17144,"ĠLux":17145,"Ġrepublic":17146,"patch":17147,"ablish":17148,"Ġicons":17149,"Ġfathers":17150,"ĠGET":17151,"ĠCarib":17152,"Ġregulated":17153,"ĠCohen":17154,"ĠBobby":17155,"Ġner":17156,"Ġbent":17157,"ventory":17158,"ĠAlong":17159,"ĠEST":17160,"ĠWallace":17161,"Ġmurders":17162,"rise":17163,"kell":17164,"ĠCommonwealth":17165,"Ġnasty":17166,"eta":17167,"ĠMIT":17168,"Ġadministered":17169,"Ġgenuinely":17170,"Editor":17171,"nick":17172,"Ġhydro":17173,"********************************":17174,"ĠBle":17175,"Ġfines":17176,"Ġgorge":17177,"ausible":17178,"rh":17179,"Ġapple":17180,"mentioned":17181,"Ġrope":17182,"otyp":17183,"HR":17184,"Ġdisappointing":17185,"Ġcage":17186,"nik":17187,"Ġdoubts":17188,"ĠFREE":17189,"prints":17190,"ĠMUST":17191,"Ġvendors":17192,"ĠInqu":17193,"Ġliberals":17194,"Ġcontractor":17195,"Ġupside":17196,"children":17197,"Ġtricky":17198,"Ġregulators":17199,"charged":17200,"liter":17201,"Ġ***":17202,"Ġrebell":17203,"lang":17204,"Ġlocals":17205,"Ġphysicians":17206,"Ġhey":17207,"arse":17208,"tm":17209,"ĠLex":17210,"Ġbehavioral":17211,"successful":17212,"FX":17213,"Ġbrick":17214,"ovic":17215,"Ġconform":17216,"Ġreviewing":17217,"Ġinsights":17218,"Ġbiology":17219,"ĠRemove":17220,"ĠExtra":17221,"Ġcommitting":17222,"induced":17223,"ignty":17224,"igm":17225,"Ġatomic":17226,"Common":17227,"ĠEM":17228,"ĠPere":17229,"ĠItems":17230,"eh":17231,"Ġpreserved":17232,"ĠHood":17233,"Ġprisoner":17234,"Ġbankruptcy":17235,"Ġgren":17236,"ushes":17237,"Ġexploitation":17238,"Ġsignatures":17239,"Ġfinan":17240,"],\"":17241,"ĠMR":17242,"Ġmeg":17243,"remlin":17244,"Ġmusicians":17245,"Ġselecting":17246,"Ġexamining":17247,"INK":17248,"lated":17249,"Hi":17250,"Ġartic":17251,"Ġpets":17252,"Ġimpair":17253,"ĠMAN":17254,"Ġtablets":17255,"include":17256,"Range":17257,"Ġcaut":17258,"Ġlogs":17259,"Ġmounting":17260,"Ġunaware":17261,"Ġdynamics":17262,"ĠPalestine":17263,"ĠQuarter":17264,"ĠPurple":17265,"Ġma":17266,"ĠImport":17267,"Ġcollections":17268,"ciation":17269,"Ġsuccessor":17270,"Ġclone":17271,"Ġaiming":17272,"Ġpossessed":17273,"Ġsticking":17274,"Ġshaking":17275,"Ġlocate":17276,"ĠHockey":17277,"Turn":17278,"170":17279,"Ġfifteen":17280,"ĠHarrison":17281,"Ġcontinuously":17282,"ĠTC":17283,"ĠValent":17284,"ĠRescue":17285,"Ġbypass":17286,"amount":17287,"Ġmast":17288,"Ġprotects":17289,"Ġartistic":17290,"Ġsometime":17291,"Ġshoe":17292,"Ġshouted":17293,"ificant":17294,"etitive":17295,"ĠRegister":17296,"ĠJin":17297,"Ġconcentrated":17298,"lington":17299,"onies":17300,"Ġgenerator":17301,"yrim":17302,"ĠArmen":17303,"Ġclearing":17304,"ido":17305,"ĠTW":17306,"alph":17307,"Ġladies":17308,"Hard":17309,"Ġdialog":17310,"Ġinputs":17311,"æľ":17312,"Ġposes":17313,"Ġslots":17314,"ĠPremium":17315,"Ġleaks":17316,"Ġbosses":17317,"Ġ113":17318,"course":17319,"Acc":17320,"ĠNewton":17321,"ĠAustria":17322,"ĠMage":17323,"Ġteaches":17324,"abad":17325,"Ġwears":17326,"Ġcyl":17327,"Ġcurse":17328,"ĠSales":17329,"ĠWings":17330,"Ġpsy":17331,"Ġgaps":17332,"ĠIceland":17333,"ĠPinterest":17334,"Ġlandlord":17335,"Ġdefinitions":17336,"ĠKer":17337,"Ġsufficiently":17338,"ĠPence":17339,"ĠArchitect":17340,"Ġsurpass":17341,"Ġ114":17342,"Ġsuperhero":17343,"ĠDisease":17344,"Ġpriests":17345,"ĠCulture":17346,"Ġdefinitive":17347,"Ġsecretly":17348,"ĠDance":17349,"install":17350,"chief":17351,"ĠJessica":17352,"Would":17353,"Updated":17354,"Ġlocker":17355,"ĠKay":17356,"Ġmemorial":17357,"è¦":17358,"fat":17359,"Ġdisgu":17360,"Ġflavors":17361,"ĠBaseball":17362,"ĠResistance":17363,"Ġkicks":17364,"Ġenv":17365,"Ġteenagers":17366,"Dark":17367,"ĠCAR":17368,"Ġhalt":17369,"ĠLG":17370,"ĠGabriel":17371,"Ġfever":17372,"Ġsatur":17373,"Ġmall":17374,"Ġaffiliate":17375,"ĠSleep":17376,"ĠSpecific":17377,"ĠVel":17378,"Ġjar":17379,"ĠSacred":17380,"ĠEdwards":17381,"ĠACL":17382,"Ġretained":17383,"ĠGiant":17384,"Ġlimitation":17385,"inces":17386,"Ġrefusal":17387,"ĠTale":17388,"ĠButler":17389,"Ġaccidents":17390,"ĠCSS":17391,"Ġimported":17392,"ĠCopy":17393,"α":17394,"ERT":17395,"zel":17396,"Ġdivisions":17397,"hots":17398,"ĠAlb":17399,"ĠDS":17400,"Loader":17401,"Washington":17402,"atisf":17403,"ĠCreative":17404,"\\.":17405,"ĠAutom":17406,"redict":17407,"Ġreceptor":17408,"ĠCarlos":17409,"Method":17410,"oka":17411,"Ġmalicious":17412,"Ġstepping":17413,",[":17414,"ĠDad":17415,"Ġattraction":17416,"ĠEffects":17417,"ĠPirate":17418,"ĠCer":17419,"ĠIndustry":17420,"ĠRud":17421,"Ġcharter":17422,"Ġdining":17423,"Ġinsists":17424,"Ġconfigure":17425,"Ġ(#":17426,"ĠSimple":17427,"ĠScroll":17428,"UTC":17429,"175":17430,"ĠKon":17431,"Ġmarketplace":17432,"ĠãĤ":17433,"Ġrefres":17434,"Ġgates":17435,"erred":17436,"ĠPod":17437,"Ġbehave":17438,"Frank":17439,"node":17440,"Ġendorsed":17441,"hett":17442,"asive":17443,"ĠHomeland":17444,"Ġrides":17445,"ĠLeave":17446,"erness":17447,"Ġflooding":17448,"AFP":17449,"Ġrisen":17450,"Ġcontinually":17451,"Ġunanim":17452,"ĠContract":17453,"ĠPas":17454,"Ġguided":17455,"ĠChile":17456,"bd":17457,"Ġsucc":17458,"ptic":17459,"Ġcommittees":17460,"ĠLuther":17461,"ĠAnyone":17462,"Ġsab":17463,"124":17464,"Ġpixel":17465,"ĠBak":17466,"ĠTag":17467,"ĠBennett":17468,"Enter":17469,"small":17470,"ĠPresidential":17471,"Ġpul":17472,"Ġcontrace":17473,"archive":17474,"Ġcoastal":17475,"ĠKids":17476,"192":17477,"â̲":17478,"icky":17479,"INGTON":17480,"Ġwolf":17481,"ĠStalin":17482,"Tur":17483,"idget":17484,"amas":17485,"ĠUnless":17486,"Ġsponsor":17487,"Ġmorph":17488,"ĠChoose":17489,"Ġrunner":17490,"Ġunbel":17491,"Ġmud":17492,"ĠMana":17493,"Ġdubbed":17494,"Ġgodd":17495,"urers":17496,"window":17497,"Ġrelied":17498,"Ġcelebrating":17499,"osc":17500,"Ġ135":17501,"Ġlobbying":17502,"Ġincomplete":17503,"Ġrestriction":17504,"Ġincap":17505,"itus":17506,"Ġexpectation":17507,"ĠApollo":17508,"Ġintens":17509,"Ġsync":17510,"GH":17511,"Ġmanipulation":17512,"BY":17513,"Ġspear":17514,"Ġbreasts":17515,"Ġvolcan":17516,"ilia":17517,"Material":17518,"Ġformats":17519,"ĠBast":17520,"Ġparliamentary":17521,"Ġsnake":17522,"Ġservants":17523,"ĠTrudeau":17524,"ĠGrim":17525,"ĠArabic":17526,"ĠSCP":17527,"ĠBoys":17528,"station":17529,"Ġprospective":17530,"orde":17531,"initialized":17532,"Ġbored":17533,"ABLE":17534,"Ġaccessed":17535,"Ġtaxi":17536,"ĠShell":17537,"aiden":17538,"ursed":17539,"inates":17540,"ĠInsurance":17541,"ĠPete":17542,"September":17543,"650":17544,"Ġadventures":17545,"ĠCover":17546,"Ġtribute":17547,"Ġsketch":17548,"Ġempower":17549,"ĠØ":17550,"ĠGlenn":17551,"ĠDaw":17552,"=\\\"":17553,"ĠPolitics":17554,"Ġguides":17555,"Ġdioxide":17556,"ĠGore":17557,"ĠBright":17558,"ĠSierra":17559,"Ġvalued":17560,"cond":17561,"Ġpointer":17562,"Select":17563,"Ġrisky":17564,"Ġabsorb":17565,"images":17566,"Ġrefuses":17567,"Ġbonuses":17568,"___":17569,"Ġhilar":17570,"ĠFeatures":17571,"220":17572,"ĠCollector":17573,"Foot":17574,"Ġ1964":17575,"culus":17576,"Ġdawn":17577,"Ġworkout":17578,"ĠLO":17579,"Ġphilosophical":17580,"ĠSandy":17581,"ĠYouth":17582,"Ġliable":17583,"Af":17584,"blue":17585,"Ġoverturn":17586,"lessness":17587,"ĠTribune":17588,"ĠIng":17589,"Ġfactories":17590,"Ġcatches":17591,"Ġprone":17592,"Ġmatrix":17593,"Ġlogin":17594,"Ġinacc":17595,"Ġexert":17596,"sys":17597,"Ġneedle":17598,"ĠQur":17599,"Ġnotified":17600,"oulder":17601,"tx":17602,"Ġreminds":17603,"Ġpublishers":17604,"Ġnort":17605,"Ġgit":17606,"Ġflies":17607,"ĠEmily":17608,"Ġflowing":17609,"ĠAlien":17610,"ĠStrateg":17611,"Ġhardest":17612,"Ġmodification":17613,"API":17614,"ĠMY":17615,"Ġcrashes":17616,"stairs":17617,"number":17618,"Ġurging":17619,"channel":17620,"ĠFalcon":17621,"Ġinhabitants":17622,"Ġterrifying":17623,"Ġutilize":17624,"Ġbanner":17625,"Ġcigarettes":17626,"Ġsenses":17627,"ĠHolmes":17628,"Ġpractition":17629,"ĠPhillips":17630,"otto":17631,"Ġcompile":17632,"Model":17633,"ĠKo":17634,"Ġ[]":17635,"Americans":17636,"ĠTerms":17637,"Ġmedications":17638,"ĠAna":17639,"Ġfundamentally":17640,"ĠNotice":17641,"Ġweaker":17642,"Ġ0000":17643,"Ġgarlic":17644,"Ġoutbreak":17645,"Ġeconomist":17646,"ĠBirth":17647,"Ġobstacles":17648,"arcer":17649,"ĠOrthodox":17650,"Ġplacebo":17651,"ĠCrew":17652,"aspberry":17653,"ĠAngels":17654,"Ġdischarge":17655,"Ġdestructive":17656,"117":17657,"ĠRising":17658,"Ġdairy":17659,"late":17660,"Ġcollision":17661,"ĠTigers":17662,"eanor":17663,"ocumented":17664,"ĠInvalid":17665,"Ġdont":17666,"ĠLiter":17667,"ĠVa":17668,"Ġhydrogen":17669,"Ġvariants":17670,"ĠBrowns":17671,"Ġ1965":17672,"Ġindigenous":17673,"Ġtrades":17674,"Ġremainder":17675,"Ġswept":17676,"ĠImpact":17677,"Ġredist":17678,"Ġunint":17679,"graduate":17680,"ãĥķ":17681,"ĠWILL":17682,"ãģ®ç":17683,"ĠCritical":17684,"Ġfisher":17685,"Ġvicious":17686,"Ġreversed":17687,"Year":17688,"ĠSox":17689,"Ġshootings":17690,"Ġfilming":17691,"Ġtouchdowns":17692,"aires":17693,"mel":17694,"Ġgrandfather":17695,"Ġaffection":17696,"ingle":17697,"Ġoverly":17698,"Additional":17699,"Ġsupreme":17700,"ĠGrad":17701,"Ġsporting":17702,"Ġmercy":17703,"ĠBrooks":17704,"ounty":17705,"Ġperforms":17706,"Ġtightly":17707,"Ġdemons":17708,"Ġkillings":17709,"Ġfaction":17710,"ĠNova":17711,"auts":17712,"Ġundoubtedly":17713,"arin":17714,"Ġunderway":17715,"rak":17716,"Ġliv":17717,"ĠRegion":17718,"Ġbriefing":17719,"sers":17720,"cloud":17721,"ĠMik":17722,"usp":17723,"Ġprediction":17724,"azor":17725,"Ġportable":17726,"ĠGand":17727,"Ġpresenting":17728,"Ġ1080":17729,"»":17730,"ushi":17731,"ĠSpark":17732,"thereum":17733,"Ġjustification":17734,"ĠNy":17735,"Ġcontractors":17736,"mingham":17737,"ĠStyle":17738,"åħ":17739,"ĠChronicles":17740,"ĠPicture":17741,"Ġproving":17742,"Ġwives":17743,"sett":17744,"Ġmolecules":17745,"ĠFairy":17746,"Ġconsisting":17747,"Ġpier":17748,"alone":17749,"inition":17750,"Ġnucle":17751,"json":17752,"Ġgotta":17753,"Ġmobil":17754,"Ġverbal":17755,"arium":17756,"Ġmonument":17757,"ucked":17758,"Ġ256":17759,"Tech":17760,"minecraft":17761,"ĠTrack":17762,"Ġtile":17763,"Ġcompatibility":17764,"asis":17765,"Ġsadd":17766,"Ġinstructed":17767,"ĠMueller":17768,"Ġlethal":17769,"Ġhormone":17770,"Ġorche":17771,"else":17772,"Ġskelet":17773,"Ġentertaining":17774,"Ġminimize":17775,"again":17776,"Ġundergo":17777,"Ġconstraints":17778,"Ġcigarette":17779,"ĠIslamist":17780,"Ġtravels":17781,"ĠPanthers":17782,"lings":17783,"Care":17784,"Ġlawsuits":17785,"uras":17786,"Ġcryst":17787,"Ġlowered":17788,"Ġaerial":17789,"Ġcombinations":17790,"Ġhaun":17791,"Ġcha":17792,"Ġvine":17793,"Ġquantities":17794,"Ġlinking":17795,"bank":17796,"Ġsoy":17797,"Bill":17798,"ĠAngela":17799,"Ġrecipient":17800,"ĠProtest":17801,"Ġsocket":17802,"Ġsolidarity":17803,"ĠâĨ":17804,"mill":17805,"Ġvaries":17806,"ĠPakistani":17807,"Dragon":17808,"Ġune":17809,"Ġhorizon":17810,"³³³³³³³³":17811,"Ġprovinces":17812,"Ġfrankly":17813,"Ġenacted":17814,"notes":17815,"['":17816,"Ġ192":17817,"ocracy":17818,"Ġendorsement":17819,"Ġovertime":17820,"True":17821,"Lab":17822,"licted":17823,"ĠDNC":17824,"Ġbeats":17825,"ĠJamie":17826,"152":17827,"ĠINT":17828,"Contact":17829,"Ġaccounted":17830,"hash":17831,"ĠPackers":17832,"pires":17833,"Ġlesbian":17834,"Ġamendments":17835,"Ġhopeful":17836,"ĠFinland":17837,"Ġspotlight":17838,"Ġconfigured":17839,"Ġtroubled":17840,"Ġgaze":17841,"ĠCalgary":17842,"Ġreliability":17843,"Ġinsurg":17844,"swer":17845,"buy":17846,"ĠSkin":17847,"Ġpixels":17848,"Ġhandgun":17849,"Ġparas":17850,"Ġcategor":17851,"ĠEL":17852,"ĠRex":17853,"Indeed":17854,"Ġkinda":17855,"Ġconjunction":17856,"ĠBryan":17857,"ĠManufact":17858,"yang":17859,"Plus":17860,"SQL":17861,"ishment":17862,"Ġdominate":17863,"Ġnail":17864,"Ġoath":17865,"Ġerupt":17866,"ĠFine":17867,"itbart":17868,"ĠChip":17869,"ĠAbd":17870,"ĠNam":17871,"Ġbuyer":17872,"Ġdissent":17873,"Leaks":17874,"Contin":17875,"Ġrider":17876,"ĠSomeone":17877,"Ġillusion":17878,"cin":17879,"ĠBoeing":17880,"Ġinadequ":17881,"ovation":17882,"iants":17883,"Ġrebuild":17884,"450":17885,"ĠDestiny":17886,"SW":17887,"ĠTill":17888,"Hit":17889,"iaz":17890,"ĠBangl":17891,"achers":17892,"ĠReform":17893,"Ġsegments":17894,"Ġsystematic":17895,"dc":17896,"ĠConservatives":17897,"Ġportal":17898,"hor":17899,"ĠDragonbound":17900,"Ġdragged":17901,"omo":17902,"Ġthee":17903,"advert":17904,"ĠReports":17905,"ĠEt":17906,"Ġbarrels":17907,"August":17908,"Ġcomparisons":17909,"Ġhex":17910,"Ġanthrop":17911,"\"[":17912,"borough":17913,"abi":17914,"Ġpictured":17915,"playing":17916,"ĠAddress":17917,"ĠMirror":17918,"Smith":17919,"Ġtires":17920,"ĠNPR":17921,"AAAA":17922,"Ġclassification":17923,"ĠThan":17924,"ĠHarm":17925,"ĠRA":17926,"Ġrejection":17927,"mination":17928,"Ġranged":17929,"ĠFalls":17930,"DI":17931,"Host":17932,"ãĤ´":17933,"ĠExample":17934,"listed":17935,"thirds":17936,"Ġsafegu":17937,"brand":17938,"Ġprobable":17939,"Canada":17940,"ITION":17941,"ĠQaeda":17942,"Ġchick":17943,"Ġimports":17944,"hit":17945,"loc":17946,"WW":17947,"Ġblew":17948,"Ġanytime":17949,"Ġwholes":17950,"iked":17951,"Ġcalculation":17952,"create":17953,"ĠOri":17954,"Ġupgraded":17955,"Ġappar":17956,"utory":17957,"ĠMol":17958,"Brit":17959,"ĠJong":17960,"INAL":17961,"ĠStarting":17962,"Ġdice":17963,"urtle":17964,"Ġrelying":17965,"closure":17966,"Ġprofitable":17967,"Ġslaughter":17968,"ĠManual":17969,"caster":17970,"Ġ\"$":17971,"Ġfeather":17972,"ĠSimply":17973,"ieves":17974,"Ġdeterior":17975,"ĠPCI":17976,"Ġstamp":17977,"Ġflaws":17978,"Ġshade":17979,"hammer":17980,"Ġpassport":17981,"Ġconting":17982,"amel":17983,"Ġobservers":17984,"Ġneglect":17985,"ĠRB":17986,"ĠBrotherhood":17987,"Ġskeptical":17988,"family":17989,"usk":17990,"Ġemotionally":17991,"âĻ":17992,"ĠBeta":17993,"asonable":17994,"idity":17995,"ĠMul":17996,"Ġkicking":17997,"ĠCarm":17998,"ollah":17999,"VERTIS":18000,"ĠAthen":18001,"Ġladder":18002,"ĠBullet":18003,"å£":18004,"0001":18005,"ĠWildlife":18006,"ĠMask":18007,"ĠNan":18008,"Rev":18009,"Ġunacceptable":18010,"legal":18011,"Ġcrowded":18012,"agi":18013,"ĠCox":18014,"je":18015,"Ġmorality":18016,"Ġfuels":18017,"Ġcables":18018,"Ġmankind":18019,"ĠCaribbean":18020,"Ġanchor":18021,"Ġbyte":18022,"ĠOften":18023,"ĠOz":18024,"Ġcrafted":18025,"Ġhistorian":18026,"ĠWu":18027,"Ġtowers":18028,"ĠCitizens":18029,"Ġhelm":18030,"Ġcredentials":18031,"Ġsingular":18032,"ĠJesse":18033,"Ġtackles":18034,"Ġcontempt":18035,"Ġafore":18036,"ĠShadows":18037,"Ġnil":18038,"Ġurgent":18039,"apple":18040,"blood":18041,"Ġvon":18042,"Ġoffline":18043,"Ġbreathe":18044,"Ġjumps":18045,"Ġirrelevant":18046,"oxic":18047,"omal":18048,"important":18049,"Jim":18050,"Ġgloves":18051,"arming":18052,"depth":18053,"Ġtalents":18054,"ookie":18055,"ĠSB":18056,"Ġpalm":18057,"uffs":18058,"esta":18059,"IGH":18060,"Ġcanon":18061,"ĠVerizon":18062,"ĠPle":18063,"Ġcoupled":18064,"velt":18065,"Ġfundraising":18066,"ĠGetting":18067,"ĠDLC":18068,"Ġmathematical":18069,"ĠHS":18070,"ĠCardinals":18071,"telling":18072,"Ġsponsors":18073,"ĠÏ":18074,"ĠBulls":18075,"option":18076,"Ġpropose":18077,"Ġmemorable":18078,"Ġembraced":18079,"Ġdeclining":18080,"Health":18081,"eda":18082,"Ġ};":18083,"Ġspam":18084,"mile":18085,"Ġpitcher":18086,"ĠEight":18087,"Ġcaring":18088,"utic":18089,"role":18090,"Ġairline":18091,"ernandez":18092,"ĠAthlet":18093,"Ġcertification":18094,"uxe":18095,"riger":18096,"Ġempir":18097,"Ġsensation":18098,"Ġdism":18099,"Ġbolt":18100,"Ġevolve":18101,"House":18102,"Ġconsultation":18103,"ĠDuty":18104,"Ġtouches":18105,"ĠNathan":18106,"Ġfaint":18107,"had":18108,"\"(":18109,"ĠConsumer":18110,"ĠExtreme":18111,"Ġ127":18112,"ĠHerm":18113,"ĠSacrament":18114,"izoph":18115,"Ġanxious":18116,"ulously":18117,"Ġsocially":18118,"ĠUTC":18119,"Ġsolving":18120,"ĠLetter":18121,"History":18122,"educ":18123,"Price":18124,"));":18125,"Ġreload":18126,"amic":18127,"Ġpork":18128,"Ġdiscourse":18129,"Ġtournaments":18130,"airo":18131,"ĠKur":18132,"ĠCosta":18133,"Ġviolating":18134,"Ġinterfere":18135,"Ġrecreational":18136,"uffle":18137,"Ġspeeches":18138,"Ġneeding":18139,"Ġremembers":18140,"Ġcredited":18141,"nia":18142,"focused":18143,"amera":18144,"Ġbru":18145,"umbs":18146,"ĠCuban":18147,"Ġpreceding":18148,"Ġnonsense":18149,"acial":18150,"Ġsmartphones":18151,"ĠStories":18152,"Sports":18153,"ĠEmergency":18154,"ouncing":18155,"efined":18156,"Ġber":18157,"Ġconsulting":18158,"Ġmasters":18159,"heastern":18160,".\"[":18161,"ĠRunning":18162,"Ġsuscept":18163,"ĠFeng":18164,"America":18165,"prises":18166,"stitial":18167,"ĠWeekly":18168,"ĠGreater":18169,"modules":18170,"ifter":18171,"Graphics":18172,"uler":18173,"Ġwholly":18174,"Ġsuppress":18175,"Ġconcealed":18176,"Ġhappily":18177,"Ġaccepts":18178,"ĠEnjoy":18179,"Ġrivers":18180,"ĠExcept":18181,"225":18182,"ĠNHS":18183,"ĠMcConnell":18184,"Ġpussy":18185,"ferred":18186,"utable":18187,"Ġattain":18188,"Ġ>=":18189,"Ġdeposits":18190,"rophic":18191,"Ġnotorious":18192,"ĠShaw":18193,"ilitation":18194,"Ġepidemic":18195,"allic":18196,"Ġsmallest":18197,"ovich":18198,"Ġaccessories":18199,"perties":18200,"Ġsurplus":18201,"ĠMech":18202,"Ġambig":18203,"ĠImmigration":18204,"Ġchim":18205,"eval":18206,"Ġpracticing":18207,"ĠMystery":18208,"Ġdomains":18209,"ĠSilicon":18210,"apps":18211,"Ġkilometers":18212,"ea":18213,"ĠSmash":18214,"Ġwarranty":18215,"Ġnost":18216,"sil":18217,"rev":18218,"Jon":18219,"ĠDublin":18220,"Ġtastes":18221,"Ġbout":18222,"great":18223,"error":18224,"Ġswitches":18225,"ĠBapt":18226,"DO":18227,"oki":18228,"Ġsourced":18229,"produ":18230,"Ġattachment":18231,"ĠIssue":18232,"ĠQuestion":18233,"Join":18234,"Ġfitted":18235,"Ġunlawful":18236,"^^":18237,"erek":18238,"Ġauthentication":18239,"Ġstole":18240,"Ġaccountability":18241,"label":18242,"Search":18243,"Ġalbeit":18244,"atican":18245,"funded":18246,"ĠAdding":18247,"ĠIQ":18248,"Ġsubmar":18249,"lit":18250,"aque":18251,"ĠLearning":18252,"Ġinteger":18253,"Master":18254,"ĠChrom":18255,"Ġpremier":18256,"Op":18257,"ĠLiu":18258,"Ġblessed":18259,"ĠGlobe":18260,"ĠResponse":18261,"Ġlegitim":18262,"ĠMerkel":18263,"Ġdisposal":18264,"´":18265,"Ġgauge":18266,"peat":18267,"Ġinduced":18268,"Ġquestionable":18269,"arthy":18270,"ĠVit":18271,"ĠFeed":18272,"Until":18273,"Ut":18274,"worthy":18275,"RY":18276,"ĠHerald":18277,"ĠHammer":18278,"Ġmedal":18279,"ĠRivers":18280,"ĠHack":18281,"Ġclarify":18282,"Ġtracked":18283,"Ġautonomous":18284,"Ġtenant":18285,"ĠQatar":18286,"erie":18287,"Ġgrim":18288,"ĠMonitor":18289,"Ġresistant":18290,"ĠSpec":18291,"ĠWells":18292,"NAS":18293,"148":18294,"Ġminers":18295,"iotics":18296,"Ġmisses":18297,"116":18298,"gian":18299,"git":18300,"ĠEyes":18301,"pres":18302,"Ġgraduated":18303,"Ġangel":18304,"Ġsynchron":18305,"Ġefficiently":18306,"Ġtransmitted":18307,"Harry":18308,"Ġglobally":18309,"ENCE":18310,"ĠMontana":18311,"raged":18312,"ĠPrevention":18313,"Ġpiss":18314,"ĠLl":18315,"Ġshelf":18316,"ĠBJP":18317,"ĠTestament":18318,"ĠLate":18319,"iker":18320,"ĠHapp":18321,"ĠJulian":18322,"hall":18323,"Ġspont":18324,"Ġshutdown":18325,"Ġinconsistent":18326,"Ġsubscribers":18327,"Ġskeleton":18328,"ĠNebraska":18329,"Ġinspire":18330,"ĠVoid":18331,"Feed":18332,"Ġangles":18333,"ĠSprings":18334,"Ġbenchmark":18335,"Ġvaccines":18336,"izophren":18337,"sexual":18338,"uffed":18339,"Ġshine":18340,"ĠKath":18341,"Ġgesture":18342,"inea":18343,"Ġrip":18344,"Ġoppression":18345,"Ġconscience":18346,"bt":18347,"ĠLum":18348,"Ġincidence":18349,"ĠFa":18350,"wr":18351,"Ġmineral":18352,"ĠSpurs":18353,"alky":18354,"Ġthunder":18355,"Ġopio":18356,"Being":18357,"ĠPalm":18358,"Ġwasted":18359,"Ġlb":18360,"iaries":18361,"ĠInitiative":18362,"Ġcurric":18363,"Ġmarker":18364,"ĠMcL":18365,"Ġextensions":18366,"ĠPv":18367,"ĠArms":18368,"Ġofferings":18369,"Ġdefenses":18370,"Ġvendor":18371,"Ġcontradict":18372,"ĠColin":18373,"Ġreddit":18374,"Ġperipher":18375,"122":18376,"Ġsins":18377,"Edit":18378,"ICT":18379,"Soft":18380,"ĠShah":18381,"Ġadministrator":18382,"ĠTrip":18383,"Ġpornography":18384,"Ġtuition":18385,"inence":18386,"ĠProgress":18387,"Ġcatalog":18388,"Ġsuite":18389,"Ġhike":18390,"Ġreproductive":18391,"engine":18392,"Ġdrought":18393,"ĠNoah":18394,"Ġ230":18395,"Ġdude":18396,"Ġrelaxed":18397,"Ġpartition":18398,"Ġparticipant":18399,"Ġtelesc":18400,"Ġfeas":18401,"ĠFF":18402,"owner":18403,"Ġsweeping":18404,"Ġlenses":18405,"Ġmatchup":18406,"ĠRepl":18407,"ournals":18408,"Ġcredible":18409,"Ġgrandmother":18410,"Ġthermal":18411,"Ġsubscribing":18412,"Ġidentities":18413,"colm":18414,"UCT":18415,"Ġreluctant":18416,"users":18417,"ĠCort":18418,"Ġassisted":18419,"OSS":18420,"ATIONS":18421,"ISH":18422,"Ġpharmaceutical":18423,"icable":18424,"adian":18425,"ĠSonic":18426,"ĠFury":18427,"ĠMong":18428,"AH":18429,"ĠPsychology":18430,"Ġphosph":18431,"Ġtreats":18432,"ŃĶ":18433,"Ġsteadily":18434,"ĠHello":18435,"Ġrelates":18436,"Ġclue":18437,"Expl":18438,"auth":18439,"Ġrevision":18440,"Ġeld":18441,"osion":18442,"Ġbron":18443,"144":18444,"rikes":18445,"Ġmines":18446,"Ġblanket":18447,"ĠFail":18448,"eled":18449,"ĠImagine":18450,"ĠPlanned":18451,"aic":18452,"Request":18453,"Mad":18454,"ĠHorse":18455,"ĠEagle":18456,"Ġcapac":18457,"157":18458,"Ġling":18459,"ĠNice":18460,"ĠParenthood":18461,"minster":18462,"ogs":18463,"ensitive":18464,"Nothing":18465,"Ġcarn":18466,"Fin":18467,"ĠPE":18468,"Ġrifles":18469,"ĠLP":18470,"Sand":18471,"ĠguiActive":18472,"Ġtourist":18473,"CNN":18474,"Ġunveiled":18475,"Ġpredecessor":18476,"}{":18477,"uber":18478,"Ġoffshore":18479,"Ġoptical":18480,"ĠRot":18481,"ĠPearl":18482,"eton":18483,"Ġstared":18484,"Ġfarther":18485,"atility":18486,"contin":18487,"ĠGy":18488,"ĠFoster":18489,"ĠCoc":18490,"rients":18491,"Ġdesigning":18492,"ĠEconomy":18493,"ONG":18494,"Women":18495,"ĠNancy":18496,"erver":18497,"Ġmascul":18498,"Ġcasualties":18499,"Ġ225":18500,"ĠSullivan":18501,"ĠChoice":18502,"Ġaster":18503,"ws":18504,"Ġhotels":18505,"Ġconsiderations":18506,"Ġcouch":18507,"ĠStrip":18508,"ĠGn":18509,"Ġmanipulate":18510,"lied":18511,"Ġsynthetic":18512,"Ġassaulted":18513,"Ġoffenses":18514,"ĠDrake":18515,"Ġimpe":18516,"October":18517,"ĠHeritage":18518,"hl":18519,"ĠBlair":18520,"Unlike":18521,"Ġgrief":18522,"Ġ450":18523,"Ġopted":18524,"Ġresignation":18525,"ilo":18526,"Ġverse":18527,"ĠTomb":18528,"Ġupt":18529,"Ġaired":18530,"ĠHook":18531,"ĠMLB":18532,"Ġassumes":18533,"outed":18534,"ĠVers":18535,"Ġinferior":18536,"Ġbundle":18537,"ĠDNS":18538,"ographer":18539,"Ġmultip":18540,"ĠSouls":18541,"Ġillustrated":18542,"Ġtactic":18543,"Ġdressing":18544,"Ġduo":18545,"Conf":18546,"Ġrelent":18547,"Ġcant":18548,"Ġscarce":18549,"Ġcandy":18550,"ĠCF":18551,"Ġaffiliated":18552,"Ġsprint":18553,"ylan":18554,"ĠGarcia":18555,"Ġjunk":18556,"Print":18557,"exec":18558,"Crit":18559,"Ġportrait":18560,"iries":18561,"ĠOFF":18562,"Ġdisputes":18563,"WR":18564,"Love":18565,"ãģĦ":18566,"ĠReyn":18567,"Ġhipp":18568,"opath":18569,"Ġfloors":18570,"ĠFeel":18571,"Ġworries":18572,"Ġsettlements":18573,"ĠPos":18574,"Ġmosque":18575,"Ġfinals":18576,"Ġcrushed":18577,"ĠProbably":18578,"ĠBot":18579,"ĠMans":18580,"ĠPeriod":18581,"Ġsovereignty":18582,"Ġseller":18583,"Ġapost":18584,"Ġamateur":18585,"Ġdorm":18586,"Ġconsuming":18587,"Ġarmour":18588,"ĠRoose":18589,"Ġintensive":18590,"Ġeliminating":18591,"ĠSunni":18592,"ĠAleppo":18593,"jin":18594,"Ġadvise":18595,"pal":18596,"ĠHalo":18597,"Ġdescent":18598,"Ġsimpler":18599,"Ġbooth":18600,"STR":18601,"Later":18602,"ĠCave":18603,"===":18604,"Ġmol":18605,"Ġfist":18606,"Ġshotgun":18607,"supp":18608,"Ġrobbery":18609,"Effect":18610,"Ġobscure":18611,"ĠProfessional":18612,"Ġembassy":18613,"Ġmilitant":18614,"Ġincarcer":18615,"Ġgenerates":18616,"Ġlaunches":18617,"Ġadministrators":18618,"Ġshaft":18619,"Ġcircular":18620,"Ġfreshman":18621,"ĠWes":18622,"ĠJoel":18623,"ĠDrew":18624,"ĠDuncan":18625,"ĠApparently":18626,"sight":18627,"ĠInternal":18628,"ĠIndividual":18629,"ĠFE":18630,"Ġbore":18631,"ĠMt":18632,"Ġbroadly":18633,"ĠOptions":18634,"ountain":18635,"ipes":18636,"ĠVideos":18637,"204":18638,"Ġhills":18639,"Ġsimulation":18640,"Ġdisappointment":18641,"itan":18642,"ĠLaboratory":18643,"Ġupward":18644,"Ġboundary":18645,"Ġdarker":18646,"hart":18647,"Ġdominance":18648,"Cong":18649,"ĠOracle":18650,"ĠLords":18651,"Ġscholarship":18652,"ĠVincent":18653,"ede":18654,"ĠRah":18655,"Ġencourages":18656,"rov":18657,"Ġquo":18658,"Ġpremise":18659,"ĠCrisis":18660,"ĠHolocaust":18661,"Ġrhythm":18662,"Ġmetric":18663,"club":18664,"Ġtransported":18665,"Ġnod":18666,"ĠPist":18667,"Ġancestors":18668,"ĠFreder":18669,"thumbnails":18670,"ĠCE":18671,"OND":18672,"Phil":18673,"venge":18674,"ĠProducts":18675,"castle":18676,"Ġqualifying":18677,"ĠKaren":18678,"VERTISEMENT":18679,"Ġmighty":18680,"Ġexplanations":18681,"Ġfixing":18682,"Di":18683,"Ġdeclaring":18684,"Ġanonymity":18685,"Ġjuven":18686,"ĠNord":18687,"ĠDoom":18688,"ĠActually":18689,"Ok":18690,"phis":18691,"ĠDesert":18692,"Ġ116":18693,"IK":18694,"ĠFM":18695,"Ġincomes":18696,"VEL":18697,"okers":18698,"Ġpecul":18699,"Ġlightweight":18700,"gue":18701,"Ġaccent":18702,"Ġincrement":18703,"ĠChan":18704,"Ġcomplaining":18705,"ĠBaghd":18706,"Ġmidfielder":18707,"Ġoverhaul":18708,"Process":18709,"ĠHollow":18710,"ĠTitans":18711,"Small":18712,"manuel":18713,"ĠUnity":18714,"ĠEvents":18715,"Sty":18716,"Ġdisproportion":18717,"nesty":18718,"enes":18719,"ĠCod":18720,"Ġdemonstrations":18721,"ĠCrimson":18722,"ĠOH":18723,"Ġenrolled":18724,"Ġcel":18725,"ĠBrett":18726,"Ġaide":18727,"Ġheels":18728,"Ġbroadband":18729,"Ġmarking":18730,"Ġwizard":18731,"ĠNJ":18732,"ĠChiefs":18733,"Ġingredient":18734,"Ġdug":18735,"ĠShut":18736,"urchase":18737,"endor":18738,"Ġfarmer":18739,"ĠGoldman":18740,"129":18741,"155":18742,"Order":18743,"Ġlion":18744,"iably":18745,"Ġstain":18746,"array":18747,"ilitary":18748,"ĠFAQ":18749,"Ġexploded":18750,"ĠMcCarthy":18751,"ĠTweet":18752,"ĠGreens":18753,"eking":18754,"ln":18755,"ensen":18756,"Ġmotorcycle":18757,"Ġparticle":18758,"Ġcholesterol":18759,"Bron":18760,"Ġstair":18761,"Ġoxid":18762,"Ġdesirable":18763,"ibles":18764,"Ġtheor":18765,"forcing":18766,"Ġpromotional":18767,"ovo":18768,"boot":18769,"ĠBonus":18770,"rawling":18771,"Ġshortage":18772,"ĠPsy":18773,"Ġrecruited":18774,"Ġinfants":18775,"Ġtestosterone":18776,"Ġdeduct":18777,"Ġdistinctive":18778,"Ġfirmware":18779,"built":18780,"145":18781,"Ġexplored":18782,"Ġfactions":18783,"Ġvide":18784,"Ġtattoo":18785,"Ġfinancially":18786,"Ġfatigue":18787,"Ġproceeding":18788,"constitutional":18789,"Ġmiser":18790,"Ġchairs":18791,"gging":18792,"ipple":18793,"Ġdent":18794,"Ġdisreg":18795,"çĶ":18796,"stant":18797,"llo":18798,"bps":18799,"akening":18800,"Ġabnormal":18801,"ĠERA":18802,"士":18803,"ĠHBO":18804,"ĠMAR":18805,"Ġconcess":18806,"Ġservant":18807,"Ġaspir":18808,"lav":18809,"ĠPanel":18810,"amo":18811,"Ġprecip":18812,"Ġrecordings":18813,"Ġproceeded":18814,"Ġcolony":18815,"ĠTang":18816,"ablo":18817,"Ġstripped":18818,"Left":18819,"too":18820,"Ġpotatoes":18821,"Ġfinest":18822,"%).":18823,"Ġcrap":18824,"ĠZach":18825,"abases":18826,"ĠGoth":18827,"Ġbillionaire":18828,"wolf":18829,"Ġsanction":18830,"SK":18831,"Ġlogged":18832,"Po":18833,"eyed":18834,"unal":18835,"Ġcricket":18836,"Ġarmies":18837,"Ġuncovered":18838,"Cloud":18839,"ón":18840,"Ġrebounds":18841,"Ġmes":18842,"Oper":18843,"Pac":18844,"Ġnationally":18845,"Ġinserted":18846,"pict":18847,"Ġgovernance":18848,"и":18849,"Ġprivileges":18850,"GET":18851,"Ġfavorites":18852,"imity":18853,"Ġlover":18854,"them":18855,"empl":18856,"Ġgorgeous":18857,"Ann":18858,"Ġslipped":18859,"Ġveto":18860,"Bob":18861,"Ġslim":18862,"ucc":18863,"ĠFame":18864,"uddenly":18865,"Ġdenies":18866,"ĠMaur":18867,"Ġdistances":18868,"Ġwanna":18869,"tar":18870,"ĠSER":18871,"ĠâĪ":18872,"Ġlemon":18873,"athetic":18874,"Ġliteral":18875,"Ġdistinguished":18876,"Ġanswering":18877,"GI":18878,"Ġreligions":18879,"ĠPhilos":18880,"ĠLay":18881,"Ġcompos":18882,"irements":18883,"ĠKos":18884,"inez":18885,"rolling":18886,"Ġyoungest":18887,"andise":18888,"ĠBorn":18889,"Ġaltar":18890,"amina":18891,"ĠBoot":18892,"voc":18893,"Ġdigging":18894,"Ġpressures":18895,"Ġlen":18896,"264":18897,"Ġassassination":18898,"ĠBirmingham":18899,"ĠMyth":18900,"Ġsovereign":18901,"ĠArtist":18902,"ĠPhotograph":18903,"Ġdepicted":18904,"Ġdispens":18905,"orthy":18906,"Ġambul":18907,"integ":18908,"ĠCele":18909,"ĠTibet":18910,"Ġhierarchy":18911,"Ġcu":18912,"Ġpreseason":18913,"ĠPeterson":18914,"Ġcolours":18915,"Ġworrying":18916,"Ġbackers":18917,"ĠPalmer":18918,"Ġμ":18919,"Ġcontributor":18920,"Ġhearings":18921,"Ġurine":18922,"ĠÙ":18923,"ourgeois":18924,"Similar":18925,"ĠZimmer":18926,"something":18927,"ĠUSC":18928,"Ġstrengths":18929,"ĠFI":18930,"Ġlogging":18931,"Asked":18932,"ĠThai":18933,"inqu":18934,"ĠWalt":18935,"Ġcrews":18936,"itism":18937,"301":18938,"Ġsharply":18939,"umed":18940,"Ġredirect":18941,"rators":18942,"Inf":18943,"ĠWeapons":18944,"Ġteasp":18945,"1999":18946,"Live":18947,"ĠEspecially":18948,"ĠSter":18949,"ĠVeterans":18950,"Ġintro":18951,"otherapy":18952,"Ġmalware":18953,"Ġbreeding":18954,"Ġmolecular":18955,"ĠRoute":18956,"ĠComment":18957,"ochem":18958,"Ġain":18959,"Season":18960,"Ġlinebacker":18961,"Ä«":18962,"ĠEconomics":18963,"esar":18964,"ĠLives":18965,"ĠEmma":18966,"Ġkin":18967,"ĠTerrit":18968,"Ġplanted":18969,"oton":18970,"ĠButter":18971,"ĠSpons":18972,"PER":18973,"Ġdungeon":18974,"Ġsymbolic":18975,"Ġfilmed":18976,"Ġdiets":18977,"Ġconcludes":18978,"Ġcertainty":18979,"ĠFormat":18980,"Ġstrangers":18981,"format":18982,"ĠPhase":18983,"Ġcopied":18984,"Ġmetres":18985,"lda":18986,"ĠUsers":18987,"Ġdeliberate":18988,"Ġwashed":18989,"ĠLance":18990,"imation":18991,"Ġimproper":18992,"ĠGenesis":18993,"ickr":18994,"ĠKush":18995,"Ġrealise":18996,"Ġembarrassing":18997,"alking":18998,"bucks":18999,"Ġverified":19000,"Ġoutline":19001,"years":19002,"ĠIncome":19003,"202":19004,"Ġzombies":19005,"Final":19006,"ĠMillenn":19007,"Ġmodifications":19008,"ĠVision":19009,"ĠMoses":19010,"verb":19011,"iterranean":19012,"ĠJet":19013,"Ġnaval":19014,"ĠAgg":19015,"Ġurl":19016,"Ġvictories":19017,"Ġnonetheless":19018,"Ġinjust":19019,"ĠFact":19020,"çļ":19021,"Ġinsufficient":19022,"review":19023,"facebook":19024,"Ġnegotiating":19025,"Ġguarantees":19026,"imen":19027,"utenberg":19028,"Ġgambling":19029,"Ġcongr":19030,"Loading":19031,"Ġnevertheless":19032,"Ġpresidents":19033,"ĠIndustrial":19034,"Ġ118":19035,"Ġpoured":19036,"ĠTory":19037,"Ġ175":19038,"Ġ:=":19039,"Scott":19040,"angered":19041,"Tok":19042,"Ġorganizers":19043,"Mat":19044,"ĠGrowth":19045,"Ġadul":19046,"Ġensures":19047,"Ġ117":19048,"é¾įå":19049,"Ġmassacre":19050,"Ġgrades":19051,"before":19052,"ADVERTISEMENT":19053,"ĠSlow":19054,"ĠMMA":19055,"âĢĶ\"":19056,"ĠVatican":19057,"Qaeda":19058,"Ġowe":19059,"6666":19060,"ĠSorry":19061,"ĠGrass":19062,"Ġbackgrounds":19063,"Ġexhausted":19064,"Ġclan":19065,"Ġcompromised":19066,"ĠElf":19067,"ĠIsaac":19068,"enson":19069,"Invest":19070,"IFA":19071,"Ġinterrupted":19072,"ãĥīãĥ©":19073,"Ġtwisted":19074,"ĠDragons":19075,"Mode":19076,"ĠKremlin":19077,"Ġfertil":19078,"heres":19079,"phan":19080,"ĠNode":19081,"fed":19082,"ĠOrc":19083,"Ġunwilling":19084,"Cent":19085,"Ġpriorit":19086,"Ġgraduates":19087,"Ġsubjective":19088,"Ġissuing":19089,"ĠLt":19090,"Ġviewer":19091,"Ġwoke":19092,"Thus":19093,"brook":19094,"Ġdepressed":19095,"Ġbracket":19096,"ĠGor":19097,"ĠFighting":19098,"Ġstriker":19099,"Report":19100,"ĠPortugal":19101,"Ġneo":19102,"wed":19103,"199":19104,"Ġfleeing":19105,"shadow":19106,"identified":19107,"USE":19108,"Steam":19109,"Ġstretched":19110,"Ġrevelations":19111,"arted":19112,"ĠDw":19113,"Ġalignment":19114,"eston":19115,"ĠJared":19116,"Sep":19117,"Ġblogs":19118,"update":19119,"gom":19120,"risk":19121,"Ġclash":19122,"ĠHour":19123,"Ġruntime":19124,"Ġunwanted":19125,"Ġscam":19126,"Ġrack":19127,"Ġenlight":19128,"onest":19129,"ĠFerr":19130,"Ġconvictions":19131,"Ġpiano":19132,"Ġcirculation":19133,"ĠWelcome":19134,"Ġbacklash":19135,"ĠWade":19136,"Ġreceivers":19137,"otive":19138,"Jeff":19139,"Ġnetworking":19140,"ĠPrep":19141,"ĠExplorer":19142,"Ġlecture":19143,"Ġuploaded":19144,"ĠMeat":19145,"BLE":19146,"ĠNazis":19147,"ĠSynd":19148,"stud":19149,"roots":19150,"rians":19151,"Ġportrayed":19152,"Ġ??":19153,"ĠBuddha":19154,"sun":19155,"Robert":19156,"ĠComplex":19157,"Ġoversee":19158,"Ġstealth":19159,"Title":19160,"ĠJobs":19161,"ĠKum":19162,"Ġappreciation":19163,"ĠMOD":19164,"Ġbasics":19165,"Ġclips":19166,"Ġnursing":19167,"Ġproposition":19168,"Ġrealised":19169,"ĠNYC":19170,"Ġallocated":19171,"rium":19172,"aran":19173,"ĠProduction":19174,"ĠVote":19175,"Ġsmugg":19176,"Ġhunter":19177,"azer":19178,"ĠChanges":19179,"Ġfluct":19180,"yon":19181,"Array":19182,"Ġkits":19183,"Water":19184,"Ġuncommon":19185,"Ġresting":19186,"ells":19187,"would":19188,"Ġpursued":19189,"Ġassertion":19190,"ometown":19191,"ĠMosul":19192,"ĠPlatform":19193,"iolet":19194,"Ġshareholders":19195,"Ġtrails":19196,"Pay":19197,"ĠEnforcement":19198,"types":19199,"ĠAnonymous":19200,"Ġsatisfying":19201,"ilogy":19202,"Ġ('":19203,"wave":19204,"city":19205,"Steve":19206,"Ġconfrontation":19207,"ĠEld":19208,"Capt":19209,"ahan":19210,"htm":19211,"ĠCtrl":19212,"ONS":19213,"230":19214,"ifa":19215,"holding":19216,"Ġdelicate":19217,"Ġjaw":19218,"ĠGoing":19219,"orum":19220,"Sal":19221,"Ġdull":19222,"ĠBeth":19223,"Ġprisons":19224,"Ġego":19225,"ĠElsa":19226,"avorite":19227,"ĠGang":19228,"ĠNuclear":19229,"Ġspider":19230,"atsu":19231,"Ġsampling":19232,"Ġabsorbed":19233,"ĠPharm":19234,"ieth":19235,"Ġbucket":19236,"ĠRecomm":19237,"OF":19238,"ĠFactory":19239,"ANCE":19240,"Ġbacter":19241,"Has":19242,"ĠObserv":19243,"121":19244,"Ġpremiere":19245,"Develop":19246,"Ġcurrencies":19247,"Cast":19248,"Ġaccompanying":19249,"ĠNashville":19250,"Ġfatty":19251,"ĠBrend":19252,"Ġlocks":19253,"Ġcentered":19254,"ĠUT":19255,"aughs":19256,"orie":19257,"ĠAffordable":19258,"vance":19259,"DL":19260,"emet":19261,"Ġthrone":19262,"ĠBluetooth":19263,"Ġnaming":19264,"ifts":19265,"ADE":19266,"Ġcorrected":19267,"Ġpromptly":19268,"ĠSTR":19269,"Ġgenome":19270,"Ġcope":19271,"Ġvalley":19272,"Ġrounded":19273,"ĠKend":19274,"alion":19275,"pers":19276,"Ġtourism":19277,"Ġstark":19278,"vl":19279,"Ġblowing":19280,"ĠSchedule":19281,"std":19282,"Ġunhappy":19283,"Ġlitigation":19284,"cedes":19285,"Ġandroid":19286,"Ġintegral":19287,"erers":19288,"uded":19289,"tax":19290,"Ġreiter":19291,"ĠMotors":19292,"ociated":19293,"Ġwonders":19294,"ĠApost":19295,"ucking":19296,"ĠRoosevelt":19297,"fram":19298,"Ġyields":19299,"Ġconstitutes":19300,"awk":19301,"Interest":19302,"Ġinterim":19303,"Ġbreakthrough":19304,"ĠCher":19305,"Ġprosec":19306,"ĠDj":19307,"ĠMT":19308,"Resp":19309,"ĠPT":19310,"Ġsperm":19311,"edit":19312,"BT":19313,"Linux":19314,"country":19315,"league":19316,"Ġdick":19317,"Ġoct":19318,"Ġinserting":19319,"Ġscra":19320,"ĠBrewing":19321,"Ġ1966":19322,"Ġrunners":19323,"Ġplun":19324,"idy":19325,"ĠDian":19326,"Ġdysfunction":19327,"Ġexclusion":19328,"Ġdisgr":19329,"Ġincorporate":19330,"Ġreconc":19331,"Ġnominated":19332,"ĠArcher":19333,"draw":19334,"achelor":19335,"Ġwritings":19336,"Ġshallow":19337,"Ġhast":19338,"ĠBMW":19339,"ĠRS":19340,"Ġthigh":19341,"Ġ1963":19342,"Ġlamb":19343,"Ġfavored":19344,"agle":19345,"Ġcooler":19346,"ĠHours":19347,"ĠGU":19348,"ĠOrigin":19349,"Ġglimpse":19350,"--------------------":19351,"Lim":19352,"Ġcheek":19353,"Ġjealous":19354,"-'":19355,"Ġharness":19356,"ĠPoison":19357,"Ġdisabilities":19358,"neapolis":19359,"Ġoutlook":19360,"Ġnotify":19361,"ĠIndianapolis":19362,"Ġabrupt":19363,"nsic":19364,"Ġencrypted":19365,"Ġforfe":19366,"reath":19367,"Ġrabb":19368,"Ġfoundations":19369,"Ġcompliment":19370,"ĠInterview":19371,"ĠSwe":19372,"Ġadolesc":19373,"Ġmonitors":19374,"ĠSacramento":19375,"Ġtimely":19376,"Ġcontempl":19377,"Ġpositioned":19378,"Ġposters":19379,"phies":19380,"iovascular":19381,"void":19382,"ĠFifth":19383,"Ġinvestigative":19384,"OUN":19385,"Ġintegrate":19386,"ĠINC":19387,"isha":19388,"iblings":19389,"ĠRequest":19390,"ĠRodriguez":19391,"Ġslides":19392,"ĠDX":19393,"Ġfeminism":19394,"Ġdatas":19395,"Ġbend":19396,"irus":19397,"ĠNigeria":19398,"Fox":19399,"Change":19400,"Ġairplane":19401,"ĠLaden":19402,"Ġpublicity":19403,"ixty":19404,"Ġcommitments":19405,"Ġaggregate":19406,"Ġdisplaying":19407,"ĠArrow":19408,"Ġ122":19409,"Ġrespects":19410,"android":19411,"six":19412,"ĠSha":19413,"Ġrestoration":19414,")\\":19415,"WS":19416,"oys":19417,"Ġillustrate":19418,"without":19419,"126":19420,"ĠâĶĤ":19421,"Ġpickup":19422,"nels":19423,"Ġ....":19424,"food":19425,"ĠFen":19426,")?":19427,"Ġphenomena":19428,"Ġcompanions":19429,"ĠWrite":19430,"Ġspill":19431,"Ġbridges":19432,"ĠUpdated":19433,"ĠFo":19434,"Ġinsects":19435,"ASHINGTON":19436,"Ġscare":19437,"iltr":19438,"ĠZhang":19439,"Ġseverity":19440,"Ġindul":19441,"149":19442,"ĠCoffee":19443,"Ġnorms":19444,"Ġpulse":19445,"ĠFT":19446,"Ġhorrific":19447,"ĠDestroy":19448,"ĠJSON":19449,"Ġolive":19450,"Ġdiscusses":19451,"Rest":19452,"Elect":19453,"ĠWinn":19454,"ĠSurviv":19455,"ĠHait":19456,"Sure":19457,"oped":19458,"Ġrooted":19459,"ĠSke":19460,"ĠBronze":19461,"Ġlol":19462,"Default":19463,"Ġcommodity":19464,"redited":19465,"Ġlibertarian":19466,"Ġforbidden":19467,"Ġgran":19468,"à¨":19469,"Ġlag":19470,"enz":19471,"drive":19472,"Ġmathematics":19473,"Ġwires":19474,"Ġcritically":19475,"Ġcarbohyd":19476,"ĠChancellor":19477,"ĠEddie":19478,"Ġbanning":19479,"ĠFri":19480,"Ġcomplications":19481,"etric":19482,"ĠBangladesh":19483,"Ġbandwidth":19484,"Stop":19485,"ĠOriginally":19486,"Ġhalfway":19487,"ynasty":19488,"shine":19489,"Ġtales":19490,"rities":19491,"avier":19492,"Ġspinning":19493,"ĠWHO":19494,"Ġneighbourhood":19495,"bach":19496,"Ġcommerce":19497,"ĠSle":19498,"BU":19499,"Ġentrepreneur":19500,"Ġpeculiar":19501,"ĠComments":19502,"fre":19503,"320":19504,"ICS":19505,"Ġimagery":19506,"ĠCanon":19507,"ĠElectronic":19508,"short":19509,"((":19510,"Dig":19511,"Ġcommem":19512,"uced":19513,"Ġinclined":19514,"ĠSummon":19515,"Ġcliff":19516,"ĠMediterranean":19517,"Ġpoetry":19518,"Ġprosperity":19519,"ĠRece":19520,"Ġpills":19521,"member":19522,"Ġfinale":19523,"unc":19524,"ĠGig":19525,"ä½":19526,"Ġlod":19527,"Ġbackward":19528,"-+":19529,"ĠForward":19530,"Ġthri":19531,"sure":19532,"Ġsoap":19533,"ĠFX":19534,"RES":19535,"ĠSexual":19536,"oulos":19537,"Ġfoolish":19538,"Ġrighteous":19539,"Ġcoff":19540,"terrorism":19541,"ustain":19542,"oter":19543,"Ġabuses":19544,"next":19545,"Ġabusive":19546,"Ġthereafter":19547,"Ġprohibition":19548,"ĠSUP":19549,"Ġdip":19550,"Ġripped":19551,"Ġinherited":19552,"Ġbats":19553,"stru":19554,"GT":19555,"Ġflawed":19556,"phabet":19557,"Ġfog":19558,"doors":19559,"Ġimaging":19560,"Ġdigits":19561,"ĠHungary":19562,"Ġarrog":19563,"Ġteachings":19564,"Ġprotocols":19565,"ĠBanks":19566,"à¸":19567,"pound":19568,"ĠCurt":19569,".\")":19570,"./":19571,"Ġexemption":19572,"endix":19573,"ĠMull":19574,"Ġimproves":19575,"ĠGamer":19576,"dimensional":19577,"Icon":19578,"ĠMargaret":19579,"Status":19580,"dates":19581,"Ġintends":19582,"Ġdepict":19583,"Ġparked":19584,"Joe":19585,"ĠMarines":19586,"chnology":19587,"!).":19588,"Ġjudged":19589,"Ġweights":19590,"Ray":19591,"Ġapartments":19592,"hester":19593,"Ġreinforce":19594,"Ġoffender":19595,"occup":19596,"Ġsore":19597,"ept":19598,"ĠPHP":19599,"ĠBrow":19600,"Ġauthorization":19601,"ĠRisk":19602,"ĠDelaware":19603,"ĠQU":19604,"Ġnotifications":19605,"Ġsunlight":19606,"Ġexclude":19607,"dat":19608,"Ġmesh":19609,"ĠSudan":19610,"Ġbelonged":19611,"Ġsubway":19612,"Ġnoon":19613,"ĠInterior":19614,"olics":19615,"ĠLakers":19616,"Ġcoding":19617,"Disclaimer":19618,"Calif":19619,"Old":19620,"Ġdisl":19621,"?????":19622,"Ġconfirms":19623,"Ġrecruitment":19624,"Ġhomicide":19625,"Consider":19626,"ĠJeffrey":19627,"fty":19628,"};":19629,"Ġobjection":19630,"doing":19631,"ĠLeo":19632,"Want":19633,"Ġglow":19634,"ĠClarke":19635,"ĠNorman":19636,"Ġverification":19637,"Ġpacket":19638,"ĠFormula":19639,"Ġplag":19640,"esville":19641,"Ġshouting":19642,"Ġov":19643,"ĠREC":19644,"ĠBub":19645,"Ġninth":19646,"Ġenerg":19647,"Ġvalidity":19648,"Ġups":19649,"jack":19650,"Ġneighboring":19651,"ĠNec":19652,"eworks":19653,"ĠHab":19654,"arez":19655,"Ġspine":19656,"Ġeventual":19657,"ĠLeaders":19658,"ĠCarn":19659,"Ġprobation":19660,"Ġromance":19661,"msg":19662,"ĠMechanical":19663,"ERY":19664,"Rock":19665,"Ġpartisan":19666,"Node":19667,"assets":19668,"minent":19669,"Ġforeigners":19670,"Ġtestify":19671,"ĠUsually":19672,"lords":19673,"ĠGren":19674,"ĠPowell":19675,"BIL":19676,"Ġsr":19677,"Ġaddict":19678,"Ġshells":19679,"Ġsigh":19680,"ĠYale":19681,"ternity":19682,"Ġ750":19683,"EU":19684,"ĠRifle":19685,"Ġpatron":19686,"ema":19687,"ĠBannon":19688,"anity":19689,"Ġtropical":19690,"ĠVII":19691,"cross":19692,"Everything":19693,"ĠISO":19694,"Ġhumble":19695,"assing":19696,"ĠFIG":19697,"Ġupdating":19698,"yson":19699,"Ġcalcium":19700,"Ġcompetent":19701,"Ġsteering":19702,"Prot":19703,"ĠSY":19704,"ĠFinals":19705,"ĠRug":19706,"159":19707,"137":19708,"ĠGolf":19709,"Ġ126":19710,"Ġaccommodation":19711,"ĠHughes":19712,"Ġaesthetic":19713,"artisan":19714,"ĠTwilight":19715,"Ġprince":19716,"ĠAgriculture":19717,"ĠDisco":19718,"Ġprecedent":19719,"Ġtyping":19720,"authorized":19721,"Option":19722,"ĠAub":19723,"lishes":19724,"acht":19725,"mag":19726,"Peter":19727,"ĠUFO":19728,"monton":19729,"ĠLith":19730,"Ġarom":19731,"Ġsecuring":19732,"Ġconfined":19733,"private":19734,"Ġswords":19735,"Ġmarkers":19736,"Ġmetabolic":19737,"select":19738,"ĠCurse":19739,"ĠOt":19740,"gressive":19741,"Ġincumb":19742,"ĠSaga":19743,"Ġpriced":19744,"Ġclearance":19745,"Content":19746,"Ġdrilling":19747,"Ġnotices":19748,"Ġbourgeois":19749,"Ġvest":19750,"Ġcookie":19751,"ĠGuardians":19752,"rys":19753,"inyl":19754,"Ġ124":19755,"Ġplausible":19756,"ongh":19757,"ĠOdin":19758,"Ġconception":19759,"ĠYuk":19760,"ĠBaghdad":19761,"ĠFlag":19762,"Austral":19763,"ĠIBM":19764,"Ġinternationally":19765,"ĠWikiLeaks":19766,"IED":19767,"Ġcyn":19768,"Ġchooses":19769,"ĠPill":19770,"Ġcombining":19771,"Ġradi":19772,"ĠMohammed":19773,"defense":19774,"atching":19775,"Subject":19776,"iciency":19777,"Frame":19778,"Ġ{\"":19779,"Ġchess":19780,"Ġtimer":19781,"190":19782,"Ġtin":19783,"Ġordinance":19784,"emetery":19785,"Ġaccusing":19786,"Ġnoticeable":19787,"Ġcentres":19788,"Ġlid":19789,"ĠMills":19790,"imgur":19791,"Ġzoom":19792,"ergic":19793,"Ġcompression":19794,"prim":19795,"find":19796,"Ġsurg":19797,"Ġpand":19798,"ĠKee":19799,"ĠChad":19800,"cellence":19801,"oyle":19802,"Ġsocialism":19803,"ĠTravis":19804,"ĠMHz":19805,"Ġguild":19806,"ALLY":19807,"ĠSubscribe":19808,"ĠRelated":19809,"Ġoccurrence":19810,"itching":19811,"Ġfictional":19812,"Ġcrush":19813,"ĠEA":19814,"cod":19815,"mix":19816,"ĠTriple":19817,"Ġretrieve":19818,"Ġstimulus":19819,"Ġpsychiat":19820,"ĠDoor":19821,"Ġhomosexuality":19822,"Ġelementary":19823,"Ġcellular":19824,"idian":19825,"ĠLaun":19826,"Ġintriguing":19827,"Ġfoam":19828,"ĠBass":19829,"idi":19830,"itsu":19831,"Ġassure":19832,"Ġcongrat":19833,"Ġbusinessman":19834,"ĠBoost":19835,"close":19836,"Ġlied":19837,"Ġsciences":19838,"ĠOmega":19839,"ĠGraphics":19840,"Ġ<=":19841,"spoken":19842,"Ġconnectivity":19843,"Saturday":19844,"ĠAvengers":19845,"Ġtoggle":19846,"Ġankle":19847,"Ġnationalist":19848,"model":19849,"ĠPool":19850,"ophobia":19851,"Var":19852,"ĠMons":19853,"atories":19854,"Ġaggressively":19855,"Clear":19856,"Forge":19857,"acters":19858,"Ġhedge":19859,"Ġpipes":19860,"Ġblunt":19861,"Ġsq":19862,"Ġremotely":19863,"Wed":19864,"asers":19865,"Ġrefriger":19866,"Ġtiles":19867,"Ġrescued":19868,"Ġcomprised":19869,"insky":19870,"Ġmanif":19871,"avanaugh":19872,"Ġprolifer":19873,"Ġaligned":19874,"xml":19875,"Ġtriv":19876,"Ġcoordination":19877,"ĠPER":19878,"ĠQuote":19879,"134":19880,"bf":19881,"ĠSaw":19882,"Ġtermination":19883,"Ġ190":19884,"Ġadditions":19885,"Ġtrio":19886,"Ġprojections":19887,"Ġpositively":19888,"Ġinclusive":19889,"Ġmembr":19890,"1990":19891,"older":19892,"Ġpracticed":19893,"inkle":19894,"Arch":19895,"Ġstarters":19896,"arius":19897,"Ġintermediate":19898,"ĠBenef":19899,"ĠKiller":19900,"Ġinterventions":19901,"ĠKil":19902,"ĠFlying":19903,"Inv":19904,"Ġpremature":19905,"Ġpsychiatric":19906,"Ġindie":19907,"Ġcollar":19908,"ĠRainbow":19909,"afi":19910,"Ġdisruption":19911,"ĠFOX":19912,"casting":19913,"Ġmisdem":19914,"cro":19915,"Ġwipe":19916,"ardon":19917,"Ġbast":19918,"ĠTommy":19919,"ĠRepresentative":19920,"Ġbelly":19921,"ĠPO":19922,"ĠBreitbart":19923,"132":19924,"Ġmessaging":19925,"Should":19926,"References":19927,"ĠGRE":19928,"istical":19929,"LP":19930,"ĠCav":19931,"ĠCrazy":19932,"Ġintuitive":19933,"keeping":19934,"ĠMoss":19935,"Ġdiscontin":19936,"ĠModule":19937,"Ġunrelated":19938,"ĠPractice":19939,"ĠTransport":19940,"Ġstatistically":19941,"orns":19942,"Ġsized":19943,"pu":19944,"Ġcaf":19945,"ĠWorlds":19946,"ĠRodgers":19947,"ĠLun":19948,"ĠComic":19949,"living":19950,"Ġcared":19951,"Ġclimbed":19952,"){":19953,"Ġconsisted":19954,"Ġmedieval":19955,"folk":19956,"Ġhacked":19957,"Ġdire":19958,"ĠHermione":19959,"Ġtended":19960,"ceans":19961,"Daniel":19962,"went":19963,"Ġlegislators":19964,"Ġredes":19965,"games":19966,"Ġgn":19967,"amiliar":19968,"Ġ++":19969,"ggy":19970,"threat":19971,"Ġmagnet":19972,"Ġperceive":19973,"Ġzip":19974,"Ġindictment":19975,"Ġcritique":19976,"gard":19977,"ĠSafe":19978,"ĠCream":19979,"Ġadvent":19980,"oba":19981,"Ġvowed":19982,"ousands":19983,"Ġski":19984,"Ġabortions":19985,"uart":19986,"Ġstunned":19987,"Ġadvancing":19988,"Ġlacked":19989,"Ġ\\\"":19990,"Ġschizophren":19991,"Ġelegant":19992,"Ġconferences":19993,"Ġcanceled":19994,"ĠHudson":19995,"ĠHopefully":19996,"Ġtrump":19997,"Ġfrequencies":19998,"Ġmeteor":19999,"ĠJunior":20000,"ĠFleet":20001,"ĠMalcolm":20002,"ĠTools":20003,"Ġ........":20004,"Ġhobby":20005,"ĠEuropeans":20006,"Ġ1500":20007,"ĠInto":20008,"Ġsway":20009,"ĠAppro":20010,"ĠCompl":20011,"Community":20012,"Ġtide":20013,"ĠSummit":20014,"ä»":20015,"Ġintervals":20016,"ĠEther":20017,"Ġhabitat":20018,"ĠStevens":20019,"lishing":20020,"ĠDomain":20021,"Ġtriggers":20022,"Ġchasing":20023,"Ġcharm":20024,"ĠFlower":20025,"itored":20026,"Ġblessing":20027,"Ġtextures":20028,"Five":20029,"Ġliquor":20030,"RP":20031,"FIN":20032,"Ġ1962":20033,"CAR":20034,"Unknown":20035,"Ġresil":20036,"ĠLily":20037,"Ġabundance":20038,"Ġpredictable":20039,"rar":20040,"Ġbullshit":20041,"leen":20042,"chet":20043,"Mor":20044,"Much":20045,"ä¹":20046,"Ġemphasized":20047,"Ġcrust":20048,"Ġprimitive":20049,"Ġenjoyable":20050,"ĠPictures":20051,"Ġteammate":20052,"pler":20053,"ĠTol":20054,"ĠKane":20055,"Ġsummoned":20056,"thy":20057,"rama":20058,"ĠHonda":20059,"Ġrealizing":20060,"Ġquicker":20061,"Ġconcentrate":20062,"clear":20063,"Ġ210":20064,"ĠErdogan":20065,"aris":20066,"Ġresponds":20067,"ĠBI":20068,"Ġeligibility":20069,"Ġpushes":20070,"ĠIdaho":20071,"Ġaggrav":20072,"Ġruins":20073,"urations":20074,"Ġbans":20075,"Ġanat":20076,"share":20077,"Ġgrind":20078,"hin":20079,"umen":20080,"Ġutilities":20081,"ĠYankees":20082,"Ġdatabases":20083,"ĠDD":20084,"Ġdisplaced":20085,"Ġdependencies":20086,"Ġstimulation":20087,"hun":20088,"houses":20089,"ĠPretty":20090,"ĠRavens":20091,"ĠTODAY":20092,"Ġassociates":20093,"Ġtherape":20094,"cled":20095,"Ġdeer":20096,"Ġrepairs":20097,"rentice":20098,"Ġreceptors":20099,"Ġremed":20100,"ĠCe":20101,"Ġmarriages":20102,"Ġballots":20103,"ĠSoldier":20104,"Ġhilarious":20105,"opl":20106,"138":20107,"Ġinherently":20108,"Ġignorant":20109,"Ġbounce":20110,"ĠEaster":20111,"RELATED":20112,"ĠCurrency":20113,"EV":20114,"ãĥŀ":20115,"ĠLead":20116,"Ġdeceased":20117,"Brien":20118,"ĠMusk":20119,"JS":20120,"Ġmerge":20121,"hearted":20122,"creat":20123,"mitt":20124,"mund":20125,"ĠâĢĭ":20126,"ĠBag":20127,"Ġprojection":20128,"Ġjava":20129,"ĠStandards":20130,"ĠLeonard":20131,"Ġcoconut":20132,"ĠPopulation":20133,"Ġtraject":20134,"Ġimply":20135,"Ġcuriosity":20136,"ĠDB":20137,"ĠFresh":20138,"ĠPor":20139,"Ġheavier":20140,"neys":20141,"gomery":20142,"Ġdeserved":20143,"Ġphrases":20144,"ĠGC":20145,"Ġyeast":20146,"desc":20147,"Death":20148,"Ġreboot":20149,"Ġmetadata":20150,"ICAL":20151,"Ġrepay":20152,"ĠIndependence":20153,"Ġsuburban":20154,"icals":20155,"Ġatop":20156,"Ġallocation":20157,"generation":20158,"ĠGram":20159,"Ġmoisture":20160,"Ġpine":20161,"ĠLiberals":20162,"Ġaides":20163,"Ġunderest":20164,"ĠBerry":20165,"Ġceremon":20166,"370":20167,"astrous":20168,"ĠPirates":20169,"Ġtense":20170,"ĠIndustries":20171,"ĠAppeals":20172,"ĠNear":20173,"Ġè£ıç":20174,"Ġlovers":20175,"ĠCAP":20176,"ĠCraw":20177,"Ġgiants":20178,"Ġefficacy":20179,"Element":20180,"ĠBehavior":20181,"ĠToyota":20182,"Ġintest":20183,"Priv":20184,"AI":20185,"Ġmaneuver":20186,"Ġperfection":20187,"Ġbang":20188,"paper":20189,"rill":20190,"George":20191,"border":20192,"inters":20193,"ĠSeth":20194,"Ġclues":20195,"ĠLevi":20196,"ĠRevenue":20197,"147":20198,"Ġvapor":20199,"Ġfortunate":20200,"Ġthreatens":20201,"Ġvet":20202,"Ġdependency":20203,"ersed":20204,"article":20205,"ĠBlizzard":20206,"Ġchlor":20207,"Ġminus":20208,"ĠBills":20209,"Ġcryptocurrency":20210,"Ġmetabolism":20211,"tering":20212,"Ġpestic":20213,"steps":20214,"ĠTreasure":20215,"racted":20216,"ĠConstant":20217,"Ġtemp":20218,"139":20219,"ĠDetective":20220,"urally":20221,"Ġrecovering":20222,"Ġcortex":20223,"Ġ144":20224,"closed":20225,"Ġprejudice":20226,"aunted":20227,"Ġstorms":20228,"ĠNOW":20229,"Ġmachinery":20230,"Address":20231,"Ġcompelled":20232,"270":20233,"Ġdespair":20234,"bane":20235,"Ġvegetable":20236,"Ġbeds":20237,"Learn":20238,"Ġcolorful":20239,"Ġspike":20240,"Ġmargins":20241,"Ġsympathy":20242,"Ġworkshop":20243,"ĠCBC":20244,"Sat":20245,"Ġburns":20246,"ĠGender":20247,"Ġ129":20248,"ĠCable":20249,"Ġdebts":20250,"ĠTheresa":20251,"Ġreflecting":20252,"Ġairst":20253,"Ġrim":20254,"ramid":20255,"Ġweaknesses":20256,"Writ":20257,"oggle":20258,"ti":20259,"ĠCharge":20260,"Ġweighed":20261,"Ġ(.":20262,"Ġlaughter":20263,"Ġrouter":20264,"ĠDemocracy":20265,"Dear":20266,"Ġhasht":20267,"Ġdy":20268,"Ġhints":20269,"running":20270,"Ġfinishes":20271,"arus":20272,"Mass":20273,"result":20274,"ascus":20275,"Ġvintage":20276,"Ġconqu":20277,"Ġwildly":20278,"acist":20279,"Ġlingu":20280,"Ġprotagonist":20281,"strom":20282,"teenth":20283,"ĠSolo":20284,"mac":20285,"filled":20286,"Ġrenown":20287,"itives":20288,"Ġmotive":20289,"ĠAntar":20290,"ĠMann":20291,"ĠAdjust":20292,"Ġrockets":20293,"Ġtroubling":20294,"ei":20295,"Ġorganisms":20296,"assis":20297,"Christian":20298,"Ġ145":20299,"ĠHass":20300,"Ġswall":20301,"Ġwax":20302,"ĠSurvival":20303,"VS":20304,"ĠMurd":20305,"vd":20306,"standard":20307,"Ġdragons":20308,"Ġacceleration":20309,"rational":20310,"final":20311,"Ġpaired":20312,"ĠEthereum":20313,"Ġinterfaces":20314,"Ġresent":20315,"Ġartifacts":20316,"Å«":20317,"arel":20318,"Ġcompetitor":20319,"ĠNicholas":20320,"ĠSurface":20321,"cpp":20322,"ĠTot":20323,"Ġeconomically":20324,"Ġorganised":20325,"Ġenforced":20326,"inho":20327,"Ġvarieties":20328,"Ġabdom":20329,"ĠBailey":20330,"idav":20331,"ĠSalv":20332,"paid":20333,"Ġaltitude":20334,"essert":20335,"ĠGutenberg":20336,"area":20337,"opoulos":20338,"Ġprofessors":20339,"iggs":20340,"ĠFate":20341,"hey":20342,"Ġ3000":20343,"Dist":20344,"Ġtwins":20345,"cill":20346,"ĠMaps":20347,"Ġtraps":20348,"Ġweed":20349,"ĠKiss":20350,"Ġyoga":20351,"Ġrecipients":20352,"ĠWestminster":20353,"Ġpools":20354,"ĠWalmart":20355,"188":20356,"ĠSchools":20357,"attack":20358,"ĠARM":20359,"paragraph":20360,"Warning":20361,"jl":20362,"Ġselfish":20363,"anchez":20364,"ĠHeights":20365,"Fre":20366,"ĠSoph":20367,"Ġ--------------------------------":20368,"tml":20369,"333":20370,"Ġraids":20371,"Ġsatellites":20372,"KEY":20373,"Ġlasts":20374,"ÑĤ":20375,"Ins":20376,"ĠDame":20377,"Ġunpredict":20378,"///":20379,"ghai":20380,"Ġartillery":20381,"Ġcruise":20382,"Ġgel":20383,"ĠCabinet":20384,"Ġblows":20385,"ĠEsp":20386,"Ġproximity":20387,"othe":20388,"ĠSkills":20389,"ĠUpper":20390,"obo":20391,"ĠNDP":20392,"Ġenjoys":20393,"Ġrepeating":20394,"ĠConstruction":20395,"ĠQuestions":20396,"Hillary":20397,"Ġuint":20398,"Ġprocessors":20399,"ĠGibson":20400,"ĠMultiple":20401,"qa":20402,"ĠBom":20403,"ĠMiles":20404,"ventional":20405,"Ġhurts":20406,"skin":20407,"ĠAIDS":20408,"Ġadvisers":20409,"ĠRoot":20410,"Ġmethodology":20411,"ĠDale":20412,"Ġdeton":20413,"ĠKnowledge":20414,"sequently":20415,"Ġ121":20416,"Ġconnects":20417,"Cy":20418,"ĠDanger":20419,"Ġcontributors":20420,"ĠBent":20421,"Ġbrass":20422,"ĠGuns":20423,"into":20424,"ĠFortune":20425,"Ġbroker":20426,"balance":20427,"Ġlengths":20428,"Ġvic":20429,"Ġaveraging":20430,"Ġappropriately":20431,"ĠCamera":20432,"Ġsandwich":20433,"ĠCDC":20434,"Ġcoordinate":20435,"Ġnavig":20436,"Ġgoodness":20437,"laim":20438,"Ġbrake":20439,"Ġextremist":20440,"ĠWake":20441,"ĠMend":20442,"ĠTiny":20443,"ĠCOL":20444,"ĠRF":20445,"ĠDual":20446,"ĠWine":20447,"Case":20448,"Ġrefined":20449,"Ġlamp":20450,"Lead":20451,"Ġbapt":20452,"ĠCarb":20453,"ĠSadd":20454,"ĠMinneapolis":20455,"PDF":20456,"Early":20457,"ĠHidden":20458,"Its":20459,"ĠTIME":20460,"Ġpap":20461,"Ġcommissioned":20462,"ĠFew":20463,"ĠColts":20464,"ĠBren":20465,"Ġbothered":20466,"Ġlikewise":20467,"Exper":20468,"ĠSchw":20469,"cry":20470,"nn":20471,"ĠMitch":20472,"imon":20473,"MG":20474,"bm":20475,"UMP":20476,"rays":20477,"Ġregistry":20478,"Ġ270":20479,"achine":20480,"rella":20481,"anting":20482,"00000":20483,"Ġruined":20484,"spot":20485,"Ġta":20486,"Ġmaximize":20487,"Ġinconven":20488,"Dead":20489,"Human":20490,"Enabled":20491,"ĠMarie":20492,"Ġchill":20493,"ĠParadise":20494,"Ġstarring":20495,"ĠLatino":20496,"ĠProtocol":20497,"ĠEVER":20498,"Ġsuppliers":20499,"message":20500,"ĠBrock":20501,"Ġserum":20502,"âĸĪâĸĪâĸĪâĸĪ":20503,"Ġencomp":20504,"Ġambition":20505,"uese":20506,"Ġarrows":20507,"Andrew":20508,"Ġantenna":20509,"Ġ1961":20510,"ĠBark":20511,"Ġbool":20512,"ãĤª":20513,"ĠStorage":20514,"Ġrailway":20515,"Ġtougher":20516,"ĠCad":20517,"Ġwashing":20518,"Py":20519,"']":20520,"embed":20521,"ĠMemphis":20522,"ackle":20523,"Ġfamously":20524,"ĠFortunately":20525,"ovies":20526,"Ġmindset":20527,"Ġsneak":20528,"ĠDh":20529,"RAW":20530,"ĠSimpson":20531,"Ġlivest":20532,"Ġlandmark":20533,"Ġcement":20534,"Low":20535,"Ġthrilled":20536,"ĠCourse":20537,"inel":20538,"Ġchuck":20539,"idate":20540,"global":20541,"Ġwhit":20542,"Ġ�":20543,"adays":20544,"ski":20545,"ĠSV":20546,"Ġviruses":20547,"306":20548,"ĠRespons":20549,"Ġtheaters":20550,"ĠBranch":20551,"ĠGeneva":20552,"ĠMK":20553,"Ġunbeliev":20554,"Ġcommunist":20555,"Original":20556,"ĠReceived":20557,"ĠTransfer":20558,"ĠArg":20559,"Input":20560,"ĠStrategy":20561,"Ġpalace":20562,"thening":20563,"Dri":20564,"Ġsentencing":20565,"umbnail":20566,"Ġpins":20567,"recy":20568,"Ġsiblings":20569,"Getting":20570,"ĠBU":20571,"ĠNorthwest":20572,"Ġprolonged":20573,"ĠSakura":20574,"Comb":20575,"ĠBour":20576,"Ġinadequate":20577,"ĠKash":20578,"Ġusername":20579,"ĠImprove":20580,"Ġbattling":20581,"ĠMAC":20582,"Ġcurriculum":20583,"Ġsoda":20584,"ĠCannon":20585,"Ġsensible":20586,"spons":20587,"December":20588,"Ġwicked":20589,"ĠPengu":20590,"Ġdictators":20591,"ĠHearts":20592,"ogyn":20593,"Ġsimilarities":20594,"ĠStats":20595,"Ġhollow":20596,"itations":20597,"\":[":20598,"Ġhover":20599,"ĠListen":20600,"sch":20601,"Sund":20602,"Ġcad":20603,"ĠParks":20604,"Ġlur":20605,"Ġhype":20606,"ĠLem":20607,"NAME":20608,"isure":20609,"Friday":20610,"Ġshoots":20611,"Ġcloses":20612,"Ġdb":20613,"ĠRidge":20614,"ĠDifferent":20615,"Ġreplies":20616,"ĠBroadway":20617,"opers":20618,"Ġintoler":20619,"ĠZeus":20620,"akespe":20621,"Ġproprietary":20622,"Ġrequesting":20623,"Ġcontrollers":20624,"ĠMIN":20625,"imedia":20626,"becca":20627,"Ġexpans":20628,"Ġoils":20629,"Bot":20630,"ĠChand":20631,"Ġprinter":20632,"Ġtopped":20633,"ĠPOL":20634,"ĠEarlier":20635,"Social":20636,"avin":20637,"Ġdecreases":20638,"ĠSeb":20639,"Ġspecifications":20640,"ĠBlast":20641,"ĠKurt":20642,"Ġfreel":20643,"Brown":20644,"Ġdilig":20645,"roe":20646,"ĠProblem":20647,"ĠQuad":20648,"Ġdecentral":20649,"ĠVector":20650,"anut":20651,"Ġplugins":20652,"ĠGregory":20653,"Ġfucked":20654,"elines":20655,"ĠAmbassador":20656,"take":20657,"Ġcleans":20658,"ongyang":20659,"Anonymous":20660,"stro":20661,"\"}":20662,"aline":20663,"ĠOdd":20664,"ĠEug":20665,"216":20666,"Ġboil":20667,"ĠPowers":20668,"Ġnurses":20669,"Obviously":20670,"ĠTechnical":20671,"Ġexceeded":20672,"ORS":20673,"Ġextremists":20674,"Ġtraces":20675,"expl":20676,"Ġcomr":20677,"ĠSach":20678,")/":20679,"Ġmasks":20680,"Ġsci":20681,"Bon":20682,"Ġregression":20683,"wegian":20684,"Ġadvisor":20685,"itures":20686,"ĠVo":20687,"example":20688,"ĠInstruct":20689,"Ġsiege":20690,"Ġreductions":20691,"ptr":20692,"Ġstatutory":20693,"Ġremoves":20694,"Ġpuck":20695,"redits":20696,"Ġbee":20697,"Ġsalad":20698,"Ġpromotions":20699,"ĠJoshua":20700,"withstanding":20701,"ETH":20702,"ĠCha":20703,"imus":20704,"Ġexpenditure":20705,"aunting":20706,"Ġdelighted":20707,"Ġ155":20708,"beh":20709,"Ġcarpet":20710,"ĠSpart":20711,"Ġjungle":20712,"lists":20713,"Ġbullying":20714,"ĠNobel":20715,"ĠGlen":20716,"Ġreferenced":20717,"Ġintroduces":20718,"sein":20719,"Ġchopped":20720,"glass":20721,"ĠWrest":20722,"Ġneutrality":20723,"ĠâĻ":20724,"Ġinvestigator":20725,"Ġshelves":20726,"Ġunconstitutional":20727,"Ġreproduction":20728,"Ġmerchant":20729,"mia":20730,"Ġmetrics":20731,"Ġexplosives":20732,"ĠSonia":20733,"Ġbodily":20734,"Ġthickness":20735,"Ġpredominantly":20736,"ĠAbility":20737,"Ġmonitored":20738,"ICH":20739,"Ġ].":20740,"ĠMartinez":20741,"Ġvisibility":20742,"Ġqueries":20743,"Ġgenocide":20744,"ĠWarfare":20745,"Query":20746,"Ġstudios":20747,"Ġembry":20748,"Ġcorridor":20749,"Ġcleaned":20750,"complete":20751,"ĠMH":20752,"Ġenrollment":20753,"INGS":20754,"Ġimpacted":20755,"Ġdisastrous":20756,"ĠYun":20757,"ĠClaire":20758,"ĠBasically":20759,"yt":20760,"usterity":20761,"Ġindirectly":20762,"wik":20763,"Ġdod":20764,"ĠCarr":20765,"Ġamp":20766,"Ġprohibit":20767,"ĠInitial":20768,"ĠRd":20769,"iji":20770,"Ġeducate":20771,"corn":20772,"iott":20773,"ĠBeauty":20774,"Ġdetective":20775,"ĠConn":20776,"since":20777,"Ġstagger":20778,"Ġobese":20779,"Ġbree":20780,"ologic":20781,"isse":20782,"walker":20783,"Ġblades":20784,"Ġlawful":20785,"func":20786,"ĠBehind":20787,"Ġappetite":20788,"Ġ(*":20789,"Ġtennis":20790,"Ġoffspring":20791,"Ġjets":20792,"Ġstructured":20793,"Ġaforementioned":20794,"Nov":20795,"Ġscaling":20796,"fill":20797,"Ġstew":20798,"Ġcurb":20799,"ĠStephan":20800,"edIn":20801,"SF":20802,"obic":20803,"éŃĶ":20804,"oug":20805,"ĠMM":20806,"Ġgenetically":20807,"opez":20808,"136":20809,"Ġumb":20810,"ancers":20811,"Ġcohort":20812,"Ġmerchandise":20813,"Ġimposing":20814,"ĠLegislature":20815,"ĠArchive":20816,"ivia":20817,"ĠNaval":20818,"Ġoffences":20819,"Ġmiracle":20820,"Ġsnapped":20821,"Ġfoes":20822,"Ġextensively":20823,"ĠRaf":20824,"Ġcater":20825,"edience":20826,"Kit":20827,"ĠBin":20828,"Ġrecommends":20829,"ĠCities":20830,"Ġrigid":20831,"ĠREAD":20832,"ĠNoble":20833,"ĠTian":20834,"Ġcertificates":20835,"antis":20836,"oiler":20837,"ĠBuddhist":20838,"did":20839,"Ġsurveyed":20840,"Ġdownward":20841,"Ġprints":20842,"ĠMotion":20843,"ronics":20844,"ĠSans":20845,"ossibly":20846,"uctions":20847,"Ġcolonies":20848,"ĠDanish":20849,"unit":20850,"Ġspoil":20851,"Ġadvisory":20852,"berries":20853,"Plan":20854,"Ġspecification":20855,"ophers":20856,"ĠResource":20857,"Ġshirts":20858,"prisingly":20859,"communications":20860,"Ġtrivial":20861,"Ġmentioning":20862,"isexual":20863,"Ġsupplements":20864,"Ġsupervision":20865,"BP":20866,"vor":20867,"Ġwit":20868,"Ġcooldown":20869,"Ġplaintiff":20870,"ĠReviews":20871,"ĠSri":20872,"ĠMint":20873,"ĠSugar":20874,"Ġafterward":20875,"ĠPriest":20876,"ĠInvestment":20877,"ogene":20878,"ĠTaking":20879,"Ġstretching":20880,"Ġinflammation":20881,"ĠTehran":20882,"Ġlining":20883,"Ġfreezing":20884,"ĠEntity":20885,"Ġinspiring":20886,"special":20887,"price":20888,"Ġsue":20889,"ĠPorter":20890,"ounge":20891,"ETA":20892,"ĠDerek":20893,"ĠLuis":20894,"uo":20895,"ymph":20896,"Ġexterior":20897,"ihil":20898,"ĠAshley":20899,"inator":20900,"Ġnutrients":20901,"ĠThrones":20902,"Ġfinances":20903,"ĠInspect":20904,"Ġspecially":20905,"ĠRequired":20906,"ĠPTS":20907,"ĠViolence":20908,"ointed":20909,"shots":20910,"Ġexcerpt":20911,"coon":20912,"INS":20913,"ĠGri":20914,"Ġrecognised":20915,"Week":20916,"Young":20917,"Ġvom":20918,"isle":20919,"ĠCurry":20920,"ĠBuddh":20921,"Ġnotebook":20922,"Ġdurable":20923,"/?":20924,"ĠGad":20925,"ĠPupp":20926,"Ġforgive":20927,"park":20928,"Ġpersonalities":20929,"analysis":20930,"clamation":20931,"Ġelevator":20932,"Ġwarehouse":20933,"ĠRole":20934,"unn":20935,"Ġillustration":20936,"ĠScan":20937,"Ġatmospheric":20938,"Import":20939,"ANC":20940,"ricted":20941,"fu":20942,"010":20943,"Ġarche":20944,"Ġrewarded":20945,"akespeare":20946,"Ġinternally":20947,"ĠRBI":20948,"alker":20949,"Ġelephant":20950,"owitz":20951,"ĠPizza":20952,"Ġbipartisan":20953,"és":20954,"Ġslowed":20955,"ĠStark":20956,"Ġoverride":20957,"OUS":20958,"Ġ320":20959,"undreds":20960,"ĠDeck":20961,"ĠCensus":20962,"bee":20963,"146":20964,"otor":20965,"Ġip":20966,"Ġub":20967,"ocations":20968,"ĠButton":20969,"rice":20970,"Ġcripp":20971,"fff":20972,"Ġoriginated":20973,"Ġoverwhelmed":20974,"appa":20975,"Ġforemost":20976,"âĢij":20977,"ĠLEG":20978,"release":20979,"eatured":20980,"atches":20981,"Ġreps":20982,"Ġlending":20983,"ĠReference":20984,"ĠClient":20985,"165":20986,"venth":20987,"Complete":20988,"ĠPatrol":20989,"Ġsworn":20990,"cam":20991,"Ġshuttle":20992,"ĠRalph":20993,"Ġhometown":20994,"-,":20995,"onal":20996,"ĠBP":20997,"åı":20998,"Ġpersuade":20999,"ĠAlexand":21000,"Ġcombines":21001,"Ġvivid":21002,"ĠLag":21003,"Ġencoding":21004,"Ġsalvation":21005,"wen":21006,"ĠRecovery":21007,"iya":21008,"University":21009,"ĠBiden":21010,"Ġbudgets":21011,"ĠTexans":21012,"fits":21013,"Ġhonored":21014,"Ġpython":21015,"TD":21016,"###":21017,"clone":21018,"Ġblink":21019,"ĠLiquid":21020,"Ġunemployed":21021,"Ġclashes":21022,"ĠCounsel":21023,"Ġdirecting":21024,"Ġpunct":21025,"ĠFalcons":21026,"Ġshark":21027,"ĠDamascus":21028,"Ġjeans":21029,"Ġembark":21030,"Ġseize":21031,"Ġupwards":21032,"280":21033,"ĠEz":21034,"ĠAnything":21035,"Ġexotic":21036,"lower":21037,"ĠCreator":21038,"ĠUm":21039,"Ġsuburbs":21040,"berger":21041,"ĠWend":21042,"Ġmint":21043,"ĠXX":21044,"ĠDro":21045,"Ġsuffers":21046,"Ġherb":21047,"tree":21048,"Ġfragile":21049,"Ġflooded":21050,"ĠAlcohol":21051,"olean":21052,"nyder":21053,"ĠKO":21054,"Fram":21055,"Ġ136":21056,"Ġowed":21057,"ĠMelee":21058,"ĠHash":21059,"Ġwhisk":21060,"Ġsudo":21061,"rr":21062,"Quick":21063,"appro":21064,"Ġii":21065,"ĠExamples":21066,"hee":21067,"Ġpromotes":21068,"perature":21069,"kar":21070,"ĠHonor":21071,"Ġsodium":21072,"ĠLif":21073,"rosso":21074,"intendent":21075,"Ġcorrespondent":21076,"Found":21077,"secret":21078,"Ġidentifies":21079,"agne":21080,"Ġlou":21081,"ĠPP":21082,"Ġcoincidence":21083,"move":21084,"Ġmilitia":21085,"Ġinfiltr":21086,"ĠPrimary":21087,"Ġpitching":21088,"ĠIb":21089,"ĠGOOD":21090,"ãĤ¸":21091,"ĠWizards":21092,"iral":21093,"ĠVenus":21094,"RR":21095,"ĠâĢķ":21096,"ĠCasey":21097,"Ġsadly":21098,"Ġadmire":21099,"Ġembarrassed":21100,"cb":21101,"Mel":21102,"Ġtubes":21103,"Ġbeautifully":21104,"ĠQueensland":21105,"Below":21106,"rez":21107,"quet":21108,"pleasant":21109,"Ġ«":21110,"Camp":21111,"Ġdecisive":21112,"1998":21113,"ĠLamb":21114,"utton":21115,"hn":21116,"ĠJagu":21117,"aunder":21118,"ĠCord":21119,"Ġclerk":21120,"Ġcaffe":21121,"Ġwiped":21122,"Ġreim":21123,"ĠMountains":21124,"Ġimprisoned":21125,"Ġdevelops":21126,"ĠPra":21127,"Ġmodeling":21128,"Anyone":21129,"ancel":21130,"ĠSit":21131,"Ġshields":21132,"Ġlawn":21133,"Ġcardiovascular":21134,"Ġdemonstrating":21135,"Ġparse":21136,"ĠIsraelis":21137,"Ġeuros":21138,"143":21139,"Ġglorious":21140,"inski":21141,"ecd":21142,"Ġconditioning":21143,"Ġhelpless":21144,"Ġmicrosc":21145,"ĠHarbor":21146,"Ġstakes":21147,"Ġ260":21148,"Ġunequ":21149,"ĠFloyd":21150,"Ġdamp":21151,"Ġapparatus":21152,"ĠLaws":21153,"Ġcounters":21154,"Ġinduce":21155,"atable":21156,"ĠAhmed":21157,"Ġslam":21158,"November":21159,"Ġpersist":21160,"Ġimminent":21161,"án":21162,"Ġshred":21163,"Ġphases":21164,"ĠEdmonton":21165,"ĠArmstrong":21166,"ĠMeet":21167,"ĠKitty":21168,"ÑĢ":21169,"circ":21170,"ĠAdult":21171,"Ġarose":21172,"ĠXen":21173,"Dan":21174,"gow":21175,"Ġsuperf":21176,"ĠAdmir":21177,"Ġendure":21178,"Ġkeyword":21179,"yrus":21180,"Ġyarn":21181,"Ġpathway":21182,"ĠHopkins":21183,"midt":21184,"Ġcensorship":21185,"dependent":21186,"Ġinstructor":21187,"Sources":21188,"Ġtoe":21189,"Ġballoon":21190,"Nob":21191,"Ġswear":21192,"ĠCastro":21193,"Ġgloss":21194,"ĠKavanaugh":21195,"Ġremarkably":21196,"Photos":21197,"ĠNom":21198,"ĠSoutheast":21199,"yers":21200,"Ġvalidation":21201,"Ġcannon":21202,"ĠVictory":21203,"ĠPierre":21204,"Ġcautious":21205,"Audio":21206,"Ġfetch":21207,"ĠGift":21208,"ĠHyp":21209,"Ġremedy":21210,"ZE":21211,"Ġscent":21212,"Ġbeard":21213,"ĠRut":21214,"-\"":21215,"Ġpatents":21216,"Hy":21217,"Ġunjust":21218,"Ġpotato":21219,"Ġforthcoming":21220,"Ġchef":21221,"ĠRift":21222,"affe":21223,"ĠROM":21224,"ĠLaunch":21225,"Ġpads":21226,"ĠNeo":21227,"Ġonset":21228,"Ġsqueeze":21229,"safe":21230,"Ġprefix":21231,"ĠTM":21232,"ĠNearly":21233,"ĠClinical":21234,"ĠMental":21235,"otiation":21236,"ĠUnic":21237,"antry":21238,"ĠCir":21239,"Ġepit":21240,"æ":21241,"Ġextracted":21242,"versely":21243,"riad":21244,"Ġstrains":21245,"Ġtops":21246,"Ġpoem":21247,"ĠRandy":21248,"ĠMaple":21249,"THER":21250,"upiter":21251,"ĠSSD":21252,"ļé":21253,"Ġuncon":21254,"pering":21255,"Ġslept":21256,"iners":21257,"Ġunderwater":21258,"ĠEvidence":21259,"gone":21260,"205":21261,"Ġhistorians":21262,"Ġsynthesis":21263,"Ġfrog":21264,"basketball":21265,"Ġvibrant":21266,"Ġsubord":21267,"Ġ365":21268,"ĠDial":21269,"Ġcooperate":21270,"HAHA":21271,"Ġgreeted":21272,"158":21273,"Ġjazz":21274,"Ġintox":21275,"ĠWalking":21276,"Ġsupervisor":21277,"ĠFusion":21278,"ĠMercedes":21279,"send":21280,"Ham":21281,"sd":21282,"nl":21283,"Ġtours":21284,"ĠFIFA":21285,"Ġculp":21286,"gd":21287,"304":21288,"Ġpleas":21289,"Ġillustrates":21290,"ĠColombia":21291,"Ġhighlighting":21292,"ĠSummary":21293,"Ġexposing":21294,"ĠDru":21295,"Ġirony":21296,"ritional":21297,"ĠCarroll":21298,"ĠEllis":21299,"Pict":21300,"ĠRapt":21301,"Ġadapter":21302,"Ġunm":21303,"Ġcorpse":21304,"Ġcelebrities":21305,"Den":21306,"atum":21307,"ĠApocalypse":21308,"ĠWag":21309,"lining":21310,"Ġhormones":21311,"Rub":21312,"ĠXi":21313,"ĠVaults":21314,"208":21315,"alkyrie":21316,"inosaur":21317,"Ġfeeds":21318,"vity":21319,"Ġdefeating":21320,"Wait":21321,"Ġemphasize":21322,"ĠSteelers":21323,"yrinth":21324,"leys":21325,"ĠWhenever":21326,"Currently":21327,"ĠClock":21328,"Ġcollectively":21329,"anyon":21330,"ĠJP":21331,"Ġmentality":21332,"Ġdownloads":21333,"Ġsurroundings":21334,"ĠBarnes":21335,"Ġflagship":21336,"Ġindicators":21337,"Ġgrapp":21338,"January":21339,"ĠElemental":21340,"ĠAthena":21341,"ibal":21342,"Ġsights":21343,"Ġcapita":21344,"ĠTreaty":21345,"Ġvoiced":21346,"ĠGaz":21347,"lette":21348,"Ġya":21349,"Ġexpired":21350,"Legend":21351,"Hot":21352,"nature":21353,"Ġunstable":21354,"Ġ280":21355,"ú":21356,"Comment":21357,"ALE":21358,"Ġquests":21359,"Ġhandler":21360,"nis":21361,"Ġversatile":21362,"Ġconceal":21363,"engeance":21364,"ĠInteractive":21365,"Ġobsessed":21366,"ĠDogs":21367,"Ġcracked":21368,"Sound":21369,"sv":21370,"ĠDylan":21371,"roads":21372,"fx":21373,"ĠCatholics":21374,"ĠHag":21375,"Ġslammed":21376,"Ġglowing":21377,"sale":21378,"Ġtissues":21379,"ĠChi":21380,"nee":21381,"Ġcher":21382,"sic":21383,"urrection":21384,"Ġbacon":21385,"ulatory":21386,").\"":21387,"Ġirregular":21388,"FORM":21389,"assed":21390,"Ġintentional":21391,"Ġcompensate":21392,"ĠSpeaking":21393,"ĠSets":21394,"153":21395,"Ġconventions":21396,"bands":21397,"emade":21398,"Ġecc":21399,"ĠWinston":21400,"ĠAssassin":21401,"ĠBelgian":21402,"Ġdependence":21403,"Ġniche":21404,"Ġbark":21405,"ĠJazz":21406,"Ġdisadvantage":21407,"Ġgasoline":21408,"Ġ165":21409,"çļĦ":21410,"essa":21411,"module":21412,"angular":21413,"OY":21414,"ĠTreatment":21415,"itas":21416,"olation":21417,"ĠArnold":21418,"Ġfeud":21419,"ĠNest":21420,"Ġtheatre":21421,"ewater":21422,"Ġminors":21423,"olicy":21424,"ĠHaven":21425,"division":21426,"Ġtrunk":21427,"Far":21428,"ĠPull":21429,"Ġcapturing":21430,"Ġ1800":21431,"ĠTeen":21432,"Ġexempl":21433,"Ġclinics":21434,"ĠBurg":21435,"Ġsubstit":21436,"Ġpayload":21437,"ĠLav":21438,"ĠTroy":21439,"ĠWitness":21440,"Ġfragments":21441,"Ġpasswords":21442,"Ġgospel":21443,"ĠGin":21444,"Ġtenants":21445,"olith":21446,"Six":21447,"Previous":21448,"ĠAges":21449,"ĠDarwin":21450,"Ġblat":21451,"Ġempathy":21452,"smith":21453,"bag":21454,"ĠEcho":21455,"ĠCamb":21456,"ĠMadd":21457,"ĠBoo":21458,"Ġrede":21459,"ĠBurning":21460,"Ġsmoothly":21461,"ĠAdrian":21462,"ĠVampire":21463,"ĠMonsters":21464,"steam":21465,"Style":21466,"Ma":21467,"rea":21468,"ĠDwar":21469,"alyst":21470,"ursor":21471,"Ġelimination":21472,"Ġcrypto":21473,"cht":21474,"ĠEternal":21475,"â̦]":21476,"ĠSorce":21477,"Ill":21478,"NER":21479,"Ġuh":21480,"Conclusion":21481,"wage":21482,"Ġrespir":21483,"Ġreminis":21484,"hetical":21485,"Ġgy":21486,"Ġutilized":21487,"icidal":21488,"Ġ1900":21489,"Ġhunters":21490,"ĠSwan":21491,"ĠReact":21492,"Ġvisitor":21493,"ĠThanksgiving":21494,"308":21495,"Posts":21496,"Ġhips":21497,"1997":21498,"omers":21499,"Ġknocking":21500,"ĠVehicle":21501,"Ġtil":21502,"Ġ138":21503,"Ġmi":21504,"ĠInvestigation":21505,"ĠKenya":21506,"Ġcasino":21507,"Ġmotives":21508,"Ġregain":21509,"rex":21510,"Ġweekends":21511,"Ġstabbed":21512,"boro":21513,"Ġexploited":21514,"ĠHAVE":21515,"ĠTelevision":21516,"cock":21517,"Ġpreparations":21518,"Ġendeav":21519,"ĠRemote":21520,"ĠMaker":21521,"ĠProdu":21522,"ĠEvan":21523,"Ġinformational":21524,"ĠLouisville":21525,"154":21526,"ĠDreams":21527,"Ġplots":21528,"ĠRunner":21529,"Ġhurting":21530,"Ġacademy":21531,"ĠMontgomery":21532,"nm":21533,"ĠLanc":21534,"ĠAlz":21535,"210":21536,"elong":21537,"Ġretailer":21538,"Ġarising":21539,"Ġrebellion":21540,"Ġblonde":21541,"played":21542,"Ġinstrumental":21543,"Cross":21544,"Ġretention":21545,"Ġtherapeutic":21546,"Ġseas":21547,"Ġinfantry":21548,"ĠClint":21549,"Ġprompting":21550,"Ġbitch":21551,"Ġstems":21552,"ĠKra":21553,"Ġthesis":21554,"ĠBog":21555,"rued":21556,"Ġkings":21557,"Ġclay":21558,"ificent":21559,"ĠYES":21560,"ĠThing":21561,"ĠCubs":21562,"veyard":21563,"elsh":21564,"inarily":21565,"ĠEy":21566,"ĠRolling":21567,"Ġevolving":21568,"India":21569,"Ġrecognizes":21570,"Ġgraduation":21571,"isers":21572,"Ġfertility":21573,"ĠMilan":21574,"Command":21575,"Ġboxing":21576,"Ġ1943":21577,"Ġgluten":21578,"ĠEmir":21579,"Ġidol":21580,"Ġconceived":21581,"ĠCreation":21582,"Merit":21583,"uddy":21584,"ussions":21585,"ĠLieutenant":21586,"ietal":21587,"Ġunchanged":21588,"ĠScale":21589,"ĠCrimea":21590,"balls":21591,"atorial":21592,"Ġdepths":21593,"Ġempirical":21594,"Ġtransm":21595,"Ġunsafe":21596,"missible":21597,"comfort":21598,"156":21599,"Ġmechanic":21600,"002":21601,"lins":21602,"Ġsmoked":21603,"Pos":21604,"Ġslowing":21605,"Ġlav":21606,"Texas":21607,"Ġcheating":21608,"ĠMetropolitan":21609,"ethyl":21610,"Ġdiscovering":21611,"asse":21612,"Ġpencil":21613,"ĠPyongyang":21614,"Ġcloset":21615,"ĠSheet":21616,"ĠEntry":21617,"oustic":21618,"Ġmyst":21619,"erate":21620,"ariat":21621,"Ġminerals":21622,"Ġmusician":21623,"ĠPul":21624,"ĠMaz":21625,"249":21626,"Ġpermissions":21627,"Ġiv":21628,"enary":21629,"ickers":21630,"ĠBing":21631,"hea":21632,"enable":21633,"Ġgriev":21634,"Ġasserted":21635,"ĠColonel":21636,"Ġaffidav":21637,"wo":21638,"Ġseated":21639,"ĠRide":21640,"Ġpaintings":21641,"ĠPix":21642,"Ġ137":21643,"ishi":21644,"umbai":21645,"gotten":21646,"ĠEarl":21647,"Ġinning":21648,"Ġcensus":21649,"Ġtravelled":21650,"ĠConsult":21651,"185":21652,"bind":21653,"Ġsimplicity":21654,"Ġoverlooked":21655,"ĠHelpful":21656,"Ġmonkey":21657,"Ġoverwhelmingly":21658,"Blood":21659,"ĠFlint":21660,"ĠJama":21661,"ĠPresent":21662,"ĠRage":21663,"ĠTA":21664,"ptive":21665,"Ġturnout":21666,"wald":21667,"ĠDolphins":21668,"ĠVPN":21669,"Ġonion":21670,"Ġcrafting":21671,"mma":21672,"ĠMercury":21673,"Ġarrange":21674,"Ġalerts":21675,"ĠOT":21676,"zbollah":21677,"Ġgases":21678,"ĠRichardson":21679,"sal":21680,"lar":21681,"Ġfrost":21682,"Ġlowering":21683,"Ġacclaim":21684,"Ġstartups":21685,"ĠGain":21686,"essment":21687,"Ġguardian":21688,"人":21689,"ĠPie":21690,"ĠLinks":21691,"Ġmerits":21692,"Ġawake":21693,"Ġparental":21694,"Ġexceeds":21695,"Ġidle":21696,"ĠPilot":21697,"ĠeBay":21698,"ĠAccept":21699,"ipeg":21700,"Cam":21701,"ĠKot":21702,"Ġtraders":21703,"olitics":21704,"unker":21705,"ĠPale":21706,"osi":21707,"anmar":21708,"Ġ1947":21709,"ĠFell":21710,"estial":21711,"itating":21712,"GF":21713,"ĠSr":21714,"ifted":21715,"Ġconnector":21716,"ĠBone":21717,"illes":21718,"260":21719,"hma":21720,"Ġoverlap":21721,"ĠGitHub":21722,"Ġcleaner":21723,"ĠBaptist":21724,"ĠWAS":21725,"Ġlungs":21726,"Ñģ":21727,"ĠBUT":21728,"Ġcite":21729,"Ġpitched":21730,"reatment":21731,"Ġtrophies":21732,"ĠNu":21733,"386":21734,"ĠPride":21735,"Ġattendees":21736,"[]":21737,"179":21738,"Ġspatial":21739,"Ġprizes":21740,"ĠReligion":21741,"Ġshowcase":21742,"ĠCategory":21743,"vidia":21744,"Target":21745,"Property":21746,"?,":21747,"Ġfusion":21748,"pie":21749,"ĠUCLA":21750,"Ġsoundtrack":21751,"Ġprincess":21752,"ĠCaval":21753,"should":21754,"Ġlimbs":21755,"Background":21756,"Ġlonely":21757,"Ġcores":21758,"ĠTail":21759,"sheet":21760,"Ġ132":21761,"Ra":21762,"ãĤ«":21763,"ĠBolt":21764,"Ġbooked":21765,"Ġadminister":21766,"Ġequals":21767,"wy":21768,"Ġobserving":21769,"ĠBaron":21770,"ĠAdobe":21771,"Ġvirgin":21772,"ĠSocialist":21773,"Move":21774,"ghazi":21775,"ĠLinda":21776,"212":21777,"Ġbrewing":21778,"Ġmerchants":21779,"burse":21780,"Ġdivor":21781,"Ġmetals":21782,"ĠNer":21783,"Ġsums":21784,"ĠEnemy":21785,"Ġenvision":21786,"Ġgranting":21787,"ĠHoney":21788,"ĠSkyrim":21789,"Ġsocio":21790,"graded":21791,"Ġselective":21792,"WASHINGTON":21793,"Ġ1948":21794,"ĠSirius":21795,"ĠGross":21796,"activity":21797,"ĠIvan":21798,"Ġfurious":21799,"BSD":21800,"ĠPrevious":21801,"Ġresponsive":21802,"Ġcharitable":21803,"Ġleaning":21804,"ĠPew":21805,"Ġviolates":21806,"\\\\\\\\\\\\\\\\":21807,"ĠComing":21808,"wire":21809,"Ġpoet":21810,"Ġresolutions":21811,"command":21812,"ĠPortuguese":21813,"Ġnickname":21814,"Ġdeaf":21815,"February":21816,"Ġrecognise":21817,"Ġentirety":21818,"Ġseasonal":21819,"placed":21820,"ĠTelegraph":21821,"Ġmicrophone":21822,"ouring":21823,"Ġgrains":21824,"Ġgoverned":21825,"Ġpostp":21826,"ĠWaters":21827,"inement":21828,"Ġundocumented":21829,"ĠComcast":21830,"Ġfox":21831,"Ġassaults":21832,"reon":21833,"many":21834,"ĠJenkins":21835,"ĠAnyway":21836,"Ġassessments":21837,"Ġdowns":21838,"ĠMouse":21839,"Ġsuperb":21840,"kt":21841,"ĠDow":21842,"Ġtaxation":21843,"401":21844,"Ġsmiles":21845,"Ġundertaken":21846,"Ġexh":21847,"Ġenthusiastic":21848,"Ġtwent":21849,"Ġgovernmental":21850,"Ġautonomy":21851,"ĠTechnologies":21852,"ĠChain":21853,"Ġprevalent":21854,"fb":21855,"Ġnicotine":21856,"ogram":21857,"job":21858,"Ġawaiting":21859,"ĠMenu":21860,"Ġdeputies":21861,"kov":21862,"ishops":21863,"Button":21864,"ĠShanghai":21865,"Ġdiesel":21866,"ĠDuck":21867,"Ryan":21868,"ĠPCs":21869,"NF":21870,"jury":21871,"ente":21872,"Ġinaccurate":21873,"eddy":21874,"Whatever":21875,"Ġshowc":21876,"ĠNad":21877,"odus":21878,"etr":21879,"Ġplaintiffs":21880,"ĠWOR":21881,"ĠAssange":21882,"Ġprivat":21883,"Ġpremiums":21884,"Ġtam":21885,"URL":21886,"Ġelites":21887,"ĠRanger":21888,"ottenham":21889,"ĠHoff":21890,"ĠAthens":21891,"Ġdefinite":21892,"Ġsighed":21893,"Ġevenly":21894,"211":21895,"ĠAmber":21896,"akia":21897,"Ġmailing":21898,"Ġcrashing":21899,"ĠConfederate":21900,"rugged":21901,"Wal":21902,"ĠDepths":21903,"Ġjuvenile":21904,"Ġreactor":21905,"Introduction":21906,"ĠDeluxe":21907,"1995":21908,"ĠSanchez":21909,"ĠMead":21910,"ivable":21911,":-":21912,"ĠPlanning":21913,"ĠTrap":21914,"quin":21915,"ĠProtect":21916,"vered":21917,"Information":21918,"Ġkidney":21919,"innamon":21920,"las":21921,"Ġpolicing":21922,"Ġtolerate":21923,"ĠQi":21924,"Ġbiased":21925,"Fort":21926,"ĠKi":21927,"save":21928,"Ġprivileged":21929,"Ġbeasts":21930,"ĠGlas":21931,"ĠCinem":21932,"Ġcomeback":21933,"Sunday":21934,"Ġextinction":21935,"hops":21936,"Ġtransmit":21937,"Ġdoubles":21938,"ĠFlat":21939,"167":21940,"Ġdisputed":21941,"Ġinjustice":21942,"foo":21943,"Vict":21944,"roleum":21945,"ĠJulie":21946,"Context":21947,"ĠRarity":21948,"issue":21949,"Component":21950,"Ġcounseling":21951,"anne":21952,"dark":21953,"Ġobjections":21954,"uilt":21955,"Ġgast":21956,"Ġplac":21957,"Ġunused":21958,"ãĥĩ":21959,"ĠTrial":21960,"ĠJas":21961,"hedral":21962,"obb":21963,"Ġtemporal":21964,"ĠPRO":21965,"ĠNW":21966,"ĠAnniversary":21967,"Large":21968,"Ġtherm":21969,"Ġdavid":21970,"Ġsystemic":21971,"ĠShir":21972,"mut":21973,"ĠNept":21974,"address":21975,"Ġscanning":21976,"Ġunderstandable":21977,"Ġcanvas":21978,"Cat":21979,"ĠZoo":21980,"Ġangels":21981,"LO":21982,"ĠStatement":21983,"ĠSig":21984,"ovable":21985,"ĠAway":21986,"sharing":21987,"ocrats":21988,"stated":21989,"Ġweighing":21990,"Nor":21991,"wild":21992,"Bey":21993,"Ġastonishing":21994,"ĠReynolds":21995,"Ġopener":21996,"Ġtrainer":21997,"Ġsurgical":21998,"pn":21999,"Ġadjusting":22000,"wheel":22001,"Ġfrown":22002,"ervative":22003,"Ġsuspend":22004,"Within":22005,"tein":22006,"Ġobstacle":22007,"Ġliberties":22008,"ymes":22009,"Ġuranium":22010,"ansom":22011,"anol":22012,"uba":22013,"ĠLoss":22014,"Ġarous":22015,"ĠHenderson":22016,"Wow":22017,"spl":22018,"cur":22019,"ĠÂŃ":22020,"Ġtheirs":22021,"Damage":22022,"Ġdownloading":22023,"Ġdiscern":22024,"ĠSto":22025,"ĠFla":22026,"Ġhath":22027,"ĠAj":22028,"Ġunpleasant":22029,"European":22030,"expensive":22031,"Ġscreenshot":22032,"ĠUV":22033,"Ġallied":22034,"ĠPersian":22035,"Ġmonopoly":22036,"Ġatom":22037,"ĠRedskins":22038,"\"><":22039,"Ġcancell":22040,"Ġcinema":22041,"131":22042,"fair":22043,"ĠAlfred":22044,"Ġduck":22045,"args":22046,"223":22047,"ĠISI":22048,"Ġsignaling":22049,"inar":22050,"Ġlaughs":22051,"Ġforwards":22052,"Ġreckless":22053,"Ġlisteners":22054,"ativity":22055,"Ġvastly":22056,"nant":22057,"Less":22058,"ĠHunting":22059,"ĠScientific":22060,"ITED":22061,"Ġknight":22062,"ĠHTC":22063,"usa":22064,"tmp":22065,"Ġrude":22066,"ĠLegendary":22067,"Ġarises":22068,"Bad":22069,"ĠClaim":22070,"peg":22071,"Ġrealities":22072,"Think":22073,"Ġ°":22074,"Ġrode":22075,"Ġstrive":22076,"Ġanecd":22077,"Ġshorts":22078,"Ġhypothes":22079,"Ġcoordinated":22080,"ĠGandhi":22081,"ĠFPS":22082,"RED":22083,"Ġsusceptible":22084,"Ġshrink":22085,"ĠChart":22086,"Help":22087,"Ġion":22088,"deep":22089,"ribes":22090,"ĠKai":22091,"ĠCustomer":22092,"Summary":22093,"Ġcough":22094,"wife":22095,"Ġlend":22096,"Ġpositioning":22097,"Ġlottery":22098,"ĠCanyon":22099,"Ġfade":22100,"Ġbronze":22101,"ĠKenny":22102,"Ġboasts":22103,"ĠEnhanced":22104,"record":22105,"Ġemergence":22106,"Ġakin":22107,"ĠBert":22108,"itous":22109,"âĸij":22110,"Ġstip":22111,"Ġexchanged":22112,"omore":22113,"alsh":22114,"Ġreservoir":22115,"Ġstandpoint":22116,"WM":22117,"Ġinitiate":22118,"Ġdecay":22119,"Ġbrewery":22120,"Ġterribly":22121,"Ġmortal":22122,"levard":22123,"Ġrevis":22124,"NI":22125,"elo":22126,"Ġconfess":22127,"ĠMSNBC":22128,"Ġsubmissions":22129,"Controller":22130,"Ġ202":22131,"ĠRuth":22132,"});":22133,"ĠAzure":22134,"Ġ.\"":22135,"206":22136,"ĠMarketing":22137,"Ġlaund":22138,"iencies":22139,"Ġrenowned":22140,"ĠTrou":22141,"ĠNGO":22142,"blems":22143,"Ġterrified":22144,"Ġwarns":22145,"Ġpert":22146,"Ġunsure":22147,"480":22148,"alez":22149,"ultz":22150,"ĠOutside":22151,"Ġstyl":22152,"ĠUnderground":22153,"Ġpanc":22154,"Ġdictionary":22155,"Ġfoe":22156,"riminal":22157,"ĠNorwegian":22158,"Ġjailed":22159,"Ġmaternal":22160,"ée":22161,"ĠLucy":22162,"cop":22163,"Cho":22164,"Ġunsigned":22165,"ĠZelda":22166,"ĠInsider":22167,"ĠContinued":22168,"Ġ133":22169,"ĠNaruto":22170,"ĠMajority":22171,"169":22172,"ĠWo":22173,"ãĤĵ":22174,"Ġpastor":22175,"Ġinformal":22176,"н":22177,"anthrop":22178,"join":22179,"ãģĹ":22180,"itational":22181,"NP":22182,"ĠWriting":22183,"fn":22184,"ĠBever":22185,"195":22186,"Ġyelling":22187,"Ġdrastically":22188,"Ġeject":22189,"Ġneut":22190,"Ġthrive":22191,"ĠFrequ":22192,"oux":22193,"Ġpossesses":22194,"ĠSenators":22195,"ĠDES":22196,"ĠShakespeare":22197,"ĠFranco":22198,"ĠLB":22199,"uchi":22200,"Ġincarn":22201,"Ġfounders":22202,"Function":22203,"Ġbrightness":22204,"ĠBT":22205,"Ġwhale":22206,"ĠTheater":22207,"mass":22208,"ĠDoll":22209,"Something":22210,"Ġechoed":22211,"ĠHex":22212,"crit":22213,"afia":22214,"Ġgoddess":22215,"Ġeleven":22216,"ĠPreview":22217,"ĠAurora":22218,"Ġ401":22219,"ulsive":22220,"ĠLogan":22221,"inburgh":22222,"ĠCenters":22223,"ĠONLY":22224,"ĠAid":22225,"Ġparadox":22226,"Ġhurd":22227,"ĠLC":22228,"Due":22229,"court":22230,"Ġoffended":22231,"Ġevaluating":22232,"ĠMatthews":22233,"Ġtomb":22234,"Ġpayroll":22235,"Ġextraction":22236,"ĠHands":22237,"ifi":22238,"Ġsupernatural":22239,"ĠCOMM":22240,"]=":22241,"dogs":22242,"Ġ512":22243,"ĠMeeting":22244,"Richard":22245,"ĠMaximum":22246,"Ġideals":22247,"Things":22248,"mand":22249,"ĠRegardless":22250,"Ġhumili":22251,"buffer":22252,"Little":22253,"ĠDani":22254,"ĠNak":22255,"Ġliberation":22256,"ĠAbe":22257,"ĠOL":22258,"Ġstuffed":22259,"aca":22260,"inda":22261,"raphic":22262,"Ġmosqu":22263,"Ġcampaigning":22264,"Ġoccupy":22265,"Squ":22266,"rina":22267,"ĠWel":22268,"ĠVS":22269,"Ġphysic":22270,"Ġpuls":22271,"rint":22272,"oaded":22273,"ETF":22274,"ĠArchives":22275,"Ġvenues":22276,"hner":22277,"ĠTurbo":22278,"Ġlust":22279,"Ġappealed":22280,"quez":22281,"ilib":22282,"ĠTimothy":22283,"Ġomn":22284,"dro":22285,"Ġobsession":22286,"ĠSavage":22287,"1996":22288,"Global":22289,"Jes":22290,"214":22291,"Ġsliding":22292,"Ġdisappro":22293,"ĠMagical":22294,"Ġvoluntarily":22295,"gb":22296,"aney":22297,"Ġprophet":22298,"ĠRein":22299,"ĠJulia":22300,"ĠWorth":22301,"aurus":22302,"Ġbounds":22303,"ieu":22304,")))":22305,"Ġcrore":22306,"ĠCitizen":22307,"Sky":22308,"Ġcolumnist":22309,"Ġseekers":22310,"ondo":22311,"ISA":22312,"ĠLength":22313,"Ġnostalg":22314,"Ġnewcom":22315,"Ġdetrim":22316,"entric":22317,"375":22318,"ĠGE":22319,"Ġautop":22320,"Ġacademics":22321,"AppData":22322,"ĠShen":22323,"Ġidiot":22324,"ĠTransit":22325,"Ġteaspoon":22326,"Wil":22327,"KO":22328,"ĠComedy":22329,">,":22330,"Ġpopulated":22331,"WD":22332,"Ġpigs":22333,"ĠOculus":22334,"Ġsympathetic":22335,"Ġmarathon":22336,"198":22337,"Ġseizure":22338,"sided":22339,"Ġdop":22340,"irtual":22341,"Land":22342,"ĠFloor":22343,"osaurs":22344,"...]":22345,"Ġlos":22346,"Ġsubsidiary":22347,"EY":22348,"ĠParts":22349,"ĠStef":22350,"ĠJudiciary":22351,"Ġ134":22352,"Ġmirrors":22353,"Ġket":22354,"times":22355,"Ġneurolog":22356,"Ġcav":22357,"ĠGuest":22358,"Ġtumor":22359,"scill":22360,"ĠLloyd":22361,"Est":22362,"Ġclearer":22363,"Ġstereotypes":22364,"Ġdur":22365,"nothing":22366,"Reddit":22367,"Ġnegotiated":22368,"------------------------":22369,"235":22370,"Ġflown":22371,"ĠSeoul":22372,"ĠResident":22373,"ĠSCH":22374,"Ġdisappearance":22375,"ĠVince":22376,"grown":22377,"Ġgrabs":22378,"ril":22379,"ĠInfinite":22380,"ĠTwenty":22381,"Ġpedestrian":22382,"Ġjersey":22383,"ĠFur":22384,"ĠInfinity":22385,"ĠElliott":22386,"Ġmentor":22387,"Ġmorally":22388,"Ġobey":22389,"secure":22390,"iffe":22391,"Ġantibiotics":22392,"angled":22393,"ĠFreeman":22394,"ĠIntroduction":22395,"Jun":22396,"Ġmarsh":22397,"icans":22398,"ĠEVENTS":22399,"ochond":22400,"Wall":22401,"iculty":22402,"Ġmisdemeanor":22403,"Ġly":22404,"Thomas":22405,"ĠResolution":22406,"Ġanimations":22407,"ĠDry":22408,"Ġintercourse":22409,"ĠNewcastle":22410,"ĠHog":22411,"ĠEquipment":22412,"177":22413,"Ġterritorial":22414,"Ġarchives":22415,"203":22416,"Filter":22417,"ĠMunich":22418,"Ġcommanded":22419,"ĠWand":22420,"Ġpitches":22421,"ĠCroat":22422,"Ġratios":22423,"ĠMits":22424,"Ġaccumulated":22425,"ĠSpecifically":22426,"Ġgentleman":22427,"acerb":22428,"Ġpenn":22429,"Ġaka":22430,"ĠFuk":22431,"Ġintervene":22432,"ĠRefuge":22433,"ĠAlzheimer":22434,"Ġsuccession":22435,"ohan":22436,"does":22437,"Lord":22438,"Ġseparat":22439,"Ġcorrespondence":22440,"Ġshiny":22441,"Prior":22442,"Ġsulf":22443,"Ġmiserable":22444,"Ġdedication":22445,"().":22446,"Ġspecialists":22447,"Ġdefects":22448,"ĠCult":22449,"ĠXia":22450,"Ġjeopard":22451,"ĠOre":22452,"Ability":22453,"Ġlear":22454,"Ġambitions":22455,"ĠBMI":22456,"ĠArabs":22457,"Ġ1942":22458,"Ġpreservation":22459,"ificate":22460,"Ġashamed":22461,"loss":22462,"ĠRestaur":22463,"Ġresemble":22464,"Ġenrich":22465,"ĠKN":22466,"ĠClan":22467,"float":22468,"Ġplayable":22469,"ITT":22470,"Ġharmony":22471,"arrison":22472,"ĠWeinstein":22473,"were":22474,"Ġpoisoning":22475,"ĠComput":22476,"ĠWordPress":22477,"major":22478,"ĠValve":22479,"Fan":22480,"ĠThrow":22481,"ĠRomans":22482,"ĠDepression":22483,"ados":22484,"Ġtortured":22485,"Ġbalancing":22486,"bottom":22487,"Ġacquiring":22488,"ĠMonte":22489,"ardi":22490,"Ġaura":22491,"Ġ##":22492,"ĠStanding":22493,"ĠAtlas":22494,"CF":22495,"Ġintrins":22496,"ĠBenghazi":22497,"Ġcamping":22498,"Ġtapped":22499,"blade":22500,"strous":22501,"ĠRabb":22502,"ĠWritten":22503,"tip":22504,"ĠNeigh":22505,"sterdam":22506,"ĠAllow":22507,"ĠHealing":22508,"ĠRhod":22509,"num":22510,"Ġcaffeine":22511,"ĠPercent":22512,"Ġboo":22513,"Ġapples":22514,"305":22515,"Ġwelcoming":22516,"Ġapplaud":22517,"Ġausterity":22518,"±":22519,"ĠReality":22520,"efe":22521,"å®":22522,"Ġsucks":22523,"Ġtabs":22524,"ĠPayPal":22525,"Ġbackpack":22526,"Ġgifted":22527,"abulary":22528,"ĠScout":22529,"irteen":22530,"Ġchin":22531,"Ġomitted":22532,"Ġnegatively":22533,"Ġaccessing":22534,"ĠEarn":22535,"Ġambulance":22536,"Ġheadphones":22537,"Ġ205":22538,"ĠRefresh":22539,"president":22540,"ĠKitchen":22541,"ĠEntered":22542,"ĠSnyder":22543,"005":22544,"omical":22545,"Ġborrowed":22546,"ĠNem":22547,"Ġaviation":22548,"Ġstall":22549,"rimination":22550,"Ġuniforms":22551,"itime":22552,"ĠSimmons":22553,"energy":22554,"ablished":22555,"yy":22556,"qualified":22557,"Ġrallies":22558,"ĠStuart":22559,"flight":22560,"Ġgangs":22561,"rag":22562,"Ġvault":22563,"lux":22564,"ĠCompar":22565,"Ġdesignation":22566,"209":22567,"ĠJos":22568,"dollar":22569,"zero":22570,"Ġwells":22571,"303":22572,"Ġconstituents":22573,"Ġheck":22574,"Ġcows":22575,"Ġcommanders":22576,"Ġdifferential":22577,"ĠCatherine":22578,"299":22579,"Ġvalve":22580,"Ġbrace":22581,"Ġperspectives":22582,"cert":22583,"fact":22584,"icularly":22585,"ĠMcN":22586,"planes":22587,"Ġintric":22588,"Ġpeas":22589,"ovan":22590,"Ġtossed":22591,"retch":22592,"ĠLopez":22593,"Ġunfamiliar":22594,"death":22595,"ĠApart":22596,"ĠChang":22597,"Ġrelieved":22598,"rophe":22599,"Ġairports":22600,"Ġfreak":22601,"util":22602,"Mill":22603,"ĠChin":22604,"ĠOwen":22605,"male":22606,"ĠBroken":22607,"ĠWinds":22608,"rob":22609,"rising":22610,"Ġfirefighters":22611,"Ġauthoritarian":22612,"Ġ148":22613,"Bitcoin":22614,"external":22615,"Ġbrowsers":22616,"ichever":22617,"orian":22618,"Ġunb":22619,"Ġpoke":22620,"ĠZot":22621,"Mid":22622,"ĠPopular":22623,"Ġcovert":22624,"Ġcontributes":22625,"Ġ650":22626,"Ġcontention":22627,"Gate":22628,"Ġconsoles":22629,"Ġchromos":22630,"ĠIX":22631,"Ġvisually":22632,"ĠEisen":22633,"Ġjewelry":22634,"Ġdelegation":22635,"Ġaccelerate":22636,"ĠRiley":22637,"Ġslope":22638,"Ġindoor":22639,"itially":22640,"Ġhugely":22641,"Ġtunnels":22642,"Ġfined":22643,"Ġdirective":22644,"Ġforehead":22645,"ustomed":22646,"Ġskate":22647,"Music":22648,"gas":22649,"Ġrecognizing":22650,"ambo":22651,"Ġoverweight":22652,"ĠGrade":22653,"ÙĬ":22654,"Ġsounding":22655,"Ġlocking":22656,"ĠREM":22657,"Store":22658,"Ġexcav":22659,"ĠLikewise":22660,"ĠLights":22661,"Ġelbow":22662,"ĠSupply":22663,"wic":22664,"Ġhandsome":22665,"1994":22666,"Coll":22667,"Ġadequately":22668,"ĠAssociate":22669,"Ġstrips":22670,"Ġcrackdown":22671,"Ġmarvel":22672,"ĠKun":22673,"Ġpassages":22674,"@@@@":22675,"ĠTall":22676,"Ġthoughtful":22677,"namese":22678,"Ġprostitution":22679,"business":22680,"Ġballistic":22681,"personal":22682,"cig":22683,"izational":22684,"Round":22685,"ĠÂłĠÂłĠÂłĠÂł":22686,"ĠColeman":22687,"Ġadmitting":22688,"ĠPlug":22689,"Ġbitcoins":22690,"ĠSuz":22691,"Ġfairness":22692,"Ġsupplier":22693,"Ġcatastrophic":22694,"ĠHelen":22695,"oqu":22696,"Marc":22697,"ĠArticles":22698,"gie":22699,"Ġendangered":22700,"Ġdestiny":22701,"ĠVolt":22702,"olia":22703,"axis":22704,"Ġcheat":22705,"Ġunified":22706,"ICO":22707,"quote":22708,"302":22709,"ĠSed":22710,"Ġsuppression":22711,"Ġanalyzing":22712,"Ġsquat":22713,"Ġfiguring":22714,"Ġcoordinates":22715,"Ġchunks":22716,"Ġ1946":22717,"Ġsubp":22718,"Ġwiki":22719,"ĠForbes":22720,"ĠJupiter":22721,"ĠErik":22722,"imer":22723,"ĠCommercial":22724,"\\)":22725,"Ġlegitimacy":22726,"Ġdental":22727,"ĠMean":22728,"Ġdeficits":22729,"550":22730,"Originally":22731,"ĠHorror":22732,"Ġcontamination":22733,"llah":22734,"Ġconfisc":22735,"ĠClare":22736,"TB":22737,"ĠFailed":22738,"aned":22739,"Ġruler":22740,"ĠController":22741,"Ġfeminists":22742,"Fix":22743,"gay":22744,"207":22745,"Ġrabbit":22746,"Third":22747,"owntown":22748,"Ġglue":22749,"Ġvolatile":22750,"Ġshining":22751,"Ġfoll":22752,"Ġimpaired":22753,"Ġsupers":22754,"æĪ":22755,"Ġclutch":22756,"ļéĨĴ":22757,"Ġprolet":22758,"Ġ(!":22759,"Ġyelled":22760,"ĠKiev":22761,"ĠErn":22762,"ĠShock":22763,"KB":22764,"Ġsituated":22765,"query":22766,"ĠNas":22767,"Ġannex":22768,"character":22769,"ĠHoliday":22770,"Ġautomation":22771,"ĠJill":22772,"ĠRemastered":22773,"Ġlinem":22774,"Ġwilderness":22775,"ĠHorizon":22776,"ĠGuinea":22777,"AZ":22778,"Ġmainland":22779,"Ġsecrecy":22780,"LEASE":22781,"Ġpunk":22782,"ĠProvince":22783,"(),":22784,"Speed":22785,"Ġhanding":22786,"ĠSebast":22787,"Sir":22788,"rase":22789,"Ġjournals":22790,"Ġcongest":22791,"ĠTut":22792,"irrel":22793,"Ġschizophrenia":22794,"Ġmisogyn":22795,"healthy":22796,"Iron":22797,"Ġreacted":22798,"-$":22799,"252":22800,"Ġplural":22801,"Ġplum":22802,"Ġbargain":22803,"Ġgrounded":22804,"finder":22805,"Ġdisse":22806,"ĠLaz":22807,"OOD":22808,"Ġatroc":22809,"Factory":22810,"Ġminions":22811,"Ġori":22812,"ĠBrave":22813,"ĠPRE":22814,"ĠMyanmar":22815,"ĠHod":22816,"Ġexpedition":22817,"Ġexplode":22818,"ĠCoord":22819,"Ġextr":22820,"ĠBrief":22821,"ĠADHD":22822,"Ġhardcore":22823,"feeding":22824,"Ġdile":22825,"ĠFruit":22826,"Ġvaccination":22827,"ĠMao":22828,"osphere":22829,"Ġcontests":22830,"-|":22831,"Ġfren":22832,"isphere":22833,"Rom":22834,"ĠSharp":22835,"ĠTrend":22836,"Ġdisconnect":22837,"âĢ¢âĢ¢":22838,"Ġpersecution":22839,"Earth":22840,"Ġhealthier":22841,"384":22842,"Ġcob":22843,"ĠTrinity":22844,"OWS":22845,"ANN":22846,"Ġspecialty":22847,"Ġgru":22848,"Ġcooperative":22849,"why":22850,"Starting":22851,"ĠIssues":22852,"stre":22853,"ensor":22854,"Ġ185":22855,"Adv":22856,"!?":22857,"ĠRevel":22858,"emia":22859,"ĠHulk":22860,"Ġcelebrations":22861,"ĠSou":22862,"raud":22863,"ĠKlein":22864,"Ġunreal":22865,"context":22866,"Ġpartnerships":22867,"Ġadopting":22868,"tical":22869,"Ġsplash":22870,"ĠHezbollah":22871,"category":22872,"cyclop":22873,"xton":22874,"ĠDot":22875,"urdy":22876,"tz":22877,"Ġenvelope":22878,"ĠNL":22879,"âķ":22880,"Ġwherein":22881,"Spec":22882,"184":22883,"Ġtelev":22884,"aliation":22885,"Ġmyths":22886,"å°":22887,"Ġrigorous":22888,"Ġcommunicating":22889,"Ġobserver":22890,"Ġrehe":22891,"ĠWash":22892,"Ġapologized":22893,"ĠTin":22894,"Ġexpenditures":22895,"workers":22896,"document":22897,"Ġhesitate":22898,"ĠLenin":22899,"Ġunpredictable":22900,"Ġrenewal":22901,"cler":22902,"okia":22903,"ĠCONT":22904,"Ġpostseason":22905,"Tokens":22906,"Ġexacerb":22907,"Ġbetting":22908,"Ġ147":22909,"Ġelevation":22910,"Wood":22911,"ĠSolomon":22912,"194":22913,"004":22914,"output":22915,"Ġredund":22916,"ĠMumbai":22917,"ĠpH":22918,"Ġreproduce":22919,"ĠDuration":22920,"MAX":22921,"Ġbog":22922,"CBS":22923,"ĠBalance":22924,"ĠSgt":22925,"ĠRecent":22926,"Ġcd":22927,"Ġpopped":22928,"Ġincompet":22929,"prop":22930,"ayan":22931,"guy":22932,"Pacific":22933,"Ġtyr":22934,"Ġ{{":22935,"ĠMystic":22936,"ĠDana":22937,"Ġmasturb":22938,"Ġgeometry":22939,"â":22940,"ĠCorrect":22941,"Ġtrajectory":22942,"Ġdistracted":22943,"Ġfoo":22944,"ĠWelsh":22945,"Luc":22946,"mith":22947,"Ġrugby":22948,"Ġrespiratory":22949,"Ġtriangle":22950,"Ġ215":22951,"Ġundergraduate":22952,"ĠSuperior":22953,"changing":22954,"_-":22955,"Ġrightly":22956,"Ġreferee":22957,"Ġlucrative":22958,"Ġunauthorized":22959,"Ġresembles":22960,"ĠGNU":22961,"ĠDerby":22962,"Ġpathways":22963,"ĠLed":22964,"Ġendurance":22965,"Ġstint":22966,"Ġcollector":22967,"Fast":22968,"Ġdots":22969,"Ġnationals":22970,"ĠSecurities":22971,"Ġwhip":22972,"Param":22973,"Ġlearns":22974,"Magic":22975,"Ġdetailing":22976,"moon":22977,"Ġbroadcasting":22978,"Ġbaked":22979,"265":22980,"holm":22981,"ĠSah":22982,"ĠHussein":22983,"ĠCourtesy":22984,"174":22985,"Ġ146":22986,"Ġgeographic":22987,"peace":22988,"Ġjudging":22989,"ĠStern":22990,"Bur":22991,"Ġstoryline":22992,"Gun":22993,"ĠStick":22994,"245":22995,"307":22996,"ãĤ´ãĥ³":22997,"ĠAdministrator":22998,"Ġburnt":22999,"Ġpave":23000,"choes":23001,"Exec":23002,"Ġcampuses":23003,"Result":23004,"Ġmutations":23005,"ĠCharter":23006,"Ġcaptures":23007,"Ġcompares":23008,"Ġbadge":23009,"Scient":23010,"Ġerad":23011,"iery":23012,"oi":23013,"ettes":23014,"ĠEstate":23015,"Ġstrap":23016,"Ġproudly":23017,"Ġfried":23018,"Ġwithdrawn":23019,"ĠVoy":23020,"phony":23021,"Items":23022,"ĠPierce":23023,"bard":23024,"Ġannotation":23025,"anton":23026,"illon":23027,"Impro":23028,"...)":23029,"Ġhappier":23030,"------":23031,"adjust":23032,"Ġstaffers":23033,"Ġactivism":23034,"Ġperf":23035,"Ġalright":23036,"Need":23037,"Ġcommence":23038,"Ġopioid":23039,"ĠAmanda":23040,"Es":23041,"ĠPars":23042,"ĠKaw":23043,"Works":23044,"248":23045,"Ġindo":23046,"tc":23047,"endant":23048,"ĠMoto":23049,"Ġlegalization":23050,"OTE":23051,"Ġtasked":23052,"Ġtsp":23053,"ĠACTIONS":23054,"166":23055,"Ġrefreshing":23056,"ĠNR":23057,"ĠPerez":23058,"Ġinfringement":23059,"SY":23060,"Listen":23061,"inning":23062,"ku":23063,"Ġrotate":23064,"program":23065,"arah":23066,"Design":23067,"Ġ(£":23068,"Ġstoring":23069,"Ġwarrants":23070,"Ġjudgement":23071,"ĠBrist":23072,"usually":23073,"photo":23074,"ĠRan":23075,"ĠPine":23076,"Ġoutrageous":23077,"ĠValentine":23078,"luence":23079,"ĠEverybody":23080,"Altern":23081,"Ġrelevance":23082,"Ġterminated":23083,"Ġdessert":23084,"Ġfulfilled":23085,"Ġprosecuted":23086,"ĠWords":23087,"Ġmigrant":23088,"Ġcultivation":23089,"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ":23090,"idelity":23091,"ĠVern":23092,"ĠLogin":23093,"Ġmetaphor":23094,"ĠTip":23095,"Ġrecruits":23096,"ĠPig":23097,"ribing":23098,"Ġenthusiasts":23099,"exper":23100,"Ġfrightening":23101,"ĠHair":23102,"anson":23103,"strate":23104,"Ġhi":23105,"Height":23106,"Ġowning":23107,"none":23108,"Ġdislike":23109,"Ġknives":23110,"pherd":23111,"Ġloudly":23112,"ĠAPIs":23113,"Display":23114,"ĠLac":23115,"ĠUSS":23116,"abl":23117,"verages":23118,"Jew":23119,"Ġ172":23120,"ĠHistorical":23121,"atoon":23122,"ĠPhysics":23123,"intern":23124,"Ġwarmth":23125,"Ġtopp":23126,"DM":23127,"Ġgunman":23128,"Ġemperor":23129,"odi":23130,"ãĥ£":23131,"inatory":23132,"ĠRib":23133,"Ġ131":23134,"ĠSaturn":23135,"ĠShining":23136,"Ġwaking":23137,"Quotes":23138,"Ġcomedian":23139,"enberg":23140,"½":23141,"Ġbelievers":23142,"Ġpaperwork":23143,"custom":23144,"Ġlev":23145,"Ġlament":23146,"Ġpouring":23147,"222":23148,"political":23149,"ĠSupplement":23150,"maid":23151,"Ġcruelty":23152,"Ġtread":23153,"ysics":23154,"Aw":23155,"rites":23156,"Ġmodifier":23157,"ĠPosition":23158,"Adam":23159,"lb":23160,"ubs":23161,"Ġimperfect":23162,"Ġclusters":23163,"ĠEngineer":23164,"ĠCherry":23165,"Ġinauguration":23166,"ĠSau":23167,"Ġembodiment":23168,"ĠUncle":23169,"Ġoverr":23170,"Ġexplosions":23171,"cule":23172,"ĠPrinceton":23173,"ĠAndrea":23174,"Ġincorrectly":23175,"Ġearnest":23176,"Ġpilgr":23177,"ĠSprint":23178,"Ġsleeve":23179,"Ġhears":23180,"ĠAmazing":23181,"Ġbrowsing":23182,"agin":23183,"Ġhomeland":23184,"Ġhaw":23185,"Ġdiving":23186,"istered":23187,"178":23188,"Ġbargaining":23189,"ĠArcade":23190,"Ġdelegate":23191,"terson":23192,"................................................................":23193,"ĠJacksonville":23194,"275":23195,"Ġstagn":23196,"Ġadam":23197,"ĠSherman":23198,"CB":23199,"Ġsuburb":23200,"ĠFoods":23201,"Ġconverting":23202,"ĠArist":23203,"Ġchambers":23204,"love":23205,"Ġamino":23206,"ĠGan":23207,"Ġmadness":23208,"mc":23209,"ĠUSE":23210,"defined":23211,"Ġultr":23212,"indust":23213,"Ġwolves":23214,"lance":23215,"Additionally":23216,"Ġcracks":23217,"asia":23218,"ĠReason":23219,"ĠPump":23220,"Ġaccidental":23221,"ĠLaser":23222,"ĠRid":23223,"Ġinitialized":23224,"elli":23225,"Ġunnamed":23226,"Ġnoun":23227,"ĠPassed":23228,"Ġhostage":23229,"ĠEthiop":23230,"shirts":23231,"Ġunrel":23232,"ĠEmbassy":23233,"Ġ1941":23234,"Ġatoms":23235,"Ġpurported":23236,"164":23237,"ĠFi":23238,"Ġgallons":23239,"ĠMonica":23240,"Ġpg":23241,"enment":23242,"Ġsorted":23243,"ĠGospel":23244,"Ġheights":23245,"Ġtraced":23246,"Ġundergoing":23247,"Shell":23248,"Ġsacks":23249,"Ġproportions":23250,"Ġhalluc":23251,"Font":23252,"acet":23253,"Ġwarmer":23254,"ĠINTER":23255,"Ġgrabbing":23256,"Plug":23257,"Ġrealization":23258,"ĠBurke":23259,"Ġenchant":23260,"ATER":23261,"ĠSeed":23262,"Ġabundant":23263,"FM":23264,"Ġcivic":23265,"Vs":23266,"isi":23267,"Ġvow":23268,"Ġreper":23269,"ĠPartnership":23270,"Ġpenetration":23271,"Ġaxe":23272,"Ġshattered":23273,"ĠZombies":23274,"Ġvinyl":23275,"ĠAlert":23276,"eon":23277,"Ġobliged":23278,"ĠIllust":23279,"ĠPlaza":23280,"ĠFrontier":23281,"Ġdavidjl":23282,"ĠSerial":23283,"ĠHav":23284,"ĠNutrition":23285,"Bi":23286,"ĠâĸĪ":23287,"ĠJays":23288,"linux":23289,"Ġhurry":23290,"Ġvoy":23291,"Ġhopeless":23292,"ĠStealth":23293,"Ġãģ":23294,"essors":23295,"ttle":23296,"borg":23297,"ĠSafari":23298,"fell":23299,"Ġwary":23300,"due":23301,"ĠAbove":23302,"Ha":23303,"ELL":23304,"Ġnotor":23305,"ĠWon":23306,"Too":23307,"Ġoccupations":23308,"Ġpossessions":23309,"Ġinviting":23310,"Ġpredators":23311,"Ġaccelerated":23312,"Ġ157":23313,"uterte":23314,"ĠCube":23315,"east":23316,"account":23317,"Give":23318,"Ġtransplant":23319,"redients":23320,"idable":23321,"Ġscreenshots":23322,"ĠGund":23323,"ĠFS":23324,"Ġtravelers":23325,"Ġsensory":23326,"ĠFiat":23327,"ĠRockets":23328,"İĭ":23329,"_{":23330,"Friend":23331,"Ġcharming":23332,"ALS":23333,"Ġenjoyment":23334,"mph":23335,"Ġ5000":23336,"ĠREG":23337,"ÙĨ":23338,"bia":23339,"Ġcompilation":23340,"rost":23341,"ĠVP":23342,"ĠSchne":23343,"2019":23344,"Ġcopying":23345,"MORE":23346,"ĠFlore":23347,"falls":23348,"215":23349,"total":23350,"Ġdisciples":23351,"double":23352,"Ġexceeding":23353,"Ġsmashed":23354,"Ġconceptual":23355,"ĠRomania":23356,"ĠBrent":23357,"ĠICE":23358,"ĠTou":23359,"Ġgrap":23360,"Ġnails":23361,"189":23362,"ãĥĺ":23363,"Ġprocure":23364,"eur":23365,"Ġconfirming":23366,"ĠCec":23367,"awi":23368,"ĠEden":23369,"Ġng":23370,"Ġengineered":23371,"atics":23372,"Ġhooked":23373,"Ġdisgusting":23374,"ĠMurder":23375,"ãĤ¿":23376,"Library":23377,"Ġ168":23378,"Almost":23379,"hematic":23380,"Menu":23381,"ĠNotre":23382,"ĠJur":23383,"Ġkidnapped":23384,"Ġhacker":23385,"ĠJade":23386,"Ġcreepy":23387,"Ġdrawings":23388,"ĠSponsor":23389,"Ġcyclists":23390,"ĠGoblin":23391,"Ġoptimized":23392,"Ġstaged":23393,"ĠMcD":23394,"between":23395,"Age":23396,"eno":23397,"Sex":23398,"ĠWide":23399,"nings":23400,"avis":23401,"Ġincapable":23402,"ĠKob":23403,"Ġrewarding":23404,"ĠLone":23405,"olescent":23406,"Ġcontracted":23407,"Ġsticky":23408,"Jose":23409,"Ball":23410,"fest":23411,"ĠInput":23412,"ĠRecently":23413,"Ġtomat":23414,"square":23415,"Application":23416,"Ġnitrogen":23417,"Ġduplicate":23418,"ĠRecon":23419,"ĠDear":23420,"London":23421,"Ġintra":23422,"Ġdock":23423,"Ġoutreach":23424,"ĠMillion":23425,"Ġmammals":23426,"ampton":23427,"VAL":23428,"Ġsnaps":23429,"Ġdos":23430,"ĠWhole":23431,"ĠReady":23432,"Try":23433,"ĠWinnipeg":23434,"earance":23435,"Ġincurred":23436,"renched":23437,"ĠNSW":23438,"ilot":23439,"raine":23440,"Ġcube":23441,"got":23442,"Ġrunway":23443,"etermined":23444,"ĠHawks":23445,"Ġsurvivor":23446,"ĠWish":23447,"ĠDin":23448,"ĠDEF":23449,"ĠVault":23450,"187":23451,"Ġmushrooms":23452,"Ġcrisp":23453,"bey":23454,"ĠDiscovery":23455,"Ġdevelopmental":23456,"Ġparadigm":23457,"Ġchaotic":23458,"ĠTsu":23459,"Ġ333":23460,"bons":23461,"Ġbacterial":23462,"Ġcommits":23463,"Ġcosmic":23464,"Ġmega":23465,"ocative":23466,"ĠPaint":23467,"ophobic":23468,"Ġvain":23469,"Ġcarved":23470,"ĠThief":23471,"ĠGul":23472,"owship":23473,"Ġcites":23474,"ĠEdinburgh":23475,"Ġdiminished":23476,"Ġacknowledges":23477,"ĠKills":23478,"Ġmicrow":23479,"ĠHera":23480,"Ġseniors":23481,"Ġwhereby":23482,"Hop":23483,"atron":23484,"Ġunavailable":23485,"ĠNate":23486,"Ġ480":23487,"Ġslated":23488,"ĠRebecca":23489,"ĠBattery":23490,"Ġgrammar":23491,"Ġheadset":23492,"Ġcursor":23493,"Ġexcluding":23494,"anye":23495,"aundering":23496,"ebin":23497,"Ġfeasible":23498,"ĠPublishing":23499,"ĠLabs":23500,"ĠCliff":23501,"ĠFerrari":23502,"Ġpac":23503,"visible":23504,"marked":23505,"pell":23506,"Ġpolite":23507,"Ġstaggering":23508,"ĠGalactic":23509,"Ġsuperst":23510,"Ġparan":23511,"ĠOfficers":23512,"ãĢģ":23513,"Ġspecifics":23514,"ulus":23515,"239":23516,"ĠPaste":23517,"AMP":23518,"ĠPanama":23519,"ĠDelete":23520,"anguard":23521,"restrial":23522,"Ġheroic":23523,"ĠDy":23524,"اÙĦ":23525,"Ġincumbent":23526,"Ġcrunch":23527,"tro":23528,"Ġscoop":23529,"Ġblogger":23530,"Ġsellers":23531,"uren":23532,"Ġmedicines":23533,"ĠCaps":23534,"ĠAnimation":23535,"oxy":23536,"Ġoutward":23537,"Ġinquiries":23538,"229":23539,"Ġpsychologist":23540,"ĠSask":23541,"evil":23542,"Ġcontaminated":23543,"ãĤ¨":23544,"herence":23545,"Ġbranded":23546,"ĠAbdul":23547,"zh":23548,"Ġparagraphs":23549,"Ġmins":23550,"Ġcorrelated":23551,"erb":23552,"Ġimpart":23553,"Ġmilestone":23554,"ĠSolutions":23555,"otle":23556,"Ġundercover":23557,"Ġmarched":23558,"ĠChargers":23559,"fax":23560,"ĠSecrets":23561,"Ġruth":23562,"weather":23563,"Ġfeminine":23564,"Ġsham":23565,"Ġprestigious":23566,"iggins":23567,"Ġsung":23568,"history":23569,"ettle":23570,"ggie":23571,"Ġoutdated":23572,"oland":23573,"Ġperceptions":23574,"ĠSession":23575,"ĠDodgers":23576,"uj":23577,"ĠEND":23578,"Doc":23579,"Ġdeficiency":23580,"Grand":23581,"ĠJoker":23582,"Ġretrospect":23583,"Ġdiagnostic":23584,"Ġharmless":23585,"Ġrogue":23586,"ĠAval":23587,"Equ":23588,"Ġtransc":23589,"ĠRobertson":23590,"ĠDepending":23591,"ĠBurns":23592,"ivo":23593,"Ġhostility":23594,"Features":23595,"ĵĺ":23596,"Ġdiscomfort":23597,"ĠLCD":23598,"specified":23599,"ĠExpect":23600,"340":23601,"Ġimperative":23602,"ĠRegular":23603,"Chinese":23604,"Ġstatewide":23605,"Ġsymm":23606,"Ġloops":23607,"Ġautumn":23608,"Nick":23609,"Ġshaping":23610,"Ġquot":23611,"Ġcherry":23612,"ĠCrossref":23613,"è¦ļéĨĴ":23614,"Standard":23615,"heed":23616,"ĠDell":23617,"ĠVietnamese":23618,"Ġost":23619,"ĠValkyrie":23620,"OA":23621,"Assad":23622,"Ġrebound":23623,"ĠTraffic":23624,"places":23625,"æĺ":23626,"ĠBuc":23627,"172":23628,"Ġshelters":23629,"Ġinsisting":23630,"ĠCertainly":23631,"ĠKenneth":23632,"ĠTCP":23633,"Ġpenal":23634,"ĠReplay":23635,"heard":23636,"Ġdialect":23637,"iza":23638,"ĠFY":23639,"itcher":23640,"ĠDL":23641,"Ġspiral":23642,"Ġquarterbacks":23643,"Ġhull":23644,"Ġgoogle":23645,"Ġtodd":23646,"ĠSterling":23647,"ĠPlate":23648,"Ġspying":23649,"mbol":23650,"ĠRealm":23651,"ĠProced":23652,"ĠCrash":23653,"Ġterminate":23654,"Ġprotesting":23655,"Center":23656,"guided":23657,"Ġuncover":23658,"Ġboycott":23659,"Ġrealizes":23660,"sound":23661,"Ġpretending":23662,"ĠVas":23663,"1980":23664,"Ġframed":23665,"Ġ139":23666,"Ġdescended":23667,"Ġrehabilitation":23668,"Ġborrowing":23669,"ĠBuch":23670,"Ġblur":23671,"Ron":23672,"ĠFrozen":23673,"enza":23674,"Chief":23675,"ĠPoor":23676,"Ġtranslates":23677,"MIN":23678,"Ġ212":23679,"JECT":23680,"Ġerupted":23681,"Ġsuccesses":23682,"SEC":23683,"Ġplague":23684,"Ġgems":23685,"doms":23686,"Ġstretches":23687,"ĠSpy":23688,"Ġstorytelling":23689,"Credit":23690,"ĠPush":23691,"Ġtraction":23692,"Ġineffective":23693,"ĠLuna":23694,"Ġtapes":23695,"Ġanalytics":23696,"ercise":23697,"Ġprogrammes":23698,"ĠCarbon":23699,"Ġbehold":23700,"heavy":23701,"ĠConservation":23702,"ĠFIR":23703,"Ġsack":23704,"termin":23705,"ricks":23706,"Ġhoused":23707,"Ġunusually":23708,"Ice":23709,"Ġexecuting":23710,"ĠMoroc":23711,"eday":23712,"Ġeditions":23713,"Ġsmarter":23714,"ĠBA":23715,"Ġoutlaw":23716,"Ġvanished":23717,"iba":23718,"ALSE":23719,"ĠSilva":23720,"238":23721,"Could":23722,"Ġphilosopher":23723,"Ġevacuated":23724,"Secret":23725,"142":23726,"Ġvisas":23727,"ãĤ¬":23728,"ĠMalt":23729,"ĠClearly":23730,"ĠNiger":23731,"ĠCairo":23732,"ĠFist":23733,"380":23734,"ĠXML":23735,"auto":23736,"itant":23737,"Ġreinforced":23738,"Record":23739,"ĠSurvivor":23740,"GHz":23741,"Ġscrews":23742,"parents":23743,"Ġoceans":23744,"mares":23745,"Ġbrakes":23746,"vasive":23747,"Ġhello":23748,"ĠSIM":23749,"rimp":23750,"Ġore":23751,"ĠArmour":23752,"247":23753,"Ġterrific":23754,"Ġtones":23755,"141":23756,"ĠMinutes":23757,"Episode":23758,"Ġcurves":23759,"Ġinflammatory":23760,"Ġbatting":23761,"ĠBeautiful":23762,"Lay":23763,"Ġunpop":23764,"vable":23765,"Ġriots":23766,"ĠTactics":23767,"baugh":23768,"ĠCock":23769,"Ġorgasm":23770,"ĠSas":23771,"Ġconstructor":23772,"etz":23773,"Gov":23774,"Ġantagon":23775,"Ġtheat":23776,"Ġdeeds":23777,"hao":23778,"cuts":23779,"ĠMcCl":23780,"Ġum":23781,"ĠScientists":23782,"Ġgrassroots":23783,"yssey":23784,"\"]=>":23785,"Ġsurfaced":23786,"Ġshades":23787,"Ġneighbours":23788,"Ġadvertis":23789,"oya":23790,"Ġmerged":23791,"Upon":23792,"Ġgad":23793,"Ġanticipate":23794,"Anyway":23795,"Ġslogan":23796,"Ġdisrespect":23797,"Iran":23798,"ĠTB":23799,"acted":23800,"Ġsubpoen":23801,"mediately":23802,"OOOO":23803,"Ġwaiver":23804,"Ġvulnerabilities":23805,"ottesville":23806,"ĠHuffington":23807,"Josh":23808,"ĠDH":23809,"Monday":23810,"ĠEllen":23811,"Know":23812,"xon":23813,"items":23814,"228":23815,"Ġfills":23816,"ĠNike":23817,"Ġcumulative":23818,"andals":23819,"Ir":23820,"Ġì":23821,"Ġfriction":23822,"igator":23823,"Ġscans":23824,"ĠVienna":23825,"ldom":23826,"Ġperformers":23827,"Prim":23828,"Ġbidding":23829,"Mur":23830,"Ġleaned":23831,"ĠPrix":23832,"alks":23833,"Ġ[â̦]":23834,"ĠTwitch":23835,"ĠDeveloper":23836,"ĠGir":23837,"Ġcallback":23838,"Abstract":23839,"Ġaccustomed":23840,"Ġfreedoms":23841,"ĠPG":23842,"uracy":23843,"Ġlump":23844,"isman":23845,",,,,":23846,"1992":23847,"ĠRED":23848,"Ġworm":23849,"Match":23850,"ĠPlatinum":23851,"IJ":23852,"ĠOwner":23853,"Trivia":23854,"compl":23855,"Ġnewborn":23856,"Ġfantas":23857,"Own":23858,"Ġ1959":23859,"Ġsympath":23860,"Ġubiqu":23861,"Ġoutputs":23862,"Ġallev":23863,"Ġprag":23864,"Kevin":23865,"Ġfavors":23866,"Ġburial":23867,"Ġnurt":23868,"solete":23869,"cache":23870,"Ġ156":23871,"Ġunlocks":23872,"techn":23873,"Making":23874,"Ġconquer":23875,"adic":23876,"æĸ":23877,"Ġelf":23878,"Ġelectorate":23879,"ĠKurds":23880,"ĠStack":23881,"ĠSamurai":23882,"Ġâĺħ":23883,"Ġ{}":23884,"ĠSaid":23885,"ĠFallout":23886,"Ġkindness":23887,"ĠCustoms":23888,"ĠBoulevard":23889,"Ġhelicopters":23890,"otics":23891,"ĠVeget":23892,"comment":23893,"Ġcriticised":23894,"Ġpolished":23895,"ĠRemix":23896,"ĠCultural":23897,"Ġrecons":23898,"Ġdoi":23899,"atem":23900,"Screen":23901,"Ġbarred":23902,"Comments":23903,"ĠGenerally":23904,"Ġslap":23905,"720":23906,"Vari":23907,"pine":23908,"Ġempt":23909,"Ġhats":23910,"ĠPlaying":23911,"lab":23912,"average":23913,"forms":23914,"ĠCotton":23915,"Ġcans":23916,"ĠDON":23917,"ĠSomalia":23918,"Crypt":23919,"ĠIncreases":23920,"Ever":23921,"modern":23922,"Ġsurgeon":23923,"3000":23924,"Ġrandomized":23925,"================================================================":23926,"Bern":23927,"impl":23928,"ĠCOR":23929,"Ġproclaim":23930,"thouse":23931,"Ġtoes":23932,"Ġample":23933,"Ġpreserving":23934,"Ġdisbel":23935,"grand":23936,"Besides":23937,"Ġsilk":23938,"ĠPattern":23939,"hm":23940,"Ġenterprises":23941,"Ġaffidavit":23942,"ĠAdvisory":23943,"Ġadvertised":23944,"ĠReligious":23945,"sections":23946,"psych":23947,"ĠFields":23948,"aways":23949,"Ġhashtag":23950,"ĠNightmare":23951,"Ġvampire":23952,"Ġforensic":23953,"rossover":23954,"nar":23955,"Ġnavy":23956,"Ġvacant":23957,"ĠDuel":23958,"Ġhallway":23959,"Ġfacebook":23960,"identally":23961,"ĠNRA":23962,"Ġmatt":23963,"Ġhurricane":23964,"ĠKirby":23965,"ĠPuzzle":23966,"Ġskirt":23967,"oust":23968,"dullah":23969,"Ġanalogy":23970,"inion":23971,"Ġtomatoes":23972,"ĠNV":23973,"ĠPeak":23974,"ĠMeyer":23975,"Ġappointments":23976,"Ġmasc":23977,"Ġalley":23978,"rehend":23979,"Ġcharities":23980,"Ġundo":23981,"Ġdestinations":23982,"ĠTesting":23983,"\">\"":24618,"cats":24619,"*.":24620,"Ġgestures":24621,"general":24622,"League":24623,"Ġpackets":24624,"ĠInspector":24625,"ĠBerg":24626,"Ġfraudulent":24627,"Ġcriticize":24628,"Fun":24629,"Ġblaming":24630,"ndra":24631,"Ġslash":24632,"ĠEston":24633,"Ġproposing":24634,"Ġwhales":24635,"Ġtherapist":24636,"Ġsubset":24637,"Ġleisure":24638,"ELD":24639,"ĠCVE":24640,"ĠActivity":24641,"Ġculmin":24642,"shop":24643,"ĠDAY":24644,"ischer":24645,"ĠAdmiral":24646,"ĠAttacks":24647,"Ġ1958":24648,"Ġmemoir":24649,"Ġfolded":24650,"Ġsexist":24651,"Ġ153":24652,"ĠLI":24653,"Ġreadings":24654,"Ġembarrassment":24655,"ĠEmployment":24656,"wart":24657,"chin":24658,"Ġcontinuation":24659,"lia":24660,"Recently":24661,"Ġduel":24662,"Ġevacuation":24663,"ĠKashmir":24664,"Ġdisposition":24665,"ĠRig":24666,"Ġbolts":24667,"Ġinsurers":24668,"467":24669,"Mex":24670,"Ġretaliation":24671,"Ġmisery":24672,"Ġunreasonable":24673,"raining":24674,"Imm":24675,"ĠPU":24676,"emer":24677,"Ġgenital":24678,"ãĤ³":24679,"ĠCandy":24680,"Ġonions":24681,"ĠPatt":24682,"liner":24683,"Ġconceded":24684,"Ġfa":24685,"Ġforc":24686,"ĠHernandez":24687,"ĠGeoff":24688,"debian":24689,"ĠTeams":24690,"Ġcries":24691,"Ġhomeowners":24692,"237":24693,"ABC":24694,"Ġstitch":24695,"Ġstatistic":24696,"Ġheaders":24697,"ĠBiology":24698,"Ġmotors":24699,"ĠGEN":24700,"ĠLip":24701,"Ġhates":24702,"Ġheel":24703,"Self":24704,"ipl":24705,"EDIT":24706,"orting":24707,"Ġannot":24708,"ĠSpeech":24709,"oldemort":24710,"ĠJavascript":24711,"ĠLeBron":24712,"Ġfootprint":24713,"Ġfn":24714,"Ġseizures":24715,"nas":24716,"hide":24717,"Ġ1954":24718,"ĠBee":24719,"ĠDeclaration":24720,"ĠKatie":24721,"Ġreservations":24722,"NR":24723,"female":24724,"Ġsaturated":24725,"Ġbiblical":24726,"Ġtrolls":24727,"Device":24728,"photos":24729,"Ġdrums":24730,"ãĥīãĥ©ãĤ´ãĥ³":24731,"Night":24732,"fighter":24733,"ĠHak":24734,"riber":24735,"Ġcush":24736,"Ġdisciplinary":24737,"baum":24738,"ĠGH":24739,"ĠSchmidt":24740,"ilibrium":24741,"Ġsixty":24742,"ĠKushner":24743,"rots":24744,"Ġpund":24745,"ĠRac":24746,"Ġsprings":24747,"Ġconve":24748,"Business":24749,"Fall":24750,"Ġqualifications":24751,"Ġverses":24752,"Ġnarciss":24753,"ĠKoh":24754,"ĠWow":24755,"ĠCharlottesville":24756,"edo":24757,"Ġinterrogation":24758,"ĠWool":24759,"365":24760,"Brian":24761,"Ġâľĵ":24762,"Ġalleges":24763,"onds":24764,"idation":24765,"ĠJackie":24766,"yu":24767,"Ġlakes":24768,"Ġworthwhile":24769,"Ġcrystals":24770,"ĠJuda":24771,"Ġcomprehend":24772,"Ġflush":24773,"Ġabsorption":24774,"ĠOC":24775,"Ġfrightened":24776,"ĠChocolate":24777,"Martin":24778,"Ġbuys":24779,"Ġbucks":24780,"Ġappell":24781,"ĠChampionships":24782,"Ġlistener":24783,"ĠDefensive":24784,"Ġcz":24785,"uds":24786,"ĠMate":24787,"Ġreplay":24788,"Ġdecorated":24789,"Ġsunk":24790,"ĠVIP":24791,"ĠAnk":24792,"Ġ195":24793,"aaaa":24794,"Nobody":24795,"ĠMilk":24796,"ĠGur":24797,"ĠMk":24798,"ĠSara":24799,"Ġseating":24800,"ĠWid":24801,"Track":24802,"Ġemploys":24803,"Ġgigantic":24804,"APP":24805,"ãĤ§":24806,"inventory":24807,"Ġtowel":24808,"atche":24809,"lasting":24810,"ĠTL":24811,"Ġlatency":24812,"Ġkne":24813,"Ber":24814,"meaning":24815,"Ġupheld":24816,"Ġplayground":24817,"Ġmant":24818,"Side":24819,"Ġstereo":24820,"Ġnorthwest":24821,"Ġexceptionally":24822,"Ġrays":24823,"Ġrecurring":24824,"Drive":24825,"Ġupright":24826,"Ġabduct":24827,"ĠMarathon":24828,"Ġgoodbye":24829,"Ġalphabet":24830,"hp":24831,"Ġcourtroom":24832,"rington":24833,"othing":24834,"Tag":24835,"Ġdiplomats":24836,"Ġbarbar":24837,"ĠAqua":24838,"183":24839,"3333":24840,"Ġmaturity":24841,"Ġinstability":24842,"ĠApache":24843,"Ġ===":24844,"Ġfasting":24845,"ĠGrid":24846,"ModLoader":24847,"Ġ152":24848,"Abs":24849,"ĠOperating":24850,"etti":24851,"Ġacquaint":24852,"Donnell":24853,"ĠKem":24854,"ĠForge":24855,"Ġarmored":24856,"Mil":24857,"Ġphilosophers":24858,"invest":24859,"Players":24860,"âĪ":24861,"Ġmyriad":24862,"Ġcomrades":24863,"Rot":24864,"Ġremembering":24865,"Ġcorresponds":24866,"Ġprogrammers":24867,"ĠLynn":24868,"Ġolig":24869,"Ġcoherent":24870,"ynchron":24871,"ĠChemical":24872,"Ġjugg":24873,"pair":24874,"posts":24875,"Eye":24876,"ĠInner":24877,"Ġsemester":24878,"ottest":24879,"ĠEmirates":24880,"ricanes":24881,"orously":24882,"mits":24883,"ĠWis":24884,"Ġdodge":24885,"location":24886,"Ġfaded":24887,"Amazon":24888,"ĠProceed":24889,"ĠINFO":24890,"journal":24891,"ĠTruck":24892,"Ten":24893,"Ġ217":24894,"Ġstatutes":24895,"mobile":24896,"ĠTypes":24897,"Recomm":24898,"buster":24899,"pex":24900,"Ġlegends":24901,"Ġheadache":24902,"faced":24903,"ĠWiFi":24904,"ifty":24905,"ĠHER":24906,"Ġcircuits":24907,"ERROR":24908,"226":24909,"olin":24910,"Ġcylinder":24911,"ospace":24912,"ikers":24913,"Prem":24914,"Quant":24915,"Ġconflicting":24916,"Ġslightest":24917,"Ġforged":24918,"ionage":24919,"Stephen":24920,"ĠKub":24921,"ĠOpportun":24922,"ĠHeal":24923,"Ġblo":24924,"Ġrulers":24925,"Ġhuh":24926,"Ġsubmarine":24927,"fy":24928,"asser":24929,"Ġallowance":24930,"ĠKasich":24931,"ĠTas":24932,"ĠAustralians":24933,"ForgeModLoader":24934,"ĠâĨij":24935,"ĠMatrix":24936,"amins":24937,"Ġ1200":24938,"ĠAcqu":24939,"236":24940,"Document":24941,"ĠBreaking":24942,"193":24943,"ĠSubst":24944,"ĠRoller":24945,"ĠProperties":24946,"ĠNI":24947,"tier":24948,"Ġcrushing":24949,"Ġadvocating":24950,"Furthermore":24951,"keepers":24952,"Ġsexism":24953,"xd":24954,"Ġcaller":24955,"ĠSense":24956,"chieve":24957,"ĠTF":24958,"Ġfueled":24959,"Ġreminiscent":24960,"Ġobsess":24961,"urst":24962,"Ġuphold":24963,"ĠFans":24964,"hetics":24965,"ĠâĹ":24966,"ĠBath":24967,"Ġbeverage":24968,"Ġoscill":24969,"254":24970,"Ġpoles":24971,"Ġgradual":24972,"Ġexting":24973,"ĠSuff":24974,"ĠSuddenly":24975,"Ġliking":24976,"Ġ1949":24977,"unciation":24978,"amination":24979,"ĠOmar":24980,"ĠLV":24981,"ĠConsequently":24982,"Ġsynthes":24983,"ĠGIF":24984,"Ġpains":24985,"Ġinteracting":24986,"uously":24987,"incre":24988,"Ġrumor":24989,"ĠScientology":24990,"197":24991,"ĠZig":24992,"Ġspelling":24993,"ĠASS":24994,"Ġextingu":24995,"mson":24996,"Ġgh":24997,"Ġremarked":24998,"ĠStrategic":24999,"ĠMON":25000,"å¥":25001,"gae":25002,"ĠWHAT":25003,"Eric":25004,"ĠCampus":25005,"Ġmethane":25006,"Ġimagin":25007,"JUST":25008,"ĠAlm":25009,"XT":25010,"iq":25011,"ĠRSS":25012,"Ġwrongdoing":25013,"atta":25014,"Ġbigot":25015,"Ġdemonstrators":25016,"ĠCalvin":25017,"ĠVilla":25018,"Ġmembrane":25019,"ĠAwesome":25020,"Ġbenefic":25021,"268":25022,"Ġmagnificent":25023,"ĠLots":25024,"Greg":25025,"ĠBoris":25026,"Ġdetainees":25027,"ĠHerman":25028,"Ġwhispered":25029,"Ġawe":25030,"Professor":25031,"funding":25032,"Ġphysiological":25033,"ĠDestruction":25034,"Ġlimb":25035,"Ġmanipulated":25036,"Ġbubbles":25037,"Ġpseud":25038,"Ġhydra":25039,"ĠBristol":25040,"Ġstellar":25041,"ĠExpansion":25042,"ĠKell":25043,"ĠInterestingly":25044,"Ġmans":25045,"Ġdragging":25046,"Ġecological":25047,"ĠFit":25048,"Ġgent":25049,"Ġbenefited":25050,"ĠHaiti":25051,"Ġpolyg":25052,"ãĥİ":25053,"Ġ2030":25054,"Ġprow":25055,"Ġreconstruction":25056,"Ġwast":25057,"Ġpsychic":25058,"ĠGreeks":25059,"Handler":25060,"162":25061,"ĠPulse":25062,"Ġsolicit":25063,"Ġsys":25064,"Ġinflux":25065,"ĠGentle":25066,"percent":25067,"Ġproliferation":25068,"Ġtaxable":25069,"Ġdisregard":25070,"Ġescaping":25071,"Ġginger":25072,"Ġwithstand":25073,"Ġdevastated":25074,"ĠDew":25075,"series":25076,"Ġinjected":25077,"elaide":25078,"Ġturnover":25079,"heat":25080,"ĻĤ":25081,"Happy":25082,"ĠSilent":25083,"ãĤŃ":25084,"ivism":25085,"Ġirrational":25086,"AMA":25087,"Ġreef":25088,"rub":25089,"Ġ162":25090,"Ġbankers":25091,"ĠEthics":25092,"vv":25093,"Ġcriticisms":25094,"Kn":25095,"186":25096,"Movie":25097,"ĠTories":25098,"Ġnood":25099,"Ġdistortion":25100,"False":25101,"odore":25102,"Ġtasty":25103,"Research":25104,"ĠUID":25105,"-)":25106,"Ġdivorced":25107,"ĠMU":25108,"ĠHayes":25109,"ĠIsn":25110,"iani":25111,"ĠHQ":25112,"Ġ\"#":25113,"ignant":25114,"Ġtraumatic":25115,"ĠLing":25116,"Hun":25117,"Ġsabot":25118,"online":25119,"random":25120,"Ġrenamed":25121,"rared":25122,"KA":25123,"dead":25124,"ét":25125,"ĠAssistance":25126,"Ġseaf":25127,"++++++++":25128,"Ġseldom":25129,"ĠWebb":25130,"Ġboolean":25131,"ulet":25132,"Ġrefrain":25133,"ĠDIY":25134,"rule":25135,"Ġshutting":25136,"Ġutilizing":25137,"loading":25138,"ĠParam":25139,"coal":25140,"ooter":25141,"Ġattracting":25142,"ĠDol":25143,"Ġhers":25144,"agnetic":25145,"ĠReach":25146,"imo":25147,"Ġdiscarded":25148,"ĠPip":25149,"015":25150,"ür":25151,"Ġmug":25152,"Imagine":25153,"COL":25154,"Ġcursed":25155,"ĠShows":25156,"ĠCurtis":25157,"ĠSachs":25158,"speaking":25159,"ĠVista":25160,"ĠFramework":25161,"ongo":25162,"Ġsubreddit":25163,"Ġcrus":25164,"ĠOval":25165,"Row":25166,"growing":25167,"Ġinstallment":25168,"Ġglac":25169,"ĠAdvance":25170,"ECK":25171,"ĠLGBTQ":25172,"LEY":25173,"Ġacet":25174,"Ġsuccessive":25175,"ĠNicole":25176,"Ġ1957":25177,"Quote":25178,"Ġcircumstance":25179,"ackets":25180,"Ġ142":25181,"ortium":25182,"Ġguessed":25183,"ĠFrame":25184,"Ġperpetrators":25185,"ĠAviation":25186,"ĠBench":25187,"Ġhandc":25188,"Ap":25189,"Ġ1956":25190,"259":25191,"rand":25192,"NetMessage":25193,"din":25194,"urtles":25195,"hig":25196,"ĠVIII":25197,"ffiti":25198,"ĠSwords":25199,"bial":25200,"Ġkidnapping":25201,"device":25202,"Ġbarn":25203,"ĠEli":25204,"aucas":25205,"Send":25206,"Constructed":25207,"Ġ½":25208,"Ġneedles":25209,"Ġadvertisements":25210,"Ġvou":25211,"Ġexhibited":25212,"ĠFortress":25213,"Ask":25214,"Berry":25215,"TYPE":25216,"Ġcancers":25217,"umping":25218,"ĠTerritory":25219,"Ġprud":25220,"Ġnas":25221,"Ġatheist":25222,"Ġbalances":25223,"ãģŁ":25224,"ĠShawn":25225,"&&":25226,"Ġlandsc":25227,"ĠRGB":25228,"Ġpetty":25229,"Ġexcellence":25230,"Ġtranslations":25231,"Ġparcel":25232,"ĠChev":25233,"East":25234,"ĠOutput":25235,"imi":25236,"Ġambient":25237,"ĠThreat":25238,"Ġvillains":25239,"Ġ550":25240,"ICA":25241,"Ġtaller":25242,"Ġleaking":25243,"cup":25244,"Ġpolish":25245,"Ġinfectious":25246,"ĠKC":25247,"Ġ@@":25248,"background":25249,"Ġbureaucracy":25250,"ĠSai":25251,"unless":25252,"itious":25253,"ĠSkype":25254,"Atl":25255,"IDENT":25256,"008":25257,"Ġhypocr":25258,"Ġpitchers":25259,"Ġguessing":25260,"ĠFINAL":25261,"Between":25262,"Ġvillagers":25263,"Ġ252":25264,"fashion":25265,"ĠTunis":25266,"Beh":25267,"ĠExc":25268,"ĠMID":25269,"288":25270,"ĠHaskell":25271,"196":25272,"ĠNOR":25273,"Ġspecs":25274,"Ġinvari":25275,"Ġglut":25276,"ĠCars":25277,"Ġimpulse":25278,"Ġhonors":25279,"gel":25280,"Ġjurisdictions":25281,"ĠBundle":25282,"ulas":25283,"California":25284,"ĠIncrease":25285,"Ġpear":25286,"Ġsingles":25287,"Ġcues":25288,"Ġunderwent":25289,"ĠWS":25290,"Ġexaggerated":25291,"Ġdubious":25292,"Ġflashing":25293,"LOG":25294,")].":25295,"Journal":25296,"tg":25297,"Van":25298,"ĠIstanbul":25299,"ĠInsp":25300,"ĠFranken":25301,"Draw":25302,"Ġsadness":25303,"Ġironic":25304,"ĠFry":25305,"xc":25306,"Ġ164":25307,"isch":25308,"Way":25309,"ĠProtestant":25310,"horn":25311,"Ġunaff":25312,"ĠViv":25313,"illas":25314,"ĠProductions":25315,"ĠHogan":25316,"Ġperimeter":25317,"ĠSisters":25318,"Ġspontaneous":25319,"Ġdownside":25320,"Ġdescendants":25321,"Ġorn":25322,"worm":25323,"Japanese":25324,"Ġ1955":25325,"Ġ151":25326,"ĠDoing":25327,"elsen":25328,"umbles":25329,"Ġradically":25330,"ĠDrum":25331,"ĠBach":25332,"Ġliabilities":25333,"ĠOB":25334,"ĠElementary":25335,"Ġmeme":25336,"ynes":25337,"Ġfingerprint":25338,"ĠGrab":25339,"Ġundertake":25340,"Members":25341,"ĠReader":25342,"ĠSims":25343,"god":25344,"Ġhypothetical":25345,"scient":25346,"ĠAJ":25347,"Ġcharism":25348,"Ġadmissions":25349,"ĠMissile":25350,"trade":25351,"Ġexercising":25352,"ĠBackground":25353,"Written":25354,"Ġvocals":25355,"whether":25356,"Ġvi":25357,"ĠWinner":25358,"Ġlitter":25359,"ĠShooting":25360,"STEM":25361,"ãĤ¡":25362,"ĠAFL":25363,"Ġvariability":25364,"Ġeats":25365,"ĠDPS":25366,"brow":25367,"Ġelephants":25368,"Ġstrat":25369,"ĠÅ":25370,"Ġsettlers":25371,"Matthew":25372,"Ġinadvert":25373,"HI":25374,"ĠIMF":25375,"ĠGoal":25376,"Ġnerves":25377,"Johnson":25378,"eye":25379,"ablishment":25380,"Thursday":25381,"BILITY":25382,"Had":25383,"amoto":25384,"hetamine":25385,"eps":25386,"Ġmitochond":25387,"Ġcompressed":25388,"ĠTrevor":25389,"ĠAnimals":25390,"Tool":25391,"Lock":25392,"Ġtweak":25393,"Ġpinch":25394,"Ġcancellation":25395,"Pot":25396,"Ġfocal":25397,"ĠAstron":25398,"173":25399,"ĠASC":25400,"ĠOTHER":25401,"umni":25402,"Ġdemise":25403,"dl":25404,"Ùħ":25405,"Semitism":25406,"Ġcracking":25407,"Ġcollaborative":25408,"Ġexplores":25409,"sql":25410,"Ġherbs":25411,"Ġconfigurations":25412,"mis":25413,"ĠResult":25414,"acey":25415,"ĠSmoke":25416,"Ġsanct":25417,"elia":25418,"Ġdegener":25419,"Ġdeepest":25420,"Ġscreamed":25421,"Ġnap":25422,"Software":25423,"ĠSTAR":25424,"EF":25425,"ĠXin":25426,"sponsored":25427,"manship":25428,"233":25429,"Ġprimaries":25430,"Ġfiltering":25431,"Ġassemble":25432,"mil":25433,"ĠMyers":25434,"bows":25435,"Ġpunched":25436,"Mic":25437,"Ġinnovations":25438,"Ġfunc":25439,"ando":25440,"Ġfracking":25441,"ĠVul":25442,"оÐ":25443,"oshop":25444,"ĠImmun":25445,"Ġsettling":25446,"Ġadolescents":25447,"Ġrebuilding":25448,"Ġtransforming":25449,"Ġparole":25450,"Ġharbor":25451,"Ġbooking":25452,"otional":25453,"ongevity":25454,"ĠYo":25455,"bug":25456,"Ġemerges":25457,"ĠMethods":25458,"ĠChu":25459,"Pres":25460,"ĠDungeons":25461,"Ġtrailing":25462,"ĠRum":25463,"ĠHugh":25464,"天":25465,"ĠEra":25466,"ĠBattles":25467,"Results":25468,"ĠTrading":25469,"Ġversa":25470,"css":25471,"axies":25472,"heet":25473,"Ġgreed":25474,"1989":25475,"Ġgardens":25476,"Ġcontingent":25477,"Park":25478,"ĠLeafs":25479,"hook":25480,"robe":25481,"Ġdiplomacy":25482,"ĠFuel":25483,"ĠInvasion":25484,"Ġupgrading":25485,"Male":25486,"Ġelic":25487,"Ġrelentless":25488,"ĠCovenant":25489,"apesh":25490,"ĠTrop":25491,"Ty":25492,"production":25493,"arty":25494,"Ġpunches":25495,"ako":25496,"cyclopedia":25497,"ĠRabbit":25498,"ĠHDMI":25499,"Ġ141":25500,"Ġfoil":25501,"ItemImage":25502,"ĠFG":25503,"Ġimplementations":25504,"ĠPom":25505,"ixtures":25506,"Ġawait":25507,"Ġ330":25508,"amus":25509,"Ġumbrella":25510,"Ġforesee":25511,"separ":25512,"Ġcircumcision":25513,"Ġperipheral":25514,"Say":25515,"ĠExpert":25516,"Inc":25517,"Ġwithdrew":25518,"ĠAnders":25519,"fried":25520,"Ġradioactive":25521,"ĠOpening":25522,"Ġboarding":25523,"ĠND":25524,"Ġoverthrow":25525,"Activ":25526,"WP":25527,"ĠActs":25528,"×Ļ":25529,"Ġmotions":25530,"vic":25531,"ĠMighty":25532,"ĠDefender":25533,"aer":25534,"Ġthankful":25535,"ĠKilling":25536,"ĠBris":25537,"moil":25538,"Ġpredicting":25539,"266":25540,"choice":25541,"Ġkillers":25542,"Ġincub":25543,"ĠChest":25544,"athering":25545,"Ġproclaimed":25546,"flower":25547,"ossom":25548,"umbledore":25549,"ĠCycling":25550,"ĠOccupy":25551,"AGES":25552,"Pen":25553,"ĠYug":25554,"Ġpackaged":25555,"Ġheightened":25556,"cot":25557,"stack":25558,"Cond":25559,"Ġstamps":25560,"mage":25561,"Ġpersuaded":25562,"Ġensl":25563,"ĠCardinal":25564,"Ġsolitary":25565,"Ġpossessing":25566,"ĠCork":25567,"Ġevid":25568,"ĠTay":25569,"Ġblues":25570,"Ġextremism":25571,"Ġlunar":25572,"Ġclown":25573,"Techn":25574,"Ġfestivals":25575,"ĠPvP":25576,"ĠLar":25577,"Ġconsequently":25578,"present":25579,"Ġsomeday":25580,"çİĭ":25581,"ĠMeteor":25582,"Ġtouring":25583,"culture":25584,"Ġbeaches":25585,"Ship":25586,"cause":25587,"ĠFlood":25588,"ãĥ¯":25589,"Ġpurity":25590,"those":25591,"Ġemission":25592,"bolt":25593,"Ġchord":25594,"ĠScripture":25595,"Lu":25596,"Ġ${":25597,"created":25598,"Others":25599,"258":25600,"Ġelemental":25601,"Ġannoyed":25602,"ĠAE":25603,"dan":25604,"ĠSag":25605,"Researchers":25606,"Ġfairy":25607,"âĢĵâĢĵ":25608,"============":25609,"Smart":25610,"GGGG":25611,"Ġskeletons":25612,"Ġpupils":25613,"linked":25614,"Ġurgency":25615,"enabled":25616,"ĠFuck":25617,"Ġcouncill":25618,"rab":25619,"UAL":25620,"TI":25621,"Ġlifes":25622,"Ġconfessed":25623,"Bug":25624,"Ġharmon":25625,"ĠCONFIG":25626,"ĠNeutral":25627,"Double":25628,"Ġstaple":25629,"ĠSHA":25630,"British":25631,"ĠSNP":25632,"ATOR":25633,"oco":25634,"Ġswinging":25635,"gex":25636,"oleon":25637,"plain":25638,"ĠMissing":25639,"ĠTrophy":25640,"vari":25641,"ranch":25642,"Ġ301":25643,"440":25644,"0000000000000000":25645,"Ġrestoring":25646,"Ġhaul":25647,"ucing":25648,"nerg":25649,"Ġfutures":25650,"Ġstrategist":25651,"question":25652,"Ġlateral":25653,"ĠBard":25654,"Ġsor":25655,"ĠRhodes":25656,"ĠDowntown":25657,"?????-":25658,"ĠLit":25659,"ĠBened":25660,"Ġcoil":25661,"street":25662,"ĠPortal":25663,"FILE":25664,"ĠGru":25665,"*,":25666,"231":25667,"neum":25668,"Ġsucked":25669,"Ġrapper":25670,"Ġtendencies":25671,"ĠLauren":25672,"cellaneous":25673,"267":25674,"Ġbrowse":25675,"Ġoverc":25676,"header":25677,"oise":25678,"Ġbeet":25679,"ĠGle":25680,"Stay":25681,"Ġmum":25682,"Ġtyped":25683,"Ġdiscounts":25684,"Talk":25685,"ĠOg":25686,"existing":25687,"ĠSell":25688,"uph":25689,"CI":25690,"ĠAustrian":25691,"ĠWarm":25692,"Ġdismissal":25693,"Ġaverages":25694,"camera":25695,"Ġallegiance":25696,"LAN":25697,"=\"#":25698,"Ġcommentators":25699,"ĠSetting":25700,"ĠMidwest":25701,"Ġpharmac":25702,"ĠEXP":25703,"Ġstainless":25704,"Chicago":25705,"Ġtan":25706,"244":25707,"Ġcountryside":25708,"ĠVac":25709,"295":25710,"Ġpinned":25711,"Ġcrises":25712,"Ġstandardized":25713,"Task":25714,"ĠJail":25715,"ĠDocker":25716,"colored":25717,"forth":25718,"\"},":25719,"Ġpatrons":25720,"Ġspice":25721,"Ġmourn":25722,"ĠMood":25723,"Ġlaundry":25724,"Ġequip":25725,"ĠMole":25726,"yll":25727,"ĠTHC":25728,"nation":25729,"ĠSherlock":25730,"Ġissu":25731,"ĠKre":25732,"ĠAmericas":25733,"ĠAAA":25734,"Ġsystematically":25735,"Ġcontra":25736,"ĠSally":25737,"Ġrationale":25738,"Ġcarriage":25739,"Ġpeaks":25740,"Ġcontradiction":25741,"ensation":25742,"ĠFailure":25743,"Ġprops":25744,"Ġnamespace":25745,"Ġcove":25746,"fields":25747,"ãĤĭ":25748,"Ġwool":25749,"ĠCatch":25750,"Ġpresumed":25751,"ĠDiana":25752,"ragon":25753,"igi":25754,"Ġhamm":25755,"Ġstunt":25756,"ĠGUI":25757,"ĠObservatory":25758,"ĠShore":25759,"Ġsmells":25760,"annah":25761,"Ġcockpit":25762,"ĠDuterte":25763,"850":25764,"Ġoppressed":25765,"breaker":25766,"ĠContribut":25767,"ĠPeru":25768,"ĠMonsanto":25769,"ĠAttempt":25770,"Ġcommanding":25771,"Ġfridge":25772,"ĠRin":25773,"ĠChess":25774,"uality":25775,"Ġol":25776,"Republican":25777,"ĠGlory":25778,"ĠWIN":25779,".......":25780,"agent":25781,"reading":25782,"Ġinh":25783,"Jones":25784,"Ġclicks":25785,"alan":25786,"Ġ[];":25787,"ĠMajesty":25788,"ĠCed":25789,"opus":25790,"atel":25791,"ê":25792,"ARC":25793,"ĠEcuador":25794,"ãĥł":25795,"ĠKuro":25796,"Ġrituals":25797,"Ġcaptive":25798,"Ġounce":25799,"Ġdisagreement":25800,"Ġslog":25801,"fuel":25802,"Pet":25803,"Mail":25804,"Ġexercised":25805,"Ġsolic":25806,"Ġrainfall":25807,"Ġdevotion":25808,"ĠAssessment":25809,"Ġrobotic":25810,"options":25811,"ĠRP":25812,"ĠFamilies":25813,"ĠFlames":25814,"Ġassignments":25815,"007":25816,"akedown":25817,"Ġvocabulary":25818,"Reilly":25819,"Ġcaval":25820,"gars":25821,"Ġsuppressed":25822,"ĠSET":25823,"ĠJohns":25824,"Ġwarp":25825,"broken":25826,"Ġstatues":25827,"Ġadvocated":25828,"Ġ275":25829,"Ġperil":25830,"omorph":25831,"ĠFemin":25832,"perfect":25833,"Ġhatch":25834,"Lib":25835,"512":25836,"Ġlifelong":25837,"313":25838,"Ġcheeks":25839,"Ġnumbered":25840,"ĠMug":25841,"Body":25842,"ravel":25843,"Weight":25844,"ĠJak":25845,"ĠHeath":25846,"Ġkissing":25847,"ĠJUST":25848,"Ġwaving":25849,"upload":25850,"Ġinsider":25851,"ĠProgressive":25852,"ĠFilter":25853,"tta":25854,"ĠBeam":25855,"Ġviolently":25856,"ipation":25857,"Ġskepticism":25858,"Ġ1918":25859,"ĠAnnie":25860,"ĠSI":25861,"Ġgenetics":25862,"Ġonboard":25863,"atl":25864,"ĠFriedman":25865,"ĠBri":25866,"ceptive":25867,"Ġpirate":25868,"ĠReporter":25869,"278":25870,"Ġmythology":25871,"Ġeclipse":25872,"Ġskins":25873,"Ġglyph":25874,"ingham":25875,"Files":25876,"Cour":25877,"women":25878,"Ġregimes":25879,"Ġphotographed":25880,"Kat":25881,"ĠMAX":25882,"Officials":25883,"Ġunexpectedly":25884,"Ġimpressions":25885,"Front":25886,";;;;;;;;":25887,"Ġsupremacy":25888,"Ġsang":25889,"Ġaggravated":25890,"Ġabruptly":25891,"ĠSector":25892,"Ġexcuses":25893,"Ġcosting":25894,"idepress":25895,"Stack":25896,"ĠRNA":25897,"obil":25898,"Ġghosts":25899,"ldon":25900,"atibility":25901,"Topics":25902,"Ġreimburse":25903,"ĠHM":25904,"ĠDeg":25905,"Ġthief":25906,"yet":25907,"ogenesis":25908,"leaning":25909,"ĠKol":25910,"ĠBasketball":25911,"Ġfi":25912,"ĠSeeing":25913,"Ġrecycling":25914,"Ġ[-":25915,"Congress":25916,"Ġlectures":25917,"Psy":25918,"Ġnep":25919,"Ġmaid":25920,"Ġoriented":25921,"AX":25922,"Ġrespectful":25923,"rene":25924,"flush":25925,"ĠUnloaded":25926,"request":25927,"grid":25928,"ĠAlternatively":25929,"ĠHugo":25930,"Ġdecree":25931,"ĠBuddhism":25932,"andum":25933,"Android":25934,"ĠCongo":25935,"ĠJoyce":25936,"Ġacknowledging":25937,"hesive":25938,"ĠTomorrow":25939,"ĠHiro":25940,"thren":25941,"ĠMaced":25942,"Ġhoax":25943,"ĠIncreased":25944,"ĠPradesh":25945,"Wild":25946,"______":25947,"161":25948,"Ġaunt":25949,"Ġdistributing":25950,"ĠTucker":25951,"ĠSSL":25952,"ĠWolves":25953,"Building":25954,"oult":25955,"ĠLuo":25956,"ĠYas":25957,"ĠSpir":25958,"ĠShape":25959,"ĠCambod":25960,"ĠIPv":25961,"Ġml":25962,"Ġextrad":25963,"390":25964,"ĠPenny":25965,"dream":25966,"Ġstationed":25967,"optional":25968,"eworthy":25969,".":26700,"ĠWorkshop":26701,"ĠRetail":26702,"ĠAvatar":26703,"625":26704,"Na":26705,"ĠVC":26706,"ĠSecure":26707,"MY":26708,"1988":26709,"ossip":26710,"Ġprostate":26711,"Ġunden":26712,"Ġgamer":26713,"ĠContents":26714,"ĠWarhammer":26715,"ĠSentinel":26716,"310":26717,"Ġsegregation":26718,"ĠFlex":26719,"ĠMAY":26720,"Ġdrills":26721,"ĠDrugs":26722,"Islamic":26723,"Ġspur":26724,"Ġcafe":26725,"Ġimaginary":26726,"Ġguiding":26727,"Ġswings":26728,"ĠTheme":26729,"oby":26730,"Ġnud":26731,"Ġbegging":26732,"Ġstrongh":26733,"Ġrejecting":26734,"Ġpedestrians":26735,"ĠProspect":26736,"Rare":26737,"sle":26738,"Ġconcessions":26739,"ĠConstitutional":26740,"Ġbeams":26741,"Ġfibers":26742,"poon":26743,"Ġinstincts":26744,"property":26745,"ĠBIG":26746,"Sanders":26747,"imates":26748,"Ġcoating":26749,"Ġcorpses":26750,"ĠTRUE":26751,"checked":26752,"Ġ166":26753,"Ash":26754,"ĠJS":26755,"ĠFiction":26756,"Ġcommunal":26757,"Ġenergetic":26758,"oooooooo":26759,"Ġnowadays":26760,"ILD":26761,"ibo":26762,"ĠSUV":26763,"Ren":26764,"Ġdwelling":26765,"Silver":26766,"Ġtally":26767,"ĠMoving":26768,"Ġcoward":26769,"Ġgenerals":26770,"Ġhorns":26771,"Ġcirculated":26772,"Ġrobbed":26773,"ĠUnlimited":26774,"Ġharassed":26775,"Ġinhibit":26776,"Ġcomposer":26777,"ĠSpotify":26778,"Ġspreads":26779,"364":26780,"Ġsuicidal":26781,"Ġnoises":26782,"ĠStur":26783,"Ġsaga":26784,"ĠKag":26785,"iso":26786,"Ġtheoretically":26787,"Money":26788,"Ġsimilarity":26789,"Ġsliced":26790,"utils":26791,"inges":26792,"\"-":26793,"Ġanth":26794,"Ġimped":26795,"Module":26796,"Throughout":26797,"Ġmenus":26798,"committee":26799,"andi":26800,"obj":26801,"inav":26802,"fired":26803,"ĠAbdullah":26804,"Ġundead":26805,"Ġfonts":26806,"Hold":26807,"ENG":26808,"Ġsustainability":26809,"Ġflick":26810,"Ġrazor":26811,"ĠFest":26812,"ĠCharacters":26813,"Ġwording":26814,"Ġpopulist":26815,"Ġcriticizing":26816,"Ġmuse":26817,"vine":26818,"Ġcardboard":26819,"Ġkindly":26820,"Ġfringe":26821,"ĠTheft":26822,"icultural":26823,"Ġgovernors":26824,"Ġ����":26825,"Ġ163":26826,"Ġtimeout":26827,"ĠAuth":26828,"Children":26829,"AU":26830,"Ġredemption":26831,"ĠAlger":26832,"Ġ1914":26833,"Ġwaved":26834,"Ġastronauts":26835,"ograms":26836,"Ġswamp":26837,"ĠFinnish":26838,"Ġcandle":26839,"Ġtonnes":26840,"utm":26841,"Ġray":26842,"Ġspun":26843,"Ġfearful":26844,"articles":26845,"Ġcaus":26846,"orically":26847,"ĠRequires":26848,"ĠGol":26849,"Ġpope":26850,"Ġinaugural":26851,"Ġgle":26852,"ADA":26853,"ĠISIL":26854,"ĠOffensive":26855,"Ġwatchdog":26856,"Ġbalcon":26857,"entity":26858,"ĠHoo":26859,"Ġgallon":26860,"ACC":26861,"Ġdoubling":26862,"Ġimplication":26863,"ĠSight":26864,"Ġdoctr":26865,"-------":26866,"Ġ\\\\":26867,"Ġmalt":26868,"Roll":26869,"Ġâī¥":26870,"Ġrecap":26871,"adding":26872,"uces":26873,"ĠBend":26874,"figure":26875,"Ġturkey":26876,"Ġsocietal":26877,"ĠTickets":26878,"Ġcommercially":26879,"Ġspicy":26880,"Ġ216":26881,"ĠRamp":26882,"Ġsuperiority":26883,"ï":26884,"ĠTracker":26885,"Carl":26886,"ĠCoy":26887,"ĠPatriot":26888,"Ġconsulted":26889,"Ġlistings":26890,"Ġslew":26891,"reenshot":26892,"ĠGone":26893,"Ġ[...]":26894,"309":26895,"Ġhottest":26896,"ر":26897,"Ġrocky":26898,"ĠDiaz":26899,"Ġmassage":26900,"Ġparaly":26901,"Ġpony":26902,"Az":26903,"Ġcartridge":26904,"ĠNZ":26905,"Ġsnack":26906,"ĠLamar":26907,"plement":26908,"ĠLeslie":26909,"Ġmater":26910,"Ġsnipp":26911,"246":26912,"Ġjointly":26913,"ĠBrisbane":26914,"ĠiPod":26915,"Ġpumping":26916,"Ġgoat":26917,"ĠSharon":26918,"ealing":26919,"Ġcoron":26920,"Ġanomal":26921,"rahim":26922,"ĠConnection":26923,"Ġsculpture":26924,"Ġscheduling":26925,"ĠDaddy":26926,"athing":26927,"Ġeyebrows":26928,"Ġcurved":26929,"Ġsentiments":26930,"Ġdrafting":26931,"Drop":26932,"([":26933,"Ġnominal":26934,"ĠLeadership":26935,"ĠGrow":26936,"Ġ176":26937,"Ġconstructive":26938,"ivation":26939,"Ġcorrupted":26940,"gerald":26941,"ĠCros":26942,"ĠChester":26943,"ĠLap":26944,"ãģª":26945,"OTH":26946,"DATA":26947,"Ġalmond":26948,"probably":26949,"Imp":26950,"Ġfeast":26951,"ĠWarcraft":26952,"Flor":26953,"Ġcheckpoint":26954,"Ġtranscription":26955,"Ġ204":26956,"Ġtweaks":26957,"Ġrelieve":26958,"Science":26959,"Ġperformer":26960,"Zone":26961,"Ġturmoil":26962,"igated":26963,"hibit":26964,"ĠCafe":26965,"themed":26966,"Ġfluor":26967,"bench":26968,"Ġdecom":26969,"ĠUnt":26970,"ĠBarrett":26971,"ĠFacts":26972,"Ġtasting":26973,"ĠPTSD":26974,"ĠSeal":26975,"ĠJudaism":26976,"ĠDynamic":26977,"ĠCors":26978,"Ve":26979,"ĠMing":26980,"ĠTransform":26981,"von":26982,"ĠDefenders":26983,"ĠTactical":26984,"ĠVon":26985,"ĠUnivers":26986,"Ġdistorted":26987,"ĠBreath":26988,"?'\"":26989,"Ġagon":26990,"ĠDeadly":26991,"Ġlan":26992,"ĠCycle":26993,"orned":26994,"Ġreliably":26995,"Ġglor":26996,"ĠMonkey":26997,"ãĥ¡":26998,"Ġadren":26999,"Ġmicrowave":27000,"ĠAlban":27001,"ircraft":27002,"digit":27003,"smart":27004,"ĠDread":27005,"¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯":27006,"{{":27007,"ĠRochester":27008,"Ġsimplified":27009,"Ġinflicted":27010,"Ġtakeover":27011,"Ġyourselves":27012,"aditional":27013,"Ġmuscular":27014,"KS":27015,"Ġingen":27016,"Tax":27017,"ĠFeature":27018,"277":27019,"Ġcruc":27020,"Ġcrate":27021,"Ġunidentified":27022,"Ġacclaimed":27023,"ĠManga":27024,"ĠFrances":27025,"ĠNepal":27026,"ĠGerald":27027,"ĠKuwait":27028,"Ġslain":27029,"ĠHeb":27030,"ĠGoku":27031,"ã쮿":27032,"286":27033,"Mrs":27034,"ĠCody":27035,"ĠSanctuary":27036,"016":27037,"Ġdismant":27038,"Ġdataset":27039,"ĠHond":27040,"buck":27041,"ĠPatterson":27042,"Ġpalette":27043,"ĠGD":27044,"icol":27045,"ĠLodge":27046,"Ġplanetary":27047,"akin":27048,"ĠRegistered":27049,"abwe":27050,"ĠPetersburg":27051,"Ġhailed":27052,"ĠPiece":27053,"Sche":27054,"ĠDOJ":27055,"Ġenumer":27056,"181":27057,"ĠObserver":27058,"ĠBold":27059,"founded":27060,"commerce":27061,"Ġexploits":27062,"ĠFinding":27063,"URN":27064,"ĠSne":27065,"ĠAcid":27066,"ayette":27067,"ĠValues":27068,"Ġdrastic":27069,"Ġarchitectural":27070,"Ġ\".":27071,"×ķ":27072,"umped":27073,"Ġwrapping":27074,"Ġwidow":27075,"ĠSlayer":27076,"lace":27077,"once":27078,"Germany":27079,"avoid":27080,"Ġtemples":27081,"PAR":27082,"ô":27083,"ĠLucifer":27084,"ĠFlickr":27085,"lov":27086,"forces":27087,"Ġscouting":27088,"Ġlouder":27089,"tesy":27090,"Ġbeforehand":27091,"Äĵ":27092,"ĠNeon":27093,"ĠWol":27094,"ĠTypically":27095,"ĠPolitico":27096,"-+-+":27097,"Ġbuilder":27098,"Ġderive":27099,"Kill":27100,"Ġpoker":27101,"Ġambiguous":27102,"Ġlifts":27103,"Ġcyt":27104,"Ġribs":27105,"oodle":27106,"ĠSounds":27107,"hair":27108,"ĠSyndrome":27109,"tf":27110,"Ġproportional":27111,"uid":27112,"Ġpertaining":27113,"ĠKindle":27114,"ĠNegro":27115,"Ġreiterated":27116,"ĠTonight":27117,"oths":27118,"ĠCornell":27119,"Ġowing":27120,"Ġ208":27121,"elfare":27122,"ocating":27123,"ĠBirds":27124,"Subscribe":27125,"Ġessays":27126,"Ġburdens":27127,"Ġillustrations":27128,"arious":27129,"ERAL":27130,"ĠCalcul":27131,"Ġxen":27132,"ĠLinkedIn":27133,"ĠJung":27134,"Ġredesign":27135,"Connor":27136,"296":27137,"Ġreversal":27138,"ĠAdelaide":27139,"ĠLL":27140,"Ġsinking":27141,"Ġgum":27142,"USH":27143,"capt":27144,"ĠGrimm":27145,"Ġfootsteps":27146,"ĠCBD":27147,"ispers":27148,"Ġprose":27149,"Wednesday":27150,"ĠMovies":27151,"edin":27152,"Ġoverturned":27153,"Ġcontentious":27154,"USB":27155,"~~~~~~~~~~~~~~~~":27156,"ĠCopper":27157,"Ġpointless":27158,"NV":27159,"values":27160,"olphin":27161,"dain":27162,"Ġdeposited":27163,"ĠGW":27164,"Ġpreceded":27165,"ĠCla":27166,"ĠGolem":27167,"ĠNim":27168,"Ġβ":27169,"ĠEngineers":27170,"middle":27171,"Ġflatt":27172,"operative":27173,"Ġcouncils":27174,"imbabwe":27175,"elin":27176,"Ġstressful":27177,"ĠLD":27178,"Ġresh":27179,"lake":27180,"Ġwheelchair":27181,"ĠAlternative":27182,"Ġoptimize":27183,"operation":27184,"Ġpeek":27185,"Ġoneself":27186,"igil":27187,"Ġtransitions":27188,"opathy":27189,"blank":27190,"Ġ169":27191,"171":27192,"________________________________________________________________":27193,"Ġlaundering":27194,"Enc":27195,"ĠDEC":27196,"Ġworkouts":27197,"Ġspikes":27198,"Ġdinosaurs":27199,"Ġdiscriminatory":27200,"Pool":27201,"Rather":27202,"385":27203,"RNA":27204,"testers":27205,"eto":27206,"ĠIdentity":27207,"Ġvein":27208,"ĠBurton":27209,"Ġarcade":27210,"420":27211,"Ultimately":27212,"ĠSadly":27213,"ð":27214,"pill":27215,"Ġcubic":27216,"ĠSpectrum":27217,"these":27218,"states":27219,"Ġunofficial":27220,"hawks":27221,"ĠEVERY":27222,"Ġrainbow":27223,"Ġincarceration":27224,"anding":27225,"Ġsyll":27226,"ĠEverton":27227,"Ġ179":27228,"ĠSerbia":27229,"Ġ189":27230,"meter":27231,"ĠMickey":27232,"Ġantiqu":27233,"Ġfactual":27234,"neck":27235,"ĠNare":27236,"norm":27237,"must":27238,"Ġhighways":27239,"Ġglam":27240,"Ġdividing":27241,"ĠSquadron":27242,"ĠMartha":27243,"Ġbirths":27244,"Cover":27245,"////////////////":27246,"ĠWong":27247,"Phot":27248,"ĠALS":27249,"rio":27250,"ĠNonetheless":27251,"ĠLemon":27252,"Ġ206":27253,"ĠEE":27254,"Ġderivative":27255,"ĠWWII":27256,"vote":27257,"Ġtherein":27258,"Ġseparating":27259,"446":27260,"sync":27261,"ĠStreets":27262,"Ġratt":27263,"Ġmunicipality":27264,"ĠShortly":27265,"Ġmonk":27266,"),\"":27267,"Ġscrub":27268,"Ġoperatives":27269,"Neither":27270,"Place":27271,"ĠLimit":27272,"Female":27273,"ĠActor":27274,"Character":27275,"Ġconstituted":27276,"357":27277,"Ġprotested":27278,"ĠStraw":27279,"ĠHeight":27280,"ilda":27281,"ĠTyph":27282,"Ġfloods":27283,"Ġcosmetic":27284,"WAY":27285,"perture":27286,"upon":27287,"tons":27288,"essing":27289,"ĠPocket":27290,"Ġrooft":27291,"ĠCaucas":27292,"Ġantidepress":27293,"Ġincompatible":27294,"ECD":27295,"Ġopera":27296,"ĠContest":27297,"Ġgenerators":27298,"lime":27299,"Defense":27300,"1987":27301,"forum":27302,"Ġsavage":27303,"ĠHungarian":27304,"nz":27305,"Ġmetallic":27306,"Ġexpelled":27307,"Ġresidency":27308,"Ġdresses":27309,"666":27310,"ĠClement":27311,"fires":27312,"Category":27313,"Ġgeek":27314,"alis":27315,"Ġcemetery":27316,"educated":27317,"Ġcrawl":27318,"ĠUnable":27319,"ĠTyson":27320,"akis":27321,"Ġpardon":27322,"ĠWra":27323,"Ġstrengthened":27324,"ĠFors":27325,"335":27326,"ĠHC":27327,"ĠMond":27328,"Ġvisuals":27329,"ĠBeatles":27330,"ettlement":27331,"Ġï":27332,"gro":27333,"Ġbash":27334,"Ġpoorest":27335,"Ġexcel":27336,"Ġaspirations":27337,"ĠMunicip":27338,"ensible":27339,"Ġceremonies":27340,"Ġintimidation":27341,"ĠCONTR":27342,"beck":27343,"ĠKap":27344,"asu":27345,"Ġtrademarks":27346,"ĠSew":27347,"ĠCompetition":27348,"network":27349,"ĠArri":27350,"ĠTet":27351,"Roaming":27352,"WC":27353,"Dat":27354,"Ġsob":27355,"Ġpairing":27356,"Ġoverdose":27357,"SAY":27358,"aber":27359,"Ġrevolt":27360,"ĠFah":27361,"acting":27362,"eq":27363,"estation":27364,"Fight":27365,"ĠMarks":27366,"273":27367,"Ġ178":27368,"Raw":27369,"ãģĭ":27370,"349":27371,"blocks":27372,"Ġverge":27373,"estine":27374,"ĠPodesta":27375,"Ġinvasive":27376,"Ġprofoundly":27377,"ĠAo":27378,"each":27379,"Ġlest":27380,"interpret":27381,"Ġshrinking":27382,"Ġerrone":27383,"Ġchees":27384,"lys":27385,"ĠIvy":27386,"ĠDirectory":27387,"Ġhinted":27388,"VICE":27389,"Ġcontacting":27390,"ĠGent":27391,"hei":27392,"Ġlabeling":27393,"Ġmercury":27394,"ĠLite":27395,"Ġexpires":27396,"Ġdestabil":27397,"ritis":27398,"cu":27399,"Ġfeathers":27400,"Ġsteer":27401,"Ġprogrammed":27402,"ĠVader":27403,"Going":27404,"ĠElim":27405,"Ġyo":27406,"ĠMiche":27407,"Ġ203":27408,"Ġsleeves":27409,"Ġbully":27410,"ĠHumans":27411,"368":27412,"Ġcompress":27413,"ĠBanner":27414,"ARS":27415,"Ġawhile":27416,"Ġcalib":27417,"Ġsponsorship":27418,"ĠDifficulty":27419,"ĠPapers":27420,"Ġidentifier":27421,"}.":27422,"Ġyog":27423,"ĠShia":27424,"Ġcleanup":27425,"Ġvibe":27426,"introdu":27427,"imming":27428,"Australia":27429,"Ġoutlines":27430,"ĠYoutube":27431,"train":27432,"ĠMakes":27433,"Ġdeported":27434,"Ġcentr":27435,"ĠDug":27436,"ĠBoulder":27437,"ĠBuffy":27438,"Ġinjunction":27439,"ĠHarley":27440,"ĠGroups":27441,"ĠDumbledore":27442,"ĠClara":27443,"Ġ\"-":27444,"Ġsacrificed":27445,"eph":27446,"Shadow":27447,"ibling":27448,"Ġfreelance":27449,"Ġevidently":27450,"phal":27451,"Ġretains":27452,"Mir":27453,"Ġfinite":27454,"dar":27455,"ĠCous":27456,"Ġrepaired":27457,"Ġperiodic":27458,"Ġchampionships":27459,"Ġasteroid":27460,"blind":27461,"Ġexpressly":27462,"ĠAstros":27463,"Ġscaled":27464,"Ġgeographical":27465,"ĠRapids":27466,"Enjoy":27467,"Ġelastic":27468,"ĠMohamed":27469,"Market":27470,"begin":27471,"Ġdiscovers":27472,"Ġtelecommunications":27473,"Ġscanner":27474,"Ġenlarge":27475,"Ġsharks":27476,"Ġpsychedel":27477,"ĠRouge":27478,"Ġsnapshot":27479,"isine":27480,"XP":27481,"Ġpesticides":27482,"ĠLSD":27483,"ĠDistribution":27484,"really":27485,"Ġdegradation":27486,"Ġdisguise":27487,"Ġbiom":27488,"ĠEXT":27489,"Ġequations":27490,"Ġhazards":27491,"ĠCompared":27492,")*":27493,"Ġvirtues":27494,"Ġelders":27495,"Ġenhancing":27496,"ĠAcross":27497,"eros":27498,"angling":27499,"Ġcombust":27500,"ucci":27501,"Ġconcussion":27502,"Ġcontraception":27503,"ĠKang":27504,"Ġexpresses":27505,"Ġaux":27506,"ĠPione":27507,"Ġexhibits":27508,"Debug":27509,"OTAL":27510,"ĠAlready":27511,"ĠWheeler":27512,"Ġexpands":27513,"?:":27514,"Ġreconciliation":27515,"Ġpirates":27516,"Ġpurse":27517,"Ġdiscourage":27518,"Ġspectacle":27519,"Rank":27520,"Ġwraps":27521,"ĠThought":27522,"Ġimpending":27523,"Opp":27524,"ĠAnglo":27525,"ĠEUR":27526,"Ġscrewed":27527,"retched":27528,"Ġencouragement":27529,"models":27530,"Ġconfuse":27531,"mmm":27532,"ĠVitamin":27533,"âĸijâĸij":27534,"Cru":27535,"Ġknights":27536,"Ġdiscard":27537,"Ġbishops":27538,"ĠWear":27539,"ĠGarrett":27540,"kan":27541,"ãĥŁ":27542,"Ġmasculine":27543,"capital":27544,"ĠAus":27545,"Ġfatally":27546,"thanks":27547,"ĠAU":27548,"ĠGut":27549,"1200":27550,"Ġ00000000":27551,"Ġsurrog":27552,"ĠBIOS":27553,"raits":27554,"ĠWatts":27555,"Ġresurrection":27556,"ĠElectoral":27557,"ĠTips":27558,"4000":27559,"Ġnutrient":27560,"Ġdepicting":27561,"Ġsprink":27562,"Ġmuff":27563,"ĠLIM":27564,"ĠSample":27565,"psc":27566,"ibi":27567,"generated":27568,"Ġspecimens":27569,"Ġdissatisf":27570,"Ġtailored":27571,"Ġholdings":27572,"ĠMonthly":27573,"ĠEat":27574,"poons":27575,"Ġnec":27576,"ĠCage":27577,"ĠLotus":27578,"ĠLantern":27579,"Ġfrontier":27580,"Ġpensions":27581,"Ġjoked":27582,"ĠHardy":27583,"=-=-=-=-":27584,"rade":27585,"UID":27586,"Ġrails":27587,"Ġemit":27588,"Ġslate":27589,"Ġsmug":27590,"Ġspit":27591,"ĠCalls":27592,"ĠJacobs":27593,"feat":27594,"ĠUE":27595,"Ġrestruct":27596,"Ġregeneration":27597,"Ġenergies":27598,"ĠConnor":27599,"OHN":27600,"ĠCheese":27601,"Ġger":27602,"Ġresurrect":27603,"management":27604,"NW":27605,"Ġpresently":27606,"ĠBruins":27607,"Member":27608,"ĠMang":27609,"idan":27610,"Ġboosting":27611,"wyn":27612,"+.":27613,"requisite":27614,"ĠNYPD":27615,"ĠMegan":27616,"ĠConditions":27617,"Ġpics":27618,"nesium":27619,"ĠRash":27620,"Ġ174":27621,"ĠDucks":27622,"Ġembro":27623,"zu":27624,"onian":27625,"religious":27626,"Ġcraz":27627,"ĠACA":27628,"ĠZucker":27629,"EMA":27630,"ĠPros":27631,"Weapon":27632,"ĠKnox":27633,"ĠArduino":27634,"Ġstove":27635,"Ġheavens":27636,"ĠPurchase":27637,"Ġherd":27638,"Ġfundraiser":27639,"Digital":27640,"5000":27641,"Ġproponents":27642,"/âĢĭ":27643,"Ġjelly":27644,"ĠVisa":27645,"Ġmonks":27646,"Ġadvancement":27647,"ĠWer":27648,"Ġ187":27649,"eus":27650,"ertility":27651,"Ġfetal":27652,"Ġ1936":27653,"Lo":27654,"Ġoutfits":27655,"Ġstaircase":27656,"bomb":27657,"Ġcustomized":27658,"clair":27659,"Tree":27660,"Ġmapped":27661,"ĠConsidering":27662,"ĠTorres":27663,"Ġmethyl":27664,"Ġapproximate":27665,"Ġdoom":27666,"ĠHansen":27667,"Ġcrossover":27668,"Ġstandalone":27669,"ä¼":27670,"Ġinvites":27671,"Ġgraveyard":27672,"Ġhp":27673,"DonaldTrump":27674,"Ġescort":27675,"Gar":27676,"Ġpredecessors":27677,"Ġhay":27678,"Ġenzyme":27679,"ĠStraight":27680,"visors":27681,"Ing":27682,"aneously":27683,"ĠApplied":27684,"Ġfec":27685,"ĠDurant":27686,"Ġoutspoken":27687,"orb":27688,"Ġzeal":27689,"Ġdisgrace":27690,"').":27691,"ĠCheng":27692,"289":27693,"ĠRena":27694,"ĠSuicide":27695,"294":27696,"Ġoutraged":27697,"ĠNewman":27698,"ĠNvidia":27699,"ĠAber":27700,"ĠBers":27701,"Ġrecreation":27702,"Window":27703,"ĠDP":27704,"xe":27705,"Ġpedoph":27706,"Ġfallout":27707,"amboo":27708,"Ġpresentations":27709,"ĠApps":27710,"Ġhtml":27711,"345":27712,"ĠXXX":27713,"Ġrubbing":27714,"ĠLeather":27715,"Ġhumidity":27716,"seys":27717,"established":27718,"ĠUnits":27719,"646":27720,"Ġrespectable":27721,"Auto":27722,"Ġthriving":27723,"ĠInnovation":27724,"angs":27725,"Extra":27726,"regulation":27727,"298":27728,"pick":27729,"Examples":27730,"ĠCJ":27731,"Attack":27732,"Ġdracon":27733,"LT":27734,"Ġsticker":27735,"rers":27736,"Ġsunny":27737,"Iss":27738,"regulated":27739,"dim":27740,"ĠAbstract":27741,"Ġhusbands":27742,"Office":27743,"omination":27744,"itars":27745,"ANGE":27746,"ascal":27747,"ĠKris":27748,"ĠInfantry":27749,"Ġmalf":27750,"ĠAthe":27751,"ĠRally":27752,"balanced":27753,"........................":27754,"OUP":27755,"Ġmolecule":27756,"metics":27757,"ĠSplit":27758,"ĠInstructions":27759,"ĠNights":27760,"cards":27761,"Ġtug":27762,"Ġcone":27763,"åŃ":27764,"Ġtx":27765,"ĠDiscussion":27766,"Ġcatastrophe":27767,"ppe":27768,"gio":27769,"Ġcommunism":27770,"Ġhalted":27771,"ĠGuant":27772,"clean":27773,"ĠSched":27774,"ĠKanye":27775,"Ġwander":27776,"ĠSeriously":27777,"Ġ188":27778,"ennial":27779,"follow":27780,"productive":27781,"ĠFlow":27782,"ĠSail":27783,"Ġcraw":27784,"Ġsimulations":27785,"oru":27786,"angles":27787,"ĠNolan":27788,"Ġmenstru":27789,"470":27790,"Ġ207":27791,"aja":27792,"Ġcasually":27793,"boarding":27794,"Ġ222":27795,"ovy":27796,"ĠNumbers":27797,"umat":27798,"OE":27799,"287":27800,"ĠClemson":27801,"Ġcerts":27802,"Ġslid":27803,"ĠTribe":27804,"Ġtoast":27805,"Ġfortunes":27806,"Ġfals":27807,"ĠCommittees":27808,"Ġgp":27809,"Ġfiery":27810,"ĠNets":27811,"ĠAnime":27812,"Package":27813,"ĠCompare":27814,"laughter":27815,"infect":27816,"Ġatrocities":27817,"Ġjustices":27818,"Ġinsults":27819,"ĠVernon":27820,"Ġshaken":27821,"Ġpersona":27822,"estamp":27823,"367":27824,"brain":27825,"Ġexperimenting":27826,"Ken":27827,"ĠElectronics":27828,"Ġ161":27829,"domain":27830,"Ġgraphical":27831,"bishop":27832,"Ġwhopping":27833,"ĠEvangel":27834,"Ġadvertisers":27835,"ĠSpear":27836,"Ġbids":27837,"Ġdestroys":27838,"utz":27839,"Ġundersc":27840,"ĠADD":27841,"Ġants":27842,"ĠCum":27843,"ipples":27844,"ĠFill":27845,"Ġglanced":27846,"Ġindicted":27847,"ĠEff":27848,"Ġmiscon":27849,"ĠDesktop":27850,"Ġabide":27851,"ãĥĢ":27852,"ĠIo":27853,"ĠCoul":27854,"Ġcapsule":27855,"ĠChrys":27856,"MON":27857,"Ġundes":27858,"ĠIRA":27859,"Ġcitation":27860,"Ġdictate":27861,"ĠNetworks":27862,"ĠConflict":27863,"ĠStuff":27864,"xa":27865,"isec":27866,"ĠChemistry":27867,"Ġquarterly":27868,"Williams":27869,"anan":27870,"Opt":27871,"ĠAlexandria":27872,"outheastern":27873,"ĠSpringfield":27874,"ĠBlacks":27875,"Ġgeography":27876,"242":27877,"Ġutmost":27878,"ĠExxon":27879,"abouts":27880,"EVA":27881,"ĠEnable":27882,"ĠBarr":27883,"Ġdisagreed":27884,"ĠCyprus":27885,"Ġdementia":27886,"Ġlabs":27887,"Ġubiquitous":27888,"ĠLOVE":27889,"Ġconsolidated":27890,"sr":27891,"Ġcreamy":27892,"ĠTimber":27893,"Regardless":27894,"ĠCertificate":27895,"Ġ\"...":27896,"ogenous":27897,"Captain":27898,"Ġinsulting":27899,"ĠSoros":27900,"ĠInstr":27901,"ĠBulgaria":27902,"better":27903,"Ġsucking":27904,"ĠDavidson":27905,"atz":27906,"Ġcollateral":27907,"gif":27908,"Ġplagued":27909,"ĠCancel":27910,"ĠGardner":27911,"RB":27912,"Ġsixteen":27913,"Remove":27914,"uristic":27915,"cook":27916,"Rod":27917,"Ġcomprising":27918,"fle":27919,")âĢĶ":27920,"ĠViking":27921,"growth":27922,"agonal":27923,"Ġsrf":27924,"afety":27925,"mot":27926,"Nearly":27927,"stown":27928,"ĠFactor":27929,"Ġautomobile":27930,"Ġprocedural":27931,"mask":27932,"ampires":27933,"Ġdisappears":27934,"jab":27935,"315":27936,"Ġ1951":27937,"needed":27938,"Ġdaring":27939,"leader":27940,"Ġpodium":27941,"Ġunhealthy":27942,"Ġmund":27943,"Ġpyramid":27944,"ocre":27945,"Ġkissed":27946,"Ġdreamed":27947,"ĠFantastic":27948,"ĠGly":27949,"åĬ":27950,"Ġgreatness":27951,"Ġspices":27952,"Ġmetropolitan":27953,"Ġcompuls":27954,"iets":27955,"1016":27956,"ĠSham":27957,"ĠPyr":27958,"flies":27959,"ĠMidnight":27960,"Ġswallowed":27961,"Ġgenres":27962,"ĠLucky":27963,"ĠRewards":27964,"Ġdispatch":27965,"ĠIPA":27966,"ĠApply":27967,"Ġaven":27968,"alities":27969,"312":27970,"things":27971,"Ġ().":27972,"Ġmates":27973,"ĠSz":27974,"ĠCOP":27975,"olate":27976,"OFF":27977,"Ġrecharge":27978,"caps":27979,"ĠYorker":27980,"icone":27981,"Ġgalaxies":27982,"ileaks":27983,"Dave":27984,"ĠPuzz":27985,"ĠCeltic":27986,"ĠAFC":27987,"276":27988,"ĠSons":27989,"Ġaffirmative":27990,"Hor":27991,"Ġtutorials":27992,"ĠCITY":27993,"ĠRosa":27994,"ĠExtension":27995,"Series":27996,"Ġfats":27997,"Ġrab":27998,"lis":27999,"Ġunic":28000,"Ġeve":28001,"ĠSpin":28002,"Ġadulthood":28003,"typ":28004,"Ġsectarian":28005,"Ġcheckout":28006,"ĠCycl":28007,"Single":28008,"Ġmartyr":28009,"Ġchilling":28010,"888":28011,"oufl":28012,"Ġ];":28013,"Ġcongestion":28014,"mk":28015,"ĠWhereas":28016,"Ġ1938":28017,"urrencies":28018,"erion":28019,"Ġboast":28020,"ĠPatients":28021,"Ġchap":28022,"ĠBD":28023,"realDonaldTrump":28024,"Ġexamines":28025,"hov":28026,"Ġstartling":28027,"ĠBabylon":28028,"wid":28029,"omew":28030,"brance":28031,"ĠOdyssey":28032,"wig":28033,"Ġtorch":28034,"ĠVox":28035,"ĠMoz":28036,"ĠTroll":28037,"ĠAns":28038,"Similarly":28039,"ĠFul":28040,"006":28041,"Unless":28042,"ĠAlone":28043,"stead":28044,"ĠPublisher":28045,"rights":28046,"tu":28047,"ĠDoesn":28048,"Ġprofessionally":28049,"Ġclo":28050,"icz":28051,"Ġsteals":28052,"Ġá":28053,"1986":28054,"Ġsturdy":28055,"ĠJohann":28056,"Ġmedals":28057,"Ġfilings":28058,"ĠFraser":28059,"done":28060,"Ġmultinational":28061,"Ġfeder":28062,"Ġworthless":28063,"Ġpest":28064,"Yesterday":28065,"ankind":28066,"Ġgays":28067,"Ġborne":28068,"ĠPOS":28069,"Picture":28070,"Ġpercentages":28071,"251":28072,"rame":28073,"Ġpotions":28074,"AMD":28075,"ĠLebanese":28076,"Ġrang":28077,"ĠLSU":28078,"ongs":28079,"Ġpeninsula":28080,"ĠClause":28081,"ALK":28082,"oha":28083,"ĠMacBook":28084,"Ġunanimous":28085,"Ġlenders":28086,"Ġhangs":28087,"Ġfranchises":28088,"orers":28089,"ĠUpdates":28090,"Ġisolate":28091,"andro":28092,"Soon":28093,"Ġdisruptive":28094,"ĠSurve":28095,"Ġstitches":28096,"ĠScorp":28097,"ĠDominion":28098,"Ġsupplying":28099,"Arg":28100,"Ġturret":28101,"ĠLuk":28102,"Ġbrackets":28103,"*)":28104,"ĠRevolutionary":28105,"ĠHonest":28106,"Ġnoticing":28107,"ĠShannon":28108,"Ġafforded":28109,"Ġtha":28110,"ĠJanet":28111,"!--":28112,"ĠNarendra":28113,"ĠPlot":28114,"Hol":28115,"sever":28116,"eenth":28117,"Ġobstruction":28118,"Ġ1024":28119,"staff":28120,"jas":28121,"orget":28122,"scenes":28123,"laughs":28124,"ĠFargo":28125,"crime":28126,"Ġorchestr":28127,"Ġdelet":28128,"iliary":28129,"rieved":28130,"Ġmilitar":28131,"ĠGreene":28132,"âĹı":28133,"ãģ¦":28134,"ĠGuards":28135,"Ġunleashed":28136,"ĠWeber":28137,"Ġadjustable":28138,"Ġcaliber":28139,"Ġmotivations":28140,"ĠÃł":28141,"mAh":28142,"ĠLanka":28143,"handle":28144,"Ġpent":28145,"ĠRav":28146,"ĠAngular":28147,"ĠKau":28148,"umbing":28149,"Ġphilanthrop":28150,"Ġdehyd":28151,"Ġtoxicity":28152,"eer":28153,"ĠYORK":28154,"witz":28155,"å¼":28156,"ĠIE":28157,"community":28158,"ĠAH":28159,"Ġretali":28160,"Ġmassively":28161,"ĠDaniels":28162,"ĠDEL":28163,"Ġcarcin":28164,"Url":28165,"Ġrouting":28166,"ĠNPCs":28167,"ĠRAF":28168,"ryce":28169,"Ġwaived":28170,"ĠGuatem":28171,"Everybody":28172,"Ġcovenant":28173,"Ġ173":28174,"Ġrelaxing":28175,"Ġquart":28176,"almost":28177,"Ġguarded":28178,"ĠSoldiers":28179,"ĠPLAY":28180,"Ġoutgoing":28181,"LAND":28182,"Ġrewrite":28183,"ĠMOV":28184,"ĠImper":28185,"ĠSolution":28186,"Ġphenomenal":28187,"Ġlongevity":28188,"Ġimpat":28189,"ĠNissan":28190,"irie":28191,"Ġodor":28192,"ĠZar":28193,"oks":28194,"Ġmilitias":28195,"ĠSPEC":28196,"Ġtolerated":28197,"arser":28198,"ĠBradford":28199,"+,":28200,"Ġsurreal":28201,"sf":28202,"Canadian":28203,"Ġresemblance":28204,"Ġcarbohydrate":28205,"VIEW":28206,"Ġaccessory":28207,"meal":28208,"largest":28209,"iegel":28210,"Someone":28211,"Ġtoughest":28212,"oso":28213,"Ġfunnel":28214,"Ġcondemnation":28215,"luent":28216,"Ġwired":28217,"ĠSunset":28218,"Jesus":28219,"ĠPST":28220,"ĠPages":28221,"ĠTycoon":28222,"ĠPF":28223,"Ġselections":28224,"Ġà¤":28225,"partisan":28226,"Ġhighs":28227,"ĠRune":28228,"Ġcrafts":28229,"lead":28230,"ĠParents":28231,"Ġreclaim":28232,"eker":28233,"ĠAllied":28234,"aeper":28235,"Ġlooming":28236,"Ġbeneficiaries":28237,"ĠHull":28238,"Students":28239,"Jewish":28240,"dj":28241,"Ġpact":28242,"template":28243,"ĠOfficials":28244,"ĠBaylor":28245,"Ġhemp":28246,"Ġyouths":28247,"ĠLevels":28248,"ĠXiao":28249,"ĠChes":28250,"Ġendeavor":28251,"ĠRemoved":28252,"Ġhippocamp":28253,"Hell":28254,"ãĤĬ":28255,"805":28256,"Ġdinosaur":28257,"ĠWrath":28258,"ĠIndonesian":28259,"Ġcalculator":28260,"ĠDictionary":28261,"Ġ420":28262,"ĠMAG":28263,"(_":28264,"!,":28265,"tarians":28266,"Ġrestricting":28267,"racuse":28268,"Ġweekday":28269,"OUNT":28270,"Ġshrugged":28271,"leground":28272,"Ġbald":28273,"ĠDoctors":28274,"Ġtouted":28275,"ĠMaxwell":28276,"Ġ214":28277,"Ġdiplomat":28278,"Ġrepression":28279,"Ġconstituency":28280,"vice":28281,"ranked":28282,"ĠNapoleon":28283,"gang":28284,"ĠForever":28285,"tun":28286,"Ġbulb":28287,"ĠPDT":28288,"ĠCisco":28289,"VEN":28290,"Ġresumed":28291,"Steven":28292,"ĠManitoba":28293,"Ġfabulous":28294,"ĠAgents":28295,"1984":28296,"Ġamusing":28297,"ĠMysteries":28298,"Ġorthodox":28299,"floor":28300,"Ġquestionnaire":28301,"Ġpenetrate":28302,"Ġfilmmakers":28303,"ĠUnc":28304,"Ġstamped":28305,"Ġthirteen":28306,"Ġoutfield":28307,"Ġforwarded":28308,"Ġappra":28309,"Ġaided":28310,"try":28311,"Ġunfocused":28312,"ĠLiz":28313,"ĠWendy":28314,"ĠScene":28315,"Charg":28316,"Ġrejects":28317,"Ġleftist":28318,"ĠProvidence":28319,"ĠBrid":28320,"regn":28321,"Ġprophecy":28322,"ĠLIVE":28323,"499":28324,"Ġforge":28325,"ĠFML":28326,"Ġintrinsic":28327,"ĠFrog":28328,"Ġwont":28329,"ĠHolt":28330,"Ġfamed":28331,"CLUS":28332,"aepernick":28333,"ĠHate":28334,"ĠCay":28335,"Ġregistering":28336,"ortality":28337,"ropy":28338,"ocalyptic":28339,"aan":28340,"nav":28341,"Ġfascist":28342,"IFIED":28343,"Ġimplicated":28344,"ĠResort":28345,"ĠChandler":28346,"ĠBrick":28347,"Pin":28348,"ysc":28349,"Usage":28350,"ĠHelm":28351,"usra":28352,"âĺħâĺħ":28353,"ĠAbbas":28354,"Ġunanimously":28355,"Ġkeeper":28356,"Ġaddicted":28357,"???":28358,"Ġhelmets":28359,"Ġantioxid":28360,"apsed":28361,"808":28362,"giene":28363,"Ġwaits":28364,"Ġminion":28365,"raved":28366,"ĠPorsche":28367,"Ġdreaming":28368,"Ġ171":28369,"ĠCain":28370,"Ġunfor":28371,"asso":28372,"ĠConfiguration":28373,"kun":28374,"hardt":28375,"Ġnested":28376,"ĠLDS":28377,"LES":28378,"Ġtying":28379,"enos":28380,"Ġcue":28381,"ĠMarqu":28382,"skirts":28383,"Ġclicked":28384,"Ġexpiration":28385,"ĠAccordingly":28386,"ĠWC":28387,"Ġblessings":28388,"Ġaddictive":28389,"ĠNarr":28390,"yx":28391,"ĠJaguars":28392,"Ġrents":28393,"ĠSiber":28394,"Ġtipped":28395,"ousse":28396,"ĠFitzgerald":28397,"Ġhierarch":28398,"outine":28399,"Ġwavelength":28400,">.":28401,"chid":28402,"ĠProcessing":28403,"/+":28404,"ranking":28405,"Easy":28406,"ĠConstruct":28407,"Ġtet":28408,"insured":28409,"HUD":28410,"Ġquoting":28411,"Ġcommunicated":28412,"inx":28413,"Ġinmate":28414,"Ġerected":28415,"ĠAbsolutely":28416,"ĠSurely":28417,"Ġunim":28418,"ĠThrone":28419,"heid":28420,"Ġclaws":28421,"Ġsuperstar":28422,"ĠLenn":28423,"ĠWhis":28424,"Uk":28425,"abol":28426,"Ġsket":28427,"ĠNiet":28428,"Ġperks":28429,"Ġaffinity":28430,"Ġopenings":28431,"phasis":28432,"Ġdiscriminate":28433,"Tip":28434,"vc":28435,"Ġgrinding":28436,"ĠJenny":28437,"Ġasthma":28438,"holes":28439,"ĠHomer":28440,"Ġregisters":28441,"ĠGlad":28442,"Ġcreations":28443,"Ġlithium":28444,"Ġapplause":28445,"until":28446,"Justice":28447,"ĠTurks":28448,"Ġscandals":28449,"Ġbake":28450,"tank":28451,"Mech":28452,"ĠMeans":28453,"ĠMaid":28454,"Republicans":28455,"isal":28456,"windows":28457,"ĠSantos":28458,"Ġvegetation":28459,"338":28460,"tri":28461,"Ġflux":28462,"insert":28463,"Ġclarified":28464,"Ġmortg":28465,"ĠChim":28466,"ĠTort":28467,"Ġdisclaim":28468,"metal":28469,"ĠAside":28470,"Ġinduction":28471,"Ġinfl":28472,"Ġatheists":28473,"amph":28474,"Ġether":28475,"ĠVital":28476,"ĠBuilt":28477,"Mind":28478,"Ġweaponry":28479,"SET":28480,"Ġ186":28481,"admin":28482,"gam":28483,"contract":28484,"afa":28485,"Ġderivatives":28486,"Ġsnacks":28487,"Ġchurn":28488,"Econom":28489,"Ġcapped":28490,"ĠUnderstanding":28491,"ĠHers":28492,"ĠIz":28493,"Ġduct":28494,"IENT":28495,"aughty":28496,"ĠâľĶ":28497,"ĠNP":28498,"Ġsailing":28499,"Initialized":28500,"Ġted":28501,"Ġreactors":28502,"ĠLomb":28503,"Ġchoke":28504,"ĠWorm":28505,"Ġadmiration":28506,"Ġswung":28507,"ensibly":28508,"Ġrash":28509,"ĠGoals":28510,"ĠImportant":28511,"Shot":28512,"ĠRas":28513,"Ġtrainers":28514,"ĠBun":28515,"Working":28516,"Ġharmed":28517,"ĠPandora":28518,"ĠLTE":28519,"Ġmushroom":28520,"ĠCHAR":28521,"ĠFee":28522,"ĠMoy":28523,"Born":28524,"oliberal":28525,"ĠMartial":28526,"Ġgentlemen":28527,"Ġlingering":28528,"Official":28529,"Ġgraffiti":28530,"ĠNames":28531,"Der":28532,"Ġquint":28533,"istrate":28534,"azeera":28535,"ĠNOTICE":28536,"ĠFlorence":28537,"Ġpayable":28538,"Ġdepicts":28539,"ĠSpecies":28540,"Heart":28541,"âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ":28542,"Ġenclosed":28543,"Increases":28544,"Daily":28545,"ĠLis":28546,"Ġenactment":28547,"ĠBacon":28548,"ĠSteele":28549,"demand":28550,"Ġ183":28551,"Ġmouths":28552,"Ġstranded":28553,"Ġenhancement":28554,"011":28555,"ĠWhats":28556,"Ġhealed":28557,"eny":28558,"ĠRab":28559,"Ġ340":28560,"ĠLabyrinth":28561,"roach":28562,"ĠYosh":28563,"ĠClippers":28564,"Ġconcerts":28565,"Internet":28566,"355":28567,"Ġstickers":28568,"Ġtermed":28569,"ĠAxe":28570,"Ġgrandparents":28571,"France":28572,"ĠClim":28573,"ĠUh":28574,"ulic":28575,"Ġthrill":28576,"centric":28577,"ĠOverview":28578,"ĠConduct":28579,"Ġsubstantive":28580,"Ġ182":28581,"mur":28582,"Ġstray":28583,"ĠCoff":28584,"Ġrepetitive":28585,"ĠForgotten":28586,"Ġqualification":28587,"ewitness":28588,"ĠZimbabwe":28589,"Ġsimulated":28590,"ĠJD":28591,"253":28592,"ĠWare":28593,"Ġunsc":28594,"Times":28595,"Ġsummons":28596,"Ġdisconnected":28597,"Ġ184":28598,"cius":28599,"ĠGujar":28600,"odka":28601,"Ġerase":28602,"ĠTobacco":28603,"elected":28604,"Ġuncont":28605,"ĠShepard":28606,"ĠLamp":28607,"Ġalerted":28608,"Ġoperative":28609,"arna":28610,"uint":28611,"Ġnegligence":28612,"acements":28613,"Ġsupra":28614,"Ġprevail":28615,"ĠShark":28616,"Ġbelts":28617,"ãģ«":28618,"Ġtighter":28619,"Engineers":28620,"Ġinactive":28621,"Ġexponent":28622,"ĠWillie":28623,"aples":28624,"Ġheir":28625,"ĠHits":28626,"iann":28627,"ĠSays":28628,"Ġcurrents":28629,"ĠBengal":28630,"Ġarist":28631,"Buffer":28632,"Ġbreeze":28633,"ĠWesley":28634,"Cola":28635,"Ġpronoun":28636,"Ġdeed":28637,"ĠKling":28638,"Ġoft":28639,"Ġinflict":28640,"Ġpunishing":28641,"Ġnm":28642,"iku":28643,"ODUCT":28644,"014":28645,"Ġsubsidy":28646,"ĠDEA":28647,"ĠHerbert":28648,"ĠJal":28649,"Bank":28650,"Ġdeferred":28651,"Ġshipment":28652,"Bott":28653,"Ġalle":28654,"bearing":28655,"HTML":28656,"Offline":28657,"Ġ213":28658,"Ġscrolling":28659,"Ġscanned":28660,"ĠLibyan":28661,"ĠTOP":28662,"chrom":28663,"dt":28664,"column":28665,"PsyNetMessage":28666,"Zero":28667,"Ġtorso":28668,"050":28669,"âķIJ":28670,"Ġimperson":28671,"ĠSchwartz":28672,"udic":28673,"Ġpissed":28674,"ĠSapp":28675,"257":28676,"ĠISPs":28677,"ogl":28678,"Ġsupervised":28679,"Ġadolescent":28680,"Ġattained":28681,"ĠDelivery":28682,"ĠBunny":28683,"Ġ1937":28684,"Ġminiature":28685,"Ġos":28686,"Ġ370":28687,"608":28688,"ĠMourinho":28689,"Ġinnate":28690,"Ġtempo":28691,"ĠNM":28692,"ĠFallen":28693,"009":28694,"Ġprovocative":28695,"Streamer":28696,"ĠBenedict":28697,"ĠBolshe":28698,"Ġturtle":28699,"ĠPCB":28700,"ĠEqual":28701,"Director":28702,"ĠRend":28703,"Ġfluids":28704,"Authorities":28705,"Ġcousins":28706,"requency":28707,"ĠNeighbor":28708,"sets":28709,"shared":28710,"Charles":28711,"password":28712,"Ġgears":28713,"Ġ211":28714,"ĠHardware":28715,"rika":28716,"Ġupstream":28717,"Hom":28718,"Ġdisproportionately":28719,"ivities":28720,"Ġundefined":28721,"Ġelectrons":28722,"Ġcommemor":28723,"Eventually":28724,"Ġ><":28725,"Ġirresponsible":28726,"218":28727,"ĠReleased":28728,"ĠOVER":28729,"ĠIGN":28730,"ĠBread":28731,"stellar":28732,"ĠSage":28733,"tted":28734,"damage":28735,"edition":28736,"ĠPrec":28737,"Ġlime":28738,"Ġconfinement":28739,"Ġcalorie":28740,"weapon":28741,"Ġdiffering":28742,"ĠSina":28743,"mys":28744,"amd":28745,"Ġintricate":28746,"kk":28747,"ĠPAT":28748,"ão":28749,"stones":28750,"links":28751,"Ġranch":28752,"Semitic":28753,"Ġdifferentiate":28754,"ĠSinger":28755,"occupied":28756,"Ġfortress":28757,"cmd":28758,"Ġinterception":28759,"ĠAnkara":28760,"Ġrept":28761,"ĠSolitaire":28762,"Ġremake":28763,"pred":28764,"Ġdared":28765,"autions":28766,"ĠBACK":28767,"Running":28768,"Ġdebugging":28769,"Ġgraphs":28770,"399":28771,"ĠNigel":28772,"Ġbun":28773,"Ġpillow":28774,"Ġprogressed":28775,"fashioned":28776,"Ġobedience":28777,"ERN":28778,"Ġrehears":28779,"Cell":28780,"tl":28781,"Sher":28782,"Ġherald":28783,"ĠPayment":28784,"ĠCory":28785,"ĠDept":28786,"Ġrepent":28787,"ĠWeak":28788,"uckland":28789,"Ġpleasing":28790,"Ġshortages":28791,"Ġjurors":28792,"ĠKab":28793,"qqa":28794,"Anti":28795,"Ġwow":28796,"ĠRCMP":28797,"Ġtsun":28798,"ĠSic":28799,"Ġcomprises":28800,"Ġspies":28801,"Ġprecinct":28802,"nu":28803,"Ġurges":28804,"Ġtimed":28805,"Ġstripes":28806,"ĠBoots":28807,"Ġyen":28808,"Advanced":28809,"Ġdiscrete":28810,"ĠArchangel":28811,"employment":28812,"Diff":28813,"Ġmonuments":28814,"Ġ209":28815,"worker":28816,"Ġ196":28817,"ĠIg":28818,"utterstock":28819,"TPS":28820,"Jac":28821,"Ġhomelessness":28822,"Ġcommentator":28823,"Ġracially":28824,"fing":28825,"seed":28826,"Ele":28827,"ellation":28828,"Ġethanol":28829,"Ġparish":28830,"ĠDong":28831,"ĠAwakening":28832,"Ġdeviation":28833,"ĠBearing":28834,"ĠTsuk":28835,"Ġrecess":28836,"Ġlymph":28837,"ĠCannabis":28838,"åľ":28839,"ĠNEWS":28840,"Ġdra":28841,"ĠStefan":28842,"ĠWrong":28843,"ĠSAM":28844,"Ġloosely":28845,"Ġinterpreter":28846,"ĠPlain":28847,"Government":28848,"Ġbigotry":28849,"Ġgrenades":28850,"avez":28851,"pictured":28852,"Ġmandated":28853,"ĠMonk":28854,"ĠPedro":28855,"Ġlava":28856,"274":28857,"Ġcynical":28858,"ĠScrolls":28859,"locks":28860,"Mp":28861,"Ġcongregation":28862,"ornings":28863,"phil":28864,"ĠIbid":28865,"Ġferv":28866,"Ġdisappearing":28867,"Ġarrogant":28868,"syn":28869,"ĠMaver":28870,"ĠSuit":28871,"241":28872,"Ġabbre":28873,"ackers":28874,"Pa":28875,"ĠYel":28876,"Whenever":28877,"Ġ235":28878,"ĠVine":28879,"ĠAnat":28880,"Ġextinct":28881,"LET":28882,"Ġexecutable":28883,"VERS":28884,"oxide":28885,"DNA":28886,"ĠPrel":28887,"Ġresentment":28888,"Ġcomprise":28889,"ĠAviv":28890,"Ġinterceptions":28891,"Ġprolific":28892,"INA":28893,"ĠErin":28894,"thought":28895,"219":28896,"ĠPsychiatry":28897,"unky":28898,"chemist":28899,"Ho":28900,"ĠMcCoy":28901,"Ġbricks":28902,"Los":28903,"rily":28904,"ĠUSSR":28905,"Ġrud":28906,"Ġlaud":28907,"ĠWise":28908,"ĠEmerald":28909,"Ġrevived":28910,"Ġdamned":28911,"ĠRepair":28912,"idem":28913,"ctica":28914,"Ġpatriarch":28915,"ĠNurs":28916,"meg":28917,"Ġcheapest":28918,"reements":28919,"empty":28920,"ĠCelebr":28921,"Ġdeprivation":28922,"chanted":28923,"ĠThumbnails":28924,"Energy":28925,"ĠEthan":28926,"ĠQing":28927,"Ġopposes":28928,"WIND":28929,"vik":28930,"ĠMau":28931,"ĠSUB":28932,"667":28933,"GRE":28934,"ĠVolunte":28935,"nton":28936,"Cook":28937,"åIJ":28938,"esque":28939,"Ġplummet":28940,"Ġsuing":28941,"Ġpronounce":28942,"Ġresisting":28943,"ĠFishing":28944,"ĠTrials":28945,"Ġyell":28946,"Ġ310":28947,"Ġinduct":28948,"Ġpersonalized":28949,"often":28950,"Reb":28951,"EMBER":28952,"Ġviewpoint":28953,"Ġexistential":28954,"())":28955,"remove":28956,"MENTS":28957,"lasses":28958,"Ġevapor":28959,"Ġaisle":28960,"meta":28961,"Ġreflective":28962,"Ġentitlement":28963,"Ġdevised":28964,"music":28965,"ascade":28966,"Ġwinding":28967,"offset":28968,"Ġaccessibility":28969,"kered":28970,"Better":28971,"ĠJohnston":28972,"thinking":28973,"Snow":28974,"ĠCroatia":28975,"ĠAtomic":28976,"271":28977,"348":28978,"Ġtextbook":28979,"ĠSixth":28980,"ĠاÙĦ":28981,"Ġslider":28982,"ĠBurger":28983,"bol":28984,"Sync":28985,"Ġgrandchildren":28986,"Ġcerv":28987,"+)":28988,"Ġeternity":28989,"Ġtweeting":28990,"Ġspeculative":28991,"Ġpivotal":28992,"ĠWP":28993,"ĠTER":28994,"ynamic":28995,"Ġupl":28996,"ĠCats":28997,"perhaps":28998,"Ġclassmates":28999,"Ġblatant":29000,"'-":29001,"Ġlakh":29002,"antine":29003,"ĠBorg":29004,"iom":29005,"/(":29006,"ĠAthletic":29007,"Ġsar":29008,"OTA":29009,"ĠHoffman":29010,"Nevertheless":29011,"Ġadorable":29012,"Ġspawned":29013,"Associated":29014,"ĠDomestic":29015,"Ġimplant":29016,"ĠLuxem":29017,"ĠKens":29018,"Ġpumps":29019,"ĠSAT":29020,"Attributes":29021,"509":29022,"avour":29023,"Ġcentralized":29024,"ĠTN":29025,"Ġfreshly":29026,"ĠAchieve":29027,"Ġoutsiders":29028,"herty":29029,"ĠRee":29030,"ĠTowers":29031,"ĠDart":29032,"akable":29033,"Ġmp":29034,"ĠHeavenly":29035,"Ġripe":29036,"ĠCaroline":29037,"ryan":29038,"Ġclassics":29039,"Ġretiring":29040,"Ġ228":29041,"Ġah":29042,"Ġdealings":29043,"Ġpunching":29044,"ĠChapman":29045,"Options":29046,"maxwell":29047,"volume":29048,"Ġstal":29049,"Ġexported":29050,"ĠQuite":29051,"Ġnumerical":29052,"Burn":29053,"Fact":29054,"ĠKeystone":29055,"Ġtrending":29056,"Ġaltering":29057,"ĠAfricans":29058,"478":29059,"ĠMN":29060,"ĠKnock":29061,"Ġtemptation":29062,"Ġprestige":29063,"Overview":29064,"ĠTraditional":29065,"ĠBahrain":29066,"Private":29067,"ĠHOU":29068,"Ġbarr":29069,"ĠTat":29070,"Cube":29071,"USD":29072,"ĠGrande":29073,"ĠGat":29074,"ĠFlo":29075,"Ġresides":29076,"Ġindec":29077,"volent":29078,"Ġperpetual":29079,"ubes":29080,"Ġworldview":29081,"ĠQuantum":29082,"Ġfiltered":29083,"Ġensu":29084,"orgetown":29085,"ERSON":29086,"ĠMild":29087,"379":29088,"OTT":29089,"Ã¥":29090,"Ġvitamins":29091,"Ġribbon":29092,"Ġsincerely":29093,"ĠHin":29094,"Ġeighteen":29095,"Ġcontradictory":29096,"Ġglaring":29097,"Ġexpectancy":29098,"Ġconspir":29099,"Ġmonstrous":29100,"Ġ380":29101,"reci":29102,"Ġhandic":29103,"Ġpumped":29104,"Ġindicative":29105,"Ġrapp":29106,"Ġavail":29107,"ĠLEGO":29108,"ĠMarijuana":29109,"1985":29110,"erton":29111,"Ġtwentieth":29112,"################################":29113,"ĠSwamp":29114,"Ġvaluation":29115,"Ġaffiliates":29116,"adjusted":29117,"ĠFacility":29118,"262":29119,"Ġenzymes":29120,"itudinal":29121,"Ġimprint":29122,"Site":29123,"Ġinstaller":29124,"ĠTRA":29125,"mology":29126,"linear":29127,"ĠCollective":29128,"igating":29129,"ĠToken":29130,"Ġspeculated":29131,"KN":29132,"ĠCly":29133,"ority":29134,"Ġdefer":29135,"Ġinspectors":29136,"approved":29137,"RM":29138,"ĠSuns":29139,"Ġinforming":29140,"ĠSyracuse":29141,"ibli":29142,"765":29143,"Ġglove":29144,"Ġauthorize":29145,"â̦â̦â̦â̦â̦â̦â̦â̦":29146,"ĠCruise":29147,"Ġcontracting":29148,"shell":29149,"IFE":29150,"ĠJewel":29151,"pract":29152,"ĠPhotoshop":29153,"ĠKnowing":29154,"harm":29155,"Ġattractions":29156,"adan":29157,"etus":29158,"018":29159,"wagen":29160,"Alt":29161,"Ġmultiply":29162,"Ġequilibrium":29163,":{":29164,"ĠFighters":29165,"ĠEdgar":29166,"Ġfourteen":29167,"Govern":29168,"Ġmisuse":29169,"Ġabusing":29170,"Ġancestry":29171,"ramer":29172,"644":29173,"Ġworms":29174,"Ġthicker":29175,"ĠCombine":29176,"Ġpeasants":29177,"Ġvind":29178,"Ġconquest":29179,"Ġmocked":29180,"Ġcinnamon":29181,"ĠCald":29182,"ĠGallup":29183,"Ġavoidance":29184,"Ġincarnation":29185,"ĠStrat":29186,"Ġtasted":29187,"enta":29188,"ĠNeal":29189,"pared":29190,"Ġterminology":29191,"jection":29192,"Scientists":29193,"ĠINS":29194,"ĠDee":29195,"Ġdirectories":29196,"Road":29197,"ĠShap":29198,"bright":29199,"ĠDirectors":29200,"ĠColumn":29201,"Ġbob":29202,"Ġpreferably":29203,"Ġglitch":29204,"furt":29205,"Ġeg":29206,"idis":29207,"CBC":29208,"Ġsurrendered":29209,"Ġtestament":29210,"336":29211,"uggest":29212,"ĠNil":29213,"another":29214,"Ġpathetic":29215,"ĠDonna":29216,"Ġ218":29217,"ĠAvery":29218,"Ġwhiskey":29219,"Ġfixture":29220,"ĠConquest":29221,"Ġbets":29222,"Occ":29223,"ĠLeicester":29224,"].\"":29225,"Ġ));":29226,"Ġflashes":29227,"456":29228,"Ġmasked":29229,"gebra":29230,"Ġcomputed":29231,"chel":29232,"auder":29233,"Ġdefeats":29234,"ĠLiberation":29235,"ĠOsama":29236,"ĠVive":29237,"Changes":29238,"Channel":29239,"Ġtariffs":29240,"Ġmage":29241,"ĠSax":29242,"Ġinadvertently":29243,"ĠCRE":29244,"ĠReaper":29245,"inky":29246,"grading":29247,"Ġstereotyp":29248,"Ġcurl":29249,"ĠFANT":29250,"Ġframeworks":29251,"Mom":29252,"ĠAnch":29253,"Ġflavour":29254,"carbon":29255,"Ġpermitting":29256,"letcher":29257,"ĠMozilla":29258,"ĠParking":29259,"ĠChamp":29260,"Scroll":29261,"Ġmurderer":29262,"Ġrested":29263,"Ġowes":29264,"ĠPoss":29265,"ADD":29266,"IFF":29267,"resolution":29268,"ĠMining":29269,"Ġcomparative":29270,"Dim":29271,"Ġneighbouring":29272,"ĠAST":29273,"ĠToxic":29274,"Ġbiases":29275,"Ġgunfire":29276,"urous":29277,"ĠMoment":29278,"1983":29279,"Ġpervasive":29280,"ttp":29281,"ĠNormally":29282,"rir":29283,"Sarah":29284,"ĠAlbany":29285,"Ġunsett":29286,"ĠSMS":29287,"ipers":29288,"layer":29289,"ĠWhites":29290,"uple":29291,"Ġturbo":29292,"ĠLeeds":29293,"Ġthats":29294,"ĠMiner":29295,"MER":29296,"ĠReign":29297,"Ġperme":29298,"ĠBlitz":29299,"Ġ1934":29300,"Ġintimidating":29301,"tube":29302,"Ġeccentric":29303,"abolic":29304,"boxes":29305,"ĠAssociates":29306,"votes":29307,"Ġsimulate":29308,"umbo":29309,"astery":29310,"Ġshipments":29311,"FFFF":29312,"anth":29313,"Ġseasoned":29314,"Ġexperimentation":29315,"âĸł":29316,"laws":29317,"Meet":29318,"iddles":29319,"antics":29320,"Rating":29321,"ISIS":29322,"hift":29323,"Ġfronts":29324,"buf":29325,"017":29326,"Ġunatt":29327,"ĠDil":29328,"leases":29329,"ĠGardens":29330,"777":29331,"touch":29332,"vell":29333,"458":29334,"Ġ=====":29335,"saving":29336,"Ġerosion":29337,"ĠQuin":29338,"Ġearns":29339,"Ġaccomplishment":29340,"ĠWei":29341,"Ġ<[":29342,"_____":29343,"Ġirrig":29344,"ĠTeddy":29345,"Ġconquered":29346,"ĠArmored":29347,"Ġasserts":29348,"Ġmanipulating":29349,"ré":29350,"Ġtranscripts":29351,"Gallery":29352,"Ġplotting":29353,"Neil":29354,"Ġbetrayal":29355,"loader":29356,"ĠSul":29357,"Ġdisplacement":29358,"Ġroyalty":29359,"ĠWI":29360,"heit":29361,"ĠDevices":29362,"allel":29363,"Ġmunicipalities":29364,"Ġcanal":29365,"Stars":29366,"ĠUAE":29367,"Ġ\"â̦":29368,"ĠCU":29369,"above":29370,"Ġresonance":29371,"ĠguiActiveUn":29372,"added":29373,"ĠBraves":29374,"ĠIbn":29375,"Ġhereby":29376,"ĠBRE":29377,"Ġshareholder":29378,"ĠHir":29379,"ĠJi":29380,"Ġstrangely":29381,"Ġadmired":29382,"Ġplight":29383,"Ġbachelor":29384,"ĠPole":29385,"ciplinary":29386,"Tony":29387,"ĠArmenian":29388,"Ġunman":29389,"ĠZionist":29390,"Stage":29391,"iscover":29392,"Ġautomotive":29393,"Ġsidelines":29394,"Ġslick":29395,"ĠRenaissance":29396,"ĠFUN":29397,"Images":29398,"ĠHaj":29399,"Ġping":29400,"Ġshortcut":29401,"ĠBlvd":29402,"ĠLooks":29403,"Ġbursts":29404,"Ġclamp":29405,"Ġmish":29406,"Ġsorting":29407,"Ġpatriot":29408,"Ġcorrectness":29409,"ĠScandinav":29410,"ĠCavaliers":29411,"python":29412,"azar":29413,"Ġ375":29414,"ĠJaune":29415,"409":29416,"Ġdetrimental":29417,"Ġstabbing":29418,"Ġpoisoned":29419,"Ġfountain":29420,"ocent":29421,"orst":29422,"ĠMari":29423,"Ġrains":29424,"ĠOvers":29425,"ĠInstitution":29426,"udget":29427,"AMY":29428,"tale":29429,"ĠKR":29430,"ĠPrices":29431,"Ġheadaches":29432,"Ġlandsl":29433,"ĠAura":29434,"Bonus":29435,"ĠZhao":29436,"ĠHip":29437,"Ġhops":29438,"ĠKurdistan":29439,"Ġexploiting":29440,"ryn":29441,"Ġhypocrisy":29442,"opening":29443,"Ġgunshot":29444,"Ġwed":29445,"interstitial":29446,"Interstitial":29447,"Ġamen":29448,"Breaking":29449,"Ġmarketed":29450,"Wire":29451,"ĠCrowd":29452,"Continue":29453,"ĠKnown":29454,"ĠEffective":29455,"orean":29456,"izons":29457,"Joseph":29458,"Ġescalation":29459,"username":29460,"Ġcurtain":29461,"ATES":29462,"ĠPAR":29463,"ĠMiy":29464,"Ġcounterfe":29465,"lene":29466,"Ġcontenders":29467,"daily":29468,"ĠAsc":29469,"ĠPhillip":29470,"mostly":29471,"Ġfilename":29472,"hene":29473,"Ġresembling":29474,"Ġstaging":29475,"ĠChloe":29476,"Ġwiring":29477,"Hon":29478,"ĠRenew":29479,"ottage":29480,"ĠHybrid":29481,"much":29482,"Ġstrokes":29483,"Ġpolicymakers":29484,"APTER":29485,"ĠArkham":29486,"plot":29487,"Ġassistants":29488,"Ġdeport":29489,"ĠSega":29490,"Ġinfluenza":29491,"ĠCursed":29492,"ĠKobe":29493,"Ġskinny":29494,"Provider":29495,"ĠRip":29496,"Ġincremental":29497,"products":29498,"BF":29499,"Ġdome":29500,"ĠCredits":29501,"Ġlosers":29502,"ints":29503,"ĠBetty":29504,"ĠTalent":29505,"ĠDAM":29506,"Lv":29507,"Ess":29508,"Ġdens":29509,"temp":29510,"Judge":29511,"odic":29512,"Ġ'(":29513,"URES":29514,"etsk":29515,"VO":29516,"Ġretrieved":29517,"Ġarchitects":29518,"Ùĩ":29519,"Ġethic":29520,"ĠSecondary":29521,"stocks":29522,"adia":29523,"Ġ325":29524,"ĠOpinion":29525,"Ġsimultaneous":29526,"Ġdizz":29527,"ulp":29528,"Ġsmuggling":29529,"ippery":29530,"Random":29531,"facing":29532,"ĠDas":29533,"Ġstockp":29534,"Ġdisclosures":29535,"pointer":29536,"Ġcoral":29537,"ĠSelection":29538,"ĠPike":29539,"ivalent":29540,"Ġruthless":29541,"ĠRim":29542,"Ġensuing":29543,"ĠExperiment":29544,"Ġcongressman":29545,"Ġbeliever":29546,"Ġunspecified":29547,"ĠMord":29548,"Ġknowledgeable":29549,"ĠVERY":29550,"TX":29551,"Ġstraps":29552,"Ġturf":29553,"apeshifter":29554,"Ġmarital":29555,"Ġflock":29556,"ãģĨ":29557,"263":29558,"AMES":29559,"ĠOpposition":29560,"Ġtreasures":29561,"ĠGOD":29562,"Ġmodeled":29563,"ĠWORLD":29564,"Ġ([":29565,"ĠUsage":29566,"HF":29567,"Ġ$(":29568,"ussed":29569,"Ġpioneer":29570,"Eight":29571,"parse":29572,"bread":29573,"ritz":29574,"ĠMiranda":29575,"ĠKant":29576,"++)":29577,"oren":29578,"Ġprovoked":29579,"Ġbreeds":29580,"ĠIncludes":29581,"ĠPastebin":29582,"ĠFlip":29583,"Java":29584,"Ġbrink":29585,"Ġrumored":29586,"Ġunseen":29587,"Ġgarnered":29588,"ĠDefin":29589,"alted":29590,"Ġtattoos":29591,"Ġhesitation":29592,"isitions":29593,"ĠWeaver":29594,"ĠReporting":29595,"Ġtherapies":29596,"Ġconsultants":29597,"Ġresidual":29598,"ĠMali":29599,"ĠRoma":29600,"iago":29601,"ĠResidents":29602,"ubi":29603,"Ġremedies":29604,"Ġadaptive":29605,"ĠAlive":29606,"ĠBarcl":29607,"Ġwallets":29608,"crypt":29609,"etermination":29610,"ĠPelosi":29611,"Ġslipping":29612,"otonin":29613,"Ġalliances":29614,"patrick":29615,"iris":29616,"Ġorth":29617,"ĠPerkins":29618,"ĠDeV":29619,"ĠGets":29620,"Ġdrying":29621,"gee":29622,"forest":29623,"ĠForget":29624,"orem":29625,"339":29626,"Ġvaguely":29627,"ĠDion":29628,"ĠPorn":29629,"ĠHOW":29630,"Ġpneum":29631,"Ġrubble":29632,"ĠTaste":29633,"encia":29634,"ĠGel":29635,"Ġdst":29636,"Ġ245":29637,"ĠMorocco":29638,"inflamm":29639,"ĠTwins":29640,"Ġbots":29641,"daughter":29642,"ĠBalk":29643,"Ġbrethren":29644,"Ġlogos":29645,"Ġgobl":29646,"fps":29647,"Ġsubdivision":29648,"Ġpawn":29649,"Ġsqueezed":29650,"Ġmorale":29651,"ĠDW":29652,"'\"":29653,"Ġknot":29654,"ooky":29655,"Ġdivisive":29656,"Ġboosted":29657,"chy":29658,"ãĥIJ":29659,"ifact":29660,"Ġnewcomers":29661,"ĠWrestling":29662,"Ġscouts":29663,"wolves":29664,"Rat":29665,"Ġnineteenth":29666,"ĠOsborne":29667,"Stats":29668,"Ġempowered":29669,"Ġpsychopath":29670,"ĠOEM":29671,"uggage":29672,"ĠPK":29673,"ĠMohammad":29674,"Pak":29675,"Ġanarchists":29676,"ĠExtract":29677,"esthes":29678,"ĠStockholm":29679,"loo":29680,"ĠGraph":29681,"Ġdeploying":29682,"ĠStranger":29683,"ĠMold":29684,"Ġstaffer":29685,"Ġdiscounted":29686,"uckle":29687,"please":29688,"ĠLanding":29689,"ÃŃa":29690,"Ġ193":29691,"Ġante":29692,"Ġrepetition":29693,"Ġ+/-":29694,"Ġparody":29695,"Ġlively":29696,"AAA":29697,"ĠHorus":29698,"Ġpits":29699,"inders":29700,"LOC":29701,"ĠVenice":29702,"406":29703,"ĠDiscover":29704,"âĨ":29705,"ellectual":29706,"Ġpens":29707,"Ġeyel":29708,"iguous":29709,"Impl":29710,"Ġjoking":29711,"Ġinval":29712,"ĠBelfast":29713,"Ġcreditors":29714,"ĠSkywalker":29715,"ovsky":29716,"Ġceasefire":29717,"Ġseals":29718,"isoft":29719,")).":29720,"ĠFelix":29721,"ITS":29722,"Ġtresp":29723,"ĠBlockchain":29724,"eware":29725,"ĠSchwar":29726,"enne":29727,"mounted":29728,"ĠBeacon":29729,"lesh":29730,"Ġimmensely":29731,"Ġcheering":29732,"Employ":29733,"scene":29734,"ishly":29735,"atchewan":29736,"ĠNicolas":29737,"Ġdrained":29738,"ĠExit":29739,"ĠAzerb":29740,"jun":29741,"Ġfloated":29742,"uania":29743,"Deep":29744,"Ġsuperv":29745,"Ġmystical":29746,"ĠDollar":29747,"ĠApostle":29748,"ĠREL":29749,"ĠProvided":29750,"ĠBucks":29751,"ãĥ´":29752,"cutting":29753,"Ġenhancements":29754,"ĠPenguins":29755,"ĠIsaiah":29756,"Ġjerk":29757,"ĠWyn":29758,"Ġstalled":29759,"Ġcryptocurrencies":29760,"ĠRoland":29761,"single":29762,"Ġlumin":29763,"ĠFellow":29764,"ĠCapacity":29765,"ĠKazakh":29766,"WN":29767,"Ġfinanced":29768,"389":29769,"Ġtid":29770,"Ġcollusion":29771,"ĠMyr":29772,"îĢ":29773,"Senator":29774,"Ġpediatric":29775,"Ġneatly":29776,"Ġsandwiches":29777,"ĠArchitecture":29778,"Ġtucked":29779,"Ġbalcony":29780,"Ġearthquakes":29781,"quire":29782,"Future":29783,"Ġhefty":29784,"éĹ":29785,"Ġspecializes":29786,"Ġstresses":29787,"Ġsender":29788,"Ġmisunderstanding":29789,"Ġepile":29790,"Ġprovoke":29791,"ĠColors":29792,"Ġdismay":29793,"uko":29794,"[_":29795,"586":29796,"neutral":29797,"Ġdonating":29798,"ĠRandall":29799,"Multi":29800,"Ġconveniently":29801,"ĠSung":29802,"ĠCoca":29803,"Ġtents":29804,"ĠAcceler":29805,"Ġpartnered":29806,"272":29807,"irming":29808,"ĠBAS":29809,"sometimes":29810,"Ġobjected":29811,"ubric":29812,"posed":29813,"LCS":29814,"grass":29815,"Ġattributable":29816,"VIS":29817,"Israeli":29818,"Ġrepeats":29819,"ĠRM":29820,"vag":29821,"uta":29822,"inous":29823,"Ġinert":29824,"ĠMiguel":29825,"æŃ":29826,"ĠHawaiian":29827,"Board":29828,"Ġartific":29829,"ĠAzerbai":29830,"asio":29831,"ĠRent":29832,"AIN":29833,"Ġappliances":29834,"Ġnationality":29835,"Ġasshole":29836,"ĠNeb":29837,"Ġnotch":29838,"hani":29839,"ĠBride":29840,"Availability":29841,"Ġintercepted":29842,"Ġcontinental":29843,"Ġswelling":29844,"ĠPerspect":29845,"bies":29846,".<":29847,"ithmetic":29848,"ĠLara":29849,"Ġtempting":29850,"addr":29851,"Ġoverseeing":29852,"clad":29853,"ĠDV":29854,"ĠGingrich":29855,"Ġmun":29856,"ĠAppropri":29857,"Ġalterations":29858,"ĠPatreon":29859,"Ġhavoc":29860,"Ġdisciplines":29861,"Ġnotoriously":29862,"akuya":29863,"ieri":29864,"?).":29865,"ĠWent":29866,"Ġsilicon":29867,"Ġtremb":29868,"Container":29869,"Known":29870,"Ġmortar":29871,"este":29872,"icka":29873,"Arthur":29874,"ĠPreviously":29875,"ĠMarty":29876,"Ġsparse":29877,"gins":29878,"Ġinward":29879,"ĠParticipant":29880,"Copy":29881,"ĠMisc":29882,"Ġantibiotic":29883,"ĠRetro":29884,"Ġelusive":29885,"Ġassail":29886,"ĠBattalion":29887,"ĠBought":29888,"Ġdiminish":29889,"ĠEuropa":29890,"session":29891,"ĠDangerous":29892,"iesel":29893,"Ġdisbelief":29894,"Ġblasts":29895,"extreme":29896,"ĠBoyd":29897,"ĠProjects":29898,"ĠGuys":29899,"Ġundergone":29900,"Ġgrill":29901,"ĠDwight":29902,"Ġ197":29903,"USER":29904,"Ġfilesystem":29905,"Ġclocks":29906,"Taylor":29907,"Ġwrapper":29908,"Ġfolding":29909,"ousand":29910,"ĠPhilippine":29911,"ATIONAL":29912,"ĠPerth":29913,"Ġashes":29914,"Ġaccumulate":29915,"ĠGateway":29916,"Shop":29917,"orkshire":29918,"Han":29919,"ĠBarrel":29920,"ĠLeh":29921,"ĠXV":29922,"Ġwhim":29923,"Ġrepo":29924,"ĠCG":29925,"ĠMam":29926,"Ġincorporating":29927,"Ġbailout":29928,"Ġlinguistic":29929,"Ġdisinteg":29930,"CLE":29931,"Ġcinematic":29932,"ĠFiber":29933,"Syn":29934,"ilion":29935,"ĠCompos":29936,"chens":29937,"Ġneoc":29938,"Ġboiled":29939,"FINE":29940,"ono":29941,"uncle":29942,"iken":29943,"ĠBM":29944,"ι":29945,"Ġreceipts":29946,"Ġdisposed":29947,"ĠThirty":29948,"ĠRough":29949,"ĠABS":29950,"Ġnotwithstanding":29951,"ollen":29952,"#$":29953,"Ġunreliable":29954,"Ġbloom":29955,"Ġmediocre":29956,"Ġtram":29957,"ĠTasman":29958,"Ġshakes":29959,"Ġmanifesto":29960,"ĠMW":29961,"Ġsatisfactory":29962,"Ġshores":29963,"Ġcomputation":29964,"Ġassertions":29965,"ormons":29966,"arag":29967,"abit":29968,"Democrats":29969,"ĠLoot":29970,"ĠVolks":29971,"haired":29972,"Ġgravitational":29973,"Sing":29974,"ĠMiz":29975,"Ġthrottle":29976,"Ġtyranny":29977,"ĠViews":29978,"Ġrobber":29979,"ĠMinority":29980,"Ġshrine":29981,"scope":29982,"purpose":29983,"Ġnucleus":29984,"ourcing":29985,"ĠUSDA":29986,"ĠDHS":29987,"wra":29988,"ĠBowie":29989,"Scale":29990,"ĠBEL":29991,"xi":29992,"Iter":29993,"Ġ(),":29994,"wright":29995,"Ġsailors":29996,"oused":29997,"NASA":29998,"ĠProof":29999,"ĠMineral":30000,"token":30001,"ĠFD":30002,"Rew":30003,"Ġell":30004,"630":30005,"Ġchancellor":30006,"ĠGos":30007,"Ġamounted":30008,"ĠRecre":30009,"omez":30010,"ĠOptim":30011,"ĠOlive":30012,"Ġtracker":30013,"owler":30014,"ĠUnique":30015,"Root":30016,"Ġmaritime":30017,"ĠQuran":30018,"ĠAdapt":30019,"Ġecosystems":30020,"ĠRepeat":30021,"ĠSoy":30022,"ĠIMP":30023,"Ġgraduating":30024,"andem":30025,"Pur":30026,"ĠReset":30027,"ĠTrick":30028,"ĠPhilly":30029,"ĠTue":30030,"ĠMalaysian":30031,"Ġclimax":30032,"Ġbury":30033,"Ġconspic":30034,"ĠSouthampton":30035,"ĠFlowers":30036,"Ġescorted":30037,"ĠEducational":30038,"ĠIRC":30039,"Ġbrutally":30040,"eating":30041,"Ġpillar":30042,"ĠSang":30043,"ĠJude":30044,"arling":30045,"ĠAmnesty":30046,"Ġreminding":30047,"ĠAdministrative":30048,"hesda":30049,"Ġflashed":30050,"ĠPBS":30051,"perate":30052,"feature":30053,"Ġswipe":30054,"Ġgraves":30055,"oultry":30056,"261":30057,"breaks":30058,"ĠGuer":30059,"Ġshrimp":30060,"ĠVoting":30061,"quist":30062,"Ġanalytical":30063,"Ġtablespoons":30064,"ĠSOU":30065,"Ġresearched":30066,"Ġdisrupted":30067,"Ġjour":30068,"Ġreplica":30069,"Ġcartoons":30070,"bians":30071,"})":30072,"copy":30073,"Got":30074,"ouched":30075,"PUT":30076,"Ġswarm":30077,"notations":30078,"said":30079,"Ġrebuilt":30080,"Ġcollaborate":30081,"Ġraging":30082,"Ġnar":30083,"Ġdemographics":30084,"ĠDDR":30085,"Ġdistrust":30086,"ossier":30087,"ĠKro":30088,"Ġpumpkin":30089,"Ġregrets":30090,"Ġfatalities":30091,"ĠLens":30092,"ĠOle":30093,"pd":30094,"Ġpuppet":30095,"ĠOutlook":30096,"ĠStam":30097,"Ol":30098,"Fair":30099,"UU":30100,"Ġrewritten":30101,"ı":30102,"Ġfascinated":30103,"Ġvectors":30104,"Ġtribunal":30105,"uay":30106,"ĠMats":30107,"ĠCoins":30108,"[[":30109,"Ġ181":30110,"Ġrenders":30111,"ĠKaepernick":30112,"Ġespionage":30113,"Ġsumm":30114,"Ġditch":30115,"Account":30116,"Ġspreadsheet":30117,"Ġmutant":30118,"past":30119,"407":30120,"Ġdye":30121,"Ġinitiation":30122,"Ġ4000":30123,"Ġpunishable":30124,"Ġthinner":30125,"ĠKhal":30126,"Ġintermedi":30127,"Dun":30128,"ĠGotham":30129,"Ġeagerly":30130,"Ġvaginal":30131,"powers":30132,"VW":30133,"ĠWATCHED":30134,"Ġpredator":30135,"amsung":30136,"Ġdisparity":30137,"Ġ[*":30138,"Ġamph":30139,"Ġoutskirts":30140,"ĠSpirits":30141,"Ġskeletal":30142,"л":30143,"ĠRear":30144,"Ġissuance":30145,"ĠLogic":30146,"released":30147,"ZZ":30148,"ĠBound":30149,"Entry":30150,"Ġexits":30151,"isol":30152,"ĠFounder":30153,"Ġwre":30154,"ĠGreenland":30155,"ĠMMO":30156,"taker":30157,"INC":30158,"ãģ¾":30159,"Ġhourly":30160,"henko":30161,"Ġfantasies":30162,"Ġdisob":30163,"Ġdemolition":30164,"ãĥĭ":30165,"Ġenlisted":30166,"ratulations":30167,"Ġmisguided":30168,"Ġensured":30169,"Ġdiscouraged":30170,"mort":30171,"Ġflank":30172,"Ġcess":30173,"Ġreacts":30174,"ĠSere":30175,"sensitive":30176,"ĠSerpent":30177,"assad":30178,"Ġ247":30179,"Ġcalmly":30180,"busters":30181,"Ġbleed":30182,"ĠStro":30183,"Ġamusement":30184,"ĠAntarctica":30185,"Ġscept":30186,"ĠGaw":30187,"aq":30188,"asonic":30189,"Ġsprawling":30190,"native":30191,"aturated":30192,"ĠBattlefield":30193,"IVERS":30194,"EB":30195,"ĠGems":30196,"ĠNorthwestern":30197,"ĠFilms":30198,"ĠAutomatic":30199,"Ġapprehend":30200,"ãģ¨":30201,"ĠguiName":30202,"Ġbackend":30203,"Ġevidenced":30204,"geant":30205,"012":30206,"ĠSiege":30207,"ĠexternalTo":30208,"ĠunfocusedRange":30209,"ĠguiActiveUnfocused":30210,"ĠguiIcon":30211,"ĠexternalToEVA":30212,"ĠexternalToEVAOnly":30213,"Fri":30214,"chard":30215,"enaries":30216,"Ġchiefs":30217,"Ġcf":30218,"ĠHUD":30219,"Ġcorrobor":30220,"ĠdB":30221,"ĠTaken":30222,"ĠPatricia":30223,"rail":30224,"ĠCharm":30225,"ĠLibertarian":30226,"rieve":30227,"Personal":30228,"ĠOUR":30229,"geries":30230,"Ġdumping":30231,"Ġneurological":30232,"itimate":30233,"ĠClintons":30234,"rafted":30235,"ĠMolly":30236,"Ġterminals":30237,"register":30238,"Ġflare":30239,"Ġencoded":30240,"Ġautopsy":30241,"pel":30242,"machine":30243,"Ġexemptions":30244,"ĠRoyals":30245,"distance":30246,"Ġdrafts":30247,"Ġlame":30248,"ĠCunning":30249,"Ġspouses":30250,"ĠMarkets":30251,"ĠCarrier":30252,"Ġimplying":30253,"ĠYak":30254,"sid":30255,"Ġloser":30256,"Ġvigilant":30257,"Ġimpeachment":30258,"Ġaugmented":30259,"ĠEmployees":30260,"Ġunintended":30261,"ternally":30262,"ĠWatt":30263,"Ġrecognizable":30264,"essim":30265,"æĿ":30266,"Ġcoated":30267,"rha":30268,"Ġlieutenant":30269,"ĠLegislation":30270,"published":30271,"444":30272,"013":30273,"Ġideally":30274,"ĠPassword":30275,"Ġsimplify":30276,"ĠMeta":30277,"ĠMRI":30278,"Ġpleading":30279,"organized":30280,"handler":30281,"Ġunravel":30282,"correct":30283,"Ġicy":30284,"Ġparanoid":30285,"Ġpasser":30286,"Ġinspections":30287,"ofer":30288,"ĠHealthcare":30289,"283":30290,"ĠBrut":30291,"iola":30292,"forge":30293,"ĠMedieval":30294,"MSN":30295,"ievers":30296,"ĠProgramming":30297,"åī":30298,"Ġ223":30299,"mu":30300,"ĠCLE":30301,"uga":30302,"Ġshoppers":30303,"Ġinformative":30304,"ĠPlans":30305,"Ġsupplementation":30306,"ĠTests":30307,"tyard":30308,"ocytes":30309,"ĠVega":30310,"ĠGujarat":30311,"ermanent":30312,"Except":30313,"ĠLOT":30314,"alla":30315,"ĠCumm":30316,"ĠOsw":30317,"Ġvenom":30318,"ĠDebt":30319,"ĠDOWN":30320,"Ġreunion":30321,"Ġmuc":30322,"ĠRelief":30323,"Ġgeop":30324,"ĠðŁĺ":30325,"alogue":30326,"Anth":30327,"echo":30328,"Ġcorros":30329,"Ġreplication":30330,"ĠBlazing":30331,"ĠDaughter":30332,"Ġinflic":30333,"ĠLindsey":30334,"ÙĪ":30335,"284":30336,"Exit":30337,"Ġgloom":30338,"TAIN":30339,"Ġundermining":30340,"Ġadvising":30341,"hidden":30342,"Ġoverflow":30343,"Ġgor":30344,"urdue":30345,"Ġechoes":30346,"enhagen":30347,"Ġimpuls":30348,"drug":30349,"cash":30350,"Ġasync":30351,"Ġmirac":30352,"atts":30353,"punk":30354,"Ġpivot":30355,"ĠLegislative":30356,"Ġbloggers":30357,"ĠClaw":30358,"sburg":30359,"dyl":30360,"ĠRecommend":30361,"Ġverte":30362,"Ġprohibiting":30363,"ĠPanther":30364,"Jonathan":30365,"Ġomin":30366,"Ġhateful":30367,"281":30368,"ĠOrche":30369,"ĠMurdoch":30370,"downs":30371,"Ġasymm":30372,"GER":30373,"Always":30374,"Ġinforms":30375,"ĠWM":30376,"ĠPony":30377,"ĠAppendix":30378,"ĠArlington":30379,"Jam":30380,"Ġmedicinal":30381,"ĠSlam":30382,"ITIES":30383,"Ġreaff":30384,"ĠRi":30385,"FG":30386,"Spring":30387,"bool":30388,"Ġthighs":30389,"Ġmarkings":30390,"ĠRaqqa":30391,"ĠLak":30392,"poll":30393,"tsky":30394,"ĠMorty":30395,"ĠDefinition":30396,"Ġdebunk":30397,"endered":30398,"ĠLeone":30399,"avers":30400,"Ġmortgages":30401,"Apparently":30402,"Nic":30403,"haus":30404,"ĠThousands":30405,"auld":30406,"Ġmash":30407,"shoot":30408,"Ġdiarr":30409,"Ġconsciously":30410,"Hero":30411,"eas":30412,"ĠNaturally":30413,"ĠDestroyer":30414,"Ġdashboard":30415,"services":30416,"Rog":30417,"Ġmillennials":30418,"Ġinvade":30419,"-(":30420,"Ġcommissions":30421,"ĠAuckland":30422,"Ġbroadcasts":30423,"Ġfrontal":30424,"Ġcrank":30425,"ĠHistoric":30426,"Ġrumours":30427,"CTV":30428,"Ġsteril":30429,"Ġbooster":30430,"rocket":30431,"ãĤ¼":30432,"utsche":30433,"ĠPI":30434,"Ġ233":30435,"ĠProducer":30436,"ĠAnalytics":30437,"Ġinvaluable":30438,"Ġunintention":30439,"ĠCY":30440,"Ġscrutin":30441,"Ġgigg":30442,"Ġengulf":30443,"Ġproletariat":30444,"Ġhacks":30445,"ĠHew":30446,"arak":30447,"ĠSlime":30448,"ielding":30449,"agher":30450,"ĠElliot":30451,"Ġtelecom":30452,"Ġ219":30453,"ultan":30454,"ĠArbor":30455,"ĠScouts":30456,"Ban":30457,"Ġlifespan":30458,"Ġblasp":30459,"388":30460,"Ġjudiciary":30461,"ĠContinental":30462,"asking":30463,"McC":30464,"LED":30465,"Ġbaggage":30466,"ĠSorcerer":30467,"Ġremnants":30468,"ĠGriffith":30469,"etsu":30470,"ĠSubaru":30471,"ĠPersonality":30472,"designed":30473,"ushima":30474,"agnar":30475,"Ġrecoil":30476,"Ġpassions":30477,"\\\":":30478,"Ġtee":30479,"Ġabolition":30480,"ĠCreating":30481,"jac":30482,"Ġ194":30483,"019":30484,"Ġpillars":30485,"riched":30486,"/\"":30487,"tk":30488,"Ġlivelihood":30489,"Ġroasted":30490,"ahon":30491,"ĠHutch":30492,"assert":30493,"Ġdividend":30494,"Ġknit":30495,"Ġdaunting":30496,"Ġdisturbance":30497,"Ġshale":30498,"Ġcultivated":30499,"Ġrefrigerator":30500,"LB":30501,"ĠNET":30502,"Ġcommercials":30503,"Ġthinkers":30504,"455":30505,"Ġchop":30506,"Broad":30507,"Ġsuspicions":30508,"Ġtagged":30509,"lifting":30510,"Ġstylish":30511,"ĠShields":30512,"Shortly":30513,"Ġtails":30514,"Auth":30515,"STE":30516,"ĠGAME":30517,"Ġseism":30518,"ĠKis":30519,"ologne":30520,"Ġcowork":30521,"Ġforcibly":30522,"Ġthyroid":30523,"ĠPB":30524,"ANE":30525,"married":30526,"horse":30527,"Ġpolymer":30528,"ĠChal":30529,"odor":30530,"DEBUG":30531,"ĠContext":30532,"Ġbliss":30533,"Ġpinpoint":30534,"ĠMathemat":30535,"legram":30536,"ĠWeekend":30537,"Ġlabelled":30538,"Ġbart":30539,"itles":30540,"Ġestrogen":30541,"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ":30542,"\"'":30543,"Ġvisibly":30544,"Ġoutsider":30545,"aida":30546,"Area":30547,"Ġdissemin":30548,"Ġdishonest":30549,"ĠClosed":30550,"ĠBulletin":30551,"ĠRamsey":30552,"sword":30553,"ĠXI":30554,"ourced":30555,"Same":30556,"346":30557,"ĠRepe":30558,"ĠKou":30559,"cake":30560,"emis":30561,"Cache":30562,"ĠMeaning":30563,"ĠEnlight":30564,"onomy":30565,"Ġmanifestation":30566,"sworth":30567,"Jay":30568,"Ġchore":30569,"ör":30570,"Dream":30571,"Ġsanctioned":30572,"Ġculturally":30573,"ĠAra":30574,"Nav":30575,"Ġtheological":30576,"Ġstrut":30577,"ĠVO":30578,"ĠHandbook":30579,"Ġconstructing":30580,"Ġ¶":30581,"ĠBenefits":30582,"ĠPsychological":30583,"sac":30584,"å¸":30585,"policy":30586,"ĠMatters":30587,"ĠReported":30588,"ĠByte":30589,"Ġvitro":30590,"ĠMaiden":30591,"Ġlam":30592,"ĠJennings":30593,"Ġgarment":30594,"ĠRutgers":30595,"ĠStafford":30596,"ĠWellington":30597,"Ġintermitt":30598,"Ġnpm":30599,"Ġordeal":30600,"Ġplugged":30601,"ooming":30602,"inished":30603,"framework":30604,"Ġtimber":30605,"Ġcass":30606,"Ġ850":30607,"iless":30608,"ĠRedux":30609,"768":30610,"Stre":30611,"Ġsurpassed":30612,"whel":30613,"Ġparallels":30614,"Ġveil":30615,"ĠGI":30616,"ĠREST":30617,"Ġreadiness":30618,"sort":30619,"Ġmodifying":30620,"ĠSlate":30621,"ruff":30622,"Ġmarble":30623,"Ġinfrared":30624,"Ġauditor":30625,"ĠFANTASY":30626,"ĠPoverty":30627,"ĠSPD":30628,"Ġ\"(":30629,"Ky":30630,"RAY":30631,"Ġexecutions":30632,"ĠBeverly":30633,"ĠMarxism":30634,"ĠBurst":30635,"ĠKali":30636,"estones":30637,"Clearly":30638,"Ell":30639,"ãģ§":30640,"ĠProceedings":30641,"Token":30642,"IFIC":30643,"ña":30644,"Central":30645,"ĠHaley":30646,"ĠDrama":30647,"Ġformations":30648,"ORN":30649,"Books":30650,"Ġdominating":30651,"ĠFlyers":30652,"ĠCompanion":30653,"Ġdisciplined":30654,"ĠYugoslav":30655,"ĠSpells":30656,"Ġvengeance":30657,"Ġlandlords":30658,"Len":30659,"ĠOgre":30660,"anoia":30661,"Ġpiercing":30662,"Ġcongreg":30663,"Ġscorer":30664,"obia":30665,"Ġnickel":30666,"ĠLearns":30667,"Ġrejo":30668,"Ġmasterpiece":30669,"Flash":30670,"Ġinhabited":30671,"ĠOpenGL":30672,"ĠDud":30673,"ĠICO":30674,"Ġarter":30675,"Ġplur":30676,"Ġmastery":30677,"Ġlongstanding":30678,"sted":30679,"Ġwines":30680,"Ġtelevised":30681,"ĠShrine":30682,"ĠBayern":30683,"Ġâĵĺ":30684,"Ġenclosure":30685,"john":30686,"Ġprophets":30687,"ĠResurrection":30688,"ĠOrders":30689,"Ġuneven":30690,"rals":30691,"Ġdwind":30692,"ĠLah":30693,"ĠSloven":30694,"378":30695,"Ġinsistence":30696,"affle":30697,"ĠClone":30698,"Ġhardship":30699,"ĠCongressman":30700,"Ġplead":30701,"Ġreviewers":30702,"Ġcured":30703,"Ġ1935":30704,"asley":30705,"fake":30706,"ĠThinking":30707,"ydia":30708,"PART":30709,"ĠDota":30710,"oit":30711,"Ġwhipped":30712,"Ġbouncing":30713,"ĠHispanics":30714,"comings":30715,"Ġcannabin":30716,"ĠChambers":30717,"ĠZack":30718,"Optional":30719,"Ġcoats":30720,"Ġprowess":30721,"ĠNorton":30722,"Ġplainly":30723,"Ġfreight":30724,"Ġinhibition":30725,"Ġclam":30726,"Ġ303":30727,"kef":30728,"aleigh":30729,"Luke":30730,"Ġpsycho":30731,"atorium":30732,"MED":30733,"Ġtreaties":30734,"Ġindisc":30735,"Ġdc":30736,"OPS":30737,"Ġresilient":30738,"ĠInterstate":30739,"Ġslack":30740,"Ġmundane":30741,"Ġestablishes":30742,"359":30743,"Ġstrained":30744,"Ġnond":30745,"Sus":30746,"Ġcaste":30747,"arate":30748,"ieving":30749,"Ġunfairly":30750,"Ġparser":30751,"onial":30752,"ursive":30753,"Via":30754,"ĠOtto":30755,"ĠAuthorities":30756,"stroke":30757,"KR":30758,"ĠMercy":30759,"Ġfurnished":30760,"Ġoutset":30761,"Ġmetic":30762,"1982":30763,"olithic":30764,"ĠTent":30765,"ogical":30766,"ĠAircraft":30767,"Ġhides":30768,"ĠBecame":30769,"Ġeducators":30770,"reaching":30771,"Ġvolatility":30772,"Ġtoddler":30773,"ĠNASCAR":30774,"ĠTwelve":30775,"ĠHighlights":30776,"Ġgrape":30777,"Ġsplits":30778,"Ġpeasant":30779,"Ġreneg":30780,"ĠMSI":30781,"Temp":30782,"stars":30783,"Ġtrek":30784,"ĠHyde":30785,"binding":30786,"Ġrealism":30787,"Ġoxide":30788,"ĠHos":30789,"Ġmounts":30790,"Ġbiting":30791,"Ġcollapsing":30792,"Ġpostal":30793,"Ġmuseums":30794,"Ġdetached":30795,"Ġrespecting":30796,"Ġmonopol":30797,"Ġworkflow":30798,"ĠCake":30799,"Template":30800,"ĠOrganisation":30801,"Ġpersistence":30802,"369":30803,"Coming":30804,"Brad":30805,"Ġredundant":30806,"ĠGTA":30807,"Ġbending":30808,"Ġrevoked":30809,"Ġoffending":30810,"Ġframing":30811,"Ġprintf":30812,"Commun":30813,"members":30814,"Outside":30815,"Ġconstrued":30816,"Ġcoded":30817,"FORE":30818,"Ġchast":30819,"Chat":30820,"Indian":30821,"ĠYard":30822,"?!\"":30823,"ĠPorts":30824,"ĠXavier":30825,"ĠRET":30826,"'.\"":30827,"ĠBoat":30828,"ivated":30829,"icht":30830,"umerable":30831,"Ds":30832,"ĠDunn":30833,"Ġcoffin":30834,"Ġsecurely":30835,"ĠRaptors":30836,"ĠBes":30837,"Installation":30838,"Ġinception":30839,"ĠHealthy":30840,"endants":30841,"Ġpsychologists":30842,"ĠSheikh":30843,"cultural":30844,"ĠBlackBerry":30845,"shift":30846,"Fred":30847,"oche":30848,"Ġcakes":30849,"ĠSEO":30850,"ĠGian":30851,"ĠAsians":30852,"ogging":30853,"element":30854,"Ġpundits":30855,"ĠVaugh":30856,"ĠGavin":30857,"Ġhitter":30858,"Ġdrowned":30859,"Ġchalk":30860,"ĠZika":30861,"Ġmeasles":30862,"802":30863,"â̦..":30864,"ĠAWS":30865,"]\"":30866,"Ġdistort":30867,"ĠMast":30868,"Ġantibodies":30869,"ĠMash":30870,"Memory":30871,"ĠUganda":30872,"ĠProb":30873,"Ġvomiting":30874,"ĠTurns":30875,"Ġoccupying":30876,"Ġevasion":30877,"ĠTherapy":30878,"Ġpromo":30879,"Ġelectr":30880,"Ġblueprint":30881,"ĠDre":30882,"priced":30883,"ĠDepot":30884,"Ġalleviate":30885,"ĠSomali":30886,"marg":30887,"nine":30888,"Ġnostalgia":30889,"ĠShepherd":30890,"Ġcavalry":30891,"Ġtorped":30892,"ĠBloody":30893,"xb":30894,"Ġsank":30895,"Ġgoalt":30896,"reportprint":30897,"embedreportprint":30898,"cloneembedreportprint":30899,"ĠInitially":30900,"ĠFischer":30901,"Ġnoteworthy":30902,"cern":30903,"Ġinefficient":30904,"rawdownload":30905,"rawdownloadcloneembedreportprint":30906,"cation":30907,"ĠDynasty":30908,"lag":30909,"DES":30910,"Ġdistinctly":30911,"ĠEstonia":30912,"Ġopenness":30913,"Ġgossip":30914,"ruck":30915,"Width":30916,"ĠIbrahim":30917,"Ġpetroleum":30918,"Ġavatar":30919,"ĠHed":30920,"atha":30921,"ĠHogwarts":30922,"Ġcaves":30923,"678":30924,"Ġsafeguard":30925,"ĠMog":30926,"isson":30927,"ĠDurham":30928,"slaught":30929,"ĠGraduate":30930,"Ġsubconscious":30931,"ĠExcellent":30932,"ĠDum":30933,"-----":30934,"Ġpiles":30935,"ĠWORK":30936,"ĠGarn":30937,"ĠFol":30938,"ĠATM":30939,"Ġavoids":30940,"ĠTul":30941,"Ġbleak":30942,"ELY":30943,"ivist":30944,"lightly":30945,"Pers":30946,"ĠDob":30947,"ĠLS":30948,"Ġinsanity":30949,"ε":30950,"atalie":30951,"Enlarge":30952,"Ġtwists":30953,"Ġfaulty":30954,"Ġpiracy":30955,"Ġimpover":30956,"Ġrugged":30957,"ĠFashion":30958,"Ġsands":30959,"'?":30960,"swick":30961,"Ġnatives":30962,"Ġhen":30963,"ĠNoise":30964,"ãĥĹ":30965,"Ġgreens":30966,"Ġfreezer":30967,"Ġdynasty":30968,"ĠFathers":30969,"ĠNewark":30970,"Ġarchaeological":30971,"Ġot":30972,"obar":30973,"Ġblockade":30974,"Ġallerg":30975,"LV":30976,"Ġdebit":30977,"ĠRFC":30978,"ĠMilton":30979,"ĠPressure":30980,"Ġwillingly":30981,"Ġdisproportionate":30982,"Ġoppressive":30983,"Ġdiamonds":30984,"Ġbelongings":30985,"1970":30986,"Ġbells":30987,"Ġimperialism":30988,"Ġ227":30989,"Ġexploding":30990,"ĠEclipse":30991,"Ġ1919":30992,"Ġrant":30993,"Ġnominations":30994,"347":30995,"Ġpeacefully":30996,"rica":30997,"ĠFUCK":30998,"Ġvibration":30999,"malink":31000,"Ġropes":31001,"ĠIvanka":31002,"ĠBrewery":31003,"ĠBooker":31004,"ĠOwens":31005,"goers":31006,"Services":31007,"ĠSnape":31008,"Ġ191":31009,"395":31010,"Ġ299":31011,"justice":31012,"Ġbri":31013,"Ġdiscs":31014,"Ġprominently":31015,"Ġvulgar":31016,"Ġskipping":31017,"lves":31018,"Ġtsunami":31019,"374":31020,"ĠUrug":31021,"ĠEid":31022,"recated":31023,"phen":31024,"Ġfaults":31025,"ĠStarted":31026,"950":31027,"Ġpi":31028,"Ġdetector":31029,"Ġbastard":31030,"Ġvalidated":31031,"SpaceEngineers":31032,"OURCE":31033,"Ġ(~":31034,"Ġunsur":31035,"Ġaffirmed":31036,"Ġfascism":31037,"Ġresolving":31038,"ĠChavez":31039,"ĠCyn":31040,"Ġdetract":31041,"Lost":31042,"Ġrigged":31043,"Ġhomage":31044,"ĠBruno":31045,"555":31046,"eca":31047,"Ġpresses":31048,"Ġhumour":31049,"Ġspacing":31050,"Ġ'/":31051,"olkien":31052,"Coun":31053,"OPER":31054,"Tre":31055,"Son":31056,"ĠCambodia":31057,"ierre":31058,"mong":31059,"ozy":31060,"Ġliquidity":31061,"ĠSoviets":31062,"ĠFernando":31063,"Ġ229":31064,"Ġslug":31065,"ĠCatalan":31066,"electric":31067,"Ġscenery":31068,"ĠHearth":31069,"Ġconstrained":31070,"Ġgoalie":31071,"ĠGuidelines":31072,"ĠAmmo":31073,"ĠPearson":31074,"Ġtaxed":31075,"Ġfetus":31076,"Response":31077,"ĠAlexis":31078,"thia":31079,"Guy":31080,"Ġreconstruct":31081,"Ġextremes":31082,"Ġconcluding":31083,"ĠPeg":31084,"ooks":31085,"Ġdeductions":31086,"Rose":31087,"Ġgroundbreaking":31088,"ĠTarg":31089,"ãĥģ":31090,"ĠReve":31091,"resource":31092,"Ġmoons":31093,"Ġelectromagnetic":31094,"Ġamidst":31095,"ĠViktor":31096,"NESS":31097,"BACK":31098,"Ġcommute":31099,"ĠAnaheim":31100,"Ġfluctuations":31101,"640":31102,"Ġnoodles":31103,"ĠCopenhagen":31104,"ĠTide":31105,"ĠGrizz":31106,"ĠSEE":31107,"Ġpipelines":31108,"Ġscars":31109,"endo":31110,"agus":31111,"ĠETF":31112,"/#":31113,"ĠBecome":31114,"448":31115,"Ġvisc":31116,"ĠRecommended":31117,"Ġjumper":31118,"Ġcognition":31119,"Ġassassin":31120,"Ġwitnessing":31121,"ĠSetup":31122,"Ġlac":31123,"vim":31124,"ISM":31125,"pages":31126,"SSL":31127,"358":31128,"Ġadject":31129,"industrial":31130,"lore":31131,"chery":31132,"Ġglitter":31133,"Ġcalf":31134,"Florida":31135,"Ġspoilers":31136,"Ġsucceeds":31137,"Ġchanting":31138,"Ġslogans":31139,"ĠTracy":31140,"Visit":31141,"rology":31142,"Ġmornings":31143,"Ġlineage":31144,"Ġsip":31145,"Ġintensely":31146,"Ġflourish":31147,"ĠSleeping":31148,"ĠFem":31149,"orpor":31150,"ĠKlan":31151,"ĠDarth":31152,"hack":31153,"ĠNielsen":31154,"Ġtumors":31155,"Ġprocurement":31156,"ĠYorkshire":31157,"Ġraided":31158,"KY":31159,"Anna":31160,"Ġ//[":31161,"ĠDisorder":31162,"ĠMustang":31163,"ĠWen":31164,"ĠTrying":31165,"sq":31166,"Ġdeliveries":31167,"Ġshutter":31168,"Ġcerebral":31169,"Ġbipolar":31170,"ĠCN":31171,"lass":31172,"jet":31173,"Ġdebating":31174,">:":31175,"Ġeagle":31176,"grades":31177,"ĠDixon":31178,"UGC":31179,"MAS":31180,"ĠDraco":31181,"ĠMachines":31182,"affer":31183,"Ġeman":31184,"²":31185,"pron":31186,"ĠGym":31187,"Ġcomparatively":31188,"ĠTribunal":31189,"PRO":31190,"Ġlex":31191,"Ġfertile":31192,"Ġdepressing":31193,"Ġsuperficial":31194,"essential":31195,"ĠHunters":31196,"gp":31197,"Ġprominence":31198,"Liber":31199,"ĠAncest":31200,"otechnology":31201,"Ġmocking":31202,"ĠTraff":31203,"ĸļ":31204,"Medium":31205,"Iraq":31206,"Ġpsychiatrist":31207,"Quantity":31208,"ĠLect":31209,"Ġnoisy":31210,"520":31211,"GY":31212,"Ġslapped":31213,"ĠMTV":31214,"Ġpara":31215,"pull":31216,"Multiple":31217,"asher":31218,"Ġnour":31219,"ĠSeg":31220,"Spell":31221,"vous":31222,"ordial":31223,"Senior":31224,"ĠGoldberg":31225,"ĠPlasma":31226,"need":31227,"Ġmessenger":31228,"eret":31229,"Ġteamed":31230,"Ġliteracy":31231,"ĠLeah":31232,"ĠDoyle":31233,"Ġemitted":31234,"UX":31235,"Ġevade":31236,"Ġmaze":31237,"Ġwrongly":31238,"ĠLars":31239,"Ġstereotype":31240,"Ġpledges":31241,"Ġaroma":31242,"ĠMET":31243,"Ġacre":31244,"ĠOD":31245,"Ġff":31246,"Ġbreweries":31247,"ĠHilton":31248,"undle":31249,"ĠKak":31250,"ĠThankfully":31251,"ĠCanucks":31252,"inctions":31253,"ĠAppears":31254,"Ġcoer":31255,"Ġundermined":31256,"rovers":31257,"Andre":31258,"Ġblaze":31259,"umers":31260,"Ġfamine":31261,"amphetamine":31262,"ulkan":31263,"Amount":31264,"Ġdesperation":31265,"wikipedia":31266,"development":31267,"ĠCorinth":31268,"ussia":31269,"Jackson":31270,"LI":31271,"Native":31272,"Rs":31273,"Ohio":31274,"ĠKathleen":31275,"Fortunately":31276,"Ġattendant":31277,"ĠPreferred":31278,"ĠDidn":31279,"ĠVs":31280,"Mis":31281,"Ġrespondent":31282,"Ġboun":31283,"stable":31284,"Ġpaved":31285,"Ġunexpl":31286,"ĠCheney":31287,"LM":31288,"ĠCull":31289,"blown":31290,"Ġconfronting":31291,"ocese":31292,"serving":31293,"Wi":31294,"ĠLithuania":31295,"anni":31296,"Ġstalk":31297,"hd":31298,"Ġvener":31299,"APH":31300,"ynchronous":31301,"URR":31302,"umably":31303,"historic":31304,"Half":31305,"Hay":31306,"Ġresilience":31307,"spection":31308,"Ġabandoning":31309,"Obs":31310,"ĠDebbie":31311,"Ġgradient":31312,"ĠPlaint":31313,"ĠCanal":31314,"ARCH":31315,"Ġexpansive":31316,"Ġfung":31317,"Ġbounced":31318,"Und":31319,"Ġprecautions":31320,"Ġclarification":31321,"Ġdagger":31322,"Ġgrips":31323,"Ġµ":31324,"ĠRivera":31325,"ĠUndead":31326,"isites":31327,"ĠFIRST":31328,"ño":31329,"audi":31330,"Ġhostages":31331,"Ġcompliant":31332,"Ġalumni":31333,"Seven":31334,"Ġcybersecurity":31335,"either":31336,"Collect":31337,"Ġinvariably":31338,"ĠSoci":31339,"Ġlawmaker":31340,"Ġale":31341,"ĠPersonally":31342,"Nazi":31343,"Ġcustomization":31344,"ĠProc":31345,"ĠSaskatchewan":31346,"eaturing":31347,"Ġspared":31348,"Ġdiscontinued":31349,"Ġcomputational":31350,"ĠMotorola":31351,"Ġsupremacist":31352,"governmental":31353,"Ġparadise":31354,"ĠDowning":31355,"ĠNikon":31356,"Ġcatalyst":31357,"berra":31358,"Toronto":31359,"875":31360,"beta":31361,"ĠMacron":31362,"Ġunrealistic":31363,"vector":31364,"ĠVehicles":31365,"itiveness":31366,"ĠRV":31367,"ĠColbert":31368,"sin":31369,"oji":31370,"entin":31371,"ĠKrish":31372,"hello":31373,"ffield":31374,"oky":31375,"ĠTate":31376,"Ġmaple":31377,"Ġaids":31378,"chemical":31379,"334":31380,"nuts":31381,"ĠWarp":31382,"Ġxx":31383,"ĠRobb":31384,"umerous":31385,"_-_":31386,"ftime":31387,"ĠVW":31388,"Ġwinger":31389,"ĠDome":31390,"tools":31391,"ĠPV":31392,"ĠGeorgetown":31393,"Ġgeared":31394,"Ġjihadists":31395,"Ġcp":31396,"Ġsteroids":31397,"Mother":31398,"clerosis":31399,"ĠDRM":31400,"nesia":31401,"Ġlinger":31402,"Ġimmersive":31403,"ĠCOUN":31404,"Ġoutweigh":31405,"ensual":31406,"Band":31407,"Ġtransforms":31408,"matched":31409,"psons":31410,"ĠJudicial":31411,"factor":31412,"Ġreferral":31413,"Ġoddly":31414,"ĠWenger":31415,"Bring":31416,"ĠBows":31417,"602":31418,"ICLE":31419,"Ġlions":31420,"ĠAcademic":31421,"ĠThorn":31422,"ĠRaider":31423,"kefeller":31424,"Storage":31425,"Lower":31426,"ĠOrt":31427,"ĠEquality":31428,"ALT":31429,"ĠSOC":31430,"Types":31431,"Ġlyn":31432,"ĠAsset":31433,"coat":31434,"TPP":31435,"CVE":31436,"ĠPioneer":31437,"application":31438,"Modern":31439,"ĠHK":31440,"Environment":31441,"Alright":31442,"Rain":31443,"IPP":31444,"ĠShiite":31445,"Ġmound":31446,"ĠAbilities":31447,"condition":31448,"Staff":31449,"Ġcompetence":31450,"ĠMoor":31451,"ĠDiablo":31452,"Ġwithheld":31453,"Ġostensibly":31454,"ĠBrom":31455,"Ġmsg":31456,"Ġdenomin":31457,"ĠReferences":31458,"ĠFP":31459,"Ġplunged":31460,"Ġpamph":31461,"moving":31462,"central":31463,"Ġdownright":31464,"Ġfading":31465,"Tal":31466,"Typ":31467,"ĠThy":31468,"ukes":31469,"ithe":31470,"Ġove":31471,"Ġbattled":31472,"Ġseafood":31473,"Ġfigur":31474,"ĠRD":31475,"crop":31476,"Ġsquads":31477,"{\\":31478,"à¹":31479,"ĠEh":31480,"Ġinterviewing":31481,"ĠQin":31482,"Ġaspiring":31483,"PLIC":31484,"Ġclauses":31485,"ĠGast":31486,"ĠNir":31487,"Ġluggage":31488,"Ġhose":31489,"Ġsystemd":31490,"Ġdescending":31491,"ĠRevised":31492,"ĠRails":31493,"align":31494,"709":31495,"337":31496,"Ġfug":31497,"charging":31498,"tags":31499,"Ġuter":31500,"kish":31501,"WARNING":31502,"490":31503,"profits":31504,"Ġvoyage":31505,"Ġace":31506,"ĠVanguard":31507,"ĠTanks":31508,"ĠMuk":31509,"Ġ226":31510,"Safe":31511,"Armor":31512,"Ġvolcanic":31513,"Ġwomb":31514,"ĠMIL":31515,"Ġbeginner":31516,"ĠRecogn":31517,"ĠAAP":31518,"PLAY":31519,")!":31520,"Ġdetecting":31521,"cn":31522,"Ġbreaches":31523,"Basically":31524,"ĠPag":31525,"ĠMunicipal":31526,"ĠIndie":31527,"ĠLaf":31528,"ĠDisable":31529,"ĠOlson":31530,"Ġrestrained":31531,"Ġrulings":31532,"Ġhumane":31533,"events":31534,"ĠCinema":31535,"displayText":31536,"ĠHatch":31537,"actionDate":31538,"onnaissance":31539,"Ġassaulting":31540,"ĠLug":31541,"CHAT":31542,"Ġvigorous":31543,"ĠPerse":31544,"Ġintolerance":31545,"ĠSnapchat":31546,"ĠSharks":31547,"Ġdummy":31548,"ĠDiagn":31549,"ĠGuitar":31550,"imeters":31551,"403":31552,"REG":31553,"Ax":31554,"Ġseparates":31555,"ĠMahm":31556,"Ġtv":31557,"jah":31558,"OOL":31559,"Circ":31560,"ĠWindsor":31561,"ussian":31562,"Ġintuition":31563,"Ġdisdain":31564,"ĠDonovan":31565,"Ġ221":31566,"Emb":31567,"Ġcondemning":31568,"Ġgenerosity":31569,"zzy":31570,"Ġpanties":31571,"ĠPrevent":31572,"ActionCode":31573,"ANA":31574,"342":31575,"externalActionCode":31576,"Ġspecifying":31577,"Ġcrystall":31578,"Jere":31579,"Ġrupt":31580,"ĠApprentice":31581,"Ġprofiling":31582,"к":31583,"Strike":31584,"Ġsideline":31585,"Ġobligated":31586,"Ġoccult":31587,"Ġbureaucratic":31588,"antically":31589,"rupted":31590,"negative":31591,"ĠEthiopia":31592,"ĠCivic":31593,"Ġinsiders":31594,"eligible":31595,"ĠTVs":31596,"ĠBAR":31597,"ĠTI":31598,"iologist":31599,"ĠAIR":31600,"Ġsubstituted":31601,"Arab":31602,"ĠSaul":31603,"ĠYog":31604,"prem":31605,"Ġbuilders":31606,"Ġstationary":31607,"Ġdoubtful":31608,"Ġvigorously":31609,"Ġthrilling":31610,"Physical":31611,"ĠCarey":31612,"ĠHydra":31613,"geoning":31614,"ĠSly":31615,"yton":31616,"Ġborrowers":31617,"ĠParkinson":31618,"Ġë":31619,"ĠJamaica":31620,"Ġsatir":31621,"Ġinsurgents":31622,"ĠFirm":31623,"Ġisot":31624,"ĠKarn":31625,"ourning":31626,"akens":31627,"docs":31628,"little":31629,"ĠMonaco":31630,"CLASS":31631,"Turkey":31632,"Ly":31633,"ĠConan":31634,"assic":31635,"Ġstarred":31636,"ĠPacers":31637,"eties":31638,"Ġtipping":31639,"Moon":31640,"ĠRw":31641,"same":31642,"Ġcavity":31643,"Ġgoof":31644,"ĠZo":31645,"Shock":31646,"ummer":31647,"Ġemphasizes":31648,"Ġregrett":31649,"Ġnovelty":31650,"Ġenvy":31651,"ĠPassive":31652,"rw":31653,"505":31654,"Ġindifferent":31655,"ĠRica":31656,"ĠHimself":31657,"ĠFreddie":31658,"Ġadip":31659,"ä¸Ģ":31660,"Ġbreakout":31661,"Ġhurried":31662,"ĠHuang":31663,"ĠDisk":31664,"Ġroaming":31665,"?????-?????-":31666,"UV":31667,"ĠRicky":31668,"ĠSigma":31669,"Ġmarginalized":31670,"Ġedits":31671,"Ġ304":31672,"memory":31673,"Ġspecimen":31674,"293":31675,"ãģ¯":31676,"Ġvertically":31677,"Ġaudition":31678,"ĠHeck":31679,"Ġcaster":31680,"ĠHoldings":31681,"adal":31682,"ĠCron":31683,"ĠLiam":31684,"Ġdeflect":31685,"Pick":31686,"ĠDebug":31687,"REF":31688,"Ġversatility":31689,"othes":31690,"classified":31691,"ĠMahar":31692,"ĠHort":31693,"Counter":31694,"stasy":31695,"noticed":31696,"331":31697,"ĠShim":31698,"fuck":31699,"ĠBie":31700,"Ġairing":31701,"ĠProtein":31702,"ĠHolding":31703,"Ġspectators":31704,"iliated":31705,"ĠThatcher":31706,"nosis":31707,"ãĥ¼ãĥ³":31708,"Tele":31709,"Boston":31710,"ĠTempl":31711,"stay":31712,"Ġdeclarations":31713,"479":31714,"Volume":31715,"ĠDesigner":31716,"ĠOverwatch":31717,"idae":31718,"Ġonwards":31719,"Ġnets":31720,"ĠManila":31721,"particularly":31722,"Ġpolitic":31723,"oother":31724,"Ġportraits":31725,"Ġpavement":31726,"cffff":31727,"Ġsaints":31728,"Ġbeginners":31729,"ESPN":31730,"Ġshortcomings":31731,"âķIJâķIJ":31732,"Ġcomet":31733,"ĠOrganic":31734,"quel":31735,"Ġhospitalized":31736,"Break":31737,"Ġpeel":31738,"dylib":31739,"aspx":31740,"urances":31741,"ĠTIM":31742,"Pg":31743,"Ġreadable":31744,"ĠMalik":31745,"Ġmuzzle":31746,"Ġbenchmarks":31747,"dal":31748,"ĠVacc":31749,"ĠHicks":31750,"609":31751,"ĠBiblical":31752,"heng":31753,"Ġoverload":31754,"ĠCivilization":31755,"Ġimmoral":31756,"Ġfries":31757,"ãĤĴ":31758,"Ġreproduced":31759,"Ġformulation":31760,"jug":31761,"irez":31762,"gear":31763,"Ġcoached":31764,"MpServer":31765,"ĠSJ":31766,"ĠKw":31767,"Init":31768,"deal":31769,"ĠOro":31770,"ĠLoki":31771,"ĠSongs":31772,"Ġ232":31773,"ĠLouise":31774,"asionally":31775,"Ġuncond":31776,"ollywood":31777,"Ġprogressives":31778,"ĠEnough":31779,"ĠDoe":31780,"Ġwreckage":31781,"Ġbrushed":31782,"ĠBaseType":31783,"Ġzoning":31784,"ishable":31785,"hetically":31786,"ĠCaucus":31787,"ĠHue":31788,"Ġkarma":31789,"ĠSporting":31790,"Ġtrader":31791,"Ġseeming":31792,"ĠCapture":31793,"430":31794,"bish":31795,"Ġtunes":31796,"Ġindoors":31797,"ĠSphere":31798,"ĠDancing":31799,"TERN":31800,"Ġnob":31801,"ĠGST":31802,"maps":31803,"Ġpeppers":31804,"Fit":31805,"Ġoversees":31806,"ĠRabbi":31807,"ĠRuler":31808,"vertising":31809,"office":31810,"xxx":31811,"Ġraft":31812,"Changed":31813,"Ġtextbooks":31814,"Links":31815,"ĠOmn":31816,"ãĢij":31817,"Ġinconvenience":31818,"ĠDonetsk":31819,"=~":31820,"Ġimplicitly":31821,"Ġboosts":31822,"ĠBones":31823,"ĠBoom":31824,"Courtesy":31825,"Ġsensational":31826,"ANY":31827,"Ġgreedy":31828,"eden":31829,"Ġinexper":31830,"ĠLer":31831,"ĠVale":31832,"Ġtighten":31833,"ĠEAR":31834,"ĠNum":31835,"Ġancestor":31836,"Sent":31837,"ĠHorde":31838,"urgical":31839,"allah":31840,"Ġsap":31841,"amba":31842,"ĠSpread":31843,"twitch":31844,"Ġgrandson":31845,"Ġfracture":31846,"Ġmoderator":31847,"ĠSeventh":31848,"ĠReverse":31849,"Ġestimation":31850,"Choose":31851,"Ġparach":31852,"Ġbarric":31853,"ãĢIJ":31854,"Ġcompass":31855,"Ġallergic":31856,"âĢķ":31857,"OTHER":31858,"errilla":31859,"Ġwagon":31860,"Ġzinc":31861,"Ġrubbed":31862,"ĠFuller":31863,"ĠLuxembourg":31864,"ĠHoover":31865,"Ġliar":31866,"ĠEvening":31867,"ĠCobb":31868,"esteem":31869,"Ġselector":31870,"ĠBrawl":31871,"isance":31872,"ĠEk":31873,"Ġtroop":31874,"Ġguts":31875,"ĠAppeal":31876,"ĠTibetan":31877,"Ġroutines":31878,"ĠMent":31879,"Ġsummarized":31880,"steamapps":31881,"Ġtranqu":31882,"Ġ1929":31883,"oran":31884,"ĠAuthent":31885,"Ġgmaxwell":31886,"Ġapprehens":31887,"Ġpoems":31888,"Ġsausage":31889,"ĠWebster":31890,"urus":31891,"Ġthemed":31892,"Ġlounge":31893,"Ġcharger":31894,"Spoiler":31895,"Ġspilled":31896,"hog":31897,"ĠSunder":31898,"ĠAin":31899,"ĠAngry":31900,"Ġdisqual":31901,"ĠFrequency":31902,"ĠEthernet":31903,"Ġhelper":31904,"Percent":31905,"Ġhorrifying":31906,"Ġail":31907,"ĠAllan":31908,"EEE":31909,"ĠCrossing":31910,"449":31911,"Ġholog":31912,"ĠPuzzles":31913,"ĠGoes":31914,"erenn":31915,"604":31916,"ãģı":31917,"ĠRafael":31918,"Ġatten":31919,"ĠEmanuel":31920,"Ġupro":31921,"ĠSusp":31922,"Psych":31923,"ĠTrainer":31924,"ĠNES":31925,"ĠHunts":31926,"becue":31927,"Ġcounselor":31928,"Rule":31929,"Ġtoxins":31930,"Ġbanners":31931,"rifice":31932,"Ġgreeting":31933,"Ġfrenzy":31934,"Ġallocate":31935,"Ġ*)":31936,"expr":31937,"503":31938,"ĠChick":31939,"ĠTorn":31940,"Ġconsolidation":31941,"ĠFletcher":31942,"switch":31943,"frac":31944,"clips":31945,"ĠMcKin":31946,"ĠLunar":31947,"Month":31948,"ITCH":31949,"Ġscholarly":31950,"raped":31951,"398":31952,"Ġ1910":31953,"Ġegreg":31954,"Ġinsecure":31955,"Ġvictorious":31956,"cffffcc":31957,"Ġsingled":31958,"Ġelves":31959,"ĠWond":31960,"burst":31961,"Ġcamoufl":31962,"ĠBLACK":31963,"Ġconditioned":31964,"çī":31965,"answered":31966,"Ġcompulsory":31967,"ascist":31968,"Ġpodcasts":31969,"ĠFrankfurt":31970,"bnb":31971,"Ġneoliberal":31972,"ĠKeyboard":31973,"ĠBelle":31974,"warm":31975,"Ġtrusts":31976,"Ġinsured":31977,"ĠBucc":31978,"usable":31979,"607":31980,"ĠPlains":31981,"Ġ1890":31982,"Ġsabotage":31983,"Ġlodged":31984,"felt":31985,"Ġga":31986,"ĠNarc":31987,"ĠSalem":31988,"Ġseventy":31989,"ĠBlank":31990,"pocket":31991,"Ġwhisper":31992,"Ġmating":31993,"omics":31994,"ĠSalman":31995,"ĠKad":31996,"Ġangered":31997,"Ġcollisions":31998,"Ġextraordinarily":31999,"Ġcoercion":32000,"Ghost":32001,"birds":32002,"èĢ":32003,"kok":32004,"Ġpermissible":32005,"avorable":32006,"Ġpointers":32007,"Ġdissip":32008,"aci":32009,"Ġtheatrical":32010,"ĠCosmic":32011,"Ġforgetting":32012,"Ġfinalized":32013,"大":32014,"yout":32015,"library":32016,"Ġbooming":32017,"ĠBelieve":32018,"ĠTeacher":32019,"ĠLiv":32020,"ĠGOODMAN":32021,"ĠDominican":32022,"ORED":32023,"ĠParties":32024,"Ġprecipitation":32025,"ĠSlot":32026,"Roy":32027,"ĠCombined":32028,"Ġintegrating":32029,"Ġchrome":32030,"Ġintestinal":32031,"ĠRebell":32032,"Ġmatchups":32033,"Ġblockbuster":32034,"ĠLoren":32035,"ĠLevy":32036,"Ġpreaching":32037,"ĠSending":32038,"ĠPurpose":32039,"rax":32040,"fif":32041,"Ġauthoritative":32042,"ĠPET":32043,"astical":32044,"Ġdishon":32045,"Ġchatting":32046,"Ġ\"$:/":32047,"Connection":32048,"Ġrecreate":32049,"Ġdelinqu":32050,"Ġbroth":32051,"ĠDirty":32052,"ĠAdmin":32053,"zman":32054,"Ġscholarships":32055,"Ġ253":32056,"contact":32057,"alsa":32058,"767":32059,"creen":32060,"abbage":32061,"Ġ1915":32062,"Ġblended":32063,"Ġalarmed":32064,"Language":32065,"356":32066,"Ġblends":32067,"ĠChanged":32068,"Wolf":32069,"Ġhepat":32070,"Creating":32071,"Ġpersecut":32072,"Ġsweetness":32073,"arte":32074,"Ġforfeiture":32075,"ĠRoberto":32076,"impro":32077,"NFL":32078,"ĠMagnet":32079,"Detailed":32080,"Ġinsignificant":32081,"ĠPOLIT":32082,"ĠBBQ":32083,"ĠCPS":32084,"Ġseaw":32085,"aminer":32086,"mL":32087,"endif":32088,"finals":32089,"Ġ265":32090,"uish":32091,"Ġ})":32092,"ĠProblems":32093,"Ġemblem":32094,"Ġseriousness":32095,"Ġparsing":32096,"Ġsubstitution":32097,"Ġpressured":32098,"Ġrecycled":32099,"aleb":32100,"Ruby":32101,"Ġproficiency":32102,"Driver":32103,"ĠWester":32104,":'":32105,"AFTA":32106,"Ġmantle":32107,"ĠClayton":32108,"flag":32109,"Ġpractitioner":32110,"covered":32111,"ĠStruct":32112,"addafi":32113,"425":32114,"ĠTownship":32115,"ĠHydro":32116,"Louis":32117,"343":32118,"Ġcondo":32119,"ĠTao":32120,"Ġutilization":32121,"Ġnausea":32122,"ĠDems":32123,"ridges":32124,"pause":32125,"Ġformulas":32126,"Ġchallenger":32127,"376":32128,"Ġdefective":32129,"ĠRailway":32130,"ĠPubMed":32131,"Ġyogurt":32132,"lbs":32133,"ĠNorfolk":32134,"OPE":32135,"ĠMoody":32136,"Ġdistributor":32137,"Ġscrolls":32138,"Ġextracts":32139,"Stan":32140,"Ġviability":32141,"Ġexposes":32142,"Ġstarvation":32143,"ĠSteps":32144,"ĠDodd":32145,"few":32146,"STD":32147,"332":32148,"Ġclosures":32149,"Ġcomplementary":32150,"ĠSasha":32151,"umpy":32152,"Ġmonet":32153,"Ġarticulate":32154,"ĠDoct":32155,"killer":32156,"Ġscrim":32157,"Ġ264":32158,"Ġprostitutes":32159,"Ġsevered":32160,"Ġattachments":32161,"Ġcooled":32162,"Lev":32163,"ĠFalk":32164,"fail":32165,"Ġpoliceman":32166,"ĠDag":32167,"Ġprayed":32168,"ĠKernel":32169,"Ġclut":32170,"Ġcath":32171,"Ġanomaly":32172,"Storm":32173,"emaker":32174,"ĠBreakfast":32175,"uli":32176,"oire":32177,"JJ":32178,"hz":32179,"Operation":32180,"ĠSick":32181,"354":32182,"ĠGuatemala":32183,"Rate":32184,"Ġexposures":32185,"faces":32186,"ĠArchae":32187,"raf":32188,"ĠMia":32189,"Ġ2025":32190,"Ġopaque":32191,"Ġdisguised":32192,"ĠHeadquarters":32193,"Sah":32194,"Ġpots":32195,"978":32196,"ĠMalf":32197,"Ġfrowned":32198,"Ġpoisonous":32199,"ĠConvers":32200,"eeks":32201,"Ġcrab":32202,".\"\"":32203,"Ġtreason":32204,"Ġranc":32205,"Ġescalating":32206,"Ġwarr":32207,"Ġmobs":32208,"Ġlamps":32209,"ĠSunshine":32210,"ĠBrunswick":32211,"Phones":32212,"Ġspelled":32213,"ĠSkip":32214,"Ġ2050":32215,"Ġ1911":32216,"ĠPluto":32217,"ĠAmend":32218,"Ġmeats":32219,"387":32220,"Ġstomp":32221,"ĠZhou":32222,"ĠLeviathan":32223,"ĠHazard":32224,"adv":32225,"ĠOrwell":32226,"Ġaloud":32227,"Ġbumper":32228,"ĠAnarch":32229,"ubuntu":32230,"ĠSerious":32231,"fitting":32232,"ĠOptional":32233,"ĠCecil":32234,"REAM":32235,"Ġserotonin":32236,"Ġcultivate":32237,"agogue":32238,"}\\":32239,"Ġmosques":32240,"ĠSunny":32241,"Ġreactive":32242,"revolution":32243,"ĠLup":32244,"ĠFedora":32245,"Ġdefenseman":32246,"ĠVID":32247,"istine":32248,"Ġdrowning":32249,"ĠBroadcasting":32250,"Ġthriller":32251,"ĠScy":32252,"Ġaccelerating":32253,"Ġdirects":32254,"odied":32255,"bike":32256,"duration":32257,"Ġpainfully":32258,"Redd":32259,"Ġproductions":32260,"Ġgag":32261,"Ġwhist":32262,"Ġsock":32263,"Ġinfinitely":32264,"ĠConcern":32265,"ĠCitadel":32266,"Ġlieu":32267,"Ġcandles":32268,"ogeneous":32269,"arger":32270,"Ġheavenly":32271,"inflammatory":32272,"Performance":32273,"Cs":32274,"ructose":32275,"azaki":32276,"Ġpessim":32277,"Ġinference":32278,"Ġpowd":32279,"ĠZoe":32280,"Ġpaints":32281,"Ġdazz":32282,"pta":32283,"-----------":32284,"Ġinspir":32285,"ĠExperimental":32286,"ĠKnife":32287,"regor":32288,"bors":32289,"Ġshowers":32290,"romeda":32291,"Ġsaint":32292,"Ġbenign":32293,"ĠJiang":32294,"Ġenvisioned":32295,"Ġshroud":32296,"IFT":32297,"HO":32298,"Ġshuff":32299,"ĠICC":32300,"Ġsegreg":32301,"Ġrevisit":32302,"ighthouse":32303,"Li":32304,"Ġsubstrate":32305,"ĠSeas":32306,"ĠReward":32307,"ĠHep":32308,"ĠBrass":32309,"sbm":32310,"Ġeliminates":32311,"Ġstamina":32312,"ĠVAT":32313,"ĠLoan":32314,"Ġconstraint":32315,"Ġappropriated":32316,"Ġpes":32317,"ĠALE":32318,"ranging":32319,"Ġ404":32320,"392":32321,"Ġintellectuals":32322,"achu":32323,"Ġrestructuring":32324,"ĠLevin":32325,"Ġrunes":32326,"Ġdelightful":32327,"Ġcarbohydrates":32328,"ĠModels":32329,"ĠExpo":32330,"Ġtransporting":32331,"alloc":32332,"Ġringing":32333,"Samsung":32334,"Ġscarcely":32335,"ĠURLs":32336,"ĠMAS":32337,"Ġprototypes":32338,"Ġnarrator":32339,"ĠCPUs":32340,"cdn":32341,"ĠBarton":32342,"Ġdecidedly":32343,"ĠShu":32344,"ixir":32345,"ocious":32346,"ĠMyst":32347,"Nintendo":32348,"Ġreuse":32349,"Ġforgiven":32350,"Few":32351,"inical":32352,"nat":32353,"Ġseamless":32354,"ĠEva":32355,"ĠEVE":32356,"ĠJO":32357,"landers":32358,"Ġsofter":32359,"negie":32360,"Ġtransient":32361,"Ġorbital":32362,"Ġfulfil":32363,"ĠKom":32364,"Hopefully":32365,"Ġdynamically":32366,"ĠHunger":32367,"åĽ":32368,"ĠArmenia":32369,"elman":32370,"berto":32371,"Ġpige":32372,"ĠIDs":32373,"limit":32374,"Ġveins":32375,"Ġsoaring":32376,"packs":32377,"Golden":32378,"ĠCrab":32379,"istor":32380,"ĠRPM":32381,"Ġ$$":32382,"gression":32383,"Ġjihadist":32384,"Ġgamble":32385,"Ġcareg":32386,"Ġinflated":32387,"Face":32388,"ĠFirearms":32389,"ĠEmmanuel":32390,"âĿ":32391,"Ġshocks":32392,"grab":32393,"Ġsplend":32394,"ĠHPV":32395,"abortion":32396,"Above":32397,"Entity":32398,"players":32399,"Ġcommenced":32400,"ulence":32401,"Ġfulfillment":32402,"Ġembodiments":32403,"ĠWelfare":32404,"Ġhail":32405,"Ġ<@":32406,"tten":32407,"Ġcatcher":32408,"ĠJazeera":32409,"Ġvolcano":32410,"Ġstabilize":32411,"ĠHandler":32412,"Ġintensified":32413,"ĠAbrams":32414,"Ġhumiliation":32415,"paced":32416,"605":32417,"ĠCentOS":32418,"Specific":32419,"Ġheed":32420,"ĠCAM":32421,"ĠGalile":32422,"Die":32423,"Ġabolished":32424,"ĠThomson":32425,"ĠTeachers":32426,"ĠWass":32427,"jong":32428,"ĠISBN":32429,"ĠAllies":32430,"shake":32431,"å·":32432,"vict":32433,"Howard":32434,"Ġdeem":32435,"Ġexceedingly":32436,"ĠSmartstocks":32437,"ibe":32438,"Ġdoorway":32439,"Ġcompeted":32440,"igmat":32441,"Ġnationalists":32442,"Ġgroom":32443,"ĠKeen":32444,"Ġdisposable":32445,"decl":32446,"ĠTolkien":32447,"ĠScheme":32448,"Ġbiod":32449,"Ġavid":32450,"ĠElon":32451,"agar":32452,"ĠTSA":32453,"Roman":32454,"Ġartificially":32455,"Ġadvisors":32456,"XL":32457,"ĠInferno":32458,"366":32459,"Ġtedious":32460,"ĠPhotography":32461,"ĠCarrie":32462,"Ġtrope":32463,"ĠSandra":32464,"Ġdecimal":32465,"Queen":32466,"ĠGundam":32467,"ĠOM":32468,"otech":32469,"NBA":32470,"Ġ1932":32471,"Ġentrenched":32472,"ĠMarion":32473,"Ġfraternity":32474,"Labour":32475,"Henry":32476,"Ġlatitude":32477,"Either":32478,"Ġenhances":32479,"ĠPotential":32480,"Ġshines":32481,"idad":32482,"Ġbreadth":32483,"Ġcapacities":32484,"ĠðŁĻĤ":32485,"ĠBronx":32486,"Ġsexes":32487,"Ġdifferentiation":32488,"Ġheavyweight":32489,"ĠTaj":32490,"dra":32491,"Ġmigrate":32492,"Ġexhaustion":32493,"ĠRUN":32494,"elsius":32495,"ĠCuomo":32496,"Ġguitars":32497,"Ġclones":32498,"ĠSomew":32499,"ĠPry":32500,"-------------":32501,"Ġwarranted":32502,"cycles":32503,"Ġsalvage":32504,"Ġdisks":32505,"RANT":32506,"ĠNGOs":32507,"ĠMartian":32508,"\":[{\"":32509,"Ġaddicts":32510,"ojure":32511,"illet":32512,"Ġamazingly":32513,"artments":32514,"pixel":32515,"ĠGPUs":32516,"Layout":32517,"è£":32518,"ĠTamil":32519,"ĠBasil":32520,"Ġimpartial":32521,"ĠStructure":32522,"fork":32523,"bryce":32524,"Ġridge":32525,"ĠHamburg":32526,"rious":32527,"Ġblitz":32528,"cigarettes":32529,"Ġcanned":32530,"402":32531,"Ġironically":32532,"Ġcompassionate":32533,"ĠHawkins":32534,".#":32535,"ĠCathedral":32536,"Ġrallied":32537,"internal":32538,"Ġquota":32539,"stakes":32540,"TEXT":32541,"mom":32542,"Ġcompletes":32543,"Ġ238":32544,"Ġshrug":32545,"ãĥij":32546,"ĠNinth":32547,"Ġrevise":32548,"ĠProvider":32549,"Ġtreacher":32550,"Ġquasi":32551,"ĠPRES":32552,"Ġdeposition":32553,"Ġconfidentiality":32554,"issors":32555,"Ġimbalance":32556,"Ġspanning":32557,"Ġangular":32558,"ĠCul":32559,"communication":32560,"ĠNora":32561,"ĠGenius":32562,"opter":32563,"Ġsacked":32564,"Spot":32565,"Ġfinely":32566,"ĠCHR":32567,"282":32568,"waves":32569,"Palest":32570,"ĠRohing":32571,"NL":32572,"è¿":32573,"Ġshitty":32574,"ĠScalia":32575,"475":32576,"Progress":32577,"Ġreferencing":32578,"Ġclassrooms":32579,"abee":32580,"Ġsod":32581,"hesion":32582,"708":32583,"ĠZuckerberg":32584,"ĠFinish":32585,"ĠScotia":32586,"ĠSavior":32587,"ĠInstallation":32588,"antha":32589,"(-":32590,"Ġ302":32591,"ĠPunk":32592,"Ġcrater":32593,"youtu":32594,"Ġroast":32595,"Ġinfluencing":32596,"Ġdup":32597,"ĠJR":32598,"ĠGrav":32599,"Ġstature":32600,"Ġbathrooms":32601,"Aside":32602,"Wiki":32603,"mean":32604,"ĠZak":32605,"ĠOnes":32606,"ĠNath":32607,"Ġhypert":32608,"Ġcommencement":32609,"Civil":32610,"Ġmoderately":32611,"Ġdistributors":32612,"Ġbreastfeeding":32613,"Ġ980":32614,"ĠSik":32615,"ĠCig":32616,"ĠAMER":32617,"RIP":32618,"ĠCareer":32619,"usting":32620,"Ġmessed":32621,"Ġeh":32622,"ĠJensen":32623,"/$":32624,"Ġblackmail":32625,"Ġconversions":32626,"Ġscientifically":32627,"Ġmantra":32628,"paying":32629,"Ġivory":32630,"ĠCourts":32631,"OUGH":32632,"auntlet":32633,"Serial":32634,"Brow":32635,"ĠHundreds":32636,"323":32637,"Ġpee":32638,"Ġlinux":32639,"Ġsubmer":32640,"ĠPrincipal":32641,"485":32642,"ĠDSL":32643,"ĠCousins":32644,"Ġdoctrines":32645,"ĠAthletics":32646,"Ġ315":32647,"ĠKarma":32648,"Ġattent":32649,"urger":32650,"Ġprescribe":32651,"Ġencaps":32652,"ĠCame":32653,"Ġsecretive":32654,"ĠCrimes":32655,"dn":32656,"Clean":32657,"ĠEgyptians":32658,"ĠCarpenter":32659,"Ġll":32660,"Hum":32661,"ĠMilo":32662,"Ġcapitalists":32663,"Ġbriefed":32664,"Twe":32665,"ĠBasin":32666,"elvet":32667,"Mos":32668,"Ġplunge":32669,"ĠKaiser":32670,"ĠFuj":32671,"illin":32672,"Ġsafeguards":32673,"Ġoste":32674,"ĠOpportunity":32675,"ĠMafia":32676,"ĠCalling":32677,"apa":32678,"urban":32679,"brush":32680,"illard":32681,"cé":32682,"intelligence":32683,"ĠLob":32684,"ĠDruid":32685,"Ġsmoother":32686,"Ġfooting":32687,"Ġmotorists":32688,"arcity":32689,"Ġmasculinity":32690,"Ġmism":32691,"Ġabdominal":32692,"ĠTavern":32693,"ĠRoh":32694,"Ġescapes":32695,"signed":32696,"Anthony":32697,"Ġsacrificing":32698,"Ġintimacy":32699,"Ġanterior":32700,"ĠKod":32701,"Ġmotif":32702,"Ġgraz":32703,"Ġvisualization":32704,"Ġguitarist":32705,"ĠTrotsky":32706,"magic":32707,"Dar":32708,"ĠMori":32709,"Ġwards":32710,"Ġtoilets":32711,"lest":32712,"Ġteleport":32713,"ĠSundays":32714,"ĠPlat":32715,"ETS":32716,"ĠeSports":32717,"Patrick":32718,"ĠKatherine":32719,"enko":32720,"Ġhassle":32721,"ĠMick":32722,"ggles":32723,"Ġhob":32724,"aintain":32725,"Ġairborne":32726,"Ġspans":32727,"Ġchili":32728,"Ġaperture":32729,"Ġvolunteered":32730,"ĠIncident":32731,"ĠFres":32732,"ĠVeteran":32733,"aughtered":32734,"ingo":32735,"Ġuninsured":32736,"CLOSE":32737,"Ġfuse":32738,"Ġerotic":32739,"Ġadvertise":32740,"raising":32741,"Texture":32742,"Ġattends":32743,"ĠREAL":32744,"uddled":32745,"Ġsmoot":32746,"Ġ305":32747,"ĠWillis":32748,"Ġblond":32749,"Analysis":32750,"ĠVT":32751,"onica":32752,"Ġstronghold":32753,"RF":32754,"NM":32755,".>>":32756,"Ġprosperous":32757,"Ġboasted":32758,"292":32759,"ĠManufacturing":32760,"PRESS":32761,"gren":32762,"Ġpharmacy":32763,"ĠRockefeller":32764,"kai":32765,"Ġthumbs":32766,"ĠHut":32767,"Ġmotherboard":32768,"Ġguardians":32769,"ĠAlter":32770,"llular":32771,"Ġshack":32772,"Ġwisely":32773,"Ġbackbone":32774,"erva":32775,"Ġsuicides":32776,"ĠMcGregor":32777,"ijah":32778,"Emer":32779,"ĠBrav":32780,"Ġdesignate":32781,"POST":32782,"produced":32783,"Ġcleansing":32784,"irlwind":32785,"existent":32786,"ĠHumph":32787,"ĠPayne":32788,"Ġvested":32789,"Å¡":32790,"Ġstringent":32791,"iona":32792,"Ġunsub":32793,"Ġsummed":32794,"ĠHercules":32795,"subject":32796,"ĠRagnar":32797,"ĠNos":32798,"Ġcharacterization":32799,"Ġsavvy":32800,"ĠDawson":32801,"ĠCasino":32802,"Ġfri":32803,"ĠBarrier":32804,"Ġmisinformation":32805,"Ġinsulation":32806,"Ġcorridors":32807,"Ġairplanes":32808,"ĠNoct":32809,"ahi":32810,"Ġ1916":32811,"kb":32812,"armac":32813,"Ġshun":32814,"Ġschema":32815,"Ġhorrified":32816,"Ġ239":32817,"aunders":32818,"NB":32819,"iates":32820,"erity":32821,"ĠShard":32822,"Ġrarity":32823,"Ġgrouped":32824,"ĠGhana":32825,"against":32826,"ĠBiological":32827,"ĠAware":32828,"owell":32829,"ÏĦ":32830,"ĠBeau":32831,"shaw":32832,"Hack":32833,"ĠJulius":32834,"USS":32835,"olson":32836,"auna":32837,"cru":32838,"ĠMaurice":32839,"ĠIk":32840,"Ġsequencing":32841,"Ġradicals":32842,"Ġ(?,":32843,"virtual":32844,"Ġanyways":32845,"Ġreperc":32846,"Ġhandlers":32847,"Ġhesitant":32848,"éĥ":32849,"ĠMF":32850,"plementation":32851,"associated":32852,"Ġcampaigned":32853,"ĠYue":32854,"utations":32855,"ĠYoga":32856,"Ġsimmer":32857,"Ġrods":32858,"Ġmelody":32859,"Ġconvoy":32860,"videos":32861,"Ġscreened":32862,"Neg":32863,"ochemical":32864,"Ġ())":32865,"Ġultras":32866,"Ġantip":32867,"ĠIslanders":32868,"704":32869,"Ġfetish":32870,"Ġridiculously":32871,"ĠKart":32872,"Ġmitochondrial":32873,"Ġinterfering":32874,"Builder":32875,"Ġoverfl":32876,"Ġacne":32877,"ĠMud":32878,"ĠKerr":32879,"flex":32880,"ĠPostal":32881,"ĠBaltic":32882,"477":32883,"ĠPersons":32884,"ourage":32885,"HB":32886,"ĠMuse":32887,"ĠImmortal":32888,"ĠDriving":32889,"Ġpetitions":32890,"Ġsubscript":32891,"Ġsorce":32892,"ĠProcessor":32893,"uton":32894,"Sony":32895,"Ġphon":32896,"Ġraced":32897,"ĠAnthrop":32898,"Ġdaytime":32899,"ĠExercise":32900,"Adding":32901,"Ġengages":32902,"ĠQualcomm":32903,"Ġmiracles":32904,"Ġmemes":32905,"ĠDrink":32906,"ĠOrioles":32907,"Ġhairs":32908,"ĠPolar":32909,"athom":32910,"Ġslippery":32911,"ĠRemy":32912,"Ġcaramel":32913,"ĠYEAR":32914,"Ġalk":32915,"Ign":32916,"aution":32917,"ĠMerlin":32918,"ĠCran":32919,"Ġapologies":32920,"Ġ410":32921,"Ġouting":32922,"ĠMemories":32923,"appointed":32924,"Ġcountered":32925,"uld":32926,"posing":32927,"Ġfirewall":32928,"ĠWast":32929,"ĠWet":32930,"worked":32931,"seller":32932,"Ġrepealed":32933,"ereo":32934,"assuming":32935,"BLIC":32936,"mite":32937,"ĠCEOs":32938,"ĠChapel":32939,"elligent":32940,"________________________":32941,"Dog":32942,"Ġwart":32943,"Ġsubscriber":32944,"sports":32945,"Ġbegged":32946,"ĠMV":32947,"Ġsemif":32948,"ethical":32949,"Ġpreach":32950,"Ġrevital":32951,"Ġpunitive":32952,"Ġshortcuts":32953,"Ġinstituted":32954,"ĠWarsaw":32955,"Ġabdomen":32956,"ĠKING":32957,"Ġsuperintendent":32958,"Ġfry":32959,"ĠGeo":32960,"TOR":32961,"Ġcontradictions":32962,"aptic":32963,"Ġlandscapes":32964,"bugs":32965,"Ġclust":32966,"Ġvolley":32967,"cribed":32968,"Ġtandem":32969,"Ġrobes":32970,"WHAT":32971,"Ġpromoter":32972,"Ġeloqu":32973,"reviewed":32974,"ĠDK":32975,"ĠPlato":32976,"Ġfps":32977,"Tank":32978,"ĠDerrick":32979,"Ġprioritize":32980,"asper":32981,"ĠHonduras":32982,"ĠCompleted":32983,"nec":32984,"Ġmog":32985,"nir":32986,"ĠMayo":32987,"DEF":32988,"stall":32989,"inness":32990,"ĠVolkswagen":32991,"Ġprecaution":32992,"ĠMell":32993,"iak":32994,"istries":32995,"Ġ248":32996,"Ġoverlapping":32997,"Senate":32998,"ĠEnhance":32999,"resy":33000,"racial":33001,"ORTS":33002,"ĠMormons":33003,"Strong":33004,"ĠCoch":33005,"Mexico":33006,"ĠMaduro":33007,"Ġjars":33008,"Ġcane":33009,"Wik":33010,"olla":33011,"ifference":33012,"Ġphysicist":33013,"ĠMaggie":33014,"Ġ285":33015,"Ġdepiction":33016,"ĠMcLaren":33017,"Ju":33018,"Ġslows":33019,"Ġcommissioners":33020,"ĠWillow":33021,"ĠExplos":33022,"hovah":33023,"Ġtechnician":33024,"Ġhomicides":33025,"ĠFlav":33026,"ĠTruman":33027,"Ġ10000":33028,"uctor":33029,"Ġshader":33030,"Newsletter":33031,"457":33032,"Ġrever":33033,"Ġhardened":33034,"Ġwhereabouts":33035,"Ġredevelop":33036,"Ġcarbs":33037,"Ġtravers":33038,"Ġsquirrel":33039,"Ġfollower":33040,"Ġsings":33041,"508":33042,"Ġrabbits":33043,"emonium":33044,"Ġdocumenting":33045,"Ġmisunderstood":33046,")'":33047,"Rick":33048,"ggies":33049,"Ġpremie":33050,"Ġskating":33051,"Ġpassports":33052,"Ġfists":33053,"ageddon":33054,"Haw":33055,"ACP":33056,"080":33057,"ĠThoughts":33058,"ĠCarlson":33059,"Ġpriesthood":33060,"hua":33061,"Ġdungeons":33062,"ĠLoans":33063,"Ġantis":33064,"Ġfamiliarity":33065,"ĠSabb":33066,"opal":33067,"ĠInk":33068,"strike":33069,"Ġcram":33070,"Ġlegalized":33071,"Ġcuisine":33072,"Ġfibre":33073,"Travel":33074,"ĠMonument":33075,"ODY":33076,"ethy":33077,"Ġinterstate":33078,"ĠPUR":33079,"emporary":33080,"ĠArabian":33081,"developed":33082,"Ġsaddle":33083,"Ġgithub":33084,"ĠOffer":33085,"ĠISP":33086,"rolet":33087,"ĠSUPER":33088,"ĠDenis":33089,"Ġmultiplier":33090,"Ġstirred":33091,"Interestingly":33092,"Ġcustomary":33093,"Ġbilled":33094,"hex":33095,"Ġmultiplied":33096,"Ġflipping":33097,"ĠCrosby":33098,"Ġfundamentals":33099,"iae":33100,"ĠPlayed":33101,"ĠAtom":33102,"amazon":33103,"ĠFlam":33104,"eez":33105,"activated":33106,"Ġtablespoon":33107,"Ġliberalism":33108,"ĠPalin":33109,"ĠPatel":33110,"Num":33111,"ĠTAM":33112,"Ġsurn":33113,"ĠReloaded":33114,"Ġcoined":33115,"\"],":33116,"ĠClash":33117,"ĠAgu":33118,"Ġpragmatic":33119,"ĠActivate":33120,"Ġ802":33121,"Ġtrailers":33122,"Ġsilhou":33123,"Ġprobes":33124,"Ġcircus":33125,"ĠBain":33126,"ĠLindsay":33127,"ĠAbbey":33128,"Delivery":33129,"Ġconcession":33130,"Ġgastro":33131,"ĠSprite":33132,"ÄŁ":33133,"andel":33134,"Ġgimm":33135,"Ġautobi":33136,"ĠTurtle":33137,"Ġwonderfully":33138,"ĠHaram":33139,"ĠWorldwide":33140,"ĠHandle":33141,"Ġtheorists":33142,"Ġsleek":33143,"ĠZhu":33144,"ographically":33145,"EGA":33146,"ĠOwners":33147,"aths":33148,"ĠAntarctic":33149,"natal":33150,"=\"\"":33151,"flags":33152,"````":33153,"Ġsul":33154,"Kh":33155,"Ġpotassium":33156,"Ġlineman":33157,"Ġcereal":33158,"ĠSeasons":33159,"Ġ2022":33160,"Ġmathematic":33161,"Ġastronomers":33162,"professional":33163,"Ġfares":33164,"cknowled":33165,"Ġchi":33166,"Ġyoungsters":33167,"Ġmistakenly":33168,"Ġhemisphere":33169,"ĠDivinity":33170,"rone":33171,"Ġ\",":33172,"rings":33173,"Ġattracts":33174,"vana":33175,"å¹":33176,"CAP":33177,"Ġplaylist":33178,"Ġporch":33179,"ãģ£":33180,"Ġincorporates":33181,"Ġsoak":33182,"Ġasserting":33183,"ĠTerrorism":33184,"ĠPablo":33185,"Ja":33186,"cester":33187,"Ġfearing":33188,"ĠPrayer":33189,"Ġescalated":33190,"GW":33191,"Ġrobe":33192,"ĠBrighton":33193,"acists":33194,"ĠSymphony":33195,"ĠDwarf":33196,"ĠParade":33197,"ĠLego":33198,"Ġinexpl":33199,"Ġlords":33200,"leaf":33201,"RAG":33202,"liber":33203,"Ġcigars":33204,"ĠJehovah":33205,"606":33206,"WINDOWS":33207,"ĠLiberia":33208,"ebus":33209,"Heavy":33210,"Ġlubric":33211,"ĠRW":33212,"anguages":33213,"Ġnarrowed":33214,"computer":33215,"ĠEmber":33216,"Ġmurdering":33217,"Ġdownstream":33218,"ĠTuls":33219,"ĠTables":33220,"Topic":33221,"ĠAccuracy":33222,"=/":33223,"lost":33224,"ĠRei":33225,"Ġprogresses":33226,"bear":33227,"Ġestablishments":33228,"Justin":33229,"ĠPeach":33230,"ĠGomez":33231,"å¿":33232,"ĠTriangle":33233,"Ident":33234,"ĠHive":33235,"Resources":33236,"Ġmixes":33237,"ĠAssuming":33238,"Mu":33239,"Ġhypoc":33240,"Ġsane":33241,"ĠWan":33242,"idious":33243,"Success":33244,"Ġio":33245,"Angel":33246,"Ġdangerously":33247,"ĠCreature":33248,"WORK":33249,":[":33250,"ĠKatrina":33251,"Listener":33252,"Miller":33253,"ĠIdlib":33254,"hang":33255,"Ġcircumvent":33256,"href":33257,"Ġcelestial":33258,"ĠWeeks":33259,"ĠPug":33260,"ĠDalton":33261,"Ġsubpoena":33262,"uku":33263,"Ġpersisted":33264,"pei":33265,"olding":33266,"ĠDocuments":33267,"ĠHast":33268,"ĠCENT":33269,"Ġprimer":33270,"Ġsynonymous":33271,"Ġnib":33272,"ombs":33273,"Ġnotation":33274,"ĠDish":33275,"ĠAtmosp":33276,"Ġforbid":33277,"ĠANG":33278,"pattern":33279,"los":33280,"Ġprojectiles":33281,"brown":33282,".\",":33283,"ĠVenom":33284,"Ġfiercely":33285,"ublished":33286,"ĠUran":33287,"ĠNicarag":33288,"410":33289,"ĠCAL":33290,"OTOS":33291,"ĠMiracle":33292,"ĠEnchant":33293,"Ġguarding":33294,"append":33295,"Attach":33296,"Ġleveled":33297,"Ġcondoms":33298,"ihilation":33299,"649":33300,"Ġnightmares":33301,"ĠTHEY":33302,"ĠSTART":33303,"ĠKinn":33304,"Ġroommate":33305,"Ġhygiene":33306,"opping":33307,"Job":33308,"Ġlvl":33309,"ĠVER":33310,"ĠKeeping":33311,"abetic":33312,"Ġformatting":33313,"erala":33314,"Ġrevisions":33315,"Ġresurg":33316,"Tel":33317,"ĠGoodman":33318,"353":33319,"pod":33320,"Ġindisp":33321,"ĠTranslation":33322,"Ġgown":33323,"ĠMund":33324,"Ġcis":33325,"Ġbystand":33326,"collect":33327,"ĠPunjab":33328,"actively":33329,"ĠGamb":33330,"tell":33331,"Ġimporting":33332,"gencies":33333,"Ġlocom":33334,"ĠBrill":33335,"Holy":33336,"ĠBerger":33337,"Ġshowdown":33338,"Ġresponders":33339,"ILY":33340,"Ġtakedown":33341,"leted":33342,"Ġmattered":33343,"Ġpredictive":33344,"Ġoverlay":33345,"GPU":33346,"ĠVick":33347,"Ġconveyed":33348,"Tab":33349,"peer":33350,"Scan":33351,"Ġdefensively":33352,"vae":33353,"Ġapproving":33354,"Ġtiers":33355,"ĠVia":33356,"querade":33357,"ĠSaudis":33358,"Ġdemolished":33359,"ĠProphe":33360,"Ġmono":33361,"Ġhospitality":33362,"HAM":33363,"ĠAriel":33364,"MOD":33365,"ĠTorah":33366,"Ġblah":33367,"ĠBelarus":33368,"erential":33369,"ĠTuc":33370,"Ġbanker":33371,"397":33372,"Ġmosquit":33373,"ĠScientist":33374,"ĠMusical":33375,"Ġhust":33376,"Shift":33377,"Ġtorment":33378,"Ġstandoff":33379,"Educ":33380,"ĠFog":33381,"Ġamplifier":33382,"Shape":33383,"Instance":33384,"ĠCritics":33385,"Ġdaemon":33386,"Houston":33387,"Ġmattress":33388,"ĠIDF":33389,"Ġobscene":33390,"ĠAmer":33391,"hetti":33392,"Ġcompiling":33393,"352":33394,"verett":33395,"ĠReduction":33396,"istration":33397,"ĠBlessed":33398,"ĠBachelor":33399,"316":33400,"Ġprank":33401,"ĠVulcan":33402,"dding":33403,"Ġmourning":33404,"ĠQuint":33405,"ĠBlaster":33406,"testing":33407,"Ġsediment":33408,">>>":33409,"ĠEternity":33410,"ĠWHERE":33411,"ĠMaze":33412,"Ġreacting":33413,"ĠAlv":33414,"omsday":33415,"ĠCRA":33416,"Ġtranslator":33417,"Ġbogus":33418,"atu":33419,"Website":33420,"olls":33421,"Ġbaptism":33422,"Ġsibling":33423,"ĠAutumn":33424,"vez":33425,"ãģ®é":33426,"guards":33427,"Georg":33428,"assadors":33429,"ĠFreud":33430,"Ġcontinents":33431,"ĠRegistry":33432,"Bernie":33433,"ĸļ士":33434,"Ġtolerant":33435,"ĠUW":33436,"Ġhorribly":33437,"995":33438,"ĠMIDI":33439,"Ġimpatient":33440,"ocado":33441,"eri":33442,"ĠWorst":33443,"ĠNorris":33444,"ĠTalking":33445,"Ġdefends":33446,"ensable":33447,"Ġ2021":33448,"Ġanatomy":33449,"Lew":33450,"Ġdrawer":33451,"ĠCanberra":33452,"Ġpatriotic":33453,"é¾įåĸļ士":33454,"ĠAvg":33455,"ARM":33456,"Ġundisclosed":33457,"Ġfarewell":33458,"459":33459,"bable":33460,"ĠAllison":33461,"OLOG":33462,"Ġconco":33463,"tight":33464,"ĠACPI":33465,"ĠMines":33466,"lich":33467,"ĠâĶľ":33468,"represented":33469,"200000":33470,"Ġenthusiast":33471,"OTS":33472,"bil":33473,"ĠIngredients":33474,"Ġinventor":33475,"ĠMySQL":33476,"³³³":33477,"ĠABOUT":33478,"within":33479,"Ġmk":33480,"Bul":33481,"ĠFake":33482,"Ġdraconian":33483,"Wa":33484,"helm":33485,"ĠTerran":33486,"erville":33487,"Ġcommonplace":33488,"SIZE":33489,"Ġ\"<":33490,"replace":33491,"ographs":33492,"ĠSELECT":33493,"incible":33494,"ĠMostly":33495,"ĠSheffield":33496,"ĠIDE":33497,"uggle":33498,"Ġcitations":33499,"hurst":33500,"ĠUnix":33501,"Ġunleash":33502,"ĠPiper":33503,"ĠNano":33504,"Ġsuccumb":33505,"Ġreluctance":33506,"Ġ2500":33507,"ĠMerchant":33508,"Ġwiret":33509,"Ġcombos":33510,"ĠBirthday":33511,"Ġcharcoal":33512,"ĠUPS":33513,"ĠFairfax":33514,"Ġdriveway":33515,"ĠTek":33516,"ĠPitch":33517,"overe":33518,"Ġtechnicians":33519,"ĠActual":33520,"flation":33521,"ĠFiscal":33522,"ĠEmpty":33523,"anamo":33524,"Ġmagnesium":33525,"Ġslut":33526,"Ġgrowers":33527,"Investigators":33528,"():":33529,"ĠSatellite":33530,"ĠKeynes":33531,"missive":33532,"lane":33533,"Ġborough":33534,"344":33535,"ĠTEAM":33536,"ĠBethesda":33537,"CV":33538,"hower":33539,"ĠRAD":33540,"Ġchant":33541,"ĠRiy":33542,"Ġcompositions":33543,"Ġmildly":33544,"Ġmeddling":33545,"Ġagility":33546,"aneers":33547,"501":33548,"Ġsynth":33549,"linger":33550,"291":33551,"Ġexclaimed":33552,"Party":33553,"Ġcontamin":33554,"ĠManor":33555,"ĠRespond":33556,"Ġpraising":33557,"Ġmanners":33558,"fleet":33559,"Summer":33560,"ĠLynd":33561,"ĠDefinitely":33562,"grim":33563,"Ġbowling":33564,"stri":33565,"çĽ":33566,"ynt":33567,"Ġmandates":33568,"DIV":33569,"Ġreconcile":33570,"views":33571,"ĠDamon":33572,"vette":33573,"Flo":33574,"ĠGreatest":33575,"ilon":33576,"icia":33577,"Ġportrayal":33578,"Ġcushion":33579,"504":33580,"1979":33581,"ossal":33582,"Applic":33583,"scription":33584,"Ġmitigation":33585,"ATS":33586,"pac":33587,"Ġerased":33588,"Ġdeficiencies":33589,"ĠHollande":33590,"ĠXu":33591,"Ġbred":33592,"Ġpregnancies":33593,"femin":33594,"Ġemph":33595,"Ġplanners":33596,"Ġoutper":33597,"uttering":33598,"Ġperpetrator":33599,"Ġmotto":33600,"ĠEllison":33601,"ĠNEVER":33602,"Ġadmittedly":33603,"ARI":33604,"ĠAzerbaijan":33605,"Ġmillisec":33606,"Ġcombustion":33607,"ĠBottle":33608,"ĠLund":33609,"ĠPs":33610,"ĠDress":33611,"Ġfabricated":33612,"Ġbattered":33613,"Ġsidel":33614,"ĠNotting":33615,"Foreign":33616,"ĠJerome":33617,"020":33618,"ĠArbit":33619,"Ġknots":33620,"ĠRIGHT":33621,"Moving":33622,"ãģĻ":33623,"Ġsurgeries":33624,"Ġcourthouse":33625,"Ġmastered":33626,"Ġhovering":33627,"ĠBran":33628,"ĠAlison":33629,"Ġsafest":33630,"military":33631,"Ġbullied":33632,"Ġbarrage":33633,"Reader":33634,"ESE":33635,"ĠGeographic":33636,"Tools":33637,"314":33638,"ĠGeek":33639,"roth":33640,"glers":33641,"ĠFIN":33642,"Ïģ":33643,"ĠAston":33644,"altern":33645,"488":33646,"Ġveterin":33647,"Gamer":33648,"Ġintel":33649,"renches":33650,"Shield":33651,"Ġamnesty":33652,"ĠBhar":33653,"Ġpiled":33654,"Ġhonorable":33655,"ĠInstitutes":33656,"Ġsoaked":33657,"Ġcoma":33658,"ĠEFF":33659,"341":33660,"bytes":33661,"ĠGmail":33662,"lein":33663,"ĠCanadiens":33664,"material":33665,"Il":33666,"Ġinstructors":33667,"ĠKY":33668,"Ġconceive":33669,"ubb":33670,"ĠPossible":33671,"Ġeasing":33672,"ĠChristina":33673,"Ġcaric":33674,"ĠHDR":33675,"ROM":33676,"Ġshovel":33677,"delete":33678,"Ġpuff":33679,"ĠChanging":33680,"Ġseamlessly":33681,"Attribute":33682,"Ġacquisitions":33683,"akery":33684,"ĠEF":33685,"Ġautistic":33686,"ĠTakes":33687,"ĠPowder":33688,"ĠStir":33689,"510":33690,"ĠBubble":33691,"settings":33692,"ĠFowler":33693,"Ġmustard":33694,"Ġmoreover":33695,"Ġcopyrighted":33696,"ĠLEDs":33697,"1500":33698,"æī":33699,"ĠHIS":33700,"enf":33701,"Ġcustod":33702,"ĠHuck":33703,"Gi":33704,"Ġimg":33705,"Answer":33706,"Ct":33707,"jay":33708,"ĠInfrastructure":33709,"Ġfederally":33710,"Loc":33711,"Ġmicrobes":33712,"Ġoverrun":33713,"dds":33714,"otent":33715,"adiator":33716,">>>>>>>>":33717,"Ġtornado":33718,"Ġadjud":33719,"Ġintrigued":33720,"Ġsi":33721,"ĠRevelation":33722,"progress":33723,"Ġburglary":33724,"ĠSaiyan":33725,"ĠKathy":33726,"Ġserpent":33727,"ĠAndreas":33728,"Ġcompel":33729,"essler":33730,"ĠPlastic":33731,"ĠAdvent":33732,"ĠPositive":33733,"ĠQt":33734,"ĠHindus":33735,"registered":33736,"ularity":33737,"Ġrighteousness":33738,"Ġdemonic":33739,"uitive":33740,"ĠBDS":33741,"ĠGregg":33742,"cia":33743,"ĠCrusade":33744,"ĠSinai":33745,"WARE":33746,"+(":33747,"Ġmell":33748,"Ġderail":33749,"yards":33750,"Ast":33751,"Ġnoticeably":33752,"ĠOber":33753,"Ram":33754,"Ġunnoticed":33755,"Ġseq":33756,"avage":33757,"Ts":33758,"Ġ640":33759,"Ġconcede":33760,"Ġ])":33761,"Fill":33762,"Ġcaptivity":33763,"ĠImprovement":33764,"ĠCrusader":33765,"araoh":33766,"MAP":33767,"æĹ":33768,"Ġstride":33769,"always":33770,"Fly":33771,"Nit":33772,"Ġalgae":33773,"ĠCooking":33774,"ĠDoors":33775,"Malley":33776,"Ġpolicemen":33777,"ãģį":33778,"Ġastronaut":33779,"accessible":33780,"495":33781,"ĠRAW":33782,"cliffe":33783,"udicrous":33784,"Ġdepended":33785,"alach":33786,"Ġventures":33787,"rake":33788,"Ġtits":33789,"ĠHou":33790,"Ġcondom":33791,"ormonal":33792,"Ġindent":33793,"Ġuploading":33794,"Footnote":33795,"Important":33796,"Ġ271":33797,"Ġmindful":33798,"Ġcontends":33799,"Cra":33800,"Ġcalibr":33801,"ĠOECD":33802,"plugin":33803,"Fat":33804,"ĠISS":33805,"ĠDynamics":33806,"ansen":33807,"686":33808,"'),":33809,"Ġsprite":33810,"Ġhandheld":33811,"ĠHipp":33812,"=~=~":33813,"Trust":33814,"Ġsemantics":33815,"ĠBundes":33816,"ĠReno":33817,"ĠLiterature":33818,"sense":33819,"Gary":33820,"ĠAeg":33821,"ĠTrin":33822,"EEK":33823,"Ġcleric":33824,"ĠSSH":33825,"Ġchrist":33826,"Ġinvading":33827,"ibu":33828,"Ġenum":33829,"aura":33830,"Ġallege":33831,"ĠIncredible":33832,"BBC":33833,"Ġthru":33834,"Ġsailed":33835,"Ġemulate":33836,"Ġinsecurity":33837,"Ġcrou":33838,"Ġaccommodations":33839,"Ġincompetent":33840,"Ġslips":33841,"ĠEarthqu":33842,"sama":33843,"ILLE":33844,"ĠiPhones":33845,"asaki":33846,"Ġbye":33847,"Ġard":33848,"Ġextras":33849,"Ġslaughtered":33850,"Ġcrowdfunding":33851,"resso":33852,"Ġfilib":33853,"ĠERROR":33854,"ĠTLS":33855,"egg":33856,"ĠItal":33857,"Ġenlist":33858,"ĠCatalonia":33859,"ĠScots":33860,"Ġsergeant":33861,"Ġdissolve":33862,"NH":33863,"Ġstandings":33864,"rique":33865,"IQ":33866,"Ġbeneficiary":33867,"Ġaquarium":33868,"YouTube":33869,"ĠPowerShell":33870,"Ġbrightest":33871,"ĠWarrant":33872,"Sold":33873,"Writing":33874,"Ġbeginnings":33875,"ĠReserved":33876,"ĠLatinos":33877,"heading":33878,"Ġ440":33879,"Ġrooftop":33880,"ATING":33881,"Ġ390":33882,"VPN":33883,"Gs":33884,"kernel":33885,"turned":33886,"Ġpreferable":33887,"Ġturnovers":33888,"ĠHels":33889,"Sa":33890,"ĠShinji":33891,"veh":33892,"ĠMODULE":33893,"Viol":33894,"Ġexiting":33895,"Ġjab":33896,"ĠVanilla":33897,"Ġacron":33898,"ĠGap":33899,"bern":33900,"Ak":33901,"ĠMcGu":33902,"Ġendlessly":33903,"ĠFarage":33904,"ĠNoel":33905,"Va":33906,"MK":33907,"Ġbrute":33908,"ĠKru":33909,"ĠESV":33910,"ĠOlivia":33911,"âĢł":33912,"ĠKaf":33913,"Ġtrusting":33914,"Ġhots":33915,"324":33916,"Ġmalaria":33917,"Ġjson":33918,"Ġpounding":33919,"ortment":33920,"Country":33921,"Ġpostponed":33922,"Ġunequiv":33923,"?),":33924,"ĠRooney":33925,"udding":33926,"ĠLeap":33927,"urrence":33928,"shapeshifter":33929,"ĠHAS":33930,"osate":33931,"Ġcavern":33932,"Ġconservatism":33933,"ĠBAD":33934,"Ġmileage":33935,"Ġarresting":33936,"Vaults":33937,"Ġmixer":33938,"Democratic":33939,"ĠBenson":33940,"Ġauthored":33941,"8000":33942,"Ġproactive":33943,"ĠSpiritual":33944,"tre":33945,"Ġincarcerated":33946,"ĠSort":33947,"Ġpeaked":33948,"Ġwielding":33949,"reciation":33950,"×Ļ×":33951,"Patch":33952,"ĠEmmy":33953,"Ġexqu":33954,"tto":33955,"ĠRatio":33956,"ĠPicks":33957,"ĠGry":33958,"phant":33959,"Ġfret":33960,"Ġethn":33961,"Ġarchived":33962,"%-":33963,"cases":33964,"ĠBlaze":33965,"Ġimb":33966,"cv":33967,"yss":33968,"imony":33969,"Ġcountdown":33970,"Ġawakening":33971,"ĠTunisia":33972,"ĠRefer":33973,"ĠMJ":33974,"Ġunnatural":33975,"ĠCarnegie":33976,"izen":33977,"ĠNuggets":33978,"hess":33979,"Ġevils":33980,"647":33981,"Ġintroductory":33982,"loving":33983,"ĠMcMahon":33984,"Ġambiguity":33985,"Label":33986,"ĠAlmighty":33987,"Ġcoloring":33988,"ĠClaus":33989,"setting":33990,"NULL":33991,"ĠFavorite":33992,"ĠSIG":33993,">(":33994,"ĠShiva":33995,"ĠMayer":33996,"Ġstormed":33997,"ĠCoverage":33998,"weapons":33999,"igham":34000,"Ġunanswered":34001,"Ġleve":34002,"Ġcoy":34003,"cas":34004,"bags":34005,"asured":34006,"Seattle":34007,"ĠSantorum":34008,"serious":34009,"Ġcourageous":34010,"ĠSoup":34011,"Ġconfiscated":34012,"Ġ///":34013,"Ġunconventional":34014,"Ġmoms":34015,"ĠRohingya":34016,"ĠOrchestra":34017,"ĠPotion":34018,"Ġdiscredit":34019,"ĠFIL":34020,"fixed":34021,"ĠDeer":34022,"doi":34023,"ĠDimension":34024,"Ġbureaucrats":34025,"eteen":34026,"ĠactionGroup":34027,"ohm":34028,"Ġbumps":34029,"ĠUtility":34030,"Ġsubmarines":34031,"renheit":34032,"research":34033,"ĠShapiro":34034,"Ġsketches":34035,"Ġdeceptive":34036,"ĠVil":34037,"esame":34038,"ĠEssentially":34039,"Ġrampage":34040,"isky":34041,"Ġmuttered":34042,"thritis":34043,"Ġ236":34044,"fet":34045,"bars":34046,"Ġpupil":34047,"ĠThou":34048,"oS":34049,"song":34050,"Ġfractured":34051,"Ġrevert":34052,"picture":34053,"Ġcriterion":34054,"usher":34055,"Ġrepercussions":34056,"ĠVintage":34057,"ĠSuperintendent":34058,"Officers":34059,"Ġflagged":34060,"Ġblames":34061,"Ġinverse":34062,"ographers":34063,"Ġmakeshift":34064,"Ġdevoid":34065,"Ġfossils":34066,"ĠAristotle":34067,"ĠFunds":34068,"Ġdepleted":34069,"ĠFlu":34070,"ĠYuan":34071,"Ġwoes":34072,"Ġlipid":34073,"Ġsitu":34074,"requisites":34075,"Ġfurnish":34076,"ĠSamar":34077,"Ġshameful":34078,"Ġadversely":34079,"Ġadept":34080,"Ġremorse":34081,"Ġmurderous":34082,"uckles":34083,"ĠESL":34084,"Ġ314":34085,"sent":34086,"Ġredef":34087,"ĠCache":34088,"ĠPurs":34089,"igans":34090,"Ġ460":34091,"Ġprescriptions":34092,"Ġfres":34093,"Fuck":34094,"ocrates":34095,"Twenty":34096,"ĠWeird":34097,"ĠToggle":34098,"ĠCalled":34099,"itizens":34100,"Ġpoultry":34101,"Ġharvesting":34102,"ãĤ¦ãĤ¹":34103,"Bottom":34104,"Ġcautioned":34105,"tn":34106,"396":34107,"ĠNikki":34108,"Ġevaluations":34109,"Ġharassing":34110,"Ġbindings":34111,"ĠMonetary":34112,"Ġhitters":34113,"Ġadversary":34114,"unts":34115,"Ġsetback":34116,"Ġencrypt":34117,"ĠCait":34118,"Ġlows":34119,"enges":34120,"ĠNorn":34121,"Ġbulbs":34122,"Ġbottled":34123,"ĠVoyager":34124,"317":34125,"Ġspheres":34126,"politics":34127,"Ġsubtract":34128,"Ġsensations":34129,"Ġappalling":34130,"Ġ316":34131,"Ġenvironmentally":34132,"ĠSTEM":34133,"Ġpublishes":34134,"560":34135,"Ġdiligence":34136,"484":34137,"Ġadvises":34138,"Ġpetrol":34139,"Ġimagining":34140,"Ġpatrols":34141,"ĠInteger":34142,"ĠAshes":34143,"actus":34144,"ĠRadiant":34145,"ĠLT":34146,"itability":34147,"htaking":34148,"Setting":34149,"Ġnuanced":34150,"ĠReef":34151,"ĠDevelopers":34152,"Ni":34153,"pieces":34154,"990":34155,"License":34156,"Ġlowers":34157,"ĠOttoman":34158,"327":34159,"ooo":34160,"Ġquitting":34161,"markets":34162,"Behind":34163,"Ġbasin":34164,"Ġdocs":34165,"anie":34166,"flash":34167,"ctl":34168,"Ġcivilized":34169,"ĠFukushima":34170,"\"],\"":34171,"ĠKS":34172,"ĠHonestly":34173,"arat":34174,"Ġconstructs":34175,"ĠLans":34176,"ĠDire":34177,"ĠLIKE":34178,"ĠTrouble":34179,"Ġwithholding":34180,"ĠOblivion":34181,"Ġsanity":34182,"anya":34183,"Const":34184,"Ġgrocer":34185,"ĠCelsius":34186,"Ġrecounted":34187,"ĠWife":34188,"Border":34189,"atered":34190,"happy":34191,"Ġspoiler":34192,"Ġlogically":34193,"Hall":34194,"Ġsucceeding":34195,"Ġpolymorph":34196,"Ġaxes":34197,"ĠShotgun":34198,"ĠSlim":34199,"ĠPrinciples":34200,"ĠLeth":34201,"arta":34202,"Ġscor":34203,"Screenshot":34204,"Ġrelaxation":34205,"#$#$":34206,"Ġdeterrent":34207,"iddy":34208,"Ġpowerless":34209,"Ġlesbians":34210,"Ġchords":34211,"ĠEdited":34212,"selected":34213,"Ġseparatists":34214,"0002":34215,"Ġairspace":34216,"Ġturnaround":34217,"Ġcunning":34218,"PATH":34219,"Poly":34220,"Ġbombed":34221,"Ġtion":34222,"xs":34223,"Ġwithhold":34224,"Ġwaged":34225,"ĠLiberties":34226,"Flag":34227,"Ġcomforting":34228,"454":34229,"ĠIris":34230,"arers":34231,"Ġrag":34232,"Ġrelocated":34233,"ĠGuarant":34234,"Ġstrategically":34235,"Ġgamma":34236,"uberty":34237,"ĠLockheed":34238,"gres":34239,"Ġgrilled":34240,"ĠLowe":34241,"stats":34242,"ĠRocks":34243,"Ġsensing":34244,"Ġrenting":34245,"ĠGeological":34246,"اØ":34247,"otrop":34248,"Ġsew":34249,"Ġimproperly":34250,"486":34251,"Ġâĸł":34252,"Ġstarving":34253,"ĠBj":34254,"Discussion":34255,"328":34256,"ĠCombo":34257,"ĠFixes":34258,"NAT":34259,"Ġstriving":34260,"thora":34261,"Ġharvested":34262,"ĠPing":34263,"Ġplayful":34264,"Ġavenues":34265,"Ġoccupational":34266,"Ġwakes":34267,"ĠCourier":34268,"Ġdrummer":34269,"ĠBrowser":34270,"ĠHouth":34271,"itu":34272,"Ġapparel":34273,"paste":34274,"Ġhunted":34275,"ĠSecondly":34276,"lain":34277,"XY":34278,"ĠPIN":34279,"icons":34280,"Ġcocktails":34281,"Ġsizable":34282,"Ġhurdles":34283,"estinal":34284,"ĠRecreation":34285,"Ġeco":34286,"648":34287,"ĠDied":34288,"mint":34289,"Ġfingerprints":34290,"Ġdispose":34291,"ĠBosnia":34292,"tsy":34293,"2200":34294,"Ġinspected":34295,"ĠFou":34296,"Ġfuss":34297,"Ġambush":34298,"ĠRak":34299,"Ġmanifested":34300,"Prosecut":34301,"Ġsuffice":34302,"rences":34303,"Ġcompensated":34304,"ĠCyrus":34305,"Ġgenus":34306,"ĠWolverine":34307,"ĠTrends":34308,"Ġhikes":34309,"ĠSeen":34310,"Ġenrol":34311,"Cold":34312,"Ġpolitely":34313,"ĠSlav":34314,"ĠRupert":34315,"Ġeyewitness":34316,"ĠAlto":34317,"Ġuncomp":34318,"Ġposterior":34319,"Must":34320,"ĠHerz":34321,"Ġprogressively":34322,"Ġ234":34323,"Ġindifference":34324,"ĠCunningham":34325,"Ġacademia":34326,"Ġsewer":34327,"Ġastounding":34328,"ĠAES":34329,"rather":34330,"Ġeldest":34331,"Ġclimbs":34332,"ĠAdds":34333,"Ġoutcry":34334,"Ġcontag":34335,"ĠHouses":34336,"Ġpept":34337,"ĠMelania":34338,"interested":34339,"ĠUCH":34340,"ĠRoots":34341,"ĠHubbard":34342,"ĠTBD":34343,"ĠRomanian":34344,"filename":34345,"Stone":34346,"ĠImpl":34347,"Ġchromosome":34348,"Cle":34349,"dx":34350,"Ġscrambled":34351,"ĠPt":34352,"Ġ242":34353,"OPLE":34354,"Ġtremendously":34355,"Street":34356,"Ġcraving":34357,"Ġbundled":34358,"ĠRG":34359,"pipe":34360,"Ġinjuring":34361,"Ġarcane":34362,"Particip":34363,"ĠHeroic":34364,"sty":34365,"Ġtopping":34366,"ĠTempest":34367,"rentices":34368,"bh":34369,"Ġparanoia":34370,"ĠUnicode":34371,"Ġegregious":34372,"Ġ\\'":34373,"ĠOswald":34374,"Ġgravel":34375,"ĠSimpsons":34376,"Ġbland":34377,"ĠGuantanamo":34378,"Writer":34379,"liners":34380,"ĠDice":34381,"JC":34382,"Ġparity":34383,"Ġsided":34384,"Ġ237":34385,"ĠPyrrha":34386,"atters":34387,"dk":34388,"Fine":34389,"compan":34390,"Ġformulated":34391,"ĠIdol":34392,"ilers":34393,"hemoth":34394,"ĠFav":34395,"Ġintrusion":34396,"Ġcarrots":34397,"ĠLayer":34398,"ĠHacker":34399,"Ġ----------------":34400,"Ġmoderation":34401,"éģ":34402,"ococ":34403,"Ġcharacterize":34404,"ĠTeresa":34405,"Ġsocioeconomic":34406,"Ġperk":34407,"ĠParticipation":34408,"training":34409,"ĠPaulo":34410,"phys":34411,"Ġtrustworthy":34412,"Ġembodied":34413,"ĠMerch":34414,"currency":34415,"ĠPriority":34416,"Ġteasing":34417,"Ġabsorbing":34418,"Ġunfinished":34419,"ĠComparison":34420,"Ġdisple":34421,"writers":34422,"Ġprofessions":34423,"ĠPenguin":34424,"Ġangrily":34425,"ĠLINK":34426,"688":34427,"ĠCorrespond":34428,"Ġprevailed":34429,"Ġcartel":34430,"lp":34431,"asms":34432,"ĠRedemption":34433,"ĠIslamists":34434,"effects":34435,"dose":34436,"ĠLatter":34437,"ĠHalifax":34438,"Ġvas":34439,"ĠTopics":34440,"ĠNamed":34441,"advertising":34442,"zza":34443,"ICES":34444,"Ġretarded":34445,"achable":34446,"ĠPuppet":34447,"ĠItemLevel":34448,"Ġretract":34449,"Ġidentifiable":34450,"Aaron":34451,"ĠBuster":34452,"sol":34453,"helle":34454,"assemb":34455,"Hope":34456,"ranged":34457,"Ba":34458,"ĠPurch":34459,"éĢ":34460,"ĠSiri":34461,"Ġarrivals":34462,"Ġ1912":34463,"Ġshortened":34464,"Ġ312":34465,"Ġdiscrepancy":34466,"ĠTemperature":34467,"ĠWalton":34468,"Ġkinderg":34469,"polit":34470,"Ġremix":34471,"Ġconnectors":34472,"ãĥĺãĥ©":34473,"ĠKazakhstan":34474,"dominated":34475,"Ġsugars":34476,"imble":34477,"ĠPanic":34478,"ĠDemand":34479,"ĠColony":34480,"onen":34481,"ĠMER":34482,"775":34483,"uria":34484,"azaar":34485,"ĠDegree":34486,"Pri":34487,"Ġsunshine":34488,"Ġ251":34489,"Ġpsychedelic":34490,"Ġdigitally":34491,"ĠBraun":34492,"Ġshimmer":34493,"Ġshave":34494,"ĠTelesc":34495,"ĠAstral":34496,"ĠVenezuelan":34497,"ĠOG":34498,"Ġcrawling":34499,"Integ":34500,"ĠFeather":34501,"Ġunfolding":34502,"Ġappropriation":34503,"Ġè£ıè":34504,"ĠMobility":34505,"ĠNey":34506,"-.":34507,"bilt":34508,"LIN":34509,"ĠTube":34510,"ĠConversely":34511,"Ġkeyboards":34512,"ĠCao":34513,"Ġoverth":34514,"Ġlaure":34515,">>\\":34516,"ĠViper":34517,"acha":34518,"Offset":34519,"ĠRaleigh":34520,"ĠJae":34521,"Jordan":34522,"jp":34523,"Ġtotalitarian":34524,"Connector":34525,"Ġobserves":34526,"ĠSpartan":34527,"ĠImmediately":34528,"ĠScal":34529,"Cool":34530,"Ġtaps":34531,"Ġroar":34532,"Past":34533,"Ġchars":34534,"ĠBender":34535,"ĠSheldon":34536,"Ġpainter":34537,"Ġbeacon":34538,"ĠCreatures":34539,"Ġdownturn":34540,"Ġhinder":34541,"ĠAndromeda":34542,"ÃĽ":34543,"ccoli":34544,"ĠFitness":34545,"etrical":34546,"Ġutilizes":34547,"Ġsenate":34548,"Ġensemble":34549,"Ġcheers":34550,"TW":34551,"Ġaffluent":34552,"kil":34553,"rylic":34554,"ordering":34555,"Computer":34556,"Ġgruesome":34557,"ostics":34558,"ĠUbisoft":34559,"ĠKelley":34560,"Ġwrench":34561,"Ġbourgeoisie":34562,"IBLE":34563,"ĠPreston":34564,"worn":34565,"arist":34566,"reating":34567,"Ġstained":34568,"arine":34569,"Ġslime":34570,"ENN":34571,"Ġchests":34572,"Ġgroundwater":34573,"annot":34574,"ĠTray":34575,"ĠLocke":34576,"ĠCTR":34577,"Ġdudes":34578,"ĠExternal":34579,"ĠDecoder":34580,"Ġparamed":34581,"ĠMedline":34582,"809":34583,"ĠDinner":34584,"rupal":34585,"gz":34586,"ĠGum":34587,"ĠDemo":34588,"jee":34589,"Ġdh":34590,"berman":34591,"archs":34592,"Ġenqu":34593,"ĠEpstein":34594,"Ġdevastation":34595,"Ġfriendships":34596,"ĠArd":34597,"Ġ231":34598,"ĠRubin":34599,"ĠDistance":34600,"Ġspurred":34601,"Ġdossier":34602,"Ġoverlooking":34603,"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":34604,"Forest":34605,"ĠComes":34606,"\\\",":34607,"ĠIranians":34608,"Ġfixtures":34609,"Laughs":34610,"Ġcurry":34611,"ĠKingston":34612,"Ġsquash":34613,"Ġcatalogue":34614,"Ġabnormalities":34615,"Ġdigestive":34616,".........":34617,"Ġsubordinate":34618,"ogly":34619,"Ġ249":34620,"Middle":34621,"Ġmassac":34622,"Ġburgers":34623,"Ġdownstairs":34624,"Ġ1931":34625,"394":34626,"ĠVG":34627,"Ġlasers":34628,"ĠSikh":34629,"ĠAlexa":34630,"derived":34631,"Ġcyclist":34632,"ãģ®éŃĶ":34633,"oneliness":34634,"!!!!!!!!":34635,"Ġbuffs":34636,"legate":34637,"Ġraping":34638,"Ġrecommending":34639,"rored":34640,"Ġmulticultural":34641,"unique":34642,"Ġbusinessmen":34643,"Ġuneasy":34644,"ĠMAP":34645,"Ġdispersed":34646,"cipline":34647,"Jess":34648,"ĠKerala":34649,"å§":34650,"Ġabstraction":34651,"Surv":34652,"Uh":34653,"Ġprinters":34654,"ija":34655,"owder":34656,"Ġanalogous":34657,"ĠASP":34658,"afer":34659,"Ġunfolded":34660,"Ġleveling":34661,"Ġbreached":34662,"ĠHearing":34663,"Ġnat":34664,"Ġtranslating":34665,"critical":34666,"Ġantagonist":34667,"ĠYesterday":34668,"Ġfuzzy":34669,"wash":34670,"mere":34671,"Ġbewild":34672,"ĠMae":34673,"Virgin":34674,"phrase":34675,"Ġsignaled":34676,"ĠHIGH":34677,"Ġprotester":34678,"Ġgarner":34679,"unknown":34680,"Ġkay":34681,"Ġabducted":34682,"Ġstalking":34683,"amn":34684,"Ġdeserving":34685,"ĠRiv":34686,"ĠJorge":34687,"Ġscratching":34688,"ĠSaving":34689,"iping":34690,"Ġtease":34691,"Ġmissionary":34692,"ĠMorrow":34693,"TIME":34694,"Present":34695,"Ġchemotherapy":34696,"terness":34697,"ĠHomes":34698,"ĠPurdue":34699,"Ġstaunch":34700,"ĠWhitney":34701,"ĠTHERE":34702,"μ":34703,"iatus":34704,"ĠErnest":34705,"ĠDeploy":34706,"Ġcoveted":34707,"FML":34708,"ĠDialogue":34709,"Ġexited":34710,"fruit":34711,"Ġnerd":34712,"\":\"\",\"":34713,"Ġvivo":34714,"ruly":34715,"460":34716,"ĠAmen":34717,"rehensible":34718,"Ġâĺ":34719,"DIR":34720,"Ġadherence":34721,"Ġchew":34722,"ĠCoke":34723,"ĠSergei":34724,"digital":34725,"ĠNeck":34726,"gently":34727,"enthal":34728,"/)":34729,"Ġweary":34730,"Ġguise":34731,"ĠConcord":34732,"ĠOnion":34733,"atcher":34734,"Ġbinge":34735,"ĠDirective":34736,"Ġmanned":34737,"ansk":34738,"Ġillusions":34739,"Ġbillionaires":34740,"383":34741,"olyn":34742,"odynamic":34743,"ĠWheat":34744,"ĠAlic":34745,"Ġcoloured":34746,"ĠNAFTA":34747,"abo":34748,"Ġmacros":34749,"independent":34750,"sweet":34751,"Ġspac":34752,"ĠKabul":34753,"ĠÄ":34754,"eme":34755,"Ġdictated":34756,"Ġshouts":34757,"={":34758,"Ġripping":34759,"ĠShay":34760,"ĠCricket":34761,"directed":34762,"Ġanalysed":34763,"ĠWARRANT":34764,"agons":34765,"ĠBlazers":34766,"Ġcheered":34767,"Ġarithmetic":34768,"ĠTanz":34769,"373":34770,"ĠFlags":34771,"Ġ295":34772,"Ġwitches":34773,"ĠIncluded":34774,"ĠGained":34775,"ĠBlades":34776,"Gam":34777,"ĠSamantha":34778,"ĠAtlantis":34779,"ĠPratt":34780,"Ġspoiled":34781,"ĠIB":34782,"ĠRamirez":34783,"Probably":34784,"rero":34785,"ĠNg":34786,"ĠWarlock":34787,"tp":34788,"Ġoverhe":34789,"Ġadministrations":34790,"Ġtint":34791,"Ġregiment":34792,"Ġpistols":34793,"Ġblankets":34794,"Ġepist":34795,"Ġbowls":34796,"Ġhydraulic":34797,"Ġdean":34798,"Ġjung":34799,"Ġascend":34800,"705":34801,"ĠSantiago":34802,"î":34803,"Ġunavoid":34804,"ĠShaman":34805,"reb":34806,"Ġstemming":34807,"998":34808,"ĠMG":34809,"sticks":34810,"esthesia":34811,"ERO":34812,"Ġmorbid":34813,"ĠGrill":34814,"ĠPoe":34815,"anyl":34816,"Ġdeleting":34817,"ĠSurveillance":34818,"Ġdirectives":34819,"Ġiterations":34820,"ĠRox":34821,"ĠMilky":34822,"Father":34823,"Ġpatented":34824,"447":34825,"Ġprecursor":34826,"Ġmaiden":34827,"ĠPhen":34828,"ĠVegan":34829,"ĠPatent":34830,"Kelly":34831,"Redditor":34832,"Ġnods":34833,"Ġventilation":34834,"ĠSchwarz":34835,"Ġwizards":34836,"Ġominous":34837,"ĠHeads":34838,"ĠBG":34839,"Ġlumber":34840,"ĠSpiel":34841,"ĠisEnabled":34842,"Ġancestral":34843,"ĠShips":34844,"Ġwrestler":34845,"phi":34846,"Ġyuan":34847,"ĠRebellion":34848,"Ġiceberg":34849,"Ġmagically":34850,"Ġdiversion":34851,"arro":34852,"ythm":34853,"ĠRiders":34854,"ĠRobbie":34855,"ĠKara":34856,"ĠMaintenance":34857,"ĠHerb":34858,"Ġharms":34859,"packed":34860,"ĠFeinstein":34861,"Ġmarrying":34862,"Ġblending":34863,"ĠRates":34864,"Ġ1880":34865,"Ġwrink":34866,"ĠUnch":34867,"ĠTorch":34868,"described":34869,"Ġhumanoid":34870,"ilitating":34871,"ĠConv":34872,"ĠFeld":34873,"IGHTS":34874,"Ġwhistleblower":34875,"ortmund":34876,"etsy":34877,"arrett":34878,"ĠMono":34879,"ĠIke":34880,"ĠCNBC":34881,"ĠWAY":34882,"ĠMDMA":34883,"ĠIndividuals":34884,"Ġsupplemental":34885,"Ġpowerhouse":34886,"ĠStru":34887,"Focus":34888,"aphael":34889,"ĠColleg":34890,"atti":34891,"ZA":34892,"Ġperenn":34893,"ĠSignature":34894,"ĠRodney":34895,"Ġcubes":34896,"iddled":34897,"ĠDante":34898,"ĠINV":34899,"ilingual":34900,"ĠCth":34901,"Ġsofa":34902,"Ġintimidate":34903,"ĠRoe":34904,"ĠDiplom":34905,"ĠCountries":34906,"ayson":34907,"Ġextradition":34908,"Ġdisabling":34909,"ĠCardiff":34910,"Ġmemorandum":34911,"ĠTrace":34912,"Ġ???":34913,"sector":34914,"ĠRouhani":34915,"ĠYates":34916,"ĠFreeze":34917,"Ġbladder":34918,"Motor":34919,"ĠPromise":34920,"antasy":34921,"Ġforeseeable":34922,"ĠCologne":34923,"container":34924,"ĠTrees":34925,"ĠGors":34926,"ĠSinclair":34927,"Ġbarring":34928,"keye":34929,"Ġslashed":34930,"ĠStatistical":34931,"éĩ":34932,"Ġâĸº":34933,"Allows":34934,"Ġhumility":34935,"Ġdrilled":34936,"ĠFurn":34937,"443":34938,"Ġsewage":34939,"Ġhomepage":34940,"Ġcourtyard":34941,"Ġvile":34942,"Ġsubsidiaries":34943,"ajo":34944,"directory":34945,"Ġammon":34946,"Vers":34947,"charges":34948,"Ġ}}":34949,"ĠChains":34950,"Ġ246":34951,"nob":34952,"Ġpercept":34953,"Ġgrit":34954,"Ġfishermen":34955,"ĠIraqis":34956,"ĠDISTR":34957,"ĠFULL":34958,"ĠEvaluation":34959,"graph":34960,"atial":34961,"Ġcooperating":34962,"Ġmelan":34963,"Ġenlightened":34964,"Ġali":34965,"tailed":34966,"Ġsalute":34967,"Ġweakest":34968,"ĠBulldogs":34969,"UA":34970,"ĠAlloy":34971,"Ġsemen":34972,"ocene":34973,"ĠWilliamson":34974,"spr":34975,",âĢĶ":34976,"ĠGF":34977,"ittens":34978,"Beat":34979,"ĠJunk":34980,"iphate":34981,"ĠFarmers":34982,"ĠBitcoins":34983,"igers":34984,"dh":34985,"ĠLoyal":34986,"payer":34987,"Ġentertained":34988,"Ġpenned":34989,"Ġcoupon":34990,"Queue":34991,"Ġweakening":34992,"carry":34993,"Ġunderestimate":34994,"Ġshootout":34995,"Ġcharismatic":34996,"ĠProcedure":34997,"Ġprudent":34998,"inances":34999,"Ġriches":35000,"Ġcortical":35001,"Ġstrides":35002,"Ġdrib":35003,"ĠOilers":35004,"540":35005,"ĠPerform":35006,"ĠBangkok":35007,"Ġeuth":35008,"SER":35009,"Ġsimplistic":35010,"tops":35011,"campaign":35012,"Quality":35013,"Ġimpoverished":35014,"ĠEisenhower":35015,"Ġaugment":35016,"ĠHarden":35017,"Ġintervened":35018,"Ġlistens":35019,"ĠKok":35020,"Ġsage":35021,"Ġrubbish":35022,"ĠDed":35023,"Ġmull":35024,"pelling":35025,"Ġvideot":35026,"Production":35027,"DJ":35028,"miah":35029,"Ġadaptations":35030,"Ġmedically":35031,"Ġboarded":35032,"Ġarrogance":35033,"Ġscrapped":35034,"Ġoppress":35035,"FORMATION":35036,"Ġjunction":35037,"415":35038,"EEEE":35039,"Skill":35040,"Ġsubdu":35041,"ĠSuggest":35042,"ĠPett":35043,"Ġlett":35044,"ĠManip":35045,"ĠCaf":35046,"ĠCooperation":35047,"Ther":35048,"Ġregained":35049,"¶æ":35050,"reflect":35051,"Ġthugs":35052,"ĠShelby":35053,"Ġdictates":35054,"ĠWeiner":35055,"ĠHale":35056,"Ġbattleground":35057,"schild":35058,"Ġcondol":35059,"hunt":35060,"ositories":35061,"Ġaccuses":35062,"Filename":35063,"Ġshri":35064,"Ġmotivate":35065,"Ġreflections":35066,"Null":35067,"ĠLobby":35068,"¥µ":35069,"ĠSATA":35070,"ĠBackup":35071,"Ñĥ":35072,"nin":35073,"ĠCorrection":35074,"Ġjuicy":35075,"utra":35076,"ĠPric":35077,"Ġrestraining":35078,"ĠAirbnb":35079,"ĠArrest":35080,"Ġappropriations":35081,"Ġslopes":35082,"Ġmanslaughter":35083,"Ġworkings":35084,"ĠHuss":35085,"ĠFrey":35086,"Leave":35087,"ĠHarmony":35088,"ĠFeder":35089,"Ġ430":35090,"Ġtrench":35091,"Ġgladly":35092,"Ġbullpen":35093,"ĠGau":35094,"bones":35095,"Ġgroove":35096,"Ġpretext":35097,"ãħĭ":35098,"Ġtransmitter":35099,"ĠComponent":35100,"Ġunderage":35101,"ĠEmpires":35102,"Tile":35103,"Ġoy":35104,"ĠMarvin":35105,"ĠCAS":35106,"Ġbloss":35107,"Ġreplicated":35108,"ĠMariners":35109,"Marcus":35110,"ĠBlocks":35111,"Ġliberated":35112,"Ġbutterfly":35113,"Feel":35114,"Ġfermentation":35115,"Ġyoutube":35116,"Ġoffend":35117,"ĠTerm":35118,"resist":35119,"Ġcessation":35120,"Ġinsurgency":35121,"Ġbir":35122,"ĠRaise":35123,"595":35124,"Ġhypotheses":35125,"502":35126,"Ġplaque":35127,"ocrat":35128,"Ġjackets":35129,"ĠHuffPost":35130,"among":35131,"Ġconfer":35132,"487":35133,"ĠLilly":35134,"Ġadapting":35135,"ĠFay":35136,"Ġshoved":35137,"vec":35138,"Ġrefine":35139,"Ġgon":35140,"Ġgunmen":35141,"zai":35142,"ĠShuttle":35143,"ĠIzan":35144,"Ġ1913":35145,"Ġplethora":35146,"··":35147,"Ġ510":35148,"Ġpuberty":35149,"Ġ241":35150,"ĠWealth":35151,"ĠAlma":35152,"ĠMEM":35153,"ĠAdults":35154,"Cas":35155,"prison":35156,"Race":35157,"Ġwaterproof":35158,"Ġathleticism":35159,"Ġcapitalize":35160,"ĠJuice":35161,"Ġilluminated":35162,"ĠPascal":35163,"Ġirritation":35164,"ĠWitnesses":35165,"adle":35166,"ĠAstro":35167,"Ġfax":35168,"ĠElvis":35169,"Primary":35170,"ĠLich":35171,"ĠElves":35172,"Ġresiding":35173,"Ġstumble":35174,"319":35175,"ĠPKK":35176,"Ġadversaries":35177,"DOS":35178,"ĠRitual":35179,"Ġsmear":35180,"Ġarson":35181,"idental":35182,"Ġscant":35183,"Ġmonarchy":35184,"Ġhalftime":35185,"Ġresidue":35186,"Ġindign":35187,"ĠShaun":35188,"ĠElm":35189,"auri":35190,"Aff":35191,"WATCH":35192,"ĠLyon":35193,"helps":35194,"361":35195,"Ġlobbyist":35196,"Ġdiminishing":35197,"Ġoutbreaks":35198,"Ġgoats":35199,"favorite":35200,"ĠNah":35201,"sonian":35202,"ĠBooster":35203,"Ġsandbox":35204,"ĠFare":35205,"ĠMalta":35206,"ĠattRot":35207,"ĠMOR":35208,"lde":35209,"Ġnavigating":35210,"Touch":35211,"Ġuntrue":35212,"ĠDisaster":35213,"Ġludicrous":35214,"Password":35215,"ĠJFK":35216,"blogspot":35217,"416":35218,"ĠUNDER":35219,"ernal":35220,"Ġdelaying":35221,"TOP":35222,"Ġimplants":35223,"ĠAVG":35224,"ĠHuge":35225,"attr":35226,"Ġjournalistic":35227,"ĠPeyton":35228,"ĠIA":35229,"Rap":35230,"goal":35231,"ĠProgramme":35232,"Ġsmashing":35233,"wives":35234,"println":35235,"ĠPlague":35236,"inus":35237,"EEP":35238,"Ġcruiser":35239,"ĠParish":35240,"uminium":35241,"Ġoccupants":35242,"ĠJihad":35243,"mop":35244,"Ġpint":35245,"Ġhect":35246,"ĠMecca":35247,"director":35248,"ĠFunding":35249,"ĠMixed":35250,"Ġstag":35251,"Tier":35252,"Ġgust":35253,"Ġbrightly":35254,"orsi":35255,"Ġuphill":35256,"RD":35257,"Ġlesions":35258,"ĠBundy":35259,"livious":35260,"Ġbiologist":35261,"ĠFaculty":35262,"ĠAuthorization":35263,"Ġ244":35264,"Allow":35265,"ï¸":35266,"ĠGiul":35267,"Ġpertinent":35268,"otaur":35269,"esse":35270,"ĠRoof":35271,"Ġunmanned":35272,"351":35273,"ĠShak":35274,"ĠOrient":35275,"Ġendanger":35276,"Dir":35277,"Ġreplen":35278,"edient":35279,"Ġtailor":35280,"Ġgadgets":35281,"Ġaudible":35282,"âĺĨ":35283,"Nice":35284,"Ġbombard":35285,"ĠRape":35286,"Ġdefiance":35287,"ĠTWO":35288,"ĠFilipino":35289,"Ġunaffected":35290,"ervatives":35291,"Ġsoared":35292,"ĠBolton":35293,"Ġcompromising":35294,"ĠBrewers":35295,"RAL":35296,"ĠAHL":35297,"icycle":35298,"Ġvampires":35299,"Ġdipped":35300,"oyer":35301,"ĠXIII":35302,"Ġsideways":35303,"ĠWaste":35304,"ĠDiss":35305,"ĠâĶľâĶĢâĶĢ":35306,"$.":35307,"Ġhabitats":35308,"ĠBeef":35309,"truth":35310,"trained":35311,"split":35312,"Rus":35313,"Andy":35314,"ĠBram":35315,"REP":35316,"pid":35317,"è£ħ":35318,"ĠMutant":35319,"Anim":35320,"ĠMarina":35321,"Ġfutile":35322,"highest":35323,"frequency":35324,"Ġepilepsy":35325,"Ġcoping":35326,"Ġconcise":35327,"Ġtracing":35328,"ĠSUN":35329,"panel":35330,"ĠSophie":35331,"ĠCrowley":35332,"ĠAdolf":35333,"ĠShooter":35334,"Ġshaky":35335,"ĠIG":35336,"ĠLies":35337,"ĠBarber":35338,"pkg":35339,"Ġuptake":35340,"Ġpredatory":35341,"ULTS":35342,"/**":35343,"Ġintoxicated":35344,"ĠWestbrook":35345,"odder":35346,"hement":35347,"Ġbaseman":35348,"APD":35349,"storage":35350,"ĠFifty":35351,"editor":35352,"GEN":35353,"UTION":35354,"irting":35355,"Ġsewing":35356,"rift":35357,"Ġagony":35358,"ĠSands":35359,"Ġ254":35360,"Cash":35361,"Ġlodge":35362,"Ġpunt":35363,"Natural":35364,"ĠIdeas":35365,"Ġerroneous":35366,"ĠSensor":35367,"ĠHannity":35368,"Ġ1921":35369,"Ġmould":35370,"ĠGon":35371,"kaya":35372,"Ġanonymously":35373,"ĠKEY":35374,"Ġsimulator":35375,"Winter":35376,"Ġstreamed":35377,"507":35378,"?\",":35379,"Ġteased":35380,"Ġcoefficient":35381,"Ġwartime":35382,"ĠTHR":35383,"''.":35384,"ĠBanking":35385,"mpire":35386,"Ġfandom":35387,"Ġlia":35388,"Ga":35389,"Ġdownhill":35390,"Ġinterpreting":35391,"Individual":35392,"Norm":35393,"Ġjealousy":35394,"bitcoin":35395,"Ġpleasures":35396,"ĠToys":35397,"ĠChevrolet":35398,"ĠAdvisor":35399,"IZE":35400,"Ġreceptions":35401,"706":35402,"Cro":35403,"Ġ262":35404,"Ġcitrus":35405,"iru":35406,"Reviewer":35407,"jected":35408,"UES":35409,"anz":35410,"1981":35411,"ĠWorker":35412,"Ġcomplied":35413,"orescent":35414,"continental":35415,"Ton":35416,"ĠPrism":35417,"ĠSheep":35418,"Ġ288":35419,"nox":35420,"ĠVog":35421,"Ord":35422,"Ġrealms":35423,"tek":35424,"Ġirrigation":35425,"Ġbicycles":35426,"Ġelectronically":35427,"poly":35428,"tall":35429,"());":35430,"Ġaesthetics":35431,"ĠIntegrated":35432,"Explore":35433,"Ġdunk":35434,"476":35435,"pain":35436,"ĠJacques":35437,"ĠDmit":35438,"Frames":35439,"Ġreunited":35440,"Ġhumid":35441,"Dro":35442,"Political":35443,"Ġyouthful":35444,"Ġentails":35445,"Ġmosquito":35446,"363":35447,"species":35448,"Ġcoordinating":35449,"ĠMayhem":35450,"ĠMagnus":35451,"Mount":35452,"Improved":35453,"ĠSTATE":35454,"ATTLE":35455,"Ġflowed":35456,"Ġtackled":35457,"Ġfashioned":35458,"Ġreorgan":35459,"ivari":35460,"finger":35461,"Ġreluctantly":35462,"etting":35463,"ĠVand":35464,"young":35465,"ĠGarland":35466,"Ġpresumption":35467,"Ġamenities":35468,"ĠPleasant":35469,"onential":35470,"ĠOxy":35471,"Ġmorals":35472,"ĠYah":35473,"Ready":35474,"Simon":35475,"Enh":35476,"Demon":35477,"Ġclich":35478,"Monitor":35479,"ĠDU":35480,"Ġwelcomes":35481,"Ġstandout":35482,"Ġdreadful":35483,"Ġbananas":35484,"Ġballoons":35485,"hooting":35486,"basic":35487,"Ġsuffix":35488,"Ġduly":35489,"cano":35490,"Chain":35491,"atos":35492,"Ġgeopolitical":35493,"Ġ(&":35494,"ĠGemini":35495,"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ":35496,"Ġacquitted":35497,"Luck":35498,"protect":35499,"1024":35500,"Ġscarcity":35501,"Ġmindfulness":35502,"ecided":35503,"DN":35504,"prime":35505,"ĠPresidents":35506,"ĠVIDEO":35507,"Ġ(âĪĴ":35508,"addock":35509,"NOR":35510,"ĠPru":35511,"pun":35512,"ĠLOL":35513,"))))":35514,"ĠLiqu":35515,"ĠSAS":35516,"Ġstyling":35517,"Ġpunishments":35518,"Ġnumb":35519,"Ġascertain":35520,"ĠRockies":35521,"flu":35522,"Thumbnail":35523,"Ġperpetrated":35524,"ĠSemi":35525,"Ġdisarm":35526,"ĠOlder":35527,"ĠException":35528,"Ġexponentially":35529,"ĠCommunities":35530,"Ġabolish":35531,"ĠPartner":35532,"ptoms":35533,"Ġ777":35534,"ĠFoley":35535,"ĠCases":35536,"Ġgrease":35537,"ĠRebirth":35538,"Ground":35539,"Ġ;)":35540,"ĠDoctrine":35541,"ikini":35542,"Ye":35543,"ĠBlossom":35544,"Ġpersists":35545,"bill":35546,"Ġinfusion":35547,"Ġbuddies":35548,"911":35549,"ĠPatient":35550,"Ġdemos":35551,"Ġacquaintance":35552,"ĠPaw":35553,"atari":35554,"Ġxml":35555,"Ġfascination":35556,"ĠServe":35557,"ÏĤ":35558,"branded":35559,"Ġaz":35560,"Returns":35561,"Ġovershadow":35562,"Ġroam":35563,"Ġspeedy":35564,"numbered":35565,"helial":35566,"Ġdisciple":35567,"Ġassurances":35568,"given":35569,"pecting":35570,"ĠNatalie":35571,"çͰ":35572,"Ġmosquitoes":35573,"rotein":35574,"Ġnumeric":35575,"Ġindependents":35576,"Ġtransitional":35577,"Ġreactionary":35578,"ĠMechdragon":35579,"doctor":35580,"Ġshortest":35581,"Ġsequential":35582,"ĠBac":35583,"ĠAccounts":35584,"ãģĮ":35585,"achy":35586,"ractive":35587,"ĠRegiment":35588,"Ġbreathtaking":35589,"fficiency":35590,"ĠBates":35591,"Ġ311":35592,"Ġwardrobe":35593,"fts":35594,"ĠBerk":35595,"Simply":35596,"ĠRiverside":35597,"ivering":35598,"idential":35599,"lucent":35600,"Ġenriched":35601,"ĠConver":35602,"ĠGiving":35603,"ãĥĻ":35604,"Ġlegalize":35605,"ĠFTC":35606,"Ġfreaking":35607,"Mix":35608,"Ġterrestrial":35609,"esian":35610,"cients":35611,"Wing":35612,"LOAD":35613,"Ġledge":35614,"ĠViolent":35615,"ĠMetall":35616,"Ġ308":35617,"Ġsoutheastern":35618,"hetto":35619,"Meat":35620,"Ġslowdown":35621,"Ġretreated":35622,"Jeremy":35623,"endas":35624,"*****":35625,"eric":35626,"Ġreins":35627,"oppable":35628,"ĠHumanity":35629,"earances":35630,"rigan":35631,"Camera":35632,"Ġwaivers":35633,"soc":35634,"Ġalteration":35635,"transform":35636,"ĠCemetery":35637,"506":35638,"Ġindefinite":35639,"Ġstimulating":35640,"yg":35641,"603":35642,"ĠSop":35643,"Ġdescriptive":35644,"Phase":35645,"ĠEdmund":35646,"Ġpneumonia":35647,"ventus":35648,"Amb":35649,"Ġlaboratories":35650,"ĠExclusive":35651,"ugar":35652,"Were":35653,"Ġmalfunction":35654,"Ġhomosexuals":35655,"Ġ-------":35656,"uni":35657,"Ġturbines":35658,"ĠEquity":35659,"Du":35660,"Ġminded":35661,"ĠRH":35662,"ĠBlackhawks":35663,"Ġfeats":35664,"Ġ1700":35665,"repl":35666,"362":35667,"laden":35668,"Ġindispensable":35669,"lyss":35670,"tti":35671,"Ġreel":35672,"Ġdiverted":35673,"Ġlikeness":35674,"Ġsubscriptions":35675,"Ġfingert":35676,"Ġfilthy":35677,"destruct":35678,"draft":35679,"ĠBernardino":35680,"launch":35681,"Ġperplex":35682,"ĠSUM":35683,"carb":35684,"Ġsweater":35685,"ĠVenture":35686,"ĠJag":35687,"ĠCeleb":35688,"ĠVoters":35689,"Ġsteadfast":35690,"Ġathletics":35691,"ĠHanson":35692,"ĠDrac":35693,"Tracker":35694,"Ġcommend":35695,"ĠPresidency":35696,"ĠDID":35697,"informed":35698,"Ġwebpage":35699,"Pretty":35700,"Ġforcefully":35701,"ãĥĥãĤ¯":35702,"Ġrelocation":35703,"Ġsatire":35704,"âī":35705,"ĠSunderland":35706,"æĦ":35707,"Voice":35708,"????????":35709,"Ġinformant":35710,"Ġbowel":35711,"ĠUniform":35712,"Ġ...\"":35713,"Ġpurge":35714,"Ġpicnic":35715,"ĠUmb":35716,"ĠUPDATE":35717,"ĠSapphire":35718,"ĠStall":35719,"learn":35720,"Ġobjectively":35721,"Ġobliter":35722,"Ġloophole":35723,"Ġjourneys":35724,"Ġomission":35725,"Pros":35726,"ĠSidney":35727,"ploma":35728,"Ġsprayed":35729,"Ġguru":35730,"Ġtraitor":35731,"Ġtimet":35732,"Ġsnapping":35733,"ĠSevent":35734,"urnal":35735,"ĠUkip":35736,"Ġbowed":35737,"poral":35738,"liberal":35739,"Ros":35740,"Questions":35741,"iOS":35742,"Ġsummarize":35743,"STAT":35744,"Ġ1850":35745,"apest":35746,"Ġlender":35747,"ĠVariable":35748,"bringing":35749,"ĠLORD":35750,",)":35751,"Ġcollapses":35752,"xiety":35753,"ĠNed":35754,"YD":35755,"ĠScha":35756,"Ġantibody":35757,"Ġdisband":35758,"yre":35759,"illusion":35760,"Ġrover":35761,"shed":35762,"ĠHirosh":35763,"cci":35764,"Ġcalam":35765,"ĠMorton":35766,"Pinterest":35767,"Ġ1928":35768,"ĠEuras":35769,"ordes":35770,"Ġfences":35771,"ĠInventory":35772,"ĠValencia":35773,"ĠUd":35774,"ĠTiff":35775,"Ġsque":35776,"Ġquotation":35777,"Ġtroublesome":35778,"erker":35779,"QUEST":35780,"ĠKingdoms":35781,"south":35782,"Ġlevy":35783,"Prince":35784,"ĠSting":35785,"Ġnicknamed":35786,"Ġappe":35787,"Ġphotographic":35788,"Ġcorpus":35789,"reference":35790,"ĠTrog":35791,"Unt":35792,")=(":35793,"ĠLatvia":35794,"Ġactivating":35795,"Ġlicensee":35796,"Ġdisparities":35797,"ĠNewsletter":35798,"ãĥĥãĥĪ":35799,"Ġfreeing":35800,"ĠJeep":35801,"ĠPerception":35802,"insk":35803,"Ġsilicone":35804,"ĠHayden":35805,"Lean":35806,"ĠSuzuki":35807,"ibrarian":35808,"668":35809,"Ġspor":35810,"Ġcorrelations":35811,"aghetti":35812,"Ġtuber":35813,"ĠIPCC":35814,"ilus":35815,"ĠVu":35816,"Ġwealthiest":35817,"ĠCarbuncle":35818,"anza":35819,"Ġfooled":35820,"ĠZur":35821,"Ġdaddy":35822,"rano":35823,"ilian":35824,"Ġknockout":35825,"fman":35826,"required":35827,"ĠWikileaks":35828,"ĠDuffy":35829,"ONT":35830,"Ġinsol":35831,"ĠObjects":35832,"Ġbou":35833,"ĠNordic":35834,"ĠInsert":35835,"scan":35836,"Ġdancers":35837,"Ġidiots":35838,"majority":35839,"ĠNeville":35840,"ĠFreeBSD":35841,"Ġtart":35842,"panic":35843,"690":35844,"Ġcocoa":35845,"Ġsampled":35846,"Ġlookup":35847,"Indust":35848,"Ġinjections":35849,"genre":35850,"Ġau":35851,"Ġroadway":35852,"Ġgenitals":35853,"Kind":35854,"ĠExaminer":35855,"ĠYaz":35856,"Fresh":35857,"Ġparalysis":35858,"ĠAluminum":35859,"Ġreap":35860,"oké":35861,"Ġsloppy":35862,"ĠTunnel":35863,"posium":35864,"nery":35865,"enic":35866,"Ġherbal":35867,"ĠOuter":35868,"ĠBuilder":35869,"Ġincur":35870,"Ġideologies":35871,"Ġbackups":35872,"consuming":35873,"ĠDetect":35874,"deck":35875,"ĠKNOW":35876,"ĠGret":35877,"ĠMIC":35878,"Ġtoughness":35879,"ĠExhibit":35880,"Ġhive":35881,"Les":35882,"ĠSCHOOL":35883,"ĠAtari":35884,"alde":35885,"ĠNull":35886,"andestine":35887,"mouse":35888,"Ġbrigade":35889,"489":35890,"Ġrevol":35891,"ĠLawson":35892,"ĠWah":35893,"opoly":35894,"ebted":35895,"ĠSaunders":35896,"Ġ313":35897,"ĠWinc":35898,"Ġtaboo":35899,"ĠHelmet":35900,"Ġwedge":35901,"chip":35902,"ĠTina":35903,"bg":35904,"Ġinfuri":35905,"rn":35906,"Ġanomalies":35907,"ĠSync":35908,"ĠExam":35909,"ĠCommit":35910,"ĠDiary":35911,"ĠALSO":35912,"ĠDebor":35913,"omedical":35914,"Ġcomprehension":35915,"655":35916,"Ġempowering":35917,"Ġire":35918,"Ġjuices":35919,"ĠETH":35920,"ĠBoxing":35921,"=\"/":35922,"Ġfacilitated":35923,"poke":35924,"ĠParsons":35925,"ĠModer":35926,"travel":35927,"Ġcivilizations":35928,"Ġlibertarians":35929,"Ġrune":35930,"ĠClarks":35931,"athed":35932,"Ġcampaigners":35933,"ĠDispatch":35934,"ĠFahrenheit":35935,"ĠCapcom":35936,"----------":35937,"Ġlace":35938,"Ġdraining":35939,"Ġliner":35940,"ĠArtificial":35941,"én":35942,"task":35943,"]).":35944,"ĠGMO":35945,"ĠOperator":35946,"ordinary":35947,"ĠInfluence":35948,"ĠUps":35949,"Ġpotency":35950,"ussen":35951,"ospons":35952,"ĠSwim":35953,"ĠDeadline":35954,"Unity":35955,"Ġculinary":35956,"Ġenlightenment":35957,"Ġwearer":35958,"Ġmined":35959,"Ġply":35960,"Ġincest":35961,"ĠDVDs":35962,"Walk":35963,"BTC":35964,"Trade":35965,"Ġdeval":35966,"iband":35967,"ĠOversight":35968,"Palestinian":35969,"Ġdart":35970,"Ġmul":35971,"LR":35972,"Ġremovable":35973,"ĠRealms":35974,"ìĿ":35975,"Ġmiscar":35976,"ĠVulkan":35977,"685":35978,"ère":35979,"ĠSap":35980,"Ġmerging":35981,"ĠCarly":35982,"chester":35983,"Ġbrisk":35984,"Ġluxurious":35985,"ĠGenerator":35986,"Ġbitterness":35987,"Ġedible":35988,"Ġ243":35989,"TG":35990,"Ġrectangle":35991,"WithNo":35992,"below":35993,"Jenn":35994,"Ġdarkest":35995,"Ġhitch":35996,"Ġdosage":35997,"Ġscaven":35998,"ĠKeller":35999,"ĠIllustrated":36000,"Certainly":36001,"ĠMavericks":36002,"Marginal":36003,"Ġdiarrhea":36004,"Ġenormously":36005,"Ġ999":36006,"shr":36007,"quart":36008,"Ġadamant":36009,"ĠMew":36010,"Ġrenovation":36011,"Ġcervical":36012,"ĠPercentage":36013,"eners":36014,"ĠKimber":36015,"Ġfloats":36016,"Ġdex":36017,"ĠWitcher":36018,"ĠSwansea":36019,"dm":36020,"Ġsalty":36021,"yellow":36022,"Ġcape":36023,"ĠDrain":36024,"ĠPaula":36025,"ĠToledo":36026,"lesi":36027,"Magazine":36028,"ĠWick":36029,"ĠMn":36030,"ĠAck":36031,"ĠRiding":36032,"ASON":36033,"Ġhomophobic":36034,"ARP":36035,"Ġwandered":36036,"CPU":36037,"oodoo":36038,"ĠPipe":36039,"Ġtightening":36040,"ĠButt":36041,"318":36042,"Ġdeserted":36043,"Session":36044,"Ġfacilitating":36045,"Jump":36046,"Ġemergencies":36047,"OWER":36048,"Ġexhaustive":36049,"ĠAFTER":36050,"Ġheartbeat":36051,"ĠLabel":36052,"acky":36053,"ĠCertified":36054,"iltration":36055,"Ze":36056,"ĠUtt":36057,"Ġ1300":36058,"Ġpresume":36059,"ĠDisp":36060,"Ġsurged":36061,"Ġdolls":36062,"Columb":36063,"Ġchimpan":36064,"ĠRazor":36065,"Ġticks":36066,"Ġcouncillor":36067,"Ġpilgrimage":36068,"ĠRebels":36069,"ĠQC":36070,"ĠAuction":36071,"xia":36072,"ikk":36073,"bred":36074,"Ġinsertion":36075,"Ġcoarse":36076,"dB":36077,"SEE":36078,"ĠZap":36079,"ĠFoo":36080,"Ġcontempor":36081,"ĠQuarterly":36082,"otions":36083,"ĠAlchemist":36084,"ĠTrey":36085,"ĠDuo":36086,"Sweet":36087,"804":36088,"ĠGiov":36089,"Ġfunn":36090,"Nin":36091,"hoff":36092,"Ġramifications":36093,"Ġ1922":36094,"ĠExperts":36095,"azes":36096,"Ġgarments":36097,"arial":36098,"ĠNab":36099,"Ġ257":36100,"ĠVed":36101,"Ġhumorous":36102,"ĠPompe":36103,"Ġnylon":36104,"Ġlurking":36105,"ĠSergey":36106,"ĠMattis":36107,"Ġmisogyny":36108,"ĠComponents":36109,"ĠWatching":36110,"ĠFolk":36111,"ractical":36112,"Bush":36113,"Ġtaped":36114,"Ġgrouping":36115,"Ġbeads":36116,"Ġ2048":36117,"Ġcondu":36118,"querque":36119,"Reading":36120,"Ġgrievances":36121,"Ultra":36122,"Ġendpoint":36123,"Hig":36124,"ĠStatic":36125,"ĠScarborough":36126,"Lua":36127,"ĠMessi":36128,"aqu":36129,"ĠPsyNet":36130,"ĠRudd":36131,"Ġavenue":36132,"vp":36133,"Jer":36134,"Ġshady":36135,"ĠResist":36136,"ĠArtemis":36137,"Ġcareless":36138,"Ġbrokers":36139,"Ġtemperament":36140,"Ġ520":36141,"Tags":36142,"ĠTurning":36143,"Ġuttered":36144,"Ġpedd":36145,"Ġimprovised":36146,"Ġ:(":36147,"Ġtabl":36148,"Ġplains":36149,"1600":36150,"pressure":36151,"ĠEssence":36152,"margin":36153,"friends":36154,"ĠRestoration":36155,"Ġpollut":36156,"ĠPoker":36157,"ĠAugustine":36158,"ĠCIS":36159,"ĠSEAL":36160,"orama":36161,"Ġthwart":36162,"seek":36163,"Ġpagan":36164,"º":36165,"cpu":36166,"Ġgarn":36167,"Ġassortment":36168,"ĠILCS":36169,"tower":36170,"Recommended":36171,"Ġunborn":36172,"ĠRandomRedditor":36173,"ĠRandomRedditorWithNo":36174,"Ġparalyzed":36175,"Ġeruption":36176,"Ġintersect":36177,"ĠStoke":36178,"ĠSco":36179,"Bind":36180,"å¾":36181,"ĠPNG":36182,"ĠNegative":36183,"ĠNOAA":36184,"Leon":36185,"Ġalloy":36186,"ĠLama":36187,"ĠDiversity":36188,"575":36189,"Ġunderestimated":36190,"ĠScor":36191,"Ġmural":36192,"Ġbusted":36193,"soon":36194,"lif":36195,"Ġnonex":36196,"Ġallergy":36197,"ĠUnderworld":36198,"ĠRays":36199,"ĠBlasio":36200,"Ġhrs":36201,"ĠDir":36202,"Ġ327":36203,"byter":36204,"Ġreplacements":36205,"Ġactivates":36206,"rived":36207,"MH":36208,"Ġpans":36209,"ĠHI":36210,"Ġlongitudinal":36211,"Ġnuisance":36212,"aler":36213,"Ġswell":36214,"ĠSigned":36215,"sci":36216,"ĠIsles":36217,"ĠAGA":36218,"Ġdefiant":36219,"Ġsonic":36220,"ocon":36221,"KC":36222,"ĠAim":36223,"tie":36224,"ahah":36225,"ĠmL":36226,"DX":36227,"Ġbisc":36228,"ĠBillboard":36229,"ĠSYSTEM":36230,"NEY":36231,"gaard":36232,"Ġdistressed":36233,"formerly":36234,"Alan":36235,"Ġchefs":36236,"Ġoptics":36237,"ĠComet":36238,"ĠAMC":36239,"Ġredesigned":36240,"irmation":36241,"Ġsightings":36242,"382":36243,"311":36244,"ĠWB":36245,"Ġcontraction":36246,"ĠTOTAL":36247,"Dual":36248,"Ġstartled":36249,"Ġunderstandably":36250,"Ġsunglasses":36251,"ETHOD":36252,"Ġdocker":36253,"Ġsurfing":36254,"ĠHEL":36255,"ĠSlack":36256,"tones":36257,"Ġshalt":36258,"Visual":36259,"498":36260,"Department":36261,"cussion":36262,"Ġunrestricted":36263,"Ġtad":36264,"Ġrename":36265,"employed":36266,"Ġeducating":36267,"Ġgrinned":36268,"bedroom":36269,"ĠActivities":36270,"ĠVelvet":36271,"ĠSWAT":36272,"Ġshuffle":36273,"igor":36274,"Ġsaturation":36275,"Finding":36276,"cream":36277,"icter":36278,"Ġvodka":36279,"tracking":36280,"tec":36281,"Ġforeground":36282,"iesta":36283,"Ġvehement":36284,"ĠECB":36285,"ĠTie":36286,"Ey":36287,"Ġturtles":36288,"ĠRailroad":36289,"ĠKatz":36290,"ĠFrames":36291,"Ġmenace":36292,"ĠFellowship":36293,"ĠEssential":36294,"uggish":36295,"Ġdrip":36296,"chwitz":36297,"ĠKyoto":36298,"sb":36299,"ĠNina":36300,"Parameter":36301,"Ġalarms":36302,"ĠClaud":36303,"Ġpioneering":36304,"Ġchiefly":36305,"ĠScream":36306,"Collection":36307,"Ġthankfully":36308,"ĠRonaldo":36309,"åŃIJ":36310,"strip":36311,"ĠDisneyland":36312,"commercial":36313,"Seeing":36314,"Soul":36315,"Ġevacuate":36316,"Ġciv":36317,"ĠAshe":36318,"Ġdivides":36319,"ĠDagger":36320,"rehensive":36321,"Ġberries":36322,"ĠDF":36323,"Ġsushi":36324,"Ġplurality":36325,"WI":36326,"Ġdisadvantaged":36327,"Ġbattalion":36328,"obiles":36329,"451":36330,"Ġcling":36331,"Ġundeniable":36332,"ĠLounge":36333,"Ġhaunt":36334,"phe":36335,"Ġquantify":36336,"Ġdiffered":36337,"Ġ[*]":36338,"ĠViz":36339,"cum":36340,"slave":36341,"Ġvideog":36342,"Ġquar":36343,"Ġbundles":36344,"ĠAlonso":36345,"tackle":36346,"Ġneuronal":36347,"Ġlandslide":36348,"confirmed":36349,"ĠDepth":36350,"Ġrenewables":36351,"Bear":36352,"ĠMacedonia":36353,"Ġjerseys":36354,"Ġbunk":36355,"ĠSpawn":36356,"ĠControls":36357,"ĠBuchanan":36358,"Ġrobotics":36359,"Ġemphasizing":36360,"ĠTutorial":36361,"hyp":36362,"iston":36363,"Ġmonumental":36364,"æ°":36365,"ĠCarry":36366,"Ġtbsp":36367,"enance":36368,"Hill":36369,"arthed":36370,"Ġrotten":36371,"Dean":36372,"Ġtwisting":36373,"Ġgoodwill":36374,"Ġimmersion":36375,"Living":36376,"Ġbrushes":36377,"ĠCGI":36378,"ĠAtk":36379,"traditional":36380,"Ġphantom":36381,"ĠStamina":36382,"Ġexpansions":36383,"ĠMarin":36384,"Ġembarked":36385,"ĠEg":36386,"intestinal":36387,"ĠPEOPLE":36388,"ĠBooth":36389,"ĠAppalach":36390,"Ġrelegated":36391,"VT":36392,"MIT":36393,"Ġmuster":36394,"Ġwithdrawing":36395,"Ġmicroscope":36396,"ĠGathering":36397,"ĠCrescent":36398,"ĠArgentine":36399,"ĠDecre":36400,"ĠDominic":36401,"Ġbuds":36402,"antage":36403,"ĠIon":36404,"Ġwidened":36405,"ONSORED":36406,"ĠGloves":36407,"iannopoulos":36408,"razen":36409,"feel":36410,"Ġrepayment":36411,"Ġhindsight":36412,"ĠREALLY":36413,"ĠPistol":36414,"ĠBrah":36415,"Ġwatts":36416,"Ġsurvives":36417,"Ġflurry":36418,"issy":36419,"Alert":36420,"ĠUruguay":36421,"Phoenix":36422,"Slow":36423,"ĠGrave":36424,"ĠFir":36425,"Ġmanageable":36426,"Ġtariff":36427,"ĠUDP":36428,"ĠPistons":36429,"ĠNigerian":36430,"Ġstrikeouts":36431,"Ġcosmetics":36432,"whelming":36433,"fab":36434,"cape":36435,"proxy":36436,"Ġrethink":36437,"Ġovercoming":36438,"simple":36439,"Ġwoo":36440,"Ġdistracting":36441,"ĠStanton":36442,"ĠTulsa":36443,"ĠDock":36444,"659":36445,"Ġdiscord":36446,"ĠEmacs":36447,"ĠVes":36448,"ĠROB":36449,"Ġreassuring":36450,"Ġconsortium":36451,"Muslims":36452,"321":36453,"Ġprompts":36454,"sei":36455,"ĠHitch":36456,"imposed":36457,"ĠFool":36458,"Ġindiscrim":36459,"wrong":36460,"buquerque":36461,"Davis":36462,"!]":36463,"Ġtimeless":36464,"ĠNEED":36465,"Ġpesticide":36466,"Ġrallying":36467,"ĠCalder":36468,"Ġå¤":36469,"Ġxp":36470,"ĠUnle":36471,"ĠExport":36472,"luaj":36473,"Buff":36474,")[":36937,"Ġsqor":36938,"Saudi":36939,"Ġistg":36940,"Ġindulge":36941,"proc":36942,"Ġdisgusted":36943,"Ġcompounded":36944,"Ġnem":36945,"Ġschooling":36946,"ĠCure":36947,"processing":36948,"Sol":36949,"Ġproverb":36950,"itized":36951,"ĠAlvarez":36952,"Ġscarf":36953,"Ġrectangular":36954,"reve":36955,"Ġhormonal":36956,"ĠStress":36957,"itizen":36958,"Ġ425":36959,"girls":36960,"ĠNoir":36961,"ĠRapp":36962,"Ġmarches":36963,"church":36964,"ĠUses":36965,"Ġ405":36966,"ĠBerm":36967,"Ġordinances":36968,"ĠJudgment":36969,"Charges":36970,"ĠZin":36971,"Ġdusty":36972,"Ġstrawberries":36973,"Ġperce":36974,"ĠThur":36975,"ĠDeborah":36976,"netflix":36977,"ĠLambert":36978,"Ġamused":36979,"ĠGuang":36980,"YOU":36981,"RGB":36982,"ĠCCTV":36983,"Ġfiat":36984,"rang":36985,"Ġfederation":36986,"ĠMant":36987,"ĠBust":36988,"ĠMare":36989,"respective":36990,"ĠMigration":36991,"ĠBIT":36992,"590":36993,"Ġpatriotism":36994,"Ġoutlining":36995,"region":36996,"ĠJosé":36997,"Ġblasting":36998,"ĠEzra":36999,"Bs":37000,"Ġundermines":37001,"ĠSmooth":37002,"Ġclashed":37003,"radio":37004,"Ġtransitioning":37005,"ĠBuccaneers":37006,"ĠOwl":37007,"Ġplugs":37008,"Ġhiatus":37009,"ĠPinball":37010,"Ġmig":37011,"ĠNutr":37012,"ĠWolfe":37013,"Ġintegers":37014,"Ġorbits":37015,"ĠEdwin":37016,"ĠDirectX":37017,"bite":37018,"Ġblazing":37019,"vr":37020,"Edge":37021,"ĠPID":37022,"exit":37023,"ĠComed":37024,"ĠPathfinder":37025,"ĠGuid":37026,"ĠSigns":37027,"ĠZer":37028,"ĠAgenda":37029,"Ġreimbursement":37030,"Mesh":37031,"iPhone":37032,"ĠMarcos":37033,"ĠSites":37034,"hate":37035,"enburg":37036,"Ġsockets":37037,"pend":37038,"Batman":37039,"vir":37040,"ĠSHOW":37041,"Ġprovisional":37042,"conn":37043,"ĠDeaths":37044,"ATIVE":37045,"Profile":37046,"sym":37047,"JA":37048,"Ġninja":37049,"installed":37050,"idates":37051,"ebra":37052,"ĠOmaha":37053,"Ġseizing":37054,"ĠBeasts":37055,"Ġsalts":37056,"Mission":37057,"Generally":37058,"ĠTrilogy":37059,"heon":37060,"legates":37061,"Ġdime":37062,"Ġfaire":37063,"parable":37064,"Graph":37065,"Ġtotaling":37066,"Ġdiagrams":37067,"ĠYanuk":37068,"plet":37069,"ĠMeh":37070,"Ġmythical":37071,"ĠStephens":37072,"autical":37073,"ochemistry":37074,"Ġkilograms":37075,"Ġelbows":37076,"ancock":37077,"ĠBCE":37078,"ĠPrague":37079,"Ġimprov":37080,"ĠDevin":37081,"Ġ\"\\":37082,"paralle":37083,"Ġsupremacists":37084,"ĠBillion":37085,"Ġregimen":37086,"innacle":37087,"Ġrequisite":37088,"angan":37089,"ĠBurlington":37090,"ainment":37091,"ĠObjective":37092,"omsky":37093,"GV":37094,"Ġunilateral":37095,"Ġtc":37096,"Ġhires":37097,"mental":37098,"Ġinvoluntary":37099,"Ġtranspl":37100,"ĠASCII":37101,"¨":37102,"Events":37103,"Ġdoubted":37104,"ĠKaplan":37105,"ĠCourage":37106,"igon":37107,"ĠManaging":37108,"ĠTart":37109,"Ġfalsehood":37110,"ĠViolet":37111,"Ġairs":37112,"Ġfertilizer":37113,"Britain":37114,"Ġaquatic":37115,"ouf":37116,"Words":37117,"ĠHartford":37118,"Ġevenings":37119,"ĠVengeance":37120,"quite":37121,"Gall":37122,"ĠPret":37123,"Ġpdf":37124,"ĠLM":37125,"ĠSochi":37126,"ĠIntercept":37127,"920":37128,"Ġprofitability":37129,"ĠIdle":37130,"ĠMacDonald":37131,"ĠEstablishment":37132,"umsy":37133,"Ġgatherings":37134,"ĠNaj":37135,"Charlie":37136,"Ġascent":37137,"ĠProtector":37138,"Ġalgebra":37139,"Ġbios":37140,"forums":37141,"ELS":37142,"Introduced":37143,"Ġ335":37144,"Ġastronomy":37145,"Contribut":37146,"ĠPolic":37147,"Platform":37148,"Ġcontainment":37149,"wrap":37150,"Ġcoronary":37151,"ĠJelly":37152,"manager":37153,"Ġheartbreaking":37154,"cair":37155,"ĠChero":37156,"cgi":37157,"Medical":37158,"ĠAccountability":37159,"!!\"":37160,"ophile":37161,"Ġpsychotic":37162,"ĠRestrict":37163,"Ġequitable":37164,"issues":37165,"Ġ1905":37166,"ĠNek":37167,"cised":37168,"ĠTracking":37169,"Ġozone":37170,"Ġcooker":37171,"rosis":37172,"Ġreopen":37173,"Ġinfinity":37174,"ĠPharmaceutical":37175,"ensional":37176,"Attempt":37177,"ĠRory":37178,"Marco":37179,"Ġawaits":37180,"HOW":37181,"treated":37182,"Ġbolst":37183,"Ġrevered":37184,"Ġpods":37185,"oppers":37186,"0010":37187,"Ġamplitude":37188,"rican":37189,"SPONSORED":37190,"Ġtrousers":37191,"Ġhalves":37192,"ĠKaine":37193,"ĠCutler":37194,"ĠAUTH":37195,"Ġsplendid":37196,"Ġpreventive":37197,"ĠDudley":37198,"ifacts":37199,"uminati":37200,"ĠYin":37201,"Ġadmon":37202,"ĠVag":37203,"Ġinverted":37204,"Ġhastily":37205,"ĠHague":37206,"Lyn":37207,"Ġledger":37208,"Ġastronomical":37209,"getting":37210,"Ġcirca":37211,"ĠCic":37212,"ĠTennis":37213,"Limited":37214,"Ġdru":37215,"ĠBYU":37216,"Ġtravellers":37217,"Ġpane":37218,"ĠIntro":37219,"Ġpatiently":37220,"Ġaiding":37221,"Ġloos":37222,"ĠTough":37223,"Ġ293":37224,"Ġconsumes":37225,"SourceFile":37226,"Ġ\"\"\"":37227,"Ġbonding":37228,"Ġtilted":37229,"Ġmenstrual":37230,"ĠCelestial":37231,"ULAR":37232,"Plugin":37233,"Ġrisking":37234,"Naz":37235,"ĠRiyadh":37236,"Ġaccredited":37237,"Ġskirm":37238,"éĽ":37239,"Ġexaminer":37240,"Ġmessing":37241,"Ġnearing":37242,"ĠChern":37243,"ĠBeckham":37244,"Ġswapped":37245,"Ġgoose":37246,"Kay":37247,"Ġlofty":37248,"ĠWallet":37249,"Ġ['":37250,"Ġapocalypse":37251,"Ġbamboo":37252,"ĠSPACE":37253,"ĠElena":37254,"Ġ306":37255,"acons":37256,"Ġtightened":37257,"Ġadolescence":37258,"Ġrainy":37259,"Ġvandalism":37260,"ĠNewtown":37261,"Ġconject":37262,"cakes":37263,"Ġcheated":37264,"Ġmoderators":37265,"params":37266,"EFF":37267,"Ġdeceit":37268,"ĠSTL":37269,"ĠTanzania":37270,"ĠRI":37271,"Ġ1923":37272,"ĠExile":37273,"thel":37274,"Ġtheolog":37275,"Ġquirky":37276,"ĠIrvine":37277,"Ġneedy":37278,"oris":37279,"Um":37280,"Ka":37281,"Ġmailbox":37282,"322":37283,"Ġbos":37284,"ĠPetra":37285,"KING":37286,"Ġenlarged":37287,"Often":37288,"Ġbadass":37289,"Ġ343":37290,"ĠPlaces":37291,"ĠCAD":37292,"Ġpristine":37293,"Ġintervening":37294,"direction":37295,"Ġlaz":37296,"ĠDSM":37297,"Ġprojecting":37298,"ĠFunk":37299,"agog":37300,"payment":37301,"nov":37302,"Ġchatter":37303,"ARB":37304,"Ġexaminations":37305,"ĠHousehold":37306,"ĠGus":37307,"Ford":37308,"414":37309,"Boss":37310,"Ġmystic":37311,"Ġleaps":37312,"ĠBav":37313,"ulz":37314,"budget":37315,"Football":37316,"Ġsubsidized":37317,"Ġfirsthand":37318,"Ġcoincide":37319,"ocular":37320,"Conn":37321,"ĠCollabor":37322,"Ġfools":37323,"amura":37324,"ahar":37325,"rists":37326,"Ġswollen":37327,"Ġexpended":37328,"ĠPau":37329,"sup":37330,"Ġspar":37331,"Ġkeynote":37332,"suff":37333,"Ġunequal":37334,"Ġprogressing":37335,"strings":37336,"ĠGamergate":37337,"Disney":37338,"ĠEleven":37339,"omnia":37340,"Ġscripted":37341,"Ġearners":37342,"brother":37343,"ĠEnabled":37344,"æ³":37345,"Ġlarvae":37346,"ĠLOC":37347,"mess":37348,"Wilson":37349,"ĠTemplate":37350,"successfully":37351,"Ġparamount":37352,"Ġcamouflage":37353,"Ġbinds":37354,"ĠQuiet":37355,"ĠShutterstock":37356,"rush":37357,"Ġmascot":37358,"fortune":37359,"ĠColt":37360,"ĠBeyon":37361,"habi":37362,"Ġhairc":37363,"Ġ267":37364,"ĠDeus":37365,"Ġtwitch":37366,"Ġconcentrating":37367,"Ġnipples":37368,"cible":37369,"Ġgir":37370,"NZ":37371,"Math":37372,"nih":37373,"Required":37374,"Ġponder":37375,"ĠSAN":37376,"Ġweddings":37377,"Ġloneliness":37378,"NES":37379,"ĠMahjong":37380,"695":37381,"addle":37382,"ĠGarner":37383,"ĠCOUR":37384,"Bridge":37385,"Ġspree":37386,"ĠCaldwell":37387,"Ġbribery":37388,"Ġ��������":37389,"plugins":37390,"Ġracket":37391,"Ġchampagne":37392,"versible":37393,"Vote":37394,"Ġmodifiers":37395,"Mayor":37396,"680":37397,"Ġassemblies":37398,"ĠSultan":37399,"ĠNing":37400,"ĠLadies":37401,"Ġsulfur":37402,"Ġorbs":37403,"Ġ-----":37404,"_______":37405,"ĠJournalism":37406,"Ġesports":37407,"Ġlush":37408,"Ġhue":37409,"Ġspectral":37410,"Honest":37411,"ãĥı":37412,"Ġbushes":37413,"Ġreinforcement":37414,"Ġreopened":37415,"ĠWheels":37416,"ĠMorg":37417,"rieving":37418,"Ġauxiliary":37419,"ĠjQuery":37420,"ĠBAT":37421,"tesque":37422,"Ġvertex":37423,"pure":37424,"frey":37425,"ãĤº":37426,"dos":37427,"Ġtyph":37428,"Ġcull":37429,"Ġeq":37430,"Ġdecon":37431,"Ġtossing":37432,"Ġdisparate":37433,"ĠBrigham":37434,"printf":37435,"ledged":37436,"Ġsund":37437,"Ġcozy":37438,"Ġhepatitis":37439,"performing":37440,"Ġaval":37441,"ĠGG":37442,"future":37443,"Ġpetertodd":37444,"ĠKosovo":37445,"Ġmagnets":37446,"Already":37447,"ĠEdison":37448,"ĠCeres":37449,"ĠRAID":37450,"Ġbrilliance":37451,"576":37452,"Ġderives":37453,"Ġhypertension":37454,"ĠÎĶ":37455,"Ġlambda":37456,"Ġflair":37457,"Ġmissionaries":37458,"Ġrapes":37459,"ĠStarter":37460,"ĠMonths":37461,"Ġdefy":37462,"Ġseismic":37463,"ĠRaphael":37464,"Ġeurozone":37465,"656":37466,"zsche":37467,"Ġscratched":37468,"Ġbows":37469,"ĠLennon":37470,"ĠGaia":37471,"Ġdripping":37472,"facts":37473,"Ale":37474,"Ġfrogs":37475,"ĠBreast":37476,"ogeneity":37477,"ĠProsecutor":37478,"Ġamplified":37479,"ĠHodg":37480,"ĠFn":37481,"Thousands":37482,"ĠNIH":37483,"ĠMonitoring":37484,"FTWARE":37485,"ĠPriebus":37486,"ĠGrowing":37487,"hunter":37488,"Ġdiagnose":37489,"ĠMald":37490,"ĠLR":37491,"Ġcrowned":37492,"Ġbursting":37493,"Ġdissolution":37494,"javascript":37495,"Ġusefulness":37496,"ĠExecution":37497,":(":37498,"ĠIvory":37499,"aah":37500,"Ġpersecuted":37501,"violence":37502,"istas":37503,"ĠCrate":37504,"Ġimpulses":37505,"ĠSpani":37506,"edes":37507,"Handle":37508,"ĠZerg":37509,"thinkable":37510,"Lastly":37511,"Ġspontaneously":37512,"Ġinconvenient":37513,"Ġdismissing":37514,"Ġplotted":37515,"Ġeighty":37516,"Ġ737":37517,"rish":37518,"ĠThornton":37519,"atham":37520,"Ġsitcom":37521,"Ven":37522,"Recipe":37523,"tel":37524,"lund":37525,"Ġclears":37526,"ĠSasuke":37527,"Ġ258":37528,"Ġopting":37529,"Ġenraged":37530,"esthetic":37531,"ĠAe":37532,"uchs":37533,"Prep":37534,"Flow":37535,"Ġrunoff":37536,"ĠEating":37537,"ĠGiles":37538,"ĠActing":37539,"resources":37540,"ibaba":37541,"Ġrpm":37542,"Ġskewed":37543,"ĠBlanc":37544,"ĠSakuya":37545,"Ġhotter":37546,"Ġ1924":37547,"opian":37548,"cko":37549,"Ġcrumbling":37550,"Ġcaptains":37551,"ĠAppropriations":37552,"leaders":37553,"dropping":37554,"anuts":37555,"Ġreversing":37556,"ĠPose":37557,"ĠSek":37558,"Scot":37559,"ĠIdea":37560,"cise":37561,"ĠSlovenia":37562,"Ġ317":37563,"Doctor":37564,"Ġcrocod":37565,"aldi":37566,"Sea":37567,"ĠFarrell":37568,"Ġmercenaries":37569,"ĠRNC":37570,"ĠGuess":37571,"Ġpacing":37572,"Machine":37573,"StreamerBot":37574,"ĠCharity":37575,"Ġ298":37576,"Ġcannons":37577,"ĠToby":37578,"TPPStreamerBot":37579,"ĠPassion":37580,"cfg":37581,"Thom":37582,"Ġbadges":37583,"ĠBernstein":37584,".âĢĵ":37585,"ĠPOP":37586,"ĠConj":37587,"Ġinitialization":37588,"Ġbiodiversity":37589,"Dub":37590,"Ġfeudal":37591,"Ġdisclaimer":37592,"Ġcrow":37593,"Ġignition":37594,"arf":37595,"SHA":37596,"ĠkHz":37597,"hazard":37598,"ĠArtists":37599,"oeuv":37600,"679":37601,"ĠRudy":37602,"Nine":37603,"ĠRamadan":37604,"å½":37605,"itto":37606,"Ġadrenaline":37607,"Cert":37608,"Ġsmelled":37609,"Ġimpunity":37610,"Ġagendas":37611,"ĠReborn":37612,"ĠConcent":37613,"ĠSeems":37614,"Ġomega":37615,"ĠDustin":37616,"Ġbacker":37617,"ĠSauce":37618,"ĠBoyle":37619,"WIN":37620,"Ġspins":37621,"Ġpauses":37622,"upt":37623,"Ġshredded":37624,"Ġstrapped":37625,"ĠCorruption":37626,"Ġscratches":37627,"Ġni":37628,"Ġattire":37629,"ĠSAF":37630,"FactoryReloaded":37631,"ĠIPS":37632,"Ġ(%":37633,"Ġseminar":37634,"focus":37635,"civil":37636,"Ġ1860":37637,"intosh":37638,"Ġcontinual":37639,"Ġabbrevi":37640,"ĠSok":37641,"ocobo":37642,"XM":37643,"Ġfrantic":37644,"Ġunavoidable":37645,"Ġartery":37646,"Ġannotations":37647,"bath":37648,"Climate":37649,"Ġdors":37650,"ĠSlide":37651,"coord":37652,"ĠReload":37653,"ĠLDL":37654,"ĠLovecraft":37655,"Ġunimagin":37656,"Ġresembled":37657,"Ġbarracks":37658,"np":37659,"Ġsurrogate":37660,"Ġcategorized":37661,"ãĤ©":37662,"Ġvaccinated":37663,"Ġdrainage":37664,"Ġindist":37665,"ĠWhatsApp":37666,"Ġ1870":37667,"olerance":37668,"invoke":37669,"amorph":37670,"Ġreconnect":37671,"Ġemanc":37672,"Ġblindness":37673,"Ġ1280":37674,"internet":37675,"collar":37676,"Ġaltru":37677,"Ġabyss":37678,"ĠTRI":37679,"657":37680,"Ġinfused":37681,"HEAD":37682,"Ġforestry":37683,"ĠWoody":37684,"ĠCi":37685,"wi":37686,"sam":37687,"784":37688,"holiday":37689,"Ġmogul":37690,"ĠFees":37691,"ĠDEN":37692,"Internal":37693,"urbed":37694,"fusc":37695,"atom":37696,"ĠIllusion":37697,"Ġpolled":37698,"Ġflap":37699,"Ġcoax":37700,"LGBT":37701,"Analy":37702,"ĠSections":37703,"ĠCaliforn":37704,"emn":37705,"Ġhither":37706,"ĠNIGHT":37707,"Ġnailed":37708,"ĠPipeline":37709,"391":37710,"oof":37711,"ĠPrimal":37712,"verend":37713,"Ġslashing":37714,"Ġretri":37715,"aviour":37716,"Ġdeparting":37717,"gil":37718,"ISC":37719,"Ġmidway":37720,"Ġultrasound":37721,"Ġbehaving":37722,"ĠTara":37723,"classes":37724,"Virtual":37725,"ĠColonial":37726,"Ġstripping":37727,"Ġorchestrated":37728,"ĠGraves":37729,"452":37730,"ĠIronically":37731,"ĠWriters":37732,"Ġlends":37733,"ĠManz":37734,"Ġraven":37735,"Ġoxidative":37736,"Ġ266":37737,"ELF":37738,"actually":37739,"ascar":37740,"Draft":37741,"Ġfavourable":37742,"Ġhumiliating":37743,"Ġfidelity":37744,"ĠHof":37745,"ĠXuan":37746,"496":37747,"Ġlayered":37748,"atis":37749,"790":37750,"Ġpaycheck":37751,"iton":37752,"Kar":37753,"ĠVMware":37754,"ĠFarmer":37755,"Ġservic":37756,"glomer":37757,"Ġslump":37758,"ĠFabric":37759,"ĠDOC":37760,"esting":37761,"Ġreassure":37762,"Ġphyl":37763,"volt":37764,"itory":37765,"Rules":37766,"Ġoxidation":37767,"Ġprized":37768,"Ġmistress":37769,"ĠDjango":37770,"WARN":37771,"åij":37772,"Ġencode":37773,"ĠFeedback":37774,"Ġstupidity":37775,"Ian":37776,"ĠYugoslavia":37777,"ר":37778,"acl":37779,"UTE":37780,"1977":37781,"Ġqualifies":37782,"Ġpulses":37783,"pretty":37784,"Ġfroze":37785,"Ġss":37786,"Iterator":37787,"Ġurgently":37788,"Ġmailed":37789,"ĠCham":37790,"Ġsustaining":37791,"Ġbasil":37792,"Ġpuppies":37793,"ilant":37794,"ĠPLEASE":37795,"lap":37796,"aceous":37797,"Fear":37798,"ĠMastery":37799,"automatic":37800,"ĠTAG":37801,"Ġantim":37802,"agles":37803,"473":37804,"frames":37805,"Ġwhispers":37806,"ĠWhoever":37807,"Ġbravery":37808,"ĠUKIP":37809,"ractions":37810,"\"\"\"":37811,"Ġtame":37812,"Ġparted":37813,"everything":37814,"CONT":37815,"Ġindebted":37816,"Ġaddr":37817,"rek":37818,"IRED":37819,"Ġeminent":37820,"clinton":37821,"Ġousted":37822,"Ġreviewer":37823,"Ġmeltdown":37824,"Ġrearr":37825,"ĠYao":37826,"thereal":37827,"abyte":37828,"Ġstumbling":37829,"Ġbatches":37830,"Ġ259":37831,"Ġcontraceptive":37832,"Ġprostitute":37833,"ensis":37834,"Decl":37835,"ĠStrikes":37836,"Military":37837,"ĠOath":37838,"vacc":37839,"ppings":37840,"052":37841,"ĠpartName":37842,"amping":37843,"Reports":37844,"KI":37845,"CHR":37846,"Ġsubtly":37847,"swers":37848,"Blake":37849,"usual":37850,"Ġcontestants":37851,"Ġcartridges":37852,"ĠGREAT":37853,"Ġblush":37854,"ĠâĢº":37855,"472":37856,"Ġreasoned":37857,"ãĥ¤":37858,"paralleled":37859,"Ġdyn":37860,"agate":37861,"Ġnightly":37862,"åĨ":37863,"556":37864,"Ġsemantic":37865,"ĠAdvoc":37866,"Ġ!!":37867,"Ġdisagrees":37868,"ĠBW":37869,"Veh":37870,"Ġharming":37871,"Ġembraces":37872,"Ġstrives":37873,"Ġinland":37874,"ĠKard":37875,"Ġheats":37876,"ĠGinny":37877,"utan":37878,"ernaut":37879,"ylene":37880,"ĠElev":37881,"JD":37882,"Ġhars":37883,"ĠStarr":37884,"Ġskysc":37885,"Ġcollaborators":37886,"Usually":37887,"Ġrevolutions":37888,"ĠSTATS":37889,"Ġdismantle":37890,"Ġconfidently":37891,"Ġkinetic":37892,"Ali":37893,"Ġpercentile":37894,"Ġextracting":37895,"illian":37896,"estead":37897,"Ġphysicists":37898,"ĠMarshal":37899,"Ġfellowship":37900,"Ġdashed":37901,"ĠUR":37902,"ĠSioux":37903,"ĠCompact":37904,"amide":37905,"Python":37906,"ĠLeigh":37907,"ĠPharmac":37908,"istrates":37909,"herical":37910,"Ġfue":37911,"ĠEmin":37912,"Ġ({":37913,"ĠNeighborhood":37914,"Ġdisrupting":37915,"ĠDup":37916,"Ġgland":37917,"ĠSev":37918,"ĠMarian":37919,"argon":37920,"ĠDund":37921,"Ġ":46904,"ĠPhilips":46905,"ĠKafka":46906,"Ġupheaval":46907,"Ġsentimental":46908,"Ġsax":46909,"ĠAkira":46910,"serial":46911,"Matrix":46912,"Ġelecting":46913,"Ġcommenter":46914,"ĠNebula":46915,"plets":46916,"ĠNadu":46917,"ĠAdren":46918,"Ġenshr":46919,"ĠRAND":46920,"financial":46921,"ĠClyde":46922,"utherford":46923,"Ġsignage":46924,"Ġdeline":46925,"Ġphosphate":46926,"roversial":46927,"fascist":46928,"ĠVall":46929,"ĠBethlehem":46930,"Ġfors":46931,"Ġenglish":46932,"Solid":46933,"Nature":46934,"Ġva":46935,"ĠGuests":46936,"Ġtantal":46937,"Ġautoimmune":46938,";;;;;;;;;;;;":46939,"ĠTotally":46940,"ĠOv":46941,"Ġdefences":46942,"ĠCoconut":46943,"Ġtranquil":46944,"Ġploy":46945,"Ġflavours":46946,"ĠFlask":46947,"ãĤ¨ãĥ«":46948,"ĠWeston":46949,"ĠVolvo":46950,"870":46951,"Ġmicrophones":46952,"verbal":46953,"RPG":46954,"Ġiii":46955,";}":46956,"028":46957,"Ġheadlined":46958,"Ġprimed":46959,"Ġhoard":46960,"ĠShad":46961,"ĠENTER":46962,"Ġtriangular":46963,"Ġcapit":46964,"lik":46965,"ĠAncients":46966,"Ġlash":46967,"Ġconvol":46968,"Ġcolonel":46969,"enemy":46970,"Gra":46971,"Ġpubs":46972,"utters":46973,"Ġassigns":46974,"ĠPenet":46975,"ĠMonstrous":46976,"ĠBowen":46977,"ilver":46978,"Haunted":46979,"ĠDing":46980,"started":46981,"plin":46982,"Ġcontaminants":46983,"ĠDOE":46984,"ffen":46985,"ĠTechnician":46986,"Ry":46987,"Ġrobbers":46988,"Ġhotline":46989,"ĠGuardiola":46990,"ĠKaufman":46991,"rower":46992,"ĠDresden":46993,"ĠAlpine":46994,"Elf":46995,"Ġfmt":46996,"ĠSard":46997,"urses":46998,"gpu":46999,"Unix":47000,"Ġunequivocally":47001,"ĠCitizenship":47002,"quad":47003,"mire":47004,"ĠSweeney":47005,"Battery":47006,"615":47007,"Ġpancakes":47008,"Ġoats":47009,"Maps":47010,"ĠContrast":47011,"mbudsman":47012,"ĠEPS":47013,"Ġsubcommittee":47014,"Ġsourcing":47015,"Ġsizing":47016,"ĠBuffer":47017,"ĠMandatory":47018,"Ġmoderates":47019,"ĠPatterns":47020,"ĠChocobo":47021,"ĠZan":47022,"ĠSTATES":47023,"ĠJudging":47024,"ĠInher":47025,"*:":47026,"Ġbil":47027,"ĠYen":47028,"Ġexhilar":47029,"ollower":47030,"zers":47031,"Ġsnug":47032,"maximum":47033,"Ġdespicable":47034,"ĠPACK":47035,"ĠAnnex":47036,"Ġsarcastic":47037,"Ġlatex":47038,"Ġtamp":47039,"ĠSao":47040,"bah":47041,"ĠReverend":47042,"ĠChinatown":47043,"ĠAUT":47044,"documented":47045,"ĠGABA":47046,"ĠCanaan":47047,"ĠÙħ":47048,"Ġgoverns":47049,"prev":47050,"Esc":47051,"ĠEstimates":47052,"OSP":47053,"Ġendeavour":47054,"ĠClosing":47055,"ometime":47056,"everyone":47057,"Ġworsen":47058,"Ġscanners":47059,"Ġdeviations":47060,"ĠRobotics":47061,"ĠCompton":47062,"Ġsorcerer":47063,"Ġendogenous":47064,"Ġemulation":47065,"ĠPiercing":47066,"ĠAph":47067,"ĠSocket":47068,"Ġbould":47069,"ĠOU":47070,"ĠBorderlands":47071,"Ġ1863":47072,"Gordon":47073,"ĠWTO":47074,"Ġrestricts":47075,"Ġmosaic":47076,"Ġmelodies":47077,"çĦ":47078,"Tar":47079,"Ġdisson":47080,"ĠProvides":47081,"Ġ......":47082,"bek":47083,"FIX":47084,"Ġbroom":47085,"anship":47086,"Doctors":47087,"Ġnerds":47088,"ĠRegions":47089,"naissance":47090,"Ġmete":47091,"Ġcrept":47092,"plings":47093,"Ġgirlfriends":47094,"knit":47095,"igent":47096,"owe":47097,"Ġushered":47098,"ĠBaz":47099,"Mobil":47100,"434":47101,"ĠPresents":47102,"origin":47103,"Ġinsomnia":47104,"ĠAux":47105,"439":47106,"ĠChili":47107,"irsch":47108,"GAME":47109,"Ġgestation":47110,"algia":47111,"romising":47112,"$,":47113,"crow":47114,"ĠInspection":47115,"atomic":47116,"Relations":47117,"JOHN":47118,"roman":47119,"ĠClockwork":47120,"ĠBakr":47121,"mone":47122,"MET":47123,"Ġthirsty":47124,"Ġbc":47125,"Ġfaculties":47126,"Rum":47127,"Ġnuance":47128,"ĠDarius":47129,"pleting":47130,"fters":47131,"etchup":47132,"Registration":47133,"ĠKE":47134,"Rah":47135,"Ġpreferential":47136,"ĠLash":47137,"ĠHH":47138,"Valid":47139,"ĠNAV":47140,"Ġstarve":47141,"ĠGong":47142,"zynski":47143,"ĠActress":47144,"Ġwik":47145,"Ġunaccompanied":47146,"lvl":47147,"Bride":47148,"ADS":47149,"ĠCommando":47150,"ĠVaughn":47151,"Wallet":47152,"Ġhopping":47153,"ĠVie":47154,"Ġcaveats":47155,"Ġalas":47156,"ifled":47157,"abuse":47158,"661":47159,"Ġibn":47160,"Ġgul":47161,"Ġrobbing":47162,"til":47163,"ILA":47164,"Ġmitigating":47165,"Ġaptly":47166,"Ġtyrant":47167,"Ġmidday":47168,"ĠGilmore":47169,"ĠDecker":47170,"Ġ§§":47171,"partial":47172,"Exactly":47173,"Ġphenotype":47174,"Ġ[+]":47175,"ĠPlex":47176,"ĠIps":47177,"versions":47178,"Ġebook":47179,"Ġchic":47180,"gross":47181,"\":\"\"},{\"":47182,"ĠSurprisingly":47183,"Morgan":47184,"Ġresidues":47185,"ĠConfederation":47186,"infeld":47187,"Ġlyr":47188,"moderate":47189,"Ġperpendicular":47190,"VK":47191,"Ġsynchronized":47192,"Ġrefreshed":47193,"Ġadore":47194,"ĠTorment":47195,"olina":47196,"Ġ2600":47197,"ItemTracker":47198,"Ġpies":47199,"ĠFAT":47200,"ĠRHP":47201,"048":47202,"ĠRESP":47203,"ĠBJ":47204,"allows":47205,"Pand":47206,"Ġunwelcome":47207,"ĠVoc":47208,"ĠBastard":47209,"ĠOW":47210,"ĠLAR":47211,"ĠHealer":47212,"Environmental":47213,"ĠKenyan":47214,"ĠTrance":47215,"ĠPats":47216,"Ġaliases":47217,"ĠGarfield":47218,"Ġcampaigner":47219,"Ġadvancements":47220,"ĠOkinawa":47221,"ĠCoh":47222,"owsky":47223,"Ġstarved":47224,"Ġsizeable":47225,"Ġ:-)":47226,"ĠmRNA":47227,"Ġsuspensions":47228,"istar":47229,"Scotland":47230,"Prin":47231,"------------------------------------------------":47232,"Ġ502":47233,"Ġteaspoons":47234,"Ġ1050":47235,"Ġcoercive":47236,"ĠMasonic":47237,"edded":47238,"ĠPassenger":47239,"Ġlatt":47240,"Ġbraces":47241,"ĠSteal":47242,"ĠNYT":47243,"ĠKats":47244,"ĠCelest":47245,"aez":47246,"Tu":47247,"ĠCoulter":47248,"ðŁĺ":47249,"Flickr":47250,"ĠWilmington":47251,"iths":47252,"++;":47253,"Ġvending":47254,"Ġnegro":47255,"ĠPhi":47256,"ĠYellowstone":47257,"Callback":47258,"Ġshampoo":47259,"ĠShades":47260,"wat":47261,"Ġsuperhuman":47262,"Ġridiculed":47263,"Ġholiest":47264,"ombo":47265,"Ġinterns":47266,"Ġhone":47267,"ĠParagu":47268,"URI":47269,"Ġdangling":47270,"ãĤ»":47271,"sov":47272,"ictional":47273,"availability":47274,"Ġrevocation":47275,"Ġdow":47276,"inic":47277,"ĠTHEIR":47278,"Ġiso":47279,"Ġoutings":47280,"ĠLethal":47281,"Ġ)))":47282,"Ġinaccur":47283,"Ġoutlandish":47284,"Ġanus":47285,"letico":47286,"idon":47287,"lol":47288,"Ġunregulated":47289,"Ġsuccumbed":47290,"Ġcuff":47291,"ĠWasteland":47292,"letal":47293,"Ġsubstr":47294,"Ġcoffers":47295,"Ġautomakers":47296,"ovi":47297,"ĠXue":47298,"ĠDaytona":47299,"Ġjarring":47300,"Ġfumes":47301,"Ġdisbanded":47302,"zik":47303,"itton":47304,"Ġstrikingly":47305,"Ġspores":47306,"Adapter":47307,".):":47308,"ĠLyndon":47309,"ivalry":47310,"Ġorally":47311,"Ġtumultuous":47312,"Ġdispleasure":47313,"Ġcones":47314,"orrect":47315,"Ġappease":47316,"Ġderby":47317,"ĠTripoli":47318,"ĠAless":47319,"Ġpoked":47320,"ĠGuilty":47321,"vP":47322,"Enough":47323,"Ġoriginals":47324,"699":47325,"Ġrabbi":47326,"Ġproverbial":47327,"Ġpostpone":47328,"elope":47329,"ĠMisty":47330,"Ġstaffed":47331,"ĠUnemployment":47332,"reditary":47333,"Ġdiligent":47334,"recomm":47335,"measures":47336,"asin":47337,"825":47338,"Ġponds":47339,"Ġmmol":47340,"ĠSAR":47341,"ĠCARE":47342,"Ġ371":47343,"Ġclenched":47344,"ĠCorsair":47345,"Ġcaricature":47346,"zn":47347,"attach":47348,"ĠSchro":47349,"speak":47350,"painted":47351,"ĠSuc":47352,"ĠENT":47353,"Ġcellul":47354,"ĠPaid":47355,"diagn":47356,"WHERE":47357,"Ġtexted":47358,"Barn":47359,"Ġretracted":47360,"ĠReferred":47361,"Sav":47362,"Ġupkeep":47363,"Ġworkplaces":47364,"ĠTokens":47365,"Ġamplify":47366,"clinical":47367,"Ġmultic":47368,"mberg":47369,"Ġconvoluted":47370,"Region":47371,"565":47372,"ĠTopic":47373,"Ġsnail":47374,"Ġsaline":47375,"Ġinsurrection":47376,"ĠPetr":47377,"forts":47378,"BAT":47379,"ĠNavajo":47380,"Ġrudimentary":47381,"ĠLaksh":47382,"ONDON":47383,"Measure":47384,"Ġtransformer":47385,"ĠGoddard":47386,"Ġcoincides":47387,"irin":47388,"Rex":47389,"ĠBok":47390,"quit":47391,"Ġshotguns":47392,"Ġproletarian":47393,"Ġscorp":47394,"ĠAda":47395,"514":47396,"Ġslander":47397,"recorded":47398,"Ġembell":47399,"risome":47400,"Ġapologizing":47401,"ĠMulcair":47402,"ĠGibraltar":47403,"Cla":47404,"Ġallot":47405,"ĠAttention":47406,"Ġ433":47407,"leave":47408,"Ġwhine":47409,"ĠIssa":47410,"ĠFaust":47411,"ĠBarron":47412,"heny":47413,"Ġvictimized":47414,"Jews":47415,"Ġnurturing":47416,"ettel":47417,"Winged":47418,"ĠSubtle":47419,"Ġflavorful":47420,"ĠReps":47421,"enged":47422,"callback":47423,"Ġdirectional":47424,"Ġclasp":47425,"ĠDirections":47426,"planet":47427,"iculture":47428,"Helper":47429,"icion":47430,"acia":47431,"Ġç¥ŀ":47432,"Ġsurges":47433,"Ġcanoe":47434,"ĠPremiership":47435,"been":47436,"Ġdefied":47437,"ĠTrooper":47438,"Ġtripod":47439,"Ġgasp":47440,"ĠEuph":47441,"ĠAds":47442,"vernight":47443,"highly":47444,"Role":47445,"Ġentangled":47446,"ĠZeit":47447,"618":47448,"ĠRusty":47449,"Ġhavens":47450,"ĠVaughan":47451,"HAEL":47452,"ĠSERVICE":47453,"/,":47454,"Ġstricken":47455,"Ġdelusions":47456,"Ġbis":47457,"ĠHaf":47458,"Ġgratification":47459,"Ġenticing":47460,"UNCH":47461,"Adams":47462,"ĠOLED":47463,"ĠBeetle":47464,"Ġ1899":47465,"ĠSOFTWARE":47466,"ategor":47467,"VL":47468,"ĠTotem":47469,"ĠGators":47470,"ATURES":47471,"Ġimpedance":47472,"Registered":47473,"ĠCary":47474,"ĠAerial":47475,"onne":47476,"enium":47477,"Ġdred":47478,"ĠBeg":47479,"Ġconcurrently":47480,"Ġsuperpower":47481,"ĠXan":47482,"jew":47483,"imester":47484,"ĠDickinson":47485,"âĶģ":47486,"Fla":47487,"Ġpree":47488,"ĠRollins":47489,"©¶æ":47490,"Ġdenomination":47491,"ĠLana":47492,"516":47493,"Ġinciting":47494,"scribed":47495,"juries":47496,"ĠWonders":47497,"approximately":47498,"Ġsuspending":47499,"Ġmountainous":47500,"ĠLaugh":47501,"oidal":47502,"Ns":47503,"Detect":47504,")=":47505,"ĠLuthor":47506,"ĠSchwarzenegger":47507,"ĠMuller":47508,"ĠDevi":47509,"ecycle":47510,"Jar":47511,"613":47512,"ĠLongh":47513,"Bah":47514,"ĠSPORTS":47515,"nw":47516,"Ġrefinement":47517,"Ġwaterways":47518,"Ġdiner":47519,"Blade":47520,"683":47521,"Fac":47522,"Ġinitials":47523,"Ġrog":47524,"Ġparanormal":47525,"BUT":47526,"Ġ[(":47527,"ĠSwanson":47528,"ĠMesh":47529,"âĸ¬":47530,"Improve":47531,"ĠRadiation":47532,"ĠEsther":47533,"ĠEsk":47534,"ĠAly":47535,"iky":47536,"Ġirrad":47537,"ĠBuckingham":47538,"Ġrefill":47539,"Ġ._":47540,"Repe":47541,"CONCLUS":47542,"Ġdifferentiated":47543,"Ġchirop":47544,"ĠAtkins":47545,"Pattern":47546,"Ġexcise":47547,"Ġcabal":47548,"NSA":47549,"ĠSTA":47550,"ĠSIL":47551,"ĠParaly":47552,"Ġrye":47553,"ĠHowell":47554,"ĠCountdown":47555,"nesses":47556,"alysed":47557,"Ġresize":47558,"ãĤ½":47559,"Ġbudgetary":47560,"ĠStras":47561,"wang":47562,"Ġapiece":47563,"Ġprecincts":47564,"Ġpeach":47565,"Ġskyline":47566,"Ġ353":47567,"popular":47568,"Appearances":47569,"ĠMechanics":47570,"ĠDevOnline":47571,"Sullivan":47572,"Zen":47573,"Ġpu":47574,"opolis":47575,"544":47576,"Ġdeform":47577,"Ġcounteract":47578,"ĠLange":47579,"Ġ417":47580,"Console":47581,"774":47582,"Ġnodding":47583,"Ġpopulism":47584,"Ġhep":47585,"Ġcounselling":47586,"compliance":47587,"UFF":47588,"Ġundeniably":47589,"Ġrailing":47590,"ĠHorowitz":47591,"ĠSimone":47592,"ĠBungie":47593,"Ġak":47594,"ĠTalks":47595,"xff":47596,"flake":47597,"Crash":47598,"Ġsweaty":47599,"Ġbanquet":47600,"ĠOFFIC":47601,"Ġinventive":47602,"Ġastronomer":47603,"ĠStamford":47604,"ĠScare":47605,"ĠGREEN":47606,"olicited":47607,"Ġrusher":47608,"Ġcentrist":47609,"ighting":47610,"Ġsubclass":47611,"Ġdisav":47612,"Ġdefund":47613,"ĠNanto":47614,"ociate":47615,"mast":47616,"Ġpacif":47617,"Ġmend":47618,"eers":47619,"immigration":47620,"ESSION":47621,"Ġnumbering":47622,"Ġlaughable":47623,"ĠEnded":47624,"viation":47625,"emark":47626,"Pitt":47627,"Ġmeticulous":47628,"ĠLF":47629,"Ġcongratulated":47630,"ĠBirch":47631,"Ġswayed":47632,"Ġsemifinals":47633,"Ġhumankind":47634,"matter":47635,"ĠEquip":47636,"opausal":47637,"Said":47638,"ĠLayout":47639,"Ġvoicing":47640,"Ġthug":47641,"Ġpornographic":47642,"IPS":47643,"Ġmoaning":47644,"Ġgrievance":47645,"Ġconfessions":47646,"escal":47647,"TEXTURE":47648,"Authent":47649,"osaurus":47650,"Purchase":47651,"Ġrelegation":47652,"alter":47653,"Ġ³³":47654,"Ġriddled":47655,"Ġogre":47656,"ĠLowell":47657,"Occup":47658,"Eat":47659,"ĠHyder":47660,"ĠAdviser":47661,"Commerce":47662,"Hunt":47663,"ĠOrth":47664,"ĠCompetitive":47665,"ĠCLA":47666,"CDC":47667,"Ġsalads":47668,"Fle":47669,"Ġindustrialized":47670,"`,":47671,"ĠOWN":47672,"Ġbeck":47673,"ĠParticularly":47674,"oubt":47675,"ĠmM":47676,"ĠHussain":47677,"ĠChennai":47678,"Ġ920":47679,"Ġappointing":47680,"ĠCullen":47681,",,,,,,,,":47682,"Ġpores":47683,"verified":47684,"Ġbiochemical":47685,"emate":47686,"Ġcowardly":47687,"ĠHelsinki":47688,"ĠEthiopian":47689,"SOURCE":47690,"ERC":47691,"estro":47692,"Ġbiotech":47693,"ĠSour":47694,"Ġbrewer":47695,"Bloomberg":47696,"Ġintensify":47697,"Glass":47698,"anco":47699,"ĠFDR":47700,"greSQL":47701,"ĠFires":47702,"©¶æ¥µ":47703,"eco":47704,"1001":47705,"ĠHomeless":47706,"Ġinstantaneous":47707,"ĠHaste":47708,"igel":47709,"Diamond":47710,"Ġpaving":47711,"Ġlandfill":47712,"Ġdads":47713,"houn":47714,":]":47715,"Ġincendiary":47716,"ĠLivingston":47717,"ĠHilbert":47718,"ĠChecks":47719,"styles":47720,"inators":47721,"ĠClive":47722,"phrine":47723,"Ġchimpanzees":47724,"Ġpall":47725,"ĠJM":47726,"ĠAadhaar":47727,"ðĿ":47728,"Ġachievable":47729,"disabled":47730,"PET":47731,"OOOOOOOO":47732,"Mot":47733,"Ġintangible":47734,"Ġballet":47735,"ĠWebs":47736,"ĠEstimated":47737,"Effects":47738,"Ġbailed":47739,"Joshua":47740,"Ġturbulence":47741,"Ġoccupant":47742,"ĠDaylight":47743,"Ġ361":47744,"meet":47745,"Ġstatically":47746,"Ġonlook":47747,"Ġki":47748,"illegal":47749,"Ġvelvet":47750,"Ġdehydration":47751,"Ġacquies":47752,"ĠRez":47753,"akura":47754,"ĠUpton":47755,"atro":47756,"Ġincomprehensible":47757,"Ġbackdoor":47758,"ĠRhino":47759,"727":47760,"Ġmaths":47761,")+":47762,"Ġheresy":47763,"Ġdf":47764,"ĠRoche":47765,"ĠLydia":47766,"Ġpancreat":47767,"reply":47768,"arrell":47769,"Ġsolicitation":47770,"Ġcircadian":47771,"BIP":47772,"Ġforay":47773,"Ġcryptic":47774,"izu":47775,"imeo":47776,"ĠTomato":47777,"ĠHoms":47778,"examination":47779,"Ġquarry":47780,"ĠValiant":47781,"ĠJericho":47782,"ĠINCLUD":47783,"Ġ1840":47784,"519":47785,"Ġresists":47786,"Ġsnapshots":47787,"ĠSpur":47788,"ĠAntiqu":47789,"Login":47790,"Ġbestselling":47791,"Ġantic":47792,"ĠSutherland":47793,"ãĤ¢ãĥ«":47794,"Ġ~/":47795,"ĠParm":47796,"èĥ":47797,"Pages":47798,"intensity":47799,"Ġimmobil":47800,"Ġ1865":47801,"zzo":47802,"Ġnifty":47803,"Ġfentanyl":47804,"ĠPreservation":47805,"ophen":47806,"Ġdarts":47807,"ĠDinosaur":47808,"pointers":47809,"ĠRite":47810,"suggest":47811,"awareness":47812,"ĠSheridan":47813,"Ġstances":47814,"Ġsorcery":47815,"Ġperjury":47816,"ĠNikola":47817,"iever":47818,"Ġfiance":47819,"ĠJordanian":47820,"ĠBalloon":47821,"Ġnab":47822,"Ġkb":47823,"Ġhumanities":47824,"ĠTanaka":47825,"hillary":47826,"Ġconsultancy":47827,"ĠZub":47828,"Ġremission":47829,"Ġconfid":47830,"CHQ":47831,"ĠFug":47832,"Ġimprovis":47833,"Yep":47834,"/_":47835,"Ġunwillingness":47836,"Ġportfolios":47837,"055":47838,"ĠInstructor":47839,"aiman":47840,"Ġclaimants":47841,"Mbps":47842,"ĠBye":47843,"received":47844,"Tweet":47845,"Ġindemn":47846,"riz":47847,"amara":47848,"Nat":47849,"Ġevaluates":47850,"ĠLur":47851,"epad":47852,"FOX":47853,"ĠThro":47854,"Ġrusty":47855,"Ġbedrock":47856,"ĠOprah":47857,"JB":47858,"Ġmanipulative":47859,"Ġwillful":47860,"Ġrelapse":47861,"Ġextant":47862,"Theme":47863,"Sensor":47864,"ĠStability":47865,"govern":47866,"Ġpoppy":47867,"Ġknack":47868,"Ġinsulated":47869,"ĠTile":47870,"ĠExtrem":47871,"Ġuntold":47872,"Ġconverge":47873,"Ġrefuel":47874,"igroup":47875,"Ġdistortions":47876,"Ġravaged":47877,"Ġmechanically":47878,"ĠReilly":47879,"ĠNose":47880,"ĠIncarnation":47881,"ĠBecky":47882,"abbling":47883,"Ġtaco":47884,"Ġrake":47885,"Ġmelancholy":47886,"Ġillustrious":47887,"ĠDartmouth":47888,"Guide":47889,"ĠRazer":47890,"ĠBenz":47891,"Ultimate":47892,"ĠSurprise":47893,"Ġpageant":47894,"offer":47895,"Whoever":47896,"Ġwiser":47897,"Ġchemist":47898,"ĠHELL":47899,"ĠBulk":47900,"Ġplutonium":47901,"ĠCOVER":47902,"Ö¼":47903,"failed":47904,"Ġtirelessly":47905,"Ġinfertility":47906,"ĠTrident":47907,"ĠShowtime":47908,"ĠCiv":47909,"Vice":47910,"requires":47911,"ittance":47912,"Ġuncontrolled":47913,"interesting":47914,"561":47915,"Ġinnovate":47916,"ategic":47917,"Lie":47918,"ĠSelling":47919,"Ul":47920,"Ġsavior":47921,"ĠTosh":47922,"Ġswast":47923,"PASS":47924,"Ġrink":47925,"Ġcardio":47926,"ĠIro":47927,"udi":47928,"Ġvantage":47929,"Ġvans":47930,"ĠNiño":47931,"+=":47932,"Ġpropagate":47933,"":49029,"Ġleukemia":49030,"Ġeluc":49031,"Ġannouncer":49032,"ĠLithuan":49033,"ĠArmageddon":49034,"åĩ":49035,"Lenin":49036,"ĠRuk":49037,"Ġpepp":49038,"ĠRomantic":49039,"ĠPIT":49040,"ĠInterstellar":49041,"ĠAtkinson":49042,"Raid":49043,"Js":49044,"Goal":49045,"Course":49046,"Ġvanishing":49047,"esley":49048,"ĠRounds":49049,"Elsa":49050,"593":49051,"Ġredundancy":49052,"ĠSTAND":49053,"Ġprophetic":49054,"Ġhabitable":49055,"ryu":49056,"Ġfaintly":49057,"MODE":49058,"Ġflanked":49059,"IRC":49060,"Awesome":49061,"Ġspurious":49062,"ĠZah":49063,"ĠMSG":49064,"Ġshading":49065,"Ġmotivational":49066,"ĠSantana":49067,"ĠSPR":49068,"Ġexcruciating":49069,"omial":49070,"ĠMiko":49071,"ĠLeopard":49072,"Abyss":49073,"Ġ[|":49074,"dirty":49075,"Ġbaths":49076,"Ġdemoral":49077,"andre":49078,"PB":49079,"Ġunification":49080,"Ġsacrament":49081,"Ġ[&":49082,"Ġpriceless":49083,"Ġgelatin":49084,"Ġemanating":49085,"ĠAllaah":49086,"986":49087,"Ġoutburst":49088,"Ġeras":49089,"ĠXVI":49090,"ĠSPI":49091,"Ott":49092,"ĠLazarus":49093,"PLIED":49094,"Flying":49095,"blogs":49096,"Wisconsin":49097,"Raven":49098,"Ġrebate":49099,"Ġcreeps":49100,"ĠSpan":49101,"ĠPainter":49102,"ĠKira":49103,"ĠAmos":49104,"ĠCorvette":49105,"Consumer":49106,"ĠRecover":49107,"cki":49108,"Ġpesky":49109,"ĠInvention":49110,"Companies":49111,"Ġchallengers":49112,"ademic":49113,"ĠUkrainians":49114,"ĠNeurolog":49115,"ĠForsaken":49116,"Ġentrants":49117,"Ġembattled":49118,"Ġdefunct":49119,"ĠGlacier":49120,"Ġpoisons":49121,"ĠHorses":49122,"makes":49123,"ĠDirt":49124,"Ġ423":49125,"hhh":49126,"ĠTransformation":49127,"QUIRE":49128,"..................":49129,"Ġtraveller":49130,"ĠSexy":49131,"ĠKern":49132,"ipolar":49133,"Ġransomware":49134,"oooooooooooooooo":49135,"Ec":49136,"ruby":49137,"Professional":49138,"ĠOutbreak":49139,"argument":49140,"Grey":49141,"ĠFifa":49142,"ĠCHO":49143,"ĠFORM":49144,"ĠAmtrak":49145,"-[":49146,"Ġcradle":49147,"Ġantioxidants":49148,"ãģ®å®":49149,"736":49150,"ĠNASL":49151,"ĠContributions":49152,"Indiana":49153,"ĠSTEP":49154,"CSS":49155,"Ġsalient":49156,"Ġallocations":49157,"yrights":49158,"Ġmashed":49159,"ĠCutter":49160,"Sexual":49161,"Ġpounded":49162,"Ġfanbase":49163,"Ġcasc":49164,"ĠTransparency":49165,"Ġanalytic":49166,"ĠSummoner":49167,"×ŀ":49168,"ĠADC":49169,"detail":49170,"Ġvanquished":49171,"Ġcrabs":49172,"arie":49173,"Destroy":49174,"ĠSack":49175,"Ġtransistor":49176,"Alabama":49177,"ĠKoen":49178,"ĠFisheries":49179,"cone":49180,"Ġannexed":49181,"ĠMGM":49182,"esa":49183,"Ġfaked":49184,"ĠCongratulations":49185,"Ġhindered":49186,"Ġcorrectional":49187,"ĠITV":49188,"leeve":49189,"Ġinappropriately":49190,"licks":49191,"Ġtrespass":49192,"Ġpaws":49193,"Ġnegotiator":49194,"ĠChristensen":49195,"limits":49196,"ĠDianne":49197,"Ġelegance":49198,"ĠContracts":49199,"anke":49200,"Obj":49201,"Ġvigilance":49202,"Ġcastles":49203,"ĠNAD":49204,"ĠHolo":49205,"Ġemphatically":49206,"ĠTitus":49207,"ĠServing":49208,"ĠRichie":49209,"ĠPigs":49210,"568":49211,"Ġanimosity":49212,"ĠAttributes":49213,"ĠUriel":49214,"MQ":49215,"myra":49216,"ĠApplicant":49217,"Ġpsychiatrists":49218,"ĠVij":49219,"ĠAbby":49220,"agree":49221,"Push":49222,"ĠkWh":49223,"hiba":49224,"Ġincite":49225,"ĠWeasley":49226,"ĠTaxi":49227,"ministic":49228,"hyper":49229,"ĠFarn":49230,"Ġ601":49231,"ĠNationwide":49232,"Fake":49233,"952":49234,"Ġmaize":49235,"Ġinteracted":49236,"Ġtransitioned":49237,"Ġparasitic":49238,"Ġharmonic":49239,"Ġdecaying":49240,"Ġbaseless":49241,"nsics":49242,"Ġtranspired":49243,"Ġabundantly":49244,"ĠForensic":49245,"Ġtreadmill":49246,"ĠJav":49247,"aband":49248,"Ġsshd":49249,"Ġfrontman":49250,"ĠJakarta":49251,"oller":49252,"drops":49253,"ĠSERVICES":49254,"romptu":49255,"ophical":49256,"hospital":49257,"bledon":49258,"645":49259,"Ġmidrange":49260,"ĠEVENT":49261,"culated":49262,"rawled":49263,"Ġperched":49264,"Ġoverboard":49265,"ĠPeel":49266,"ĠPwr":49267,"ĠCarth":49268,"ĠCOMPLE":49269,"coe":49270,"shall":49271,"Ġdeterrence":49272,"METHOD":49273,"ĠAbsent":49274,"MEN":49275,"Ġsill":49276,"ĠLEVEL":49277,"York":49278,"Ġsinners":49279,"ĠOPEC":49280,"ĠNur":49281,"ĠDesigns":49282,"selection":49283,"Ġunworthy":49284,"CHA":49285,"Ġstrengthens":49286,"883":49287,"edly":49288,"Ġslicing":49289,"Ġmalnutrition":49290,"Ġfilmmaking":49291,"ĠPolk":49292,"urated":49293,"Ġ421":49294,"breakers":49295,"!'\"":49296,"Ġwetlands":49297,"ĠDiscrimination":49298,"Ġallowable":49299,"Ġsteered":49300,"ĠSicily":49301,"SAM":49302,"Ġmustache":49303,"Ġmids":49304,"Ġclipped":49305,"Ġcirculate":49306,"Ġbrittle":49307,"ĠBuildings":49308,"raised":49309,"ĠRoundup":49310,"Ġwealthier":49311,"Ġoverwrite":49312,"Ġoverpowered":49313,"ĠGerrard":49314,"sites":49315,"PDATED":49316,"Ġacutely":49317,"ĠGamble":49318,"Ġpim":49319,"ĠKus":49320,"Typically":49321,"Deploy":49322,"ĠMoroccan":49323,"potion":49324,"combe":49325,"Ġvigilante":49326,"Ġ363":49327,"Stew":49328,"ĠBagg":49329,"Ġresided":49330,"ĠSpo":49331,"Ġremnant":49332,"Ġemptiness":49333,"brainer":49334,"Ġoutpatient":49335,"priority":49336,"Ġleptin":49337,"ĠPayton":49338,"ĠGleaming":49339,"ĠShed":49340,"ĠPolo":49341,"ĠMormonism":49342,"restricted":49343,"arlane":49344,"wx":49345,"Ġcreatine":49346,"ĠAnon":49347,"ĠSTUD":49348,"ĠJUL":49349,"ĠTee":49350,"528":49351,"089":49352,"Ġhatched":49353,"Dispatch":49354,"ĠComposite":49355,"Ġ451":49356,"puff":49357,"ĠXCOM":49358,"ĠOrn":49359,"ĠTHANK":49360,"ENDED":49361,"ĠAsheville":49362,"ĠÃľ":49363,"Ġmango":49364,"ĠSlightly":49365,"worldly":49366,"ĠWander":49367,"ĠExpand":49368,"ĠChr":49369,"Mist":49370,"Ġorthodoxy":49371,"ĠUNESCO":49372,"regate":49373,"Elsewhere":49374,"kie":49375,"irled":49376,"Ġtopple":49377,"Ġadoptive":49378,"ĠLegs":49379,"dress":49380,"ĠSagan":49381,"bare":49382,"ĠGlou":49383,"Crunch":49384,"Ġhelpers":49385,"Ġchronically":49386,"ĠHuma":49387,"10000":49388,"Ġaccommodating":49389,"äºĶ":49390,"Ġwrinkles":49391,"Ġdodged":49392,"fourth":49393,"Ġprecon":49394,"Ġcompressor":49395,"ĠKare":49396,"Ġevict":49397,"ĠWarwick":49398,"imar":49399,"Ġmodernization":49400,"Ġbandwagon":49401,"Ġrefuted":49402,"Ġnetted":49403,"ĠNaples":49404,"ĠGenie":49405,"perors":49406,"Ġfielded":49407,"Ġdere":49408,"ĠParables":49409,"lees":49410,"Ġtrout":49411,"aspers":49412,"Ġnihil":49413,"Ġhappiest":49414,"Ġfloppy":49415,"ĠLoft":49416,"ĠHeard":49417,"Ġunison":49418,"Ġlug":49419,"ĠRedmond":49420,"classic":49421,"Supporters":49422,"SHIP":49423,"GMT":49424,"Ġfuelled":49425,"çIJ":49426,"Ġdd":49427,"ĠEminem":49428,"Ġ1897":49429,"NYSE":49430,"Ġsecretaries":49431,"ĠFIA":49432,"ĠCanaveral":49433,"Favorite":49434,"Ġpomp":49435,"Ġdetainee":49436,"ership":49437,"aimon":49438,"iour":49439,"ĠApex":49440,"Ġplantations":49441,"amia":49442,"acion":49443,"Rust":49444,"Ġtowed":49445,"ĠTruly":49446,"577":49447,"Ġsheltered":49448,"rider":49449,"Wo":49450,"Ġlair":49451,"ĠIntelligent":49452,"improve":49453,"matically":49454,"Ġetiquette":49455,"adra":49456,"allo":49457,"ĠJuno":49458,"anything":49459,"ĠStruggle":49460,"ĠPredict":49461,"ĠGrimes":49462,"ĠAMERICA":49463,"ctx":49464,"ĠSituation":49465,"WOOD":49466,"Ġsoluble":49467,"meier":49468,"Ġintolerable":49469,"angering":49470,"Ġuninterrupted":49471,"Ġtooltip":49472,"Ġinterrogated":49473,"Ġgunned":49474,"ĠSneak":49475,"æŃ¦":49476,"Ġtether":49477,"Ġcrumble":49478,"Lens":49479,"Ġclustered":49480,"ĠSyl":49481,"ĠHasan":49482,"Ġdystopian":49483,"wana":49484,"Ġjoystick":49485,"ĠThib":49486,"ammu":49487,"Tomorrow":49488,"546":49489,"Ġovercame":49490,"Ġminimized":49491,"ceptor":49492,"Runner":49493,"ENGTH":49494,"ĠBrenda":49495,"ĠAchievements":49496,"Ġtorches":49497,"Ġrapport":49498,"ĠInvestigator":49499,"ĠHandling":49500,"relation":49501,"grey":49502,"815":49503,"Ġkcal":49504,"ĠCommands":49505,"dq":49506,"Ġcurls":49507,"Ġbearer":49508,"Ġcynicism":49509,"itri":49510,"ĠUseful":49511,"Bee":49512,"DCS":49513,"Ġabras":49514,"Pract":49515,"BILITIES":49516,"712":49517,"Ġdebugger":49518,"Ġdebtor":49519,"ĠLia":49520,"ĠKers":49521,"Ġexacerbate":49522,"ĠStacy":49523,"ĠBland":49524,"ĠScenes":49525,"Ġbranching":49526,"âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ":49527,"apeake":49528,"Ġsalsa":49529,"Ġmishand":49530,"ĠKonami":49531,"ĠNib":49532,"Ġanecdote":49533,"Ġagreeable":49534,"Ïī":49535,"ĠNathaniel":49536,"ĠHeisman":49537,"ĠBeware":49538,"Ġ1886":49539,"spective":49540,"691":49541,"522":49542,"Ġinhibits":49543,"Ġhashing":49544,"Ġ1889":49545,"å°Ĩ":49546,"vich":49547,"Pure":49548,"Ġsolidly":49549,"Ġaspirin":49550,"imaru":49551,"Ġstreetcar":49552,"ĠUCS":49553,"ĠJudd":49554,"Ġflashbacks":49555,"pins":49556,"Ġ1440":49557,"ĠUNHCR":49558,"ĠSymptoms":49559,"TIT":49560,"538":49561,"Fra":49562,"%);":49563,"Ġooz":49564,"Ġcurfew":49565,"Ġcalmed":49566,"Ġparticipates":49567,"TeX":49568,"Ġnonsensical":49569,"Ġfullback":49570,"ĠDeL":49571,"monkey":49572,"hari":49573,"Ġmetabolites":49574,"Ġlooted":49575,"ĠALWAYS":49576,"ĠBCC":49577,"Lt":49578,"ochet":49579,"Bone":49580,"Ġvetoed":49581,"Ġgcc":49582,"ĠCLICK":49583,"Ġ1888":49584,"saf":49585,"Ġstiffness":49586,"Ġlowly":49587,"ĠGeh":49588,"verson":49589,"orset":49590,"Ġunforeseen":49591,"Ġanesthesia":49592,"ĠOptical":49593,"Ġreconstructed":49594,"ĠTup":49595,"shows":49596,"NEWS":49597,"ĠNewspaper":49598,"ĠASA":49599,"tera":49600,"Numbers":49601,"Ġinexplicable":49602,"×ij":49603,"Ġhardness":49604,"untarily":49605,"ĠAcer":49606,"gradient":49607,"ARDIS":49608,"Ġwoodland":49609,"Ġmetaphors":49610,"ĠWembley":49611,"ĠPavel":49612,"philis":49613,"Ġrewriting":49614,"Ġperceptual":49615,"Ġ1070":49616,"worms":49617,"ĠDowns":49618,"Ġunsurprisingly":49619,"Ġtagging":49620,"flame":49621,"Ġlitres":49622,"Ġbounces":49623,"ĠBabe":49624,"shut":49625,"Ġoverdoses":49626,"ĠSheila":49627,"ĠChau":49628,"ĠBless":49629,"Capture":49630,"ĠSignificant":49631,"ĠScion":49632,"Ġ389":49633,"ĠMcH":49634,"ĠTitanium":49635,"ĠMeal":49636,"ameda":49637,"agents":49638,"aggressive":49639,"Billy":49640,"763":49641,"ĠSaying":49642,"DERR":49643,"itone":49644,"Collins":49645,"Bound":49646,"Ġbolted":49647,"ĠDMCA":49648,"953":49649,"Ġuniqueness":49650,"Ġepigen":49651,"unci":49652,"antam":49653,"Ġreckoning":49654,"chairs":49655,"OGR":49656,"ĠSenegal":49657,"Ġ1862":49658,"relevant":49659,"Ġ¯":49660,"Ġpharmacies":49661,"ĠGeral":49662,"vier":49663,"Yan":49664,"ORPG":49665,"Ġrabid":49666,"bending":49667,"ĠUNITED":49668,"Ġ465":49669,"Assembly":49670,"Ġweep":49671,"Ġbehest":49672,"ĠMothers":49673,"ĠJace":49674,"hid":49675,"Ġwhirlwind":49676,"ĠUNIVERS":49677,"Ġutopian":49678,"Ġkidnap":49679,"Philipp":49680,"Kin":49681,"893":49682,"Ġlivestream":49683,"ĠMISS":49684,"Ġsubversive":49685,"ĠTechniques":49686,"ĠJUSTICE":49687,"ĠBASE":49688,"Ġ387":49689,"Ġassailants":49690,"ĠHardcore":49691,"Ġsprinkled":49692,"ĠPse":49693,"éļ":49694,"printed":49695,"ĠHau":49696,"ORGE":49697,"ĠTOUR":49698,"Ġlaced":49699,"Ġitch":49700,"Giving":49701,"Ġported":49702,"781":49703,"////////////////////////////////":49704,"breeding":49705,"Ġlogger":49706,"ĠHOL":49707,"innie":49708,"Firstly":49709,"Ġembryonic":49710,"Ġdelegated":49711,"pai":49712,"OIL":49713,"Ġcentrally":49714,"ĠRx":49715,"ĠScouting":49716,"Dutch":49717,"Ġhereditary":49718,"ĠCruiser":49719,"sat":49720,"529":49721,"ĠMarriott":49722,"othermal":49723,"Ġprohibitions":49724,"Earn":49725,"ĠStab":49726,"ĠColleges":49727,"ĠBelief":49728,"stretched":49729,"ĠLH":49730,"ĠEntityItem":49731,"CIA":49732,"Ġunrem":49733,"Ġlaureate":49734,"Ġdenominations":49735,"summary":49736,"hler":49737,"Spect":49738,"ĠKlaus":49739,"ĠBeans":49740,"Ġinsur":49741,"ĠPAX":49742,"Ġfielder":49743,"ĠVet":49744,"ĠSparrow":49745,"zie":49746,"ĠSQ":49747,"ĠMondays":49748,"ĠOffline":49749,"ĠLerner":49750,"ĠExtensions":49751,"Ireland":49752,"Ġpatronage":49753,"Ġcontrasted":49754,"ĠMania":49755,"hirt":49756,"Moscow":49757,"Ġcondemns":49758,"ĠAnge":49759,"Ġcomposing":49760,"ĠPepe":49761,"ĠPaddock":49762,"Ġheterogeneity":49763,"Ġideologically":49764,"Ġfishes":49765,"Ġcursing":49766,"ĠRutherford":49767,"ĠFloating":49768,"ĠAmelia":49769,"Tea":49770,"Synopsis":49771,"Ġstunts":49772,"Ġbead":49773,"Ġstocking":49774,"ĠMILL":49775,"obook":49776,"massive":49777,"\\<":49778,"Ġhump":49779,"ĠPreferences":49780,"EngineDebug":49781,"geist":49782,"ĠNieto":49783,"omever":49784,"ishy":49785,"evaluate":49786,"colonial":49787,"Alternative":49788,"ĠGoPro":49789,"ĠVortex":49790,"ĠNETWORK":49791,"ansky":49792,"Secure":49793,"ĠThrust":49794,"Snake":49795,"Ġparcels":49796,"Ġsamurai":49797,"Ġactresses":49798,"Nap":49799,"MF":49800,"iferation":49801,"Beer":49802,"523":49803,"ĠIly":49804,"ointment":49805,"Ping":49806,"Ġstriped":49807,"ĠMellon":49808,"ossession":49809,"Ġneutron":49810,"endium":49811,"Ġaph":49812,"ĠFlavoring":49813,"Ġ383":49814,"Ġresponsiveness":49815,"ĠJindal":49816,"ĠHitchcock":49817,"Denver":49818,"ĠDRAGON":49819,"smanship":49820,"ĠDupl":49821,"Ġsly":49822,"Ġwebcam":49823,"ĠTwain":49824,"ĠDarling":49825,"iliate":49826,"consumer":49827,"DIT":49828,"Ġnamesake":49829,"Ġunorthodox":49830,"Ġfuner":49831,"ĠPLoS":49832,"ĠCONTROL":49833,"ozyg":49834,"oglobin":49835,"FACE":49836,"ERG":49837,"ĠDia":49838,"ĠFiesta":49839,"cele":49840,"034":49841,"Ġenclave":49842,"âĸ¬âĸ¬":49843,"onement":49844,"alist":49845,"Mand":49846,"Ġhomegrown":49847,"ĠFancy":49848,"Ġconceptions":49849,"ĠContains":49850,"ureen":49851,"Ġreiterate":49852,"Ġmeager":49853,"Ġinstallments":49854,"Spawn":49855,"627":49856,"Ġphotoc":49857,"ĠCabrera":49858,"ĠRosenthal":49859,"ĠLansing":49860,"isner":49861,"Ġinvests":49862,"ĠUFOs":49863,"EXP":49864,"Hardware":49865,"Ġtragically":49866,"Ġconcedes":49867,"ieft":49868,"cham":49869,"borgh":49870,"ĠSchr":49871,"ĠMelanie":49872,"ĠHoy":49873,"Ġvisitation":49874,"Ġidiosyncr":49875,"Ġfractions":49876,"Ġforeskin":49877,"obos":49878,"Ġpoaching":49879,"ĠVIEW":49880,"Ġstimulates":49881,"ĠGork":49882,"canon":49883,"MIC":49884,"ĠNemesis":49885,"ĠIndra":49886,"ĠDMV":49887,"Ġ529":49888,"Ġinspecting":49889,"Ġgrandma":49890,"ĠWhedon":49891,"ĠShant":49892,"ĠPurg":49893,"ikan":49894,"ĠTeg":49895,"ĠCLR":49896,"zac":49897,"Victoria":49898,"ĠVerify":49899,"ionics":49900,"Ġpartying":49901,"ĠMou":49902,"colour":49903,"Ġtestimonies":49904,"lations":49905,"Ġpressuring":49906,"hiro":49907,"acers":49908,"Ġfid":49909,"angler":49910,"ĠCSI":49911,"Ġhereafter":49912,"Ġdissidents":49913,"reporting":49914,"iphany":49915,"chev":49916,"Ġsolitude":49917,"Ġlobe":49918,"Ġindis":49919,"Ġcredential":49920,"recent":49921,"adult":49922,"ĠNirvana":49923,"ĠFranchise":49924,"Layer":49925,"Hyp":49926,"ĠBerkshire":49927,"Ġwills":49928,"tif":49929,"Ġtotem":49930,"ĠJudah":49931,"repair":49932,"Instant":49933,"548":49934,"Ġembassies":49935,"Ġbottleneck":49936,"Ġbount":49937,"Ġtypew":49938,"ĠAlvin":49939,"jing":49940,"imilar":49941,"Rush":49942,"Ġbrim":49943,"ĠHELP":49944,"Aim":49945,"]'":49946,"Ġpassively":49947,"Ġbounded":49948,"ĠRated":49949,"Ġcriminality":49950,"Ġbiomark":49951,"Ġdispatcher":49952,"ĠTowards":49953,"Ġ+++":49954,"righteous":49955,"frog":49956,"ĠPanc":49957,"Carter":49958,"032":49959,"æ©Ł":49960,"Ġultraviolet":49961,"ĠLicensed":49962,"ĠTata":49963,"ĠBlessing":49964,"ĠGAM":49965,"Ġchemically":49966,"ĠSeaf":49967,"ĠRELE":49968,"ĠMercenary":49969,"capitalist":49970,"Ġformulations":49971,"Ġannihilation":49972,"ĠVerb":49973,"ĠArgon":49974,"Ġunloaded":49975,"Ġmorphed":49976,"Ġconquering":49977,"backer":49978,"IELD":49979,"Ġthefts":49980,"Ġfrontrunner":49981,"ĠRoyale":49982,"ĠFundamental":49983,"elight":49984,"Chip":49985,"necessary":49986,"ayn":49987,"ĠSlip":49988,"Ġ448":49989,"cerned":49990,"Pause":49991,"Ġshockingly":49992,"ĠABV":49993,"Ġcomposure":49994,"733":49995,"ĠMotorsport":49996,"ahime":49997,"Murray":49998,"Mach":49999,"Ġgrids":50000,"Ġdebian":50001,"Ġfurthermore":50002,"Ġdexterity":50003,"ĠCollections":50004,"oslov":50005,"ilage":50006,"bj":50007,"ĠMonteneg":50008,"ĠstrutConnector":50009,"Ġmassacres":50010,"Ġbriefs":50011,"fetched":50012,"uvian":50013,"olition":50014,"Failure":50015,"emonic":50016,"Ġflared":50017,"Ġclaimant":50018,"Ġcures":50019,"Ġgiveaways":50020,"ĠSubstance":50021,"alions":50022,"Ġcringe":50023,"ĠKul":50024,"Ġaristocracy":50025,"ĠUlster":50026,"olated":50027,"housing":50028,"ĠMIS":50029,"Ġglared":50030,"ĠWilhelm":50031,"needs":50032,"lambda":50033,"builders":50034,"ĠVIS":50035,"Ġradiator":50036,"ĠGhostbusters":50037,"Ġ436":50038,"actual":50039,"Ġherds":50040,"ça":50041,"watching":50042,"Ġcountering":50043,"Charge":50044,"Ġcharred":50045,"Ġwarheads":50046,"Ġiodine":50047,"ĠMacy":50048,"041":50049,"Ġdepartures":50050,"ĠSins":50051,"Ġdyed":50052,"ĠConcepts":50053,"gado":50054,"713":50055,"Ġquotations":50056,"Ġgist":50057,"ĠChristy":50058,"Ġantigen":50059,"ĠHemp":50060,"ĠDrawn":50061,"ĠBarg":50062,"ezvous":50063,"Ġpaternity":50064,"Ġardu":50065,"ĠAnchorage":50066,"ĠRik":50067,"Ġoverloaded":50068,"ĠUsername":50069,"ĠTammy":50070,"ĠNau":50071,"ĠCellular":50072,"Ġwaning":50073,"Ġrodent":50074,"ĠWorcester":50075,"ilts":50076,"ĠTad":50077,"Ġdwellings":50078,"Ġbullish":50079,"431":50080,"Ġretaliate":50081,"Ġmigraine":50082,"ĠChevron":50083,"CHECK":50084,"Ġdonkey":50085,"crim":50086,"SPA":50087,"ĠAnalog":50088,"Ġmarquee":50089,"ĠHaas":50090,"Bir":50091,"ĠGDDR":50092,"ĠDownloads":50093,"Ġwillpower":50094,"ĠForth":50095,"ĠRecorded":50096,"Ġimpossibility":50097,"ĠLogged":50098,"ĠFranks":50099,"ĠRatt":50100,"initions":50101,"Ġcleaners":50102,"Ġsorely":50103,"Ġflickering":50104,"ĠExamination":50105,"catching":50106,"alloween":50107,"Msg":50108,"Ġdunno":50109,"Fa":50110,"Ġdysph":50111,"crazy":50112,".''.":50113,"Ġmainline":50114,"Ġcs":50115,"Ġptr":50116,"ĠWally":50117,"igun":50118,"951":50119,"ĠBigfoot":50120,"fights":50121,"Ġretrieving":50122,"Jr":50123,"Ġduplication":50124,"ĠExplan":50125,"Ġrelational":50126,"Ġquaint":50127,"Ġbiscuits":50128,"Ġado":50129,"Ġshudder":50130,"Ġantidote":50131,"blooded":50132,"ksh":50133,"Ġsauces":50134,"Ġreinvest":50135,"Ġdispensary":50136,"ĠDiver":50137,"Ġ9000":50138,"student":50139,"Ġinsepar":50140,"escap":50141,"Ġtoddlers":50142,"ĠGPIO":50143,"ĠAssignment":50144,"headers":50145,"Ġlackluster":50146,"Ġaback":50147,"956":50148,"Ġtoolbar":50149,"745":50150,"Ġoust":50151,"Ġcontemplation":50152,"ĠPRESIDENT":50153,"Ġ458":50154,"======":50155,"Ġguaranteeing":50156,"ĠHeist":50157,"ĠCannes":50158,"Ͻ":50159,"Ġcollaborator":50160,"ĠAmp":50161,"Ġgou":50162,"ĠSHALL":50163,"stories":50164,"783":50165,"Ġmobilized":50166,"Ġbrood":50167,"ĠLU":50168,"ĠðŁij":50169,"Ġrefin":50170,"ĠAnthropology":50171,"vind":50172,"illi":50173,"Ġwarranties":50174,"ĠBabel":50175,"Ġswath":50176,"Ġcaches":50177,"Ġantagonists":50178,"artifacts":50179,"Ġhotly":50180,"ĠStarts":50181,"ĠGö":50182,"zag":50183,"!!!!!":50184,"Ġscourge":50185,"Ġconspiring":50186,"ruits":50187,"reverse":50188,"ĠSheen":50189,"ĠJesuit":50190,"ĠGiovanni":50191,"adies":50192,"Ġbuttocks":50193,"earcher":50194,"acan":50195,"Ġvolleyball":50196,"Ġshrouded":50197,"Ġscoreboard":50198,"bats":50199,"ĠIPM":50200,"Ġasses":50201,"Ġderegulation":50202,"ĠTelegram":50203,"ĠReboot":50204,"Ġ7000":50205,"ĠCanary":50206,"Ġkernels":50207,"ĠFrançois":50208,"ĠDuff":50209,"ĠPon":50210,"ĠLeica":50211,"ĠGarmin":50212,"Ġorphans":50213,"ĠClaudia":50214,"Ġcalendars":50215,"ĠLeilan":50216,"ento":50217,"Rocket":50218,"Ġbrunch":50219,"ĠHawking":50220,"ainers":50221,"Ġsensibilities":50222,"ĠkW":50223,"ĠKand":50224,"Ġreclaimed":50225,"Ġinterestingly":50226,"ש":50227,"romy":50228,"JM":50229,"ĠEnhancement":50230,"bush":50231,"Skip":50232,"Ġrappers":50233,"Ġgazing":50234,"pedia":50235,"athlon":50236,"Revolution":50237,"Ġsnipers":50238,"Ġreverted":50239,"Ġconglomerate":50240,"Terry":50241,"794":50242,"Ġharsher":50243,"Ġdesolate":50244,"ĠHitman":50245,"Commission":50246,"Ġ(/":50247,"â̦.\"":50248,"Compar":50249,"Ġamplification":50250,"ominated":50251,"Ġregress":50252,"ĠCollider":50253,"Ġinformants":50254,"Ġgazed":50255,"<|endoftext|>":50256} \ No newline at end of file